blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
db70e704e4eea6851082831a8adf627f62db575c | c2bbe165858014ea7fd226710fa3dc1f4af36fe8 | /src/locMatrix.cpp | 69877a4fda10ece5f6a3539e6b69e2799fcd89cc | [] | no_license | tonymugen/GWAlikeMeth | 5781bb71e0ac79d6772d405a025f4379a52453cc | 8245a7224ba4253681f54aaedd17a60b4520bedf | refs/heads/master | 2020-04-16T00:34:56.464885 | 2020-01-31T22:28:18 | 2020-01-31T22:28:18 | 165,144,017 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 59,218 | cpp | /*
* Copyright (c) 2016 Anthony J. Greenberg
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
/// C++ matrix class for development.
/** \file
* \author Anthony J. Greenberg
* \copyright Copyright (c) 2016 Anthony J. Greenberg
* \version 0.1
*
* This is the class implementation file for the experimental Matrix class. This version is for including in R packages, so it uses the R BLAS and LAPACK interfaces.
*
*
*/
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
#include <string>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <climits>
#include <utility>
#include <R_ext/Lapack.h>
#include <R_ext/BLAS.h>
#include "locMatrix.hpp"
#include "random.hpp"
using std::endl;
using std::flush;
using std::ofstream;
using std::ifstream;
using std::stringstream;
using std::ios;
using std::vector;
using std::string;
using std::stod;
using std::fill;
using std::memcpy;
using std::nan;
using std::numeric_limits;
using namespace BayesicSpace;
// Friend functions
Matrix BayesicSpace::operator*(const double &scal, const Matrix &m){
Matrix res(m);
for (size_t iElm = 0; iElm < m.Ncol_*m.Nrow_; iElm++) {
res.data_[iElm] *= scal;
}
return res;
}
Matrix BayesicSpace::operator+(const double &scal, const Matrix &m){
Matrix res(m);
for (size_t iElm = 0; iElm < m.Ncol_*m.Nrow_; iElm++) {
res.data_[iElm] += scal;
}
return res;
}
// Matrix methods
Matrix::Matrix(const size_t &nrow, const size_t &ncol) : Nrow_(nrow), Ncol_(ncol) { // not using uniform initialization list because Xcode code completion goes nuts
if ( (Nrow_ > INT_MAX) || (Ncol_ > INT_MAX) ) {
throw string("ERROR: Matrix dimensions exceed INT_MAX in Matrix initializing constructor");
}
size_t Ntot = Nrow_ * Ncol_;
if (!Ntot) { // one of the dimensions is zero
throw string("ERROR: one of the dimensions is 0 in the Matrix initializing constructor");
}
if ((Ntot < Nrow_) || (Ntot < Ncol_)) { // this happens only if there is wrap-around
throw string("ERROR: dimensions are too large resulting in wrap-around in the Matrix initializing constructor");
}
data_ = new double[Ntot];
}
// Using the C++-11 delegating constructor facility
Matrix::Matrix(const double &val, const size_t &nrow, const size_t &ncol) : Matrix(nrow, ncol) {
size_t Ntot = Nrow_ * Ncol_;
fill(data_, data_ + Ntot, val);
}
Matrix::Matrix(const double inArr[], const size_t &nrow, const size_t &ncol) : Matrix(nrow, ncol) {
size_t Ntot = Nrow_ * Ncol_;
memcpy(data_, inArr, Ntot*sizeof(*inArr));
}
Matrix::Matrix(const vector<double> &inVec, const size_t &nrow, const size_t &ncol) : Matrix(nrow, ncol) {
size_t Ntot = Nrow_ * Ncol_;
if (inVec.size() < Ntot){
throw string("ERROR: input vector is not long enough in the Matrix vector-based constructor");
}
memcpy(data_, inVec.data(), Ntot*sizeof(double));
}
Matrix::Matrix(const string &fileName, const char &delim): Nrow_(0), Ncol_(0) {
ifstream matIn(fileName.c_str());
if (!matIn) {
string errMsg = "ERROR: cannot open file " + fileName + " in Matrix constructor from file";
throw errMsg;
}
// Copy all the lines into a vector of strings.
// Cannot assign the values to the data_ array on the fly because I need to know the dimensions to allocate the data_ array.
vector<string> lines;
string currentElem;
while (getline(matIn, currentElem)){
lines.push_back(currentElem);
}
matIn.close();
Nrow_ = lines.size();
if (Nrow_ == 0) {
string errMsg = "ERROR: no rows in the file " + fileName + "ERROR: no rows in the file";
throw errMsg;
}
// going through the first line is enough to establish
vector<double> firstLine;
stringstream lineStream;
lineStream.str(lines[0]);
while (getline(lineStream, currentElem, delim)) {
firstLine.push_back(stod(currentElem));
}
lineStream.str("");
Ncol_ = firstLine.size();
if (Ncol_ == 0) {
string errMsg = "ERROR: no rows in the file " + fileName + " in Matrix constructor from file";
throw errMsg;
}
size_t Ntot = Ncol_ * Nrow_;
if ((Ntot < Nrow_) || (Ntot < Ncol_)) { // this happens only if there is wrap-around
throw string("ERROR: dimensions are too large resulting in wrap-around in the Matrix constructor from file");
}
data_ = new double[Ntot];
size_t jCol = 0;
for (auto &iFL : firstLine) {
data_[Nrow_*jCol] = iFL; // just the first row
jCol++;
}
firstLine.resize(0);
// now go through the rest of the lines
size_t iRow = 1;
for (auto lnIt = lines.begin() + 1; lnIt != lines.end(); ++lnIt) {
stringstream elemStrm;
elemStrm.str(*lnIt);
jCol = 0;
while (getline(elemStrm, currentElem, delim)) {
data_[Nrow_*jCol + iRow] = stod(currentElem);
jCol++;
}
iRow++;
if (jCol != Ncol_) {
string errMsg = "ERROR: in file " + fileName + " not all lines have the same number of columns (Matrix constructor from file)";
throw errMsg;
}
}
}
Matrix::~Matrix(){
delete [] data_;
data_ = nullptr;
Ncol_ = 0;
Nrow_ = 0;
}
Matrix::Matrix(const Matrix &inMat){
Ncol_ = inMat.Ncol_;
Nrow_ = inMat.Nrow_;
if (Ncol_ && Nrow_) {
data_ = new double[Nrow_ * Ncol_];
memcpy(data_, inMat.data_, (Ncol_ * Nrow_)*sizeof(double));
} else {
data_ = nullptr;
}
}
Matrix& Matrix::operator=(const Matrix &inMat){
if (this != &inMat) {
delete [] data_;
Ncol_ = inMat.Ncol_;
Nrow_ = inMat.Nrow_;
if (Ncol_ && Nrow_) {
data_ = new double[Nrow_ * Ncol_];
memcpy(data_, inMat.data_, (Ncol_ * Nrow_)*sizeof(double));
} else {
data_ = nullptr;
}
}
return *this;
}
Matrix::Matrix(Matrix &&inMat) {
data_ = inMat.data_;
Ncol_ = inMat.Ncol_;
Nrow_ = inMat.Nrow_;
inMat.data_ = nullptr;
inMat.Ncol_ = 0;
inMat.Nrow_ = 0;
}
Matrix& Matrix::operator=(Matrix &&inMat){
if (this != &inMat) {
delete [] data_;
data_ = inMat.data_;
Ncol_ = inMat.Ncol_;
Nrow_ = inMat.Nrow_;
inMat.data_ = nullptr;
inMat.Ncol_ = 0;
inMat.Nrow_ = 0;
}
return *this;
}
double Matrix::getElem(const size_t& iRow, const size_t &jCol) const{
#ifndef LMRG_CHECK_OFF
if ((iRow >= Nrow_) || (jCol >= Ncol_)) {
throw string("ERROR: element out of range in getElem()");
}
#endif
return data_[Nrow_*jCol + iRow];
}
void Matrix::setElem(const size_t& iRow, const size_t &jCol, const double &input){
#ifndef LMRG_CHECK_OFF
if ((iRow >= Nrow_) || (jCol >= Ncol_)) {
throw string("ERROR: element out of range in setElem()");
}
#endif
data_[Nrow_*jCol + iRow] = input;
}
void Matrix::setCol(const size_t jCol, const vector<double> data){
#ifndef LMRG_CHECK_OFF
if (jCol >= Ncol_) {
throw string("ERROR: column index out of range in setCol()");
}
if (data.size() < Nrow_) {
throw string("ERROR: vector length smaller than the number of rows in setCol()");
}
#endif
double *colBeg = data_ + jCol*Nrow_;
memcpy(colBeg, data.data(), Nrow_*sizeof(double));
}
void Matrix::resize(const size_t &nrow, const size_t &ncol){
delete [] data_;
Nrow_ = nrow;
Ncol_ = ncol;
if (Ncol_ && Nrow_) {
data_ = new double[Nrow_ * Ncol_]();
} else {
data_ = nullptr;
}
}
void Matrix::save(const string &outFileName) const {
remove(outFileName.c_str());
ofstream outFl(outFileName.c_str(), ios::app);
if (!outFl) {
string errMsg = "ERROR: cannot open file " + outFileName + " for writing to save Matrix";
throw errMsg;
}
if ((Nrow_ == 0) || (Ncol_ == 0)) {
outFl.close();
return;
}
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
// first element
outFl << data_[iRow] << flush;
for (size_t jCol = 1; jCol < Ncol_; jCol++) {
outFl << "\t" << data_[Nrow_*jCol + iRow] << flush;
}
outFl << endl;
}
outFl.close();
}
void Matrix::vectorize(vector<double> &out) const {
out.resize(Nrow_*Ncol_);
memcpy(out.data(), data_, out.size()*sizeof(double));
}
void Matrix::chol(){
#ifndef LMRG_CHECK_OFF
if (Nrow_ != Ncol_) {
throw string("ERROR: matrix has to be symmetric for Cholesky decomposition");
}
if (Nrow_ > INT_MAX) {
throw string("ERROR: matrix dimension too big to safely convert to int in in-place Cholesky decomposition");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
int info = 0;
char tri = 'L';
int N = static_cast<int>(Nrow_); // conversion should be OK: magnitude of Nrow_ checked in the constructor
dpotrf_(&tri, &N, data_, &N, &info);
if (info < 0) {
throw string("ERROR: illegal element in in-place Cholesky decomposition");
} else if (info > 0) {
throw string("ERROR: matrix is not positive definite in in-place Cholesky decomposition");
}
}
void Matrix::chol(Matrix &out) const {
#ifndef LMRG_CHECK_OFF
if (Nrow_ != Ncol_) {
throw string("ERROR: matrix has to be symmetric for Cholesky decomposition");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
if ((Nrow_ != out.Nrow_) || (Ncol_ != out.Ncol_)) {
out.resize(Nrow_, Ncol_);
}
memcpy(out.data_, data_, (Nrow_ * Ncol_)*sizeof(double));
int info = 0;
char tri = 'L';
int N = static_cast<int>(Nrow_); // conversion should be safe: Nrow_ magnitude checked during construction
dpotrf_(&tri, &N, out.data_, &N, &info);
if (info < 0) {
throw string("ERROR: illegal matrix element in copy Cholesky decomposition");
} else if (info > 0) {
throw string("ERROR: matrix is not positive definite in copy Cholesky decomposition");
}
}
void Matrix::cholInv(){
#ifndef LMRG_CHECK_OFF
if (Nrow_ != Ncol_) {
throw string("ERROR: matrix has to be symmetric for Cholesky inversion");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
int info = 0;
char tri = 'L';
int N = static_cast<int>(Nrow_); // conversion should be safe: Nrow_ magnitude checked during construction
dpotri_(&tri, &N, data_, &N, &info);
if (info < 0) {
throw string("ERROR: illegal matrix element in-place Cholesky inversion");
} else if (info > 0) {
throw string("ERROR: a diagonal element of the matrix is zero. Cannot complete in-place Cholesky inversion");
}
// copying the lower triangle to the upper
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
for (size_t jCol = 0; jCol < iRow; jCol++) {
data_[Nrow_*iRow + jCol] = data_[Nrow_*jCol + iRow];
}
}
}
void Matrix::cholInv(Matrix &out) const {
#ifndef LMRG_CHECK_OFF
if (Nrow_ != Ncol_) {
throw string("ERROR: matrix has to be square for Cholesky inversion");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
if ((Nrow_ != out.Nrow_) || (Ncol_ != out.Ncol_)) {
out.resize(Nrow_, Ncol_);
}
memcpy(out.data_, data_, (Nrow_ * Ncol_)*sizeof(double));
int info = 0;
char tri = 'L';
int N = static_cast<int>(Nrow_); // safe to convert: Nrow_ checked at construction
dpotri_(&tri, &N, out.data_, &N, &info);
if (info < 0) {
throw string("ERROR: illegal matrix element in copy Cholesky inversion");
} else if (info > 0) {
throw string("ERROR: a diagonal element of the matrix is zero. Cannot complete copy Cholesky inversion");
}
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
for (size_t jCol = 0; jCol < iRow; jCol++) {
out.data_[Nrow_*iRow + jCol] = out.data_[Nrow_*jCol + iRow];
}
}
}
void Matrix::svd(Matrix &U, vector<double> &s){
#ifndef LMRG_CHECK_OFF
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
if ((Nrow_ != U.Nrow_) || (U.Nrow_ != U.Ncol_)) {
U.resize(Nrow_, Nrow_);
}
if (s.size() < Ncol_) {
s.resize(Ncol_, 0.0);
}
int Nvt = 1;
vector<double>vt(1, 0.0);
int resSVD = 0;
int Nw = -1; // set this to pre-run dgesvd_ for calculation of workspace size
vector<double>workArr(1, 0.0);
char jobu = 'A';
char jobvt = 'N';
// the following casts are safe because dimensions are checked at construction
int Nr = static_cast<int>(Nrow_);
int Nc = static_cast<int>(Ncol_);
// first calculate working space
dgesvd_(&jobu, &jobvt, &Nr, &Nc, data_, &Nr, s.data(), U.data_, &Nr, vt.data(), &Nvt, workArr.data(), &Nw, &resSVD);
Nw = workArr[0];
workArr.resize(Nw, 0.0);
dgesvd_(&jobu, &jobvt, &Nr, &Nc, data_, &Nr, s.data(), U.data_, &Nr, vt.data(), &Nvt, workArr.data(), &Nw, &resSVD);
workArr.resize(0);
if (resSVD < 0) {
throw string("ERROR: illegal matrix element in SVD");
} else if (resSVD > 0){
throw string("ERROR: DBDSQR did not converge in SVD");
}
}
void Matrix::svdSafe(Matrix &U, vector<double> &s) const {
#ifndef LMRG_CHECK_OFF
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
if ((Nrow_ != U.Nrow_) || (U.Nrow_ != U.Ncol_)) {
U.resize(Nrow_, Nrow_);
}
if (s.size() < Ncol_) {
s.resize(Ncol_, 0.0);
}
int Nvt = 1;
vector<double>vt(1, 0.0);
int resSVD = 0;
int Nw = -1; // set this to pre-run dgesvd_ for calculation of workspace size
vector<double>workArr(1, 0.0);
char jobu = 'A';
char jobvt = 'N';
// the folloeing casts are safe because the dimensions are checked at construction
int Nr = static_cast<int>(Nrow_);
int Nc = static_cast<int>(Ncol_);
// first calculate working space
dgesvd_(&jobu, &jobvt, &Nr, &Nc, dataCopy, &Nr, s.data(), U.data_, &Nr, vt.data(), &Nvt, workArr.data(), &Nw, &resSVD);
Nw = workArr[0];
workArr.resize(Nw, 0.0);
dgesvd_(&jobu, &jobvt, &Nr, &Nc, dataCopy, &Nr, s.data(), U.data_, &Nr, vt.data(), &Nvt, workArr.data(), &Nw, &resSVD);
workArr.resize(0);
if (resSVD < 0) {
throw string("ERROR: illegal matrix element in safe SVD");
exit(14);
} else if (resSVD > 0){
throw string("ERROR: DBDSQR did not converge in safe SVD");
}
delete [] dataCopy;
}
void Matrix::eigen(const char &tri, Matrix &U, vector<double> &lam){
#ifndef LMRG_CHECK_OFF
if (Nrow_ != Ncol_) {
throw string("ERROR: matrix has to be at least square in eigen()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
// test the output size and adjust if necessary
if ((Ncol_ > U.Nrow_) || (Ncol_ > U.Ncol_)) {
U.resize(Ncol_, Ncol_);
}
if (Ncol_ > lam.size()) {
lam.resize(Ncol_, 0.0);
}
char jobz = 'V'; // computing eigenvectors
char range = 'A'; // doing all of them
char uplo;
if (tri == 'u') {
uplo = 'U';
} else if (tri == 'l'){
uplo = 'L';
} else {
throw string("ERROR: unknown triangle indicator in eigen()");
}
// the following casts are safe because Nrow_ magnitude is checked at construction
int N = static_cast<int>(Nrow_);
int lda = static_cast<int>(Nrow_);
// placeholder variables. Not referenced since we are computing all eigenvectors
double vl = 0.0;
double vu = 0.0;
int il = 0;
int iu = 0;
double abstol = sqrt(numeric_limits<double>::epsilon()); // absolute tolerance. Shouldn't be too close to epsilon since I don't need very precise estimation of small eigenvalues
int M = N;
int ldz = N;
vector<int> isuppz(2*M, 0);
vector<double> work(1, 0.0); // workspace; size will be determined
int lwork = -1; // to start; this lets us determine workspace size
vector<int> iwork(1, 0); // integer workspace; size to be calculated
int liwork = -1; // to start; this lets us determine integer workspace size
int info = 0;
dsyevr_(&jobz, &range, &uplo, &N, data_, &lda, &vl, &vu, &il, &iu, &abstol, &M, lam.data(), U.data_, &ldz, isuppz.data(), work.data(), &lwork, iwork.data(), &liwork, &info);
lwork = work[0];
work.resize(static_cast<size_t>(lwork), 0.0);
liwork = iwork[0];
iwork.resize(static_cast<size_t>(liwork), 0);
// run the actual estimation
dsyevr_(&jobz, &range, &uplo, &N, data_, &lda, &vl, &vu, &il, &iu, &abstol, &M, lam.data(), U.data_, &ldz, isuppz.data(), work.data(), &lwork, iwork.data(), &liwork, &info);
// set tiny eigenvalues to exactly zero
for (auto &l : lam) {
if (fabs(l) <= abstol) {
l = 0.0;
}
}
}
void Matrix::eigen(const char &tri, const size_t &n, Matrix &U, vector<double> &lam){
#ifndef LMRG_CHECK_OFF
if (Nrow_ != Ncol_) {
throw string("ERROR: matrix has to be at least square in eigen()");
}
if (Nrow_ < n) {
throw string("ERROR: the input number of eigenvalues greater than matrix dimensions");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
if (Nrow_ == n) { // if we are doing all of them, just run regular eigen()
Matrix::eigen(tri, U, lam);
return;
}
char jobz = 'V'; // computing eigenvectors
char range = 'I'; // doing some of them
char uplo;
if (tri == 'u') {
uplo = 'U';
} else if (tri == 'l'){
uplo = 'L';
} else {
throw string("ERROR: unknown triangle indicator in eigen()");
}
int N = static_cast<int>(Nrow_);
int lda = static_cast<int>(Nrow_);
// placeholder variables. Not referenced since we are computing a certain number of eigenvectors, not based on the values of the eigenvalues
double vl = 0.0;
double vu = 0.0;
int il = N - static_cast<int>(n) + 1; // looks like the count base-1
int iu = N; // do all the remaining eigenvalues
double abstol = sqrt(numeric_limits<double>::epsilon()); // absolute tolerance. Shouldn't be too close to epsilon since I don't need very precise estimation of small eigenvalues
int M = iu - il + 1;
int ldz = N;
// test the output size and adjust if necessary
if ((Nrow_ > U.Nrow_) || (static_cast<size_t>(M) > U.Ncol_)) {
U.resize(Ncol_, static_cast<size_t>(M));
}
if (static_cast<size_t>(M) > lam.size()) {
lam.resize(static_cast<size_t>(M), 0.0);
}
vector<int> isuppz(2*M, 0);
vector<double> work(1, 0.0); // workspace; size will be determined
int lwork = -1; // to start; this lets us determine workspace size
vector<int> iwork(1, 0); // integer workspace; size to be calculated
int liwork = -1; // to start; this lets us determine integer workspace size
int info = 0;
dsyevr_(&jobz, &range, &uplo, &N, data_, &lda, &vl, &vu, &il, &iu, &abstol, &M, lam.data(), U.data_, &ldz, isuppz.data(), work.data(), &lwork, iwork.data(), &liwork, &info);
lwork = work[0];
work.resize(static_cast<size_t>(lwork), 0.0);
liwork = iwork[0];
iwork.resize(static_cast<size_t>(liwork), 0);
// run the actual estimation
dsyevr_(&jobz, &range, &uplo, &N, data_, &lda, &vl, &vu, &il, &iu, &abstol, &M, lam.data(), U.data_, &ldz, isuppz.data(), work.data(), &lwork, iwork.data(), &liwork, &info);
// set tiny eigenvalues to exactly zero
for (auto &l : lam) {
if (fabs(l) <= abstol) {
l = 0.0;
}
}
}
void Matrix::eigenSafe(const char &tri, Matrix &U, vector<double> &lam){
#ifndef LMRG_CHECK_OFF
if (Nrow_ != Ncol_) {
throw string("ERROR: matrix has to be at least square in eigen()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
// test the output size and adjust if necessary
if ((Ncol_ > U.Nrow_) || (Ncol_ > U.Ncol_)) {
U.resize(Ncol_, Ncol_);
}
if (Ncol_ > lam.size()) {
lam.resize(Ncol_, 0.0);
}
char jobz = 'V'; // computing eigenvectors
char range = 'A'; // doing all of them
char uplo;
if (tri == 'u') {
uplo = 'U';
} else if (tri == 'l'){
uplo = 'L';
} else {
throw string("ERROR: unknown triangle indicator in eigen()");
}
int N = static_cast<int>(Nrow_);
int lda = static_cast<int>(Nrow_);
// placeholder variables. Not referenced since we are computing all eigenvectors
double vl = 0.0;
double vu = 0.0;
int il = 0;
int iu = 0;
double abstol = sqrt(numeric_limits<double>::epsilon()); // absolute tolerance. Shouldn't be too close to epsilon since I don't need very precise estimation of small eigenvalues
int M = N;
int ldz = N;
vector<int> isuppz(2*M, 0);
vector<double> work(1, 0.0); // workspace; size will be determined
int lwork = -1; // to start; this lets us determine workspace size
vector<int> iwork(1, 0); // integer workspace; size to be calculated
int liwork = -1; // to start; this lets us determine integer workspace size
int info = 0;
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
dsyevr_(&jobz, &range, &uplo, &N, dataCopy, &lda, &vl, &vu, &il, &iu, &abstol, &M, lam.data(), U.data_, &ldz, isuppz.data(), work.data(), &lwork, iwork.data(), &liwork, &info);
lwork = work[0];
work.resize(static_cast<size_t>(lwork), 0.0);
liwork = iwork[0];
iwork.resize(static_cast<size_t>(liwork), 0);
// run the actual estimation
dsyevr_(&jobz, &range, &uplo, &N, dataCopy, &lda, &vl, &vu, &il, &iu, &abstol, &M, lam.data(), U.data_, &ldz, isuppz.data(), work.data(), &lwork, iwork.data(), &liwork, &info);
delete [] dataCopy;
// set tiny eigenvalues to exactly zero
for (auto &l : lam) {
if (fabs(l) <= abstol) {
l = 0.0;
}
}
}
void Matrix::eigenSafe(const char &tri, const size_t &n, Matrix &U, vector<double> &lam){
#ifndef LMRG_CHECK_OFF
if (Nrow_ != Ncol_) {
throw string("ERROR: matrix has to be at least square in eigen()");
}
if (Nrow_ < n) {
throw string("ERROR: the input number of eigenvalues greater than matrix dimensions");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
if (Nrow_ == n) { // if we are doing all of them, just run regular eigen()
Matrix::eigenSafe(tri, U, lam);
return;
}
char jobz = 'V'; // computing eigenvectors
char range = 'I'; // doing some of them
char uplo;
if (tri == 'u') {
uplo = 'U';
} else if (tri == 'l'){
uplo = 'L';
} else {
throw string("ERROR: unknown triangle indicator in eigen()");
}
int N = static_cast<int>(Nrow_);
int lda = static_cast<int>(Nrow_);
// placeholder variables. Not referenced since we are computing a certain number of eigenvectors, not based on the values of the eigenvalues
double vl = 0.0;
double vu = 0.0;
int il = N - static_cast<int>(n) + 1; // looks like the count base-1
int iu = N; // do all the remaining eigenvalues
double abstol = sqrt(numeric_limits<double>::epsilon()); // absolute tolerance. Shouldn't be too close to epsilon since I don't need very precise estimation of small eigenvalues
int M = iu - il + 1;
int ldz = N;
// test the output size and adjust if necessary
if ((Nrow_ > U.Nrow_) || (static_cast<size_t>(M) > U.Ncol_)) {
U.resize(Ncol_, static_cast<size_t>(M));
}
if (static_cast<size_t>(M) > lam.size()) {
lam.resize(static_cast<size_t>(M), 0.0);
}
vector<int> isuppz(2*M, 0);
vector<double> work(1, 0.0); // workspace; size will be determined
int lwork = -1; // to start; this lets us determine workspace size
vector<int> iwork(1, 0); // integer workspace; size to be calculated
int liwork = -1; // to start; this lets us determine integer workspace size
int info = 0;
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
dsyevr_(&jobz, &range, &uplo, &N, dataCopy, &lda, &vl, &vu, &il, &iu, &abstol, &M, lam.data(), U.data_, &ldz, isuppz.data(), work.data(), &lwork, iwork.data(), &liwork, &info);
lwork = work[0];
work.resize(static_cast<size_t>(lwork), 0.0);
liwork = iwork[0];
iwork.resize(static_cast<size_t>(liwork), 0);
// run the actual estimation
dsyevr_(&jobz, &range, &uplo, &N, dataCopy, &lda, &vl, &vu, &il, &iu, &abstol, &M, lam.data(), U.data_, &ldz, isuppz.data(), work.data(), &lwork, iwork.data(), &liwork, &info);
delete [] dataCopy;
// set tiny eigenvalues to exactly zero
for (auto &l : lam) {
if (fabs(l) <= abstol) {
l = 0.0;
}
}
}
void Matrix::premultZ(const Matrix &Z){
#ifndef LMRG_CHECK_OFF
if (Z.getNcols() != Nrow_) {
throw string("ERROR: Incompatible dimensions between Z and M in premultZ()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
exit(24);
}
#endif
// build the vector that stores all the new row IDs for each old row (represented by columns of Z)
vector< vector<size_t> > fac(Z.getNcols());
for (size_t oldRow = 0; oldRow < Z.getNcols(); oldRow++) {
for (size_t newRow = 0; newRow < Z.getNrows(); newRow++) {
if (Z.getElem(newRow, oldRow) == 1.0) {
fac[oldRow].push_back(newRow);
} else if (Z.getElem(newRow, oldRow) != 0.0) {
throw string("ERROR: design matrix can only have elements 1 or 0 in premultZ()");
}
}
}
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
data_ = new double[Z.getNrows() * Ncol_];
for (size_t oldRow = 0; oldRow < Z.getNcols(); oldRow++) {
// going through all the rows of Z that correspond to the old row of M
for (auto &f : fac[oldRow]) {
//copying the row of M
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
data_[Z.getNrows()*jCol + f] = dataCopy[Nrow_*jCol + oldRow];
}
}
}
Nrow_ = Z.getNrows();
delete [] dataCopy;
}
void Matrix::premultZ(const Matrix &Z, Matrix &out) const {
#ifndef LMRG_CHECK_OFF
if (Z.getNcols() != Nrow_) {
throw string("ERROR: Incompatible dimensions between Z and M in premultZ()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
// build the vector that stores all the new row IDs for each old row (represented by columns of Z)
vector< vector<size_t> > fac(Z.getNcols());
for (size_t oldRow = 0; oldRow < Z.getNcols(); oldRow++) {
for (size_t newRow = 0; newRow < Z.getNrows(); newRow++) {
if (Z.getElem(newRow, oldRow) == 1.0) {
fac[oldRow].push_back(newRow);
} else if (Z.getElem(newRow, oldRow) != 0.0) {
throw string("ERROR: design matrix can only have elements 1 or 0 in premultZ()");
}
}
}
if ((Z.getNrows() != out.getNrows()) || (Ncol_ != out.getNcols())) {
out.resize(Z.getNrows(), Ncol_);
}
for (size_t oldRow = 0; oldRow < Z.getNcols(); oldRow++) {
// going through all the rows of Z that correspond to the old row of M
for (auto &f : fac[oldRow]) {
// copying the row of M
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
out.data_[Z.getNrows()*jCol + f] = data_[Nrow_*jCol + oldRow];
}
}
}
}
void Matrix::premultZt(const Matrix &Z){
#ifndef LMRG_CHECK_OFF
if (Z.getNrows() != Nrow_) {
throw string("ERROR: Incompatible dimensions between Z and M in premultZt()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
// build the vector that stores all the new row IDs for each old row (represented by columns of Z)
vector< vector<size_t> > fac(Z.getNcols());
for (size_t oldRow = 0; oldRow < Z.getNcols(); oldRow++) {
for (size_t newRow = 0; newRow < Z.getNrows(); newRow++) {
if (Z.getElem(newRow, oldRow) == 1.0) {
fac[oldRow].push_back(newRow);
} else if (Z.getElem(newRow, oldRow) != 0.0) {
throw string("ERROR: design matrix can only have elements 1 or 0 in premultZt()");
}
}
}
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
data_ = new double[Z.getNcols() * Ncol_](); // value-initializing for summing to work
for (size_t newRow = 0; newRow < Z.getNcols(); newRow++) {
// going through all the rows of Z that correspond to the new (summed) row of M
for (auto &f : fac[newRow]) {
// summing the rows of M within the group defined by rows of Z
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
data_[Z.getNcols()*jCol + newRow] += dataCopy[Nrow_*jCol + f];
}
}
}
Nrow_ = Z.getNcols();
delete [] dataCopy;
}
void Matrix::premultZt(const Matrix &Z, Matrix &out) const {
#ifndef LMRG_CHECK_OFF
if (Z.getNrows() != Nrow_) {
throw string("ERROR: Incompatible dimensions between Z and M in premultZt()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
// build the vector that stores all the new row IDs for each old row (represented by columns of Z)
vector< vector<size_t> > fac(Z.getNcols());
for (size_t oldRow = 0; oldRow < Z.getNcols(); oldRow++) {
for (size_t newRow = 0; newRow < Z.getNrows(); newRow++) {
if (Z.getElem(newRow, oldRow) == 1.0) {
fac[oldRow].push_back(newRow);
} else if (Z.getElem(newRow, oldRow) != 0.0) {
throw string("ERROR: design matrix can only have elements 1 or 0 in premultZt()");
}
}
}
if ((Z.getNcols() != out.getNrows()) || (Ncol_ != out.getNcols())) {
out.resize(Z.getNcols(), Ncol_); // resizing already sets all to 0.0
} else {
fill(out.data_, out.data_ + (out.Ncol_*out.Nrow_), 0.0);
}
for (size_t newRow = 0; newRow < Z.getNcols(); newRow++) {
// going through all the rows of Z that correspond to the new row of M
for (auto &f : fac[newRow]) {
// summing the rows of M within the group defined by rows of Z
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
out.data_[Z.getNcols()*jCol + newRow] += data_[Nrow_*jCol + f];
}
}
}
}
void Matrix::postmultZ(const Matrix &Z){
#ifndef LMRG_CHECK_OFF
if (Z.getNrows() != Ncol_) {
throw string("ERROR: Incompatible dimensions between Z and M in postmultZ()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
// build the vector that stores all the old row IDs for each new row
vector< vector<size_t> > fac(Z.getNcols());
for (size_t newCol = 0; newCol < Z.getNcols(); newCol++) {
for (size_t oldRow = 0; oldRow < Z.getNrows(); oldRow++) {
if (Z.getElem(oldRow, newCol) == 1.0) {
fac[newCol].push_back(oldRow);
} else if (Z.getElem(oldRow, newCol) != 0.0) {
throw string("ERROR: design matrix can only have elements 1 or 0 in postmultZ()");
}
}
}
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
data_ = new double[Nrow_ * Z.getNcols()](); // value initialization for sums to work
for (size_t newCol = 0; newCol < Z.getNcols(); newCol++) {
// going through all the rows of Z that correspond to the new column of M
for (auto &f : fac[newCol]) {
// summing the rows of M within the group defined by rows of Z
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
data_[Z.getNcols()*newCol + iRow] += dataCopy[Nrow_*f + iRow];
}
}
}
Ncol_ = Z.getNcols();
delete [] dataCopy;
}
void Matrix::postmultZ(const Matrix &Z, Matrix &out) const{
#ifndef LMRG_CHECK_OFF
if (Z.getNrows() != Ncol_) {
throw string("ERROR: Incompatible dimensions between Z and M in postmultZ()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
// build the vector that stores all the old column IDs for each new column
vector< vector<size_t> > fac(Z.getNcols());
for (size_t newCol = 0; newCol < Z.getNcols(); newCol++) {
for (size_t oldRow = 0; oldRow < Z.getNrows(); oldRow++) {
if (Z.getElem(oldRow, newCol) == 1.0) {
fac[newCol].push_back(oldRow);
} else if (Z.getElem(oldRow, newCol) != 0.0) {
throw string("ERROR: design matrix can only have elements 1 or 0 in postmultZ()");
}
}
}
if ((Z.getNcols() != out.getNcols()) || (Nrow_ != out.getNrows())) {
out.resize(Nrow_, Z.getNcols());
}
for (size_t newCol = 0; newCol < Z.getNcols(); newCol++) {
// going through all the rows of Z that correspond to the new column of M
for (auto &f : fac[newCol]) {
// summing the rows of M within the group defined by rows of Z
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
out.data_[Z.getNcols()*newCol + iRow] += data_[Nrow_*f + iRow];
}
}
}
}
void Matrix::postmultZt(const Matrix &Z){
#ifndef LMRG_CHECK_OFF
if (Z.getNcols() != Ncol_) { // Z not transposed
throw string("ERROR: Incompatible dimensions between Z and M in postmultZ()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
// build the vector that stores all the new row IDs for each old row (represented by columns of Z)
vector< vector<size_t> > fac(Z.getNcols());
for (size_t oldRow = 0; oldRow < Z.getNcols(); oldRow++) {
for (size_t newRow = 0; newRow < Z.getNrows(); newRow++) {
if (Z.getElem(newRow, oldRow) == 1.0) {
fac[oldRow].push_back(newRow);
} else if (Z.getElem(newRow, oldRow) != 0.0) {
throw string("ERROR: design matrix can only have elements 1 or 0 in postmultZ()");
}
}
}
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
data_ = new double[Z.getNrows() * Nrow_];
for (size_t oldCol = 0; oldCol < Z.getNcols(); oldCol++) {
// going through all the rows of Z that correspond to the old column of M
for (auto &f : fac[oldCol]) {
// copying the column of M
memcpy(data_ + f*Nrow_, dataCopy + oldCol*Nrow_, Nrow_*sizeof(double));
}
}
Ncol_ = Z.getNrows();
delete [] dataCopy;
}
void Matrix::postmultZt(const Matrix &Z, Matrix &out) const{
#ifndef LMRG_CHECK_OFF
if (Z.getNcols() != Ncol_) { // Z not transposed
throw string("ERROR: Incompatible dimensions between Z and M in postmultZ()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
// build the vector that stores all the new row IDs for each old row (represented by columns of Z)
vector< vector<size_t> > fac(Z.getNcols());
for (size_t oldRow = 0; oldRow < Z.getNcols(); oldRow++) {
for (size_t newRow = 0; newRow < Z.getNrows(); newRow++) {
if (Z.getElem(newRow, oldRow) == 1.0) {
fac[oldRow].push_back(newRow);
} else if (Z.getElem(newRow, oldRow) != 0.0) {
throw string("ERROR: design matrix can only have elements 1 or 0 in postmultZ()");
}
}
}
// careful: Z is not transposed, but will be constructing MZ^t
if ((Z.getNrows() != out.getNcols()) || (Nrow_ != out.getNrows())) {
out.resize(Z.getNrows(), Nrow_);
}
for (size_t oldCol = 0; oldCol < Z.getNcols(); oldCol++) {
// going through all the rows of Z that correspond to the old column of M
for (auto &f : fac[oldCol]) {
// copying the column of M
memcpy(out.data_ + f*Nrow_, data_ + oldCol*Nrow_, Nrow_*sizeof(double));
}
}
}
void Matrix::syrk(const char &tri, const double &alpha, const double &beta, Matrix &C) const {
#ifndef LMRG_CHECK_OFF
if ((Ncol_ > INT_MAX) || (Nrow_ > INT_MAX)) {
throw string("ERROR: at least one matrix dimension too big to safely convert to int in syrk()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
if ((C.getNrows() != Ncol_) || (C.getNcols() != Ncol_)) {
C.resize(Ncol_, Ncol_);
}
// integer parameters
const int n = static_cast<int>(Ncol_);
const int k = static_cast<int>(Nrow_);
const int lda = static_cast<int>(Nrow_);
const int ldc = static_cast<int>(Ncol_);
// transpose token
const char trans = 't';
dsyrk_(&tri, &trans, &n, &k, &alpha, data_, &lda, &beta, C.data_, &ldc);
}
void Matrix::tsyrk(const char &tri, const double &alpha, const double &beta, Matrix &C) const {
#ifndef LMRG_CHECK_OFF
if ((Ncol_ > INT_MAX) || (Nrow_ > INT_MAX)) {
throw string("ERROR: at least one matrix dimension too big to safely convert to int in tsyrk()");
}
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
#endif
if ((C.getNrows() != Nrow_) || (C.getNcols() != Nrow_)) {
C.resize(Nrow_, Nrow_);
}
// integer parameters
const int n = static_cast<int>(Nrow_);
const int k = static_cast<int>(Ncol_);
const int lda = static_cast<int>(Nrow_);
const int ldc = static_cast<int>(Nrow_);
// transpose token
const char trans = 'n';
dsyrk_(&tri, &trans, &n, &k, &alpha, data_, &lda, &beta, C.data_, &ldc);
}
void Matrix::symm(const char &tri, const char &side, const double &alpha, const Matrix &symA, const double &beta, Matrix &C) const{
#ifndef LMRG_CHECK_OFF
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
if (symA.getNrows() != symA.getNcols()) {
throw string("ERROR: symmetric matrix symA has to be square in symm()");
}
if (side == 'l') {
if ((Nrow_ > INT_MAX) || (symA.getNcols() > INT_MAX)) {
throw string("ERROR: at least one matrix dimension too big to safely convert to int in symm()");
}
} else if (side == 'r') {
if ((symA.getNrows() > INT_MAX) || (Ncol_ > INT_MAX)) {
throw string("ERROR: at least one matrix dimension too big to safely convert to int in symm()");
}
}
if ((symA.getNcols() != Nrow_) && (side == 'l')) { // AB
throw string("ERROR: Incompatible dimensions between B and A in symm()");
}
if ((symA.getNrows() != Ncol_) && (side == 'r')) { // BA
throw string("ERROR: Incompatible dimensions between A and B in symm()");
}
#endif
int m;
int n;
if (side == 'l') { // AB
m = static_cast<int>(symA.getNrows());
n = static_cast<int>(Ncol_);
if ((C.getNrows() != symA.getNrows()) || (C.getNcols() != Ncol_)) {
C.resize(symA.getNrows(), Ncol_);
}
} else if (side == 'r') { // BA
m = static_cast<int>(Nrow_);
n = static_cast<int>(symA.getNcols());
if ((C.getNrows() != Nrow_) || (C.getNcols() != symA.getNcols())) {
C.resize(Nrow_, symA.getNcols());
}
} else {
throw string("ERROR: unknown side indicator in symm()");
}
// final integer parameters
const int lda = static_cast<int>(symA.getNrows());
const int ldb = static_cast<int>(Nrow_);
const int ldc = m; // for clarity
dsymm_(&side, &tri, &m, &n, &alpha, symA.data_, &lda, data_, &ldb, &beta, C.data_, &ldc);
}
void Matrix::symc(const char &tri, const double &alpha, const Matrix &X, const size_t &xCol, const double &beta, vector<double> &y) const{
#ifndef LMRG_CHECK_OFF
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
if (Ncol_ != Nrow_) {
throw string("ERROR: symmetric matrix (current object) has to be square in symc()");
}
if ((Ncol_ > INT_MAX) || (X.getNrows() > INT_MAX)) {
throw string("ERROR: at least one matrix dimension too big to safely convert to int in symc()");
}
if (X.getNrows() != Ncol_) {
throw string("ERROR: Incompatible dimensions between A and X in symc()");
}
if (xCol >= X.getNcols()) {
throw string("ERROR: column index out of range for matrix X in symc()");
}
#endif
if (y.size() < Nrow_) {
y.resize(Nrow_);
}
// BLAS routine constants
const int n = static_cast<int>(Nrow_);
const int lda = n;
const int incx = 1;
const int incy = 1;
const double *xbeg = X.data_ + xCol*(X.Nrow_); // offset to the column of interest
dsymv_(&tri, &n, &alpha, data_, &lda, xbeg, &incx, &beta, y.data(), &incy);
}
void Matrix::gemm(const bool &transA, const double &alpha, const Matrix &A, const bool &transB, const double &beta, Matrix &C) const{
#ifndef LMRG_CHECK_OFF
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
if ((A.getNcols() > INT_MAX) || (A.getNrows() > INT_MAX)) {
throw string("ERROR: at least one A matrix dimension too big to safely convert to int in gemm()");
}
if (transB) {
if (Nrow_ > INT_MAX) {
throw string("ERROR: at least one B matrix dimension too big to safely convert to int in gemm()");
}
} else {
if (Ncol_ > INT_MAX) {
throw string("ERROR: at least one B matrix dimension too big to safely convert to int in gemm()");
}
}
if (transA) {
if (transB && (A.getNrows() != Ncol_)) {
throw string("ERROR: Incompatible dimensions between A^T and B^T in gemm()");
} else if (!transB && (A.getNrows() != Nrow_)){
throw string("ERROR: Incompatible dimensions between A^T and B in gemm()");
}
} else {
if (transB && (A.getNcols() != Ncol_)) {
throw string("ERROR: Incompatible dimensions between A and B^T in gemm()");
exit(16);
} else if (!transB && (A.getNcols() != Nrow_)) {
throw string("ERROR: Incompatible dimensions between A and B in gemm()");
}
}
#endif
char tAtok;
char tBtok;
int m;
int k;
int n;
if (transA) {
tAtok = 't';
m = static_cast<int>(A.getNcols());
k = static_cast<int>(A.getNrows());
if (transB) {
tBtok = 't';
n = static_cast<int>(Nrow_);
if ((C.getNrows() != A.getNcols()) || (C.getNcols() != Nrow_)) {
C.resize(A.getNcols(), Nrow_);
}
} else {
tBtok = 'n';
n = static_cast<int>(Ncol_);
if ((C.getNrows() != A.getNcols()) || (C.getNcols() != Ncol_)) {
C.resize(A.getNcols(), Ncol_);
}
}
} else {
tAtok = 'n';
m = static_cast<int>(A.getNrows());
k = static_cast<int>(A.getNcols());
if (transB) {
tBtok = 't';
n = static_cast<int>(Nrow_);
if ((C.getNrows() != A.getNrows()) || (C.getNcols() != Nrow_)) {
C.resize(A.getNrows(), Nrow_);
}
} else {
tBtok = 'n';
n = static_cast<int>(Ncol_);
if ((C.getNrows() != A.getNrows()) || (C.getNcols() != Ncol_)) {
C.resize(A.getNrows(), Ncol_);
}
}
}
const int lda = (transA ? k : m);
const int ldb = (transB ? n : k);
const int ldc = m;
dgemm_(&tAtok, &tBtok, &m, &n, &k, &alpha, A.data_, &lda, data_, &ldb, &beta, C.data_, &ldc);
}
void Matrix::gemc(const bool &trans, const double &alpha, const Matrix &X, const size_t &xCol, const double &beta, vector<double> &y) const {
#ifndef LMRG_CHECK_OFF
if ( (Nrow_ == 0) || (Ncol_ == 0) ) {
throw string("ERROR: one of the dimensions is zero");
}
if (trans) {
if ((Nrow_ > INT_MAX) || (X.getNrows() > INT_MAX)) {
throw string("ERROR: at least one matrix dimension too big to safely convert to int in gemc()");
}
if (Nrow_ != X.getNrows()) {
throw string("ERROR: Incompatible dimensions between A and X in gemc()");
}
} else {
if ((Ncol_ > INT_MAX) || (X.getNrows() > INT_MAX)) {
throw string("ERROR: at least one matrix dimension too big to safely convert to int in gemc()");
}
if (Ncol_ != X.getNrows()) {
throw string("ERROR: Incompatible dimensions between A and X in gemc()");
}
}
if (xCol >= X.getNcols()) {
throw string("ERROR: column index out of range for matrix X in gemc()");
}
#endif
if (y.size() < Nrow_) {
y.resize(Nrow_);
}
// Establish constants for DGEMV
const char tTok = (trans ? 't' : 'n');
const int m = static_cast<int>(Nrow_);
const int n = static_cast<int>(Ncol_);
const int lda = m;
const int incx = 1;
const int incy = 1;
const double *xbeg = X.data_ + xCol*(X.Nrow_); // offset to the column of interest
dgemv_(&tTok, &m, &n, &alpha, data_, &lda, xbeg, &incx, &beta, y.data(), &incy);
}
Matrix Matrix::colShuffle() const{
Matrix out(Nrow_, Ncol_);
RanDraw rng;
vector<uint64_t> ind = rng.shuffleUint(Ncol_); // shuffled column index
for (size_t j = 0; j < Ncol_; ++j) {
for (size_t i = 0; i < Nrow_; ++i) {
out.setElem(i, ind[j], this->getElem(i, j));
}
}
return out;
}
Matrix Matrix::rowShuffle() const{
Matrix out(Nrow_, Ncol_);
RanDraw rng;
vector<uint64_t> ind = rng.shuffleUint(Nrow_); // shuffled column index
for (size_t j = 0; j < Ncol_; ++j) {
for (size_t i = 0; i < Nrow_; ++i) {
out.setElem(ind[i], j, this->getElem(i, j));
}
}
return out;
}
Matrix Matrix::operator*(const Matrix &m) const{
#ifndef LMRG_CHECK_OFF
if ((Nrow_ != m.Nrow_) || (Ncol_ != m.Ncol_)) {
throw string("ERROR: Incompatible dimensions between matrices in the Hadamard product");
}
#endif
Matrix res(*this);
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
res.data_[iElm] *= m.data_[iElm];
}
return res;
}
Matrix Matrix::operator*(const double &scal) const{
Matrix res(*this);
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
res.data_[iElm] *= scal;
}
return res;
}
Matrix Matrix::operator/(const Matrix &m) const{
#ifndef LMRG_CHECK_OFF
if ((Nrow_ != m.Nrow_) || (Ncol_ != m.Ncol_)) {
throw string("ERROR: Incompatible dimensions between matrices in the Hadamard product");
}
#endif
Matrix res(*this);
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
res.data_[iElm] /= m.data_[iElm];
}
return res;
}
Matrix Matrix::operator/(const double &scal) const{
Matrix res(*this);
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
res.data_[iElm] /= scal;
}
return res;
}
Matrix Matrix::operator+(const Matrix &m) const{
#ifndef LMRG_CHECK_OFF
if ((Nrow_ != m.Nrow_) || (Ncol_ != m.Ncol_)) {
throw string("ERROR: Incompatible dimensions between matrices in the Hadamard product");
}
#endif
Matrix res(*this);
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
res.data_[iElm] += m.data_[iElm];
}
return res;
}
Matrix Matrix::operator+(const double &scal) const{
Matrix res(*this);
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
res.data_[iElm] += scal;
}
return res;
}
Matrix Matrix::operator-(const Matrix &m) const{
#ifndef LMRG_CHECK_OFF
if ((Nrow_ != m.Nrow_) || (Ncol_ != m.Ncol_)) {
throw string("ERROR: Incompatible dimensions between matrices in the Hadamard product");
}
#endif
Matrix res(*this);
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
res.data_[iElm] -= m.data_[iElm];
}
return res;
}
Matrix Matrix::operator-(const double &scal) const{
Matrix res(*this);
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
res.data_[iElm] -= scal;
}
return res;
}
Matrix& Matrix::operator+=(const double &scal){
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
data_[iElm] += scal;
}
return *this;
}
Matrix& Matrix::operator*=(const double &scal){
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
data_[iElm] *= scal;
}
return *this;
}
Matrix& Matrix::operator-=(const double &scal){
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
data_[iElm] -= scal;
}
return *this;
}
Matrix& Matrix::operator/=(const double &scal){
for (size_t iElm = 0; iElm < Ncol_*Nrow_; iElm++) {
data_[iElm] /= scal;
}
return *this;
}
void Matrix::rowMeans(vector<double> &means) const{
if (means.size() < Nrow_) {
means.resize(Nrow_);
}
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
means[iRow] = 0.0; // in case something was in the vector passed to the function and resize did not erase it
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
// numerically stable recursive mean calculation. GSL does it this way.
means[iRow] += (data_[Nrow_*jCol + iRow] - means[iRow])/static_cast<double>(jCol + 1);
}
}
}
void Matrix::colMeans(vector<double> &means) const{
if (means.size() < Ncol_) {
means.resize(Ncol_);
}
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
means[jCol] = 0.0; // in case something was in the vector passed to the function and resize did not erase it
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
// numerically stable recursive mean calculation. GSL does it this way.
means[jCol] += (data_[Nrow_*jCol + iRow] - means[jCol])/static_cast<double>(iRow + 1);
}
}
}
void Matrix::rowSums(vector<double> &sums) const{
if (sums.size() < Nrow_) {
sums.resize(Nrow_);
}
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
sums[iRow] = 0.0; // in case something was in the vector passed to the function and resize did not erase it
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
// not necessarily mumerically stable. Revisit later
sums[iRow] += data_[Nrow_*jCol + iRow];
}
}
}
void Matrix::colSums(vector<double> &sums) const{
if (sums.size() < Ncol_) {
sums.resize(Ncol_);
}
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
sums[jCol] = 0.0; // in case something was in the vector passed to the function and resize did not erase it
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
// not necessarily mumerically stable. Revisit later
sums[jCol] += data_[Nrow_*jCol + iRow];
}
}
}
void Matrix::rowMultiply(const vector<double> &scalars){
#ifndef LMRG_CHECK_OFF
if (scalars.size() != Ncol_) {
throw string("ERROR: Vector of scalars has wrong length in rowMultiply(vector)");
}
#endif
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
data_[Nrow_*jCol + iRow] *= scalars[jCol];
}
}
}
void Matrix::rowMultiply(const double &scalar, const size_t &iRow){
#ifndef LMRG_CHECK_OFF
if (iRow >= Nrow_) {
throw string("ERROR: Row index out of bounds in rowMultiply(scalar)");
}
#endif
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
data_[Nrow_*jCol + iRow] *= scalar;
}
}
void Matrix::colMultiply(const vector<double> &scalars){
#ifndef LMRG_CHECK_OFF
if (scalars.size() != Nrow_) {
throw string("ERROR: Vector of scalars has wrong length in colMultiply(vector)");
}
#endif
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
data_[Nrow_*jCol + iRow] *= scalars[iRow];
}
}
}
void Matrix::colMultiply(const double &scalar, const size_t &jCol){
#ifndef LMRG_CHECK_OFF
if (jCol >= Ncol_) {
throw string("ERROR: Column index out of bounds in colMultiply(scalar)");
}
#endif
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
data_[Nrow_*jCol + iRow] *= scalar;
}
}
void Matrix::rowDivide(const vector<double> &scalars){
#ifndef LMRG_CHECK_OFF
if (scalars.size() != Ncol_) {
throw string("ERROR: Vector of scalars has wrong length in rowDivide(vector)");
}
#endif
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
data_[Nrow_*jCol + iRow] /= scalars[jCol];
}
}
}
void Matrix::rowDivide(const double &scalar, const size_t &iRow){
#ifndef LMRG_CHECK_OFF
if (iRow >= Nrow_) {
throw string("ERROR: Row index out of bounds in rowDivide(scalar)");
}
#endif
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
data_[Nrow_*jCol + iRow] /= scalar;
}
}
void Matrix::colDivide(const vector<double> &scalars){
#ifndef LMRG_CHECK_OFF
if (scalars.size() != Nrow_) {
throw string("ERROR: Vector of scalars has wrong length in colDivide(vector)");
}
#endif
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
data_[Nrow_*jCol + iRow] /= scalars[iRow];
}
}
}
void Matrix::colDivide(const double &scalar, const size_t &jCol){
#ifndef LMRG_CHECK_OFF
if (jCol >= Ncol_) {
throw string("ERROR: Column index out of bounds in colDivide(scalar)");
}
#endif
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
data_[Nrow_*jCol + iRow] /= scalar;
}
}
void Matrix::rowAdd(const vector<double> &scalars){
#ifndef LMRG_CHECK_OFF
if (scalars.size() != Ncol_) {
throw string("ERROR: Vector of scalars has wrong length in rowAdd(vector)");
}
#endif
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
data_[Nrow_*jCol + iRow] += scalars[jCol];
}
}
}
void Matrix::rowAdd(const double &scalar, const size_t &iRow){
#ifndef LMRG_CHECK_OFF
if (iRow >= Nrow_) {
throw string("ERROR: Row index out of bounds in rowAdd(scalar)");
}
#endif
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
data_[Nrow_*jCol + iRow] += scalar;
}
}
void Matrix::colAdd(const vector<double> &scalars){
#ifndef LMRG_CHECK_OFF
if (scalars.size() != Nrow_) {
throw string("ERROR: Vector of scalars has wrong length in colAdd(vector)");
}
#endif
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
data_[Nrow_*jCol + iRow] += scalars[iRow];
}
}
}
void Matrix::colAdd(const double &scalar, const size_t &jCol){
#ifndef LMRG_CHECK_OFF
if (jCol >= Ncol_) {
throw string("ERROR: Column index out of bounds in colAdd(scalar)");
}
#endif
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
data_[Nrow_*jCol + iRow] += scalar;
}
}
void Matrix::rowSub(const vector<double> &scalars){
#ifndef LMRG_CHECK_OFF
if (scalars.size() != Ncol_) {
throw string("ERROR: Vector of scalars has wrong length in rowSub(vector)");
}
#endif
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
data_[Nrow_*jCol + iRow] -= scalars[jCol];
}
}
}
void Matrix::rowSub(const double &scalar, const size_t &iRow){
#ifndef LMRG_CHECK_OFF
if (iRow >= Nrow_) {
throw string("ERROR: Row index out of bounds in rowSub(scalar)");
}
#endif
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
data_[Nrow_*jCol + iRow] -= scalar;
}
}
void Matrix::colSub(const vector<double> &scalars){
#ifndef LMRG_CHECK_OFF
if (scalars.size() != Nrow_) {
throw string("ERROR: Vector of scalars has wrong length in colSub(vector)");
}
#endif
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
data_[Nrow_*jCol + iRow] -= scalars[iRow];
}
}
}
void Matrix::colSub(const double &scalar, const size_t &jCol){
#ifndef LMRG_CHECK_OFF
if (jCol >= Ncol_) {
throw string("ERROR: Column index out of bounds in colSub(scalar)");
}
#endif
for (size_t iRow = 0; iRow < Nrow_; iRow++) {
data_[Nrow_*jCol + iRow] -= scalar;
}
}
void Matrix::appendCol(const Matrix &cols){
#ifndef LMRG_CHECK_OFF
if (Ncol_ > cols.Ncol_ + Ncol_) { // happens on wrap-around
throw string("ERROR: Number of columns too big to expand");
}
#endif
// if the other matrix is empty, do nothing
if ( (cols.Ncol_ == 0) || (cols.Nrow_ == 0) ) {
return;
}
if (this == &cols) { // self-appending
if (Ncol_ && Nrow_) {
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
data_ = new double[Nrow_ * 2 * Ncol_];
memcpy(data_, dataCopy, (Nrow_ * Ncol_)*sizeof(double));
memcpy(data_ + Nrow_*Ncol_, dataCopy, (Nrow_ * Ncol_)*sizeof(double));
Ncol_ *= 2;
delete [] dataCopy;
} else {
return;
}
} else {
#ifndef LMRG_CHECK_OFF
if (Nrow_ != cols.Nrow_) {
throw string("ERROR: Number of rows in appeneded object not equal to the number of rows in focal matrix");
}
#endif
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
data_ = new double[Nrow_ * (cols.Ncol_ + Ncol_)];
memcpy(data_, dataCopy, (Nrow_ * Ncol_)*sizeof(double));
delete [] dataCopy;
memcpy(data_ + Nrow_*Ncol_, cols.data_, (Nrow_ * (cols.Ncol_))*sizeof(double));
Ncol_ += cols.Ncol_;
}
}
void Matrix::appendRow(const Matrix &rows){
#ifndef LMRG_CHECK_OFF
if (Nrow_ > rows.Nrow_ + Nrow_) { // happens on wrap-around
throw string("ERROR: Number of rows too big to expand");
}
#endif
// if the other matrix is empty, do nothing
if ( (rows.Nrow_ == 0) || (rows.Ncol_ == 0) ) {
return;
}
if (this == &rows) { // self-appending
if (Nrow_ && Ncol_) {
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
data_ = new double[2 * Nrow_ * Ncol_];
// since rows are discontinuous, have to go column by column and copy rows within each column
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
memcpy(data_ + 2*Nrow_*jCol, dataCopy + Nrow_*jCol, Nrow_*sizeof(double));
memcpy(data_ + 2*Nrow_*jCol + Nrow_, dataCopy + Nrow_*jCol, Nrow_*sizeof(double));
}
Nrow_ *= 2;
delete [] dataCopy;
} else {
return;
}
} else {
#ifndef LMRG_CHECK_OFF
if (Ncol_ != rows.Ncol_) {
throw string("ERROR: Number of columns in appeneded object not equal to the number of columns in focal matrix");
}
#endif
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
data_ = new double[(rows.Nrow_ + Nrow_) * Ncol_];
// since rows are discontinuous, have to go column by column and copy rows within each column
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
memcpy(data_ + (rows.Nrow_+Nrow_)*jCol, dataCopy + Nrow_*jCol, Nrow_*sizeof(double));
memcpy(data_ + (rows.Nrow_+Nrow_)*jCol + Nrow_, rows.data_ + (rows.Nrow_)*jCol, (rows.Nrow_)*sizeof(double));
}
Nrow_ += rows.Nrow_;
delete [] dataCopy;
}
}
void Matrix::dropLeftCols(const size_t &newFirst){
#ifndef LMRG_CHECK_OFF
if (newFirst >= Ncol_) {
throw string("ERROR: New first column index is past the last column in dropLeftCols()");
}
#endif
if (newFirst == 0) {
return;
}
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
Ncol_ -= newFirst;
data_ = new double[Ncol_ * Nrow_];
memcpy(data_, dataCopy + newFirst*Nrow_, (Nrow_ * Ncol_)*sizeof(double));
delete [] dataCopy;
}
void Matrix::dropRightCols(const size_t &newLast){
#ifndef LMRG_CHECK_OFF
if (newLast >= Ncol_) {
throw string("ERROR: New last column index is past the last column in dropRightCols()");
}
#endif
if (newLast == (Ncol_ - 1)) {
return;
}
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
Ncol_ = newLast + 1;
data_ = new double[Ncol_ * Nrow_];
memcpy(data_, dataCopy, (Nrow_ * Ncol_)*sizeof(double));
delete [] dataCopy;
}
void Matrix::dropTopRows(const size_t &newTop){
#ifndef LMRG_CHECK_OFF
if (newTop >= Nrow_) {
throw string("ERROR: New first row index is past the last row in dropTopRows()");
}
#endif
if (newTop == 0) {
return;
}
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
const size_t oldNrow = Nrow_;
Nrow_ -= newTop;
data_ = new double[Nrow_ * Ncol_];
// copying the discontinuous rows by copying chunks of columns
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
memcpy(data_ + Nrow_*jCol, dataCopy + newTop + oldNrow*jCol, Nrow_*sizeof(double));
}
delete [] dataCopy;
}
void Matrix::dropBottomRows(const size_t &newBottom){
#ifndef LMRG_CHECK_OFF
if (newBottom >= Nrow_) {
throw string("ERROR: New last row index is past the last row in dropBottomRows()");
}
#endif
if (newBottom == (Nrow_ -1)) {
return;
}
double *dataCopy = new double[Nrow_ * Ncol_];
memcpy(dataCopy, data_, (Nrow_ * Ncol_)*sizeof(double));
delete [] data_;
const size_t oldNrow = Nrow_;
Nrow_ = newBottom + 1;
data_ = new double[Nrow_ * Ncol_];
// copying the discontinuous rows by copying chunks of columns
for (size_t jCol = 0; jCol < Ncol_; jCol++) {
memcpy(data_ + Nrow_*jCol, dataCopy + oldNrow*jCol, Nrow_*sizeof(double));
}
delete [] dataCopy;
}
| [
"info@bayesicresearch.org"
] | info@bayesicresearch.org |
39d2939c80b766d47b5f39dc86d196f12eef4ea9 | fecb91a4eaf94672158ac40efe1d83a88135ad61 | /CPLUSCODES/STRACTURE/main.cpp | c4d195b7175ba3a3f6c3e39894a9b7ad741edbe5 | [] | no_license | SAMIUL98SIAM/C- | 7b1e07aff4f816a288b69cf0f7a2973a5922b386 | f4221645803cbc9d2ae9aee7633cc5d564eb0821 | refs/heads/master | 2023-05-30T23:28:55.310016 | 2021-06-21T19:02:16 | 2021-06-21T19:02:16 | 379,027,587 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 508 | cpp | #include<iostream>
#include<conio.h>
using namespace std;
void Ricky()
{
int Array[10]={5,4,2,9,10,12,6,7,6};
N=10;
for(int i=0; i<N-1; i++){
mini = i;
for(int j=i+1; j<N; j++){
if(Array[j] < Array[mini]){
mini = j;
}
third party = Array[i];
Array[i] = Array[mini];
Array[mini] = third party;
}
cout<< third party<< " ";
}
}
int main()
{
Ricky();
getch();
}
| [
"samiulsiam89@gmail.com"
] | samiulsiam89@gmail.com |
f2d09fe84e9ac8cb255d091b260d143793096c61 | 6f308d145ce7965bee0c8ea65a3da2e36e67c803 | /HardRayTrue/Viewport.h | fe0f74c383abbbbfa778ee1801b94ab10c37c2ad | [] | no_license | Xalrandion/learning-raytracing | 71d5ecf05beca7a80cee4d5e737405cc07ef85dd | 33571ccb38676907119bfa31c5f55ce4b6f738b0 | refs/heads/master | 2023-07-03T16:04:34.260544 | 2021-08-15T08:38:11 | 2021-08-15T08:38:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 359 | h | #pragma once
#include <SFML/Graphics.hpp>
#include "includes/Canvas.h"
class Viewport
{
sf::Vector2f size;
double distanceToCamera;
public:
Vector3d getPosFromCanvasPos(const Canvas& canvas, const sf::Vector2f& pos) const;
Viewport(sf::Vector2f size, double distanceToCamera): size {size}, distanceToCamera { distanceToCamera } {}
~Viewport() {}
};
| [
"alexgotte2@gmail.com"
] | alexgotte2@gmail.com |
8f2f0c37de8c00cd6c8947c0ae3f8929155a7573 | d4af15bfec86981d5a8690423c05aa09910967af | /C++/keyvis/src/main.cpp | 4d1f34cf3c364325988b054497219c86d06f7ac6 | [
"MIT"
] | permissive | bosley/OPAS | f72e69d42bea5e87ace082f2393b94d9aeb95af9 | f79372ce0a2981da60375f10d1672429efa552bc | refs/heads/master | 2023-05-12T10:52:59.496814 | 2021-06-07T12:36:29 | 2021-06-07T12:36:29 | 38,960,193 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 54 | cpp |
int main(int argc, char** argv)
{
return 0;
} | [
"bosley117@gmail.com"
] | bosley117@gmail.com |
c288d372c9857693e152e27e26de8f91f891d49f | c2d0d7181355e8eb7f7c6d23a756427763617bc0 | /GAT350/engine/renderer/renderer.h | 90137b68b629f624cfe3b8581ff81e67d00c11bc | [] | no_license | GaigeKinsey/GAT350 | e54910191320ee0982e39e9d70966920f9e43f2c | 372c9a9171c9528e9b295928e7db7fd35f9ce59b | refs/heads/master | 2020-08-20T22:06:30.142547 | 2019-12-06T18:23:54 | 2019-12-06T18:23:54 | 216,071,456 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 747 | h | #pragma once
#include "../engine.h"
class Renderer : public System
{
public:
OBJECT_DECLARATION(Renderer, System)
~Renderer() {}
bool Initialize();
bool Initialize(u32 width, u32 height, bool fullscreen = false);
void Shutdown();
void Update();
void ClearBuffer();
void SwapBuffer();
SDL_Window* GetWindow() { return m_window; }
SDL_GLContext GetContext() { return m_context; }
void SetViewport(u32 x, u32 y, u32 width, u32 height) { glViewport(x, y, width, height); }
void RestoreViewport() { glViewport(0, 0, m_width, m_height); }
u32 GetWidth() { return m_width; }
u32 GetHeight() { return m_height; }
private:
SDL_Window* m_window = nullptr;
SDL_GLContext m_context = nullptr;
u32 m_width = 0;
u32 m_height = 0;
};
| [
"gaigekinsey@yahoo.com"
] | gaigekinsey@yahoo.com |
0f0020f48f339e8797053096b15367ce5ae8c3df | 87d8af054e17e0c346b6f59636402883fbf0158d | /Cpp/SDK/sot_frontend_01_a_start_classes.h | 5ab39c4aad943ecaf0a2d4899a722c63a5976539 | [] | no_license | AthenaVision/SoT-SDK-2 | 53676d349bca171b5e48dc812fd7bb97b9a4f1d8 | 4a803206d707a081b86c89a4b866a1761119613d | refs/heads/main | 2023-03-20T10:48:21.491008 | 2021-03-10T21:55:10 | 2021-03-10T21:55:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 756 | h | #pragma once
// Name: sot, Version: 4.2
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass sot_frontend_01_a_start.sot_frontend_01_a_start_C
// 0x0000 (FullSize[0x0430] - InheritedSize[0x0430])
class Asot_frontend_01_a_start_C : public ALevelScriptActor
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("BlueprintGeneratedClass sot_frontend_01_a_start.sot_frontend_01_a_start_C");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"59620169+NtLoadDriverEx@users.noreply.github.com"
] | 59620169+NtLoadDriverEx@users.noreply.github.com |
5c09cf336b9b1baa15ed8c71e6e2a3851719e6f0 | 164e709dcf03ce4769c3ba8f874da0666c35bc03 | /RtTpsDataAccess/tps_da_voimanager.cpp | 281fa493a43bada0c3654e63721e4b2cad18c23a | [] | no_license | liq07lzucn/tps | b343894bcfd59a71be48bd47d6eff6e010464457 | a3be6dc50c5f9a2ff448ecff3f5df1956e26ad4f | refs/heads/master | 2021-06-23T16:35:01.349523 | 2017-08-30T08:09:02 | 2017-08-30T08:09:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,065 | cpp | //////////////////////////////////////////////////////////////////////////
/// Copyright (c) Shanghai United Imaging Healthcare, 2013
/// All rights reserved.
///
/// \author jiandong.zhou jiandong.zhou@united-imaging.com
///
/// \file tps_voi_manager.cpp
///
/// \brief entry of VOI operate
/// \version 1.0
/// \date Aug. 6, 2013
//////////////////////////////////////////////////////////////////////////
#include "stdafx.h"
//TPS
#include "RtTpsDatabaseWrapper/rt_tps_database_interface_object_series.h"
#include "RtTpsDatabaseWrapper/rt_tps_database_interface_object_voi.h"
#include "RtTpsDatabaseWrapper/rt_tps_database_interface_object_voisetting.h"
#include "RtTpsDataAccess/tps_da_idatarepository.h"
#include "RtTpsDataAccess/tps_da_voimanager.h"
#include "RtTpsDataAccess/tps_da_imagedatamanager.h"
#include "RtTpsFramework/tps_fw_image3dentity.h"
#include "RtTpsFramework/tps_fw_voiedtingcache.h"
#include "RtTpsFramework/tps_fw_roi_entity.h"
#include "tps_logger.h"
TPS_BEGIN_NAMESPACE
TpsVOIManager::TpsVOIManager(void) : mVOIPlaneCacheInClipboard(nullptr)
{
}
TpsVOIManager::~TpsVOIManager(void)
{
Dispose();
}
void TpsVOIManager::Dispose(bool isPatientDataOnly/* = false*/) {
if(!isPatientDataOnly)
{
auto it = mRoiMap.begin();
while(it != mRoiMap.end()) {
if(nullptr != it->second) {
delete it->second;
it->second = nullptr;
}
it++;
}
mRoiMap.clear();
}
else
{
RtSeries *series = nullptr;
auto imgMng = mDataRepository->GetImageDataManager();
for (auto it = mRoiMap.begin(); it != mRoiMap.end(); )
{
if (it->second != nullptr && imgMng->GetImageSeries(
it->second->GetInnerRoi()->get_seriesuid(), &series) &&
series != nullptr && series->get_isphantom())
{
++it;
continue;
}
delete it->second;
it = mRoiMap.erase(it);
}
}
if (mVOIPlaneCacheInClipboard != nullptr)
{
delete[] mVOIPlaneCacheInClipboard->buffer;
delete mVOIPlaneCacheInClipboard;
mVOIPlaneCacheInClipboard = nullptr;
}
if (!isPatientDataOnly)
{
for (int i = 0; i < mVoiSettings.size(); ++i){
delete mVoiSettings[i];
mVoiSettings[i] = nullptr;
}
mVoiSettings.clear();
}
}
void TpsVOIManager::ClearPatientData() {
Dispose(true);
}
std::vector<ROIEntity*> TpsVOIManager::GetROIListViaStructureUids(
const std::vector<std::string>& structureSetUidList) const
{
std::string structureSetUid;
std::vector<ROIEntity*> voiList;
for (int i = 0; i < structureSetUidList.size(); ++i)
{
structureSetUid = structureSetUidList[i];
for(auto it = mRoiMap.begin(); it != mRoiMap.end(); ++it)
{
if (it->second != nullptr &&
it->second->GetInnerRoi()->get_structuresetuid() == structureSetUid)
{
voiList.push_back(it->second);
}
}
}
return voiList;
}
std::vector<ROIEntity*> TpsVOIManager::GetROIBySeries(const std::string seriesUid) const
{
std::vector<ROIEntity*> roiList;
for (auto it = mRoiMap.begin(); it != mRoiMap.end(); it++)
{
if(it->second->GetInnerRoi()->get_seriesuid() == seriesUid)
{
roiList.push_back(it->second);
}
}
return roiList;
}
std::vector<std::string> TpsVOIManager::GetROIUidListBySeries(const std::string seriesUid) const
{
std::vector<std::string> roiUidList;
for (auto it = mRoiMap.begin(); it != mRoiMap.end(); it++)
{
if(it->second->GetInnerRoi()->get_seriesuid() == seriesUid)
{
roiUidList.push_back(it->first);
}
}
return roiUidList;
}
void TpsVOIManager::SetVOIDoseInfo( const std::string &voiUID, float minDose, float maxDose, float meanDose ) {
ROIEntity *voi = GetROI(voiUID);
if (voi == nullptr) {
TPS_LOG_DEV_ERROR<<"Failed to get voi!";
return;
}
voi->SetMinDose(minDose);
voi->SetMaxDose(maxDose);
voi->SetMeanDose(meanDose);
}
bool TpsVOIManager::SaveContourMaskToClipboard(const PlaneCache& contourMask)
{
if (mVOIPlaneCacheInClipboard != nullptr)
{
delete[] mVOIPlaneCacheInClipboard->buffer;
delete mVOIPlaneCacheInClipboard;
mVOIPlaneCacheInClipboard = nullptr;
}
mVOIPlaneCacheInClipboard = new PlaneCache();
mVOIPlaneCacheInClipboard->width = contourMask.width;
mVOIPlaneCacheInClipboard->height = contourMask.height;
int count = contourMask.width * contourMask.height * sizeof(unsigned char);
mVOIPlaneCacheInClipboard->buffer = new unsigned char[count];
memcpy(mVOIPlaneCacheInClipboard->buffer, contourMask.buffer, count);
mVOIPlaneCacheInClipboard->transformMatrix = contourMask.transformMatrix;
return true;
}
bool TpsVOIManager::GetContourMaskFromClipboard(PlaneCache** contourMask)
{
if (mVOIPlaneCacheInClipboard == nullptr)
{
return false;
}
*contourMask = mVOIPlaneCacheInClipboard;
return true;
}
bool TpsVOIManager::Contains(const std::string& voiUid)
{
return mRoiMap.find(voiUid) != mRoiMap.end();
}
void TpsVOIManager::SetVoiSettings(const std::vector<RtVoisetting*>& voisettings)
{
mVoiSettings = voisettings;
}
std::vector<RtVoisetting*> TpsVOIManager::GetVoiSettings() const
{
return mVoiSettings;
}
bool TpsVOIManager::GetVoiSettingFromVoiName(const std::string& voiname, RtVoisetting* voisetting)
{
for (int i = 0; i < mVoiSettings.size(); ++i)
{
if (mVoiSettings[i]->get_voiname() == voiname)
{
*voisetting = *mVoiSettings[i];
return true;
}
}
return false;
}
ROIEntity* TpsVOIManager::CreateROIEntity(RtVoi* voi)
{
if (voi == nullptr) return nullptr;
return new ROIEntity(voi);
}
bool TpsVOIManager::AddROI(ROIEntity* pRoiEntity)
{
if (nullptr == pRoiEntity){
TPS_LOG_DEV_ERROR<<"pRoiEntity is null";
return false;
}
const std::string sVOIUID = pRoiEntity->GetInnerRoi()->get_uid();
mRoiMap[sVOIUID] = pRoiEntity;
return true;
}
ROIEntity* TpsVOIManager::GetROI(const std::string& uid)
{
auto it = mRoiMap.find(uid);
return it == mRoiMap.end() ? nullptr : it->second;
}
void TpsVOIManager::DeleteROI(const std::string& sRoiUID)
{
auto it = mRoiMap.find(sRoiUID);
if (it != mRoiMap.end())
{
delete it->second;
}
mRoiMap.erase(it);
}
ROIEntity* TpsVOIManager::GetExternal(const std::string seriesUID) const
{
for (auto it = mRoiMap.cbegin(); it != mRoiMap.cend(); ++it)
{
RtVoi* innerRoi = it->second->GetInnerRoi();
if (innerRoi->get_planningrole() == RtDbDef::PLANNING_ROLE_EXTERNAL &&
innerRoi->get_seriesuid() == seriesUID)
{
return it->second;
}
}
return nullptr;
}
TPS_END_NAMESPACE
| [
"genius52@qq.com"
] | genius52@qq.com |
ace091a5bb10ba9988c5567d2320e1e7f270f870 | 390241b7131e0d7652b5fba9884e8bfe5aa08f83 | /MainUI/UI/VhallIALive/ApplyJoinWdg.cpp | af62bfdf7518455bc8ac1f06f1143ab0338a1e62 | [] | no_license | hongzhuxuke/VlsClient | 718762b2fdd0494753fd5193ac83a51f19271c3d | 64c4eb7f8aa62d875cb8aa7727ec538f551e627f | refs/heads/master | 2022-12-23T17:50:47.136684 | 2020-09-25T07:31:44 | 2020-09-25T07:31:44 | 296,022,926 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 4,574 | cpp | #include "ApplyJoinWdg.h"
#include <QPainter>
#include <QApplication>
#include <QDesktopWidget>
#include <QJsonObject>
#include "pathmanager.h"
#define MAX_TIME_OUT 15
//CREATE_WND_FUNCTION(ApplyJoinWdg);
ApplyJoinWdg::ApplyJoinWdg(QWidget *parent)
: CBaseDlg(parent)
{
ui.setupUi(this);
mnMaxTimeOut = MAX_TIME_OUT;
setWindowFlags(Qt::FramelessWindowHint | Qt::Window | Qt::Tool);
setAttribute(Qt::WA_TranslucentBackground);
setAutoFillBackground(false);
m_pTimer = new QTimer(this);
connect(m_pTimer,SIGNAL(timeout()),this,SLOT(Slot_ShowTimeOut()));
connect(ui.pushButtonAgree, SIGNAL(clicked()), this, SLOT(Slot_HostAgreeApply()));
connect(ui.toolButtonRefuse, SIGNAL(clicked()), this, SLOT(Slot_HostRefuseApply()));
mpixmap = QPixmap(":/interactivity/askBackground");
m_pCloseBtn = new TitleButton();
m_pCloseBtn->loadPixmap(":/sysButton/close_button");
connect(m_pCloseBtn,SIGNAL(clicked()),this,SLOT(Slot_HostRefuseApply()));
ui.layout_close->addWidget(m_pCloseBtn);
ui.widget_title->installEventFilter(this);
}
ApplyJoinWdg::~ApplyJoinWdg() {
}
void ApplyJoinWdg::InitTimeOut(int timeout) {
mnMaxTimeOut = timeout;
}
QString ApplyJoinWdg::GetUid()
{
return mStrUid;
}
void ApplyJoinWdg::SetUid(const QString& strUid, const QString nickName){
mStrUid = strUid;
QString showName = CPathManager::GetString( nickName.isEmpty() ? strUid : nickName, 14);
ui.labApplyInfo->setText(showName + QStringLiteral("申请上麦"));
}
void ApplyJoinWdg::CenterWindow(QWidget* parent) {
int x = 0;
int y = 0;
if (NULL == parent) {
const QRect rect = QApplication::desktop()->availableGeometry();
x = rect.left() + (rect.width() - width()) / 2;
y = rect.top() + (rect.height() - height()) / 2;
} else {
QPoint point(0, 0);
point = parent->mapToGlobal(point);
x = point.x() + (parent->width() - width()) / 2;
y = point.y() + (parent->height() - height()) / 2;
}
move(x, y);
}
void ApplyJoinWdg::Slot_HostAgreeApply() {
if (m_pTimer) {
m_pTimer->stop();
}
emit sig_AgreeUpper(mStrUid);
emit sig_Destroy(mStrUid);
hide();
}
void ApplyJoinWdg::Slot_HostRefuseApply() {
hide();
if (m_pTimer) {
m_pTimer->stop();
}
emit sig_RejectUpper(mStrUid);
emit sig_Destroy(mStrUid);
}
void ApplyJoinWdg::paintEvent(QPaintEvent *){
QPainter painter(this);
painter.drawPixmap(rect(),this->mpixmap);
}
bool ApplyJoinWdg::eventFilter(QObject *o, QEvent *e) {
if(o==ui.widget_title)
{
if(e->type()==QEvent::MouseButtonPress) {
this->pressPoint=this->cursor().pos();
this->startPoint=this->pos();
mbPressed = true;
}
else if(e->type()==QEvent::MouseMove) {
if (mbPressed) {
int dx = this->cursor().pos().x() - this->pressPoint.x();
int dy = this->cursor().pos().y() - this->pressPoint.y();
this->move(this->startPoint.x() + dx, this->startPoint.y() + dy);
}
}
else if (e->type() == QEvent::MouseButtonRelease) {
mbPressed = false;
QPoint pos = this->pos();
QRect rect = QApplication::desktop()->availableGeometry(pos);
QRect wnd_rect = this->frameGeometry();
if (pos.y() > rect.height() - 150) {
pos.setY(rect.height() - 150);
this->move(pos);
}
else if (pos.y() < rect.y()) {
this->move(pos + QPoint(0, +100));
}
else if (wnd_rect.x() >= rect.x() + rect.width() - 100) {
this->move(QPoint(wnd_rect.x(), wnd_rect.y()) + QPoint(-100, 0));
}
else if (wnd_rect.x() + this->width() < rect.x() + 100) {
this->move(QPoint(wnd_rect.x(), wnd_rect.y()) + QPoint(100, 0));
}
}
}
return QWidget::eventFilter(o,e);
}
void ApplyJoinWdg::Slot_ShowTimeOut() {
if (nTimeCount == 0) {
emit Slot_HostRefuseApply();
m_pTimer->stop();
} else {
QString notice = QStringLiteral("%1s后自动拒绝").arg(nTimeCount);
ui.label_TimeNotice->setText(notice);
nTimeCount--;
}
}
void ApplyJoinWdg::hide()
{
if (m_pTimer && m_pTimer->isActive()) {
m_pTimer->stop();
}
nTimeCount = 0;
CBaseDlg::hide();
}
void ApplyJoinWdg::showEvent(QShowEvent *) {
if (m_pTimer) {
m_pTimer->stop();
m_pTimer->start(1000);
}
ui.label_TimeNotice->setText(QStringLiteral("%1s后自动拒绝").arg(mnMaxTimeOut));
nTimeCount = mnMaxTimeOut;
}
| [
"ke.xu@vhall.com"
] | ke.xu@vhall.com |
79ac7202d0f1330f254a66be15f10397db9a0955 | 539216087ec8280f94568e38c648b8784b20a0d6 | /servo.d/servo_6/servo_6.ino | 675ed5f48b15315ba2bc952fc7f69ad6f9f80c76 | [] | no_license | linuxgnuru/arduino_projects | 9a0be0dd382d41c0fa6095bd483e519b57d4dd9a | bc608aa3be9937b8db2cecdfb561a9502e449cbb | refs/heads/main | 2023-01-29T08:14:24.285786 | 2020-12-04T00:10:37 | 2020-12-04T00:10:37 | 318,353,758 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,011 | ino | /*
Sweep
modified version to run 6 servos
*/
#include <Servo.h>
// create servo object to control a servo
Servo myservo[6];
// twelve servo objects can be created on most boards
int pos = 0; // variable to store the servo position
void setup()
{
// attaches the servo on pin 9 to the servo object
for (int i = 2; i < 8; i++)
myservo[i - 2].attach(i);
}
void loop()
{
for (int i = 0; i < 6; i++)
{
// goes from 0 degrees to 180 degrees
for (pos = 0; pos <= 180; pos += 1)
{
// in steps of 1 degree
myservo[i].write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the position
}
// goes from 180 degrees to 0 degrees
for (pos = 180; pos >= 0; pos -= 1)
{
myservo[i].write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the position
}
}
}
| [
"jcwiggi@gmail.com"
] | jcwiggi@gmail.com |
4ab68412869754e32d99210c560a721ca53facae | f688aedcfb7e2637338b96472f001e18a015fe45 | /Castlevania/HealthBar.cpp | caada899f2d6d0f6a3f8d6a8b8030e855f689fe7 | [] | no_license | minhtien2152/Castlevania | 76e951708635378d0c982cea87e018613232e8ea | 0d940fc400a0ef545a537b885783d7f802eabf4b | refs/heads/master | 2021-05-19T07:07:34.928125 | 2020-07-24T17:32:24 | 2020-07-24T17:32:24 | 251,577,936 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 838 | cpp | #include "HealthBar.h"
#include"Define.h"
#define HEALTH_CELL_ID 100
HealthBar::HealthBar(float x, float y, LPGAMEOBJECT object,int type)
{
this->x = x;
this->y = y;
this->object = object;
currHP = this->object->GetHP();
this->type = type;
if (type == SIMON_HEALTH)
defaultHP = SIMON_DEFAULT_HEALTH;
else
defaultHP = BOSS_HEALTH;
animation_set = CAnimationSets::GetInstance()->Get(HEALTH_CELL_ID);
}
HealthBar::~HealthBar()
{
}
void HealthBar::Update()
{
currHP = object->GetHP();
}
void HealthBar::Render()
{
int i, j;
for (i = 0; i < currHP; i++)
animation_set->at(type)->Render(x + i * HEALTH_FRAME_WIDTH, y, 1, 1, false);//always stay on screen -> accordingCam = false
for (j = i; j < defaultHP; j++)
animation_set->at(MISSING_HEALTH)->Render(x + j * HEALTH_FRAME_WIDTH, y, 1, 1, false);
}
| [
"18521481@gm.uit.edu.vn"
] | 18521481@gm.uit.edu.vn |
4b96b43a2ad9c645770e8a9f420eebad1d729d12 | eb1fa618399401d027f7231e33260f6435061684 | /Creational patterns/Singleton/main.cpp | f16a679498490f0f381fadb4788bd86d4c6073bf | [] | no_license | alejinjer/Design-Patterns | 034aa696135ed6dd6d0e49fc362ffb8dc90dfe38 | 32397aa8370c057e2c4b6edeab62f129c9aba46e | refs/heads/master | 2020-04-20T03:09:11.601065 | 2019-05-04T14:56:46 | 2019-05-04T14:56:46 | 168,418,300 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 69 | cpp | #include "singleton.h"
#include "meyerssingleton.h"
int main()
{
}
| [
"ezyyk77@gmail.com"
] | ezyyk77@gmail.com |
eec2f3847d6aa88487f020060d2f1f633d173d7b | ee5e0c7f802626b33668e7686d179d5d0ea5f449 | /windows_ce_5_121231/WINCE500/PRIVATE/SERVERS/HTTP/CORE/log.h | 2a3d6967890d6ac933377ff498e25fef7df3abca | [] | no_license | xiaoqgao/windows_ce_5_121231 | e700da986df7fe7d8a691a347f76885aac8c03b3 | 5ad37f4d1e287bb81a238b7d7a8b2e1185fe90ed | refs/heads/master | 2022-12-25T02:28:44.898011 | 2020-09-28T20:03:03 | 2020-09-28T20:03:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,001 | h | //
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223.
//
/*--
Module Name: LOG.H
Abstract: Logging functions
--*/
// If registry key doesn't exist, this will be the largest we'll let log grow to
class CHttpRequest; // forward declaration
// Right now we assume only one object handles all requests.
class CLog {
private:
HANDLE m_hLog;
DWORD m_dwMaxFileSize; // Max log can grow before it's rolled over
DWORD m_dwFileSize; // Current file length
CRITICAL_SECTION m_CritSection;
WCHAR lpszCurrentLog[MAX_PATH+1];
WCHAR lpszPrevLog[MAX_PATH+1];
public:
CLog(DWORD dwMaxFileLen, WCHAR * lpszLogDir);
~CLog();
void WriteData(PSTR wszData, DWORD dwToWrite);
void WriteLog(CHttpRequest* pThis);
void WriteEvent(DWORD dwEvent,...);
};
| [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
7c1710f9a04867738e332fa2e0a1502e28990239 | fe83c6a7aab3c2b11db37485173dd64f74b9da0f | /src/test/pmt_tests.cpp | 232c41f11179c61c511d0d860f558407f864e287 | [
"MIT"
] | permissive | TFTcoin/ftcoin | 478086064158035c02626fc2d39e9cdee5be378f | 2b25638fd2303ffea83d322d21228a2dea0d2b93 | refs/heads/master | 2020-03-21T22:08:04.004720 | 2018-07-08T08:04:43 | 2018-07-08T08:04:43 | 139,105,803 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,509 | cpp | // Copyright (c) 2012-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "consensus/merkle.h"
#include "merkleblock.h"
#include "serialize.h"
#include "streams.h"
#include "uint256.h"
#include "arith_uint256.h"
#include "version.h"
#include "random.h"
#include "test/test_ftcoin.h"
#include <vector>
#include <boost/assign/list_of.hpp>
#include <boost/test/unit_test.hpp>
using namespace std;
class CPartialMerkleTreeTester : public CPartialMerkleTree
{
public:
// flip one bit in one of the hashes - this should break the authentication
void Damage() {
unsigned int n = insecure_rand() % vHash.size();
int bit = insecure_rand() % 256;
*(vHash[n].begin() + (bit>>3)) ^= 1<<(bit&7);
}
};
BOOST_FIXTURE_TEST_SUITE(pmt_tests, BasicTestingSetup)
BOOST_AUTO_TEST_CASE(pmt_test1)
{
seed_insecure_rand(false);
static const unsigned int nTxCounts[] = {1, 4, 7, 17, 56, 100, 127, 256, 312, 513, 1000, 4095};
for (int n = 0; n < 12; n++) {
unsigned int nTx = nTxCounts[n];
// build a block with some dummy transactions
CBlock block;
for (unsigned int j=0; j<nTx; j++) {
CMutableTransaction tx;
tx.nLockTime = j; // actual transaction data doesn't matter; just make the nLockTime's unique
block.vtx.push_back(CTransaction(tx));
}
// calculate actual merkle root and height
uint256 merkleRoot1 = BlockMerkleRoot(block);
std::vector<uint256> vTxid(nTx, uint256());
for (unsigned int j=0; j<nTx; j++)
vTxid[j] = block.vtx[j].GetHash();
int nHeight = 1, nTx_ = nTx;
while (nTx_ > 1) {
nTx_ = (nTx_+1)/2;
nHeight++;
}
// check with random subsets with inclusion chances 1, 1/2, 1/4, ..., 1/128
for (int att = 1; att < 15; att++) {
// build random subset of txid's
std::vector<bool> vMatch(nTx, false);
std::vector<uint256> vMatchTxid1;
for (unsigned int j=0; j<nTx; j++) {
bool fInclude = (insecure_rand() & ((1 << (att/2)) - 1)) == 0;
vMatch[j] = fInclude;
if (fInclude)
vMatchTxid1.push_back(vTxid[j]);
}
// build the partial merkle tree
CPartialMerkleTree pmt1(vTxid, vMatch);
// serialize
CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
ss << pmt1;
// verify CPartialMerkleTree's size guarantees
unsigned int n = std::min<unsigned int>(nTx, 1 + vMatchTxid1.size()*nHeight);
BOOST_CHECK(ss.size() <= 10 + (258*n+7)/8);
// deserialize into a tester copy
CPartialMerkleTreeTester pmt2;
ss >> pmt2;
// extract merkle root and matched txids from copy
std::vector<uint256> vMatchTxid2;
uint256 merkleRoot2 = pmt2.ExtractMatches(vMatchTxid2);
// check that it has the same merkle root as the original, and a valid one
BOOST_CHECK(merkleRoot1 == merkleRoot2);
BOOST_CHECK(!merkleRoot2.IsNull());
// check that it contains the matched transactions (in the same order!)
BOOST_CHECK(vMatchTxid1 == vMatchTxid2);
// check that random bit flips break the authentication
for (int j=0; j<4; j++) {
CPartialMerkleTreeTester pmt3(pmt2);
pmt3.Damage();
std::vector<uint256> vMatchTxid3;
uint256 merkleRoot3 = pmt3.ExtractMatches(vMatchTxid3);
BOOST_CHECK(merkleRoot3 != merkleRoot1);
}
}
}
}
BOOST_AUTO_TEST_CASE(pmt_malleability)
{
std::vector<uint256> vTxid = boost::assign::list_of
(ArithToUint256(1))(ArithToUint256(2))
(ArithToUint256(3))(ArithToUint256(4))
(ArithToUint256(5))(ArithToUint256(6))
(ArithToUint256(7))(ArithToUint256(8))
(ArithToUint256(9))(ArithToUint256(10))
(ArithToUint256(9))(ArithToUint256(10));
std::vector<bool> vMatch = boost::assign::list_of(false)(false)(false)(false)(false)(false)(false)(false)(false)(true)(true)(false);
CPartialMerkleTree tree(vTxid, vMatch);
std::vector<uint256> vTxid2;
BOOST_CHECK(tree.ExtractMatches(vTxid).IsNull());
}
BOOST_AUTO_TEST_SUITE_END()
| [
"hxtchain@gmail.com"
] | hxtchain@gmail.com |
e494b218125fb40a041bba9b499c5bf90b813127 | e3e3bf2a8cb16c8e87139237a7f03aa6807f7f2c | /cell_based/src/writers/population_writers/VertexT2SwapLocationsWriter.hpp | 0bc99f7f93b65ce2ed1b111f9f8ed81446c8526e | [
"BSD-3-Clause"
] | permissive | uofs-simlab/ChasteOS | f67b67f246befbc38edc3dc93b5e55a7bbf1fcfc | 04d98998e2ebad3f29086b8eaa1d89c08c6fccf6 | refs/heads/master | 2021-05-07T04:10:38.591384 | 2017-11-20T15:48:06 | 2017-11-20T15:48:06 | 111,127,403 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,378 | hpp | /*
Copyright (c) 2005-2016, University of Oxford.
All rights reserved.
University of Oxford means the Chancellor, Masters and Scholars of the
University of Oxford, having an administrative office at Wellington
Square, Oxford OX1 2JD, UK.
This file is part of Chaste.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Oxford nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef VERTEXT2SWAPLOCATIONSWRITER_HPP_
#define VERTEXT2SWAPLOCATIONSWRITER_HPP_
#include "AbstractCellPopulationWriter.hpp"
#include "ChasteSerialization.hpp"
#include <boost/serialization/base_object.hpp>
/**
* A writer class to output the time and locations of T2 swaps to a file.
*
* The output file is called T2SwapLocations.dat by default.
*/
template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
class VertexT2SwapLocationsWriter : public AbstractCellPopulationWriter<ELEMENT_DIM, SPACE_DIM>
{
private:
/** Needed for serialization. */
friend class boost::serialization::access;
/**
* Serialize the object and its member variables.
*
* @param archive the archive
* @param version the current version of this class
*/
template<class Archive>
void serialize(Archive & archive, const unsigned int version)
{
archive & boost::serialization::base_object<AbstractCellPopulationWriter<ELEMENT_DIM, SPACE_DIM> >(*this);
}
public:
/**
* Default constructor.
*/
VertexT2SwapLocationsWriter();
/**
* Visit the population and write the data.
*
* This is an empty dummy function, since this class is defined for use with a VertexBasedCellPopulation only.
*
* @param pCellPopulation a pointer to the MeshBasedCellPopulation to visit.
*/
virtual void Visit(MeshBasedCellPopulation<ELEMENT_DIM, SPACE_DIM>* pCellPopulation);
/**
* Visit the population and write the data.
*
* This is an empty dummy function, since this class is defined for use with a VertexBasedCellPopulation only.
*
* @param pCellPopulation a pointer to the CaBasedCellPopulation to visit.
*/
virtual void Visit(CaBasedCellPopulation<SPACE_DIM>* pCellPopulation);
/**
* Visit the population and write the data.
*
* This is an empty dummy function, since this class is defined for use with a VertexBasedCellPopulation only.
*
* @param pCellPopulation a pointer to the NodeBasedCellPopulation to visit.
*/
virtual void Visit(NodeBasedCellPopulation<SPACE_DIM>* pCellPopulation);
/**
* Visit the population and write the data.
*
* This is an empty dummy function, since this class is defined for use with a VertexBasedCellPopulation only.
*
* @param pCellPopulation a pointer to the PottsBasedCellPopulation to visit.
*/
virtual void Visit(PottsBasedCellPopulation<SPACE_DIM>* pCellPopulation);
/**
* Visit the VertexBasedCellPopulation and write the location of any T2 swaps at the present
* simulation time.
*
* Outputs a line of tab-separated values of the form:
* [num T2 swaps] [T2 swap 0 x-pos] [T2 swap 0 y-pos] [T2 swap 0 z-pos] [T2 swap 1 x-pos] [T2 swap 1 y-pos] [T2 swap 1 z-pos] ...
*
* where [num T2 swaps] denotes the number of T2 swaps at the present time, and
* [T2 swap 0 x-pos] denotes the x-coordinate of the T2 swap with index 0 in
* the MutableVertexMesh member mLocationsOfT2Swaps, and so on, with [z-pos]
* included for 3-dimensional simulations.
*
* This line is appended to the output written by AbstractCellBasedWriter, which is a single
* value [present simulation time], followed by a tab.
*
* @param pCellPopulation a pointer to the VertexBasedCellPopulation to visit.
*/
virtual void Visit(VertexBasedCellPopulation<SPACE_DIM>* pCellPopulation);
};
#include "SerializationExportWrapper.hpp"
// Declare identifier for the serializer
EXPORT_TEMPLATE_CLASS_ALL_DIMS(VertexT2SwapLocationsWriter)
#endif /* VERTEXT2SWAPLOCATIONSWRITER_HPP_ */
| [
"jessicacervi@simlab06.usask.ca"
] | jessicacervi@simlab06.usask.ca |
25b0b18c2da85d1100eb306a82f97c4f2d5ce8e0 | a997546e7c9fd70df88cd7c2100831b3baf8084a | /Tutorial 19/Engine/Game.cpp | 88fd5ba95d96331bb246762e118f794959fee4f0 | [] | no_license | YouJinTou/Beginner-C-Game-Programming | 9cefc1e8782e5690ee536f86786dd67a76fded09 | 2cca90a62ca196a230eebf1136c8c3e6acfa1635 | refs/heads/master | 2021-07-08T23:32:41.018389 | 2017-10-07T05:51:35 | 2017-10-07T05:51:35 | 105,530,476 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,243,333 | cpp | /******************************************************************************************
* Chili DirectX Framework Version 16.07.20 *
* Game.cpp *
* Copyright 2016 PlanetChili.net <http://www.planetchili.net> *
* *
* This file is part of The Chili DirectX Framework. *
* *
* The Chili DirectX Framework 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. *
* *
* The Chili DirectX Framework 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 The Chili DirectX Framework. If not, see <http://www.gnu.org/licenses/>. *
******************************************************************************************/
#include "MainWindow.h"
#include "Game.h"
#include <random>
Game::Game( MainWindow& wnd )
:
wnd( wnd ),
gfx( wnd ),
rng( rd() ),
xDist( 0,770 ),
yDist( 0,570 ),
goal( Vec2( xDist( rng ),yDist( rng ) ) ),
meter( 20,20 )
{
std::uniform_real_distribution<float> vDist( -2.5f * 60.0f,2.5f * 60.0f );
for( int i = 0; i < nPoo; ++i )
{
poos[i].Init( Vec2( xDist( rng ),yDist( rng ) ),Vec2( vDist( rng ),vDist( rng ) ) );
}
title.Play();
}
void Game::Go()
{
gfx.BeginFrame();
UpdateModel();
ComposeFrame();
gfx.EndFrame();
}
void Game::UpdateModel()
{
const float dt = ft.Mark();
goal.UpdateColor();
if( isStarted && !isGameOver )
{
dude.Update( wnd.mouse,dt );
dude.ClampToScreen();
for( int i = 0; i < nPoo; ++i )
{
poos[i].Update( dt );
if( poos[i].TestCollision( dude ) )
{
isGameOver = true;
fart.Play( rng );
}
}
if( goal.TestCollision( dude ) )
{
goal.Respawn( Vec2( xDist( rng ),yDist( rng ) ) );
meter.IncreaseLevel();
pickup.Play( rng );
}
}
else
{
if( wnd.kbd.KeyIsPressed( VK_RETURN ) )
{
isStarted = true;
}
}
}
void Game::DrawGameOver( int x,int y )
{
gfx.PutPixel( 49 + x,0 + y,0,146,14 );
gfx.PutPixel( 50 + x,0 + y,0,146,14 );
gfx.PutPixel( 51 + x,0 + y,0,146,14 );
gfx.PutPixel( 49 + x,1 + y,0,146,14 );
gfx.PutPixel( 50 + x,1 + y,0,146,14 );
gfx.PutPixel( 51 + x,1 + y,0,146,14 );
gfx.PutPixel( 52 + x,1 + y,0,146,14 );
gfx.PutPixel( 38 + x,2 + y,0,146,14 );
gfx.PutPixel( 39 + x,2 + y,0,146,14 );
gfx.PutPixel( 40 + x,2 + y,0,146,14 );
gfx.PutPixel( 41 + x,2 + y,0,146,14 );
gfx.PutPixel( 50 + x,2 + y,0,146,14 );
gfx.PutPixel( 51 + x,2 + y,0,146,14 );
gfx.PutPixel( 52 + x,2 + y,0,146,14 );
gfx.PutPixel( 36 + x,3 + y,0,146,14 );
gfx.PutPixel( 37 + x,3 + y,0,146,14 );
gfx.PutPixel( 38 + x,3 + y,0,146,14 );
gfx.PutPixel( 39 + x,3 + y,0,146,14 );
gfx.PutPixel( 40 + x,3 + y,0,146,14 );
gfx.PutPixel( 41 + x,3 + y,0,146,14 );
gfx.PutPixel( 42 + x,3 + y,0,146,14 );
gfx.PutPixel( 43 + x,3 + y,0,146,14 );
gfx.PutPixel( 50 + x,3 + y,0,146,14 );
gfx.PutPixel( 51 + x,3 + y,0,146,14 );
gfx.PutPixel( 52 + x,3 + y,0,146,14 );
gfx.PutPixel( 53 + x,3 + y,0,146,14 );
gfx.PutPixel( 35 + x,4 + y,0,146,14 );
gfx.PutPixel( 36 + x,4 + y,0,146,14 );
gfx.PutPixel( 37 + x,4 + y,0,146,14 );
gfx.PutPixel( 38 + x,4 + y,0,146,14 );
gfx.PutPixel( 39 + x,4 + y,0,146,14 );
gfx.PutPixel( 40 + x,4 + y,0,146,14 );
gfx.PutPixel( 41 + x,4 + y,0,146,14 );
gfx.PutPixel( 42 + x,4 + y,0,146,14 );
gfx.PutPixel( 43 + x,4 + y,0,146,14 );
gfx.PutPixel( 44 + x,4 + y,0,146,14 );
gfx.PutPixel( 51 + x,4 + y,0,146,14 );
gfx.PutPixel( 52 + x,4 + y,0,146,14 );
gfx.PutPixel( 53 + x,4 + y,0,146,14 );
gfx.PutPixel( 68 + x,4 + y,0,146,14 );
gfx.PutPixel( 69 + x,4 + y,0,146,14 );
gfx.PutPixel( 70 + x,4 + y,0,146,14 );
gfx.PutPixel( 71 + x,4 + y,0,146,14 );
gfx.PutPixel( 72 + x,4 + y,0,146,14 );
gfx.PutPixel( 73 + x,4 + y,0,146,14 );
gfx.PutPixel( 74 + x,4 + y,0,146,14 );
gfx.PutPixel( 75 + x,4 + y,0,146,14 );
gfx.PutPixel( 76 + x,4 + y,0,146,14 );
gfx.PutPixel( 77 + x,4 + y,0,146,14 );
gfx.PutPixel( 78 + x,4 + y,0,146,14 );
gfx.PutPixel( 79 + x,4 + y,0,146,14 );
gfx.PutPixel( 34 + x,5 + y,0,118,11 );
gfx.PutPixel( 35 + x,5 + y,0,146,14 );
gfx.PutPixel( 36 + x,5 + y,0,146,14 );
gfx.PutPixel( 37 + x,5 + y,0,146,14 );
gfx.PutPixel( 38 + x,5 + y,0,146,14 );
gfx.PutPixel( 39 + x,5 + y,0,146,14 );
gfx.PutPixel( 40 + x,5 + y,0,146,14 );
gfx.PutPixel( 41 + x,5 + y,0,146,14 );
gfx.PutPixel( 42 + x,5 + y,0,146,14 );
gfx.PutPixel( 43 + x,5 + y,0,146,14 );
gfx.PutPixel( 44 + x,5 + y,0,146,14 );
gfx.PutPixel( 51 + x,5 + y,0,142,13 );
gfx.PutPixel( 52 + x,5 + y,0,146,14 );
gfx.PutPixel( 53 + x,5 + y,0,146,14 );
gfx.PutPixel( 54 + x,5 + y,0,146,14 );
gfx.PutPixel( 66 + x,5 + y,0,146,14 );
gfx.PutPixel( 67 + x,5 + y,0,146,14 );
gfx.PutPixel( 68 + x,5 + y,0,146,14 );
gfx.PutPixel( 69 + x,5 + y,0,146,14 );
gfx.PutPixel( 70 + x,5 + y,0,146,14 );
gfx.PutPixel( 71 + x,5 + y,0,146,14 );
gfx.PutPixel( 72 + x,5 + y,0,146,14 );
gfx.PutPixel( 73 + x,5 + y,0,146,14 );
gfx.PutPixel( 74 + x,5 + y,0,146,14 );
gfx.PutPixel( 75 + x,5 + y,0,146,14 );
gfx.PutPixel( 76 + x,5 + y,0,146,14 );
gfx.PutPixel( 77 + x,5 + y,0,146,14 );
gfx.PutPixel( 78 + x,5 + y,0,146,14 );
gfx.PutPixel( 79 + x,5 + y,0,146,14 );
gfx.PutPixel( 80 + x,5 + y,0,146,14 );
gfx.PutPixel( 34 + x,6 + y,0,146,14 );
gfx.PutPixel( 35 + x,6 + y,0,146,14 );
gfx.PutPixel( 36 + x,6 + y,0,146,14 );
gfx.PutPixel( 37 + x,6 + y,0,146,14 );
gfx.PutPixel( 38 + x,6 + y,0,146,14 );
gfx.PutPixel( 39 + x,6 + y,0,146,14 );
gfx.PutPixel( 40 + x,6 + y,0,146,14 );
gfx.PutPixel( 41 + x,6 + y,0,146,14 );
gfx.PutPixel( 42 + x,6 + y,0,146,14 );
gfx.PutPixel( 43 + x,6 + y,0,146,14 );
gfx.PutPixel( 44 + x,6 + y,0,146,14 );
gfx.PutPixel( 45 + x,6 + y,0,146,14 );
gfx.PutPixel( 52 + x,6 + y,0,146,14 );
gfx.PutPixel( 53 + x,6 + y,0,146,14 );
gfx.PutPixel( 54 + x,6 + y,0,146,14 );
gfx.PutPixel( 55 + x,6 + y,0,146,14 );
gfx.PutPixel( 65 + x,6 + y,0,146,14 );
gfx.PutPixel( 66 + x,6 + y,0,146,14 );
gfx.PutPixel( 67 + x,6 + y,0,146,14 );
gfx.PutPixel( 68 + x,6 + y,0,146,14 );
gfx.PutPixel( 69 + x,6 + y,0,146,14 );
gfx.PutPixel( 70 + x,6 + y,0,146,14 );
gfx.PutPixel( 71 + x,6 + y,0,146,14 );
gfx.PutPixel( 72 + x,6 + y,0,146,14 );
gfx.PutPixel( 73 + x,6 + y,0,146,14 );
gfx.PutPixel( 74 + x,6 + y,0,146,14 );
gfx.PutPixel( 75 + x,6 + y,0,146,14 );
gfx.PutPixel( 76 + x,6 + y,0,146,14 );
gfx.PutPixel( 77 + x,6 + y,0,146,14 );
gfx.PutPixel( 78 + x,6 + y,0,146,14 );
gfx.PutPixel( 79 + x,6 + y,0,146,14 );
gfx.PutPixel( 80 + x,6 + y,0,146,14 );
gfx.PutPixel( 81 + x,6 + y,0,146,14 );
gfx.PutPixel( 34 + x,7 + y,0,146,14 );
gfx.PutPixel( 35 + x,7 + y,0,146,14 );
gfx.PutPixel( 36 + x,7 + y,0,146,14 );
gfx.PutPixel( 37 + x,7 + y,0,146,14 );
gfx.PutPixel( 38 + x,7 + y,0,146,14 );
gfx.PutPixel( 39 + x,7 + y,0,146,14 );
gfx.PutPixel( 40 + x,7 + y,0,146,14 );
gfx.PutPixel( 41 + x,7 + y,0,146,14 );
gfx.PutPixel( 42 + x,7 + y,0,146,14 );
gfx.PutPixel( 43 + x,7 + y,0,146,14 );
gfx.PutPixel( 44 + x,7 + y,0,146,14 );
gfx.PutPixel( 45 + x,7 + y,0,146,14 );
gfx.PutPixel( 53 + x,7 + y,0,146,14 );
gfx.PutPixel( 54 + x,7 + y,0,146,14 );
gfx.PutPixel( 55 + x,7 + y,0,146,14 );
gfx.PutPixel( 65 + x,7 + y,0,146,14 );
gfx.PutPixel( 66 + x,7 + y,0,146,14 );
gfx.PutPixel( 67 + x,7 + y,0,146,14 );
gfx.PutPixel( 68 + x,7 + y,0,142,13 );
gfx.PutPixel( 79 + x,7 + y,0,146,14 );
gfx.PutPixel( 80 + x,7 + y,0,146,14 );
gfx.PutPixel( 81 + x,7 + y,0,146,14 );
gfx.PutPixel( 82 + x,7 + y,0,146,14 );
gfx.PutPixel( 34 + x,8 + y,0,146,14 );
gfx.PutPixel( 35 + x,8 + y,0,146,14 );
gfx.PutPixel( 36 + x,8 + y,0,146,14 );
gfx.PutPixel( 37 + x,8 + y,0,146,14 );
gfx.PutPixel( 38 + x,8 + y,0,146,14 );
gfx.PutPixel( 39 + x,8 + y,0,146,14 );
gfx.PutPixel( 40 + x,8 + y,0,146,14 );
gfx.PutPixel( 41 + x,8 + y,0,146,14 );
gfx.PutPixel( 42 + x,8 + y,0,146,14 );
gfx.PutPixel( 43 + x,8 + y,0,146,14 );
gfx.PutPixel( 44 + x,8 + y,0,146,14 );
gfx.PutPixel( 45 + x,8 + y,0,146,14 );
gfx.PutPixel( 53 + x,8 + y,0,146,14 );
gfx.PutPixel( 54 + x,8 + y,0,146,14 );
gfx.PutPixel( 55 + x,8 + y,0,146,14 );
gfx.PutPixel( 56 + x,8 + y,0,146,14 );
gfx.PutPixel( 64 + x,8 + y,0,146,14 );
gfx.PutPixel( 65 + x,8 + y,0,146,14 );
gfx.PutPixel( 66 + x,8 + y,0,146,14 );
gfx.PutPixel( 67 + x,8 + y,0,146,14 );
gfx.PutPixel( 80 + x,8 + y,0,146,14 );
gfx.PutPixel( 81 + x,8 + y,0,146,14 );
gfx.PutPixel( 82 + x,8 + y,0,146,14 );
gfx.PutPixel( 34 + x,9 + y,0,146,14 );
gfx.PutPixel( 35 + x,9 + y,0,146,14 );
gfx.PutPixel( 36 + x,9 + y,0,146,14 );
gfx.PutPixel( 37 + x,9 + y,0,146,14 );
gfx.PutPixel( 38 + x,9 + y,0,146,14 );
gfx.PutPixel( 39 + x,9 + y,0,146,14 );
gfx.PutPixel( 40 + x,9 + y,0,146,14 );
gfx.PutPixel( 41 + x,9 + y,0,146,14 );
gfx.PutPixel( 42 + x,9 + y,0,146,14 );
gfx.PutPixel( 43 + x,9 + y,0,146,14 );
gfx.PutPixel( 44 + x,9 + y,0,146,14 );
gfx.PutPixel( 45 + x,9 + y,0,146,14 );
gfx.PutPixel( 54 + x,9 + y,0,146,14 );
gfx.PutPixel( 55 + x,9 + y,0,146,14 );
gfx.PutPixel( 56 + x,9 + y,0,146,14 );
gfx.PutPixel( 57 + x,9 + y,0,146,14 );
gfx.PutPixel( 64 + x,9 + y,0,146,14 );
gfx.PutPixel( 65 + x,9 + y,0,146,14 );
gfx.PutPixel( 66 + x,9 + y,0,146,14 );
gfx.PutPixel( 80 + x,9 + y,0,146,14 );
gfx.PutPixel( 81 + x,9 + y,0,146,14 );
gfx.PutPixel( 82 + x,9 + y,0,146,14 );
gfx.PutPixel( 83 + x,9 + y,0,118,11 );
gfx.PutPixel( 34 + x,10 + y,0,146,14 );
gfx.PutPixel( 35 + x,10 + y,0,146,14 );
gfx.PutPixel( 36 + x,10 + y,0,146,14 );
gfx.PutPixel( 37 + x,10 + y,0,146,14 );
gfx.PutPixel( 38 + x,10 + y,0,146,14 );
gfx.PutPixel( 39 + x,10 + y,0,146,14 );
gfx.PutPixel( 40 + x,10 + y,0,146,14 );
gfx.PutPixel( 41 + x,10 + y,0,146,14 );
gfx.PutPixel( 42 + x,10 + y,0,146,14 );
gfx.PutPixel( 43 + x,10 + y,0,146,14 );
gfx.PutPixel( 44 + x,10 + y,0,146,14 );
gfx.PutPixel( 45 + x,10 + y,0,146,14 );
gfx.PutPixel( 55 + x,10 + y,0,146,14 );
gfx.PutPixel( 56 + x,10 + y,0,146,14 );
gfx.PutPixel( 57 + x,10 + y,0,146,14 );
gfx.PutPixel( 64 + x,10 + y,0,146,14 );
gfx.PutPixel( 65 + x,10 + y,0,146,14 );
gfx.PutPixel( 66 + x,10 + y,0,146,14 );
gfx.PutPixel( 81 + x,10 + y,0,146,14 );
gfx.PutPixel( 82 + x,10 + y,0,146,14 );
gfx.PutPixel( 83 + x,10 + y,0,146,14 );
gfx.PutPixel( 28 + x,11 + y,0,146,14 );
gfx.PutPixel( 29 + x,11 + y,0,146,14 );
gfx.PutPixel( 30 + x,11 + y,0,146,14 );
gfx.PutPixel( 31 + x,11 + y,0,146,14 );
gfx.PutPixel( 32 + x,11 + y,0,146,14 );
gfx.PutPixel( 35 + x,11 + y,0,146,14 );
gfx.PutPixel( 36 + x,11 + y,0,146,14 );
gfx.PutPixel( 37 + x,11 + y,0,146,14 );
gfx.PutPixel( 38 + x,11 + y,0,146,14 );
gfx.PutPixel( 39 + x,11 + y,0,146,14 );
gfx.PutPixel( 40 + x,11 + y,0,146,14 );
gfx.PutPixel( 41 + x,11 + y,0,146,14 );
gfx.PutPixel( 42 + x,11 + y,0,146,14 );
gfx.PutPixel( 43 + x,11 + y,0,146,14 );
gfx.PutPixel( 44 + x,11 + y,0,146,14 );
gfx.PutPixel( 55 + x,11 + y,0,146,14 );
gfx.PutPixel( 56 + x,11 + y,0,146,14 );
gfx.PutPixel( 57 + x,11 + y,0,146,14 );
gfx.PutPixel( 58 + x,11 + y,0,146,14 );
gfx.PutPixel( 64 + x,11 + y,0,146,14 );
gfx.PutPixel( 65 + x,11 + y,0,146,14 );
gfx.PutPixel( 66 + x,11 + y,0,146,14 );
gfx.PutPixel( 81 + x,11 + y,0,146,14 );
gfx.PutPixel( 82 + x,11 + y,0,146,14 );
gfx.PutPixel( 83 + x,11 + y,0,146,14 );
gfx.PutPixel( 27 + x,12 + y,0,146,14 );
gfx.PutPixel( 28 + x,12 + y,0,146,14 );
gfx.PutPixel( 29 + x,12 + y,0,146,14 );
gfx.PutPixel( 30 + x,12 + y,0,146,14 );
gfx.PutPixel( 31 + x,12 + y,0,146,14 );
gfx.PutPixel( 32 + x,12 + y,0,146,14 );
gfx.PutPixel( 33 + x,12 + y,0,146,14 );
gfx.PutPixel( 35 + x,12 + y,0,142,13 );
gfx.PutPixel( 36 + x,12 + y,0,146,14 );
gfx.PutPixel( 37 + x,12 + y,0,146,14 );
gfx.PutPixel( 38 + x,12 + y,0,146,14 );
gfx.PutPixel( 39 + x,12 + y,0,146,14 );
gfx.PutPixel( 40 + x,12 + y,0,146,14 );
gfx.PutPixel( 41 + x,12 + y,0,146,14 );
gfx.PutPixel( 42 + x,12 + y,0,146,14 );
gfx.PutPixel( 43 + x,12 + y,0,146,14 );
gfx.PutPixel( 56 + x,12 + y,0,146,14 );
gfx.PutPixel( 57 + x,12 + y,0,146,14 );
gfx.PutPixel( 58 + x,12 + y,0,146,14 );
gfx.PutPixel( 64 + x,12 + y,0,146,14 );
gfx.PutPixel( 65 + x,12 + y,0,146,14 );
gfx.PutPixel( 66 + x,12 + y,0,146,14 );
gfx.PutPixel( 67 + x,12 + y,0,146,14 );
gfx.PutPixel( 68 + x,12 + y,0,146,14 );
gfx.PutPixel( 69 + x,12 + y,0,146,14 );
gfx.PutPixel( 70 + x,12 + y,0,146,14 );
gfx.PutPixel( 71 + x,12 + y,0,146,14 );
gfx.PutPixel( 72 + x,12 + y,0,146,14 );
gfx.PutPixel( 73 + x,12 + y,0,146,14 );
gfx.PutPixel( 74 + x,12 + y,0,146,14 );
gfx.PutPixel( 75 + x,12 + y,0,146,14 );
gfx.PutPixel( 76 + x,12 + y,0,146,14 );
gfx.PutPixel( 77 + x,12 + y,0,146,14 );
gfx.PutPixel( 78 + x,12 + y,0,146,14 );
gfx.PutPixel( 79 + x,12 + y,0,146,14 );
gfx.PutPixel( 80 + x,12 + y,0,146,14 );
gfx.PutPixel( 81 + x,12 + y,0,146,14 );
gfx.PutPixel( 82 + x,12 + y,0,146,14 );
gfx.PutPixel( 83 + x,12 + y,0,146,14 );
gfx.PutPixel( 26 + x,13 + y,0,146,14 );
gfx.PutPixel( 27 + x,13 + y,0,146,14 );
gfx.PutPixel( 28 + x,13 + y,0,146,14 );
gfx.PutPixel( 29 + x,13 + y,0,146,14 );
gfx.PutPixel( 30 + x,13 + y,0,146,14 );
gfx.PutPixel( 31 + x,13 + y,0,146,14 );
gfx.PutPixel( 32 + x,13 + y,0,146,14 );
gfx.PutPixel( 33 + x,13 + y,0,146,14 );
gfx.PutPixel( 34 + x,13 + y,0,146,14 );
gfx.PutPixel( 37 + x,13 + y,0,146,14 );
gfx.PutPixel( 38 + x,13 + y,0,146,14 );
gfx.PutPixel( 39 + x,13 + y,0,146,14 );
gfx.PutPixel( 40 + x,13 + y,0,146,14 );
gfx.PutPixel( 41 + x,13 + y,0,146,14 );
gfx.PutPixel( 42 + x,13 + y,0,146,14 );
gfx.PutPixel( 56 + x,13 + y,0,142,13 );
gfx.PutPixel( 57 + x,13 + y,0,146,14 );
gfx.PutPixel( 58 + x,13 + y,0,146,14 );
gfx.PutPixel( 59 + x,13 + y,0,146,14 );
gfx.PutPixel( 64 + x,13 + y,0,146,14 );
gfx.PutPixel( 65 + x,13 + y,0,146,14 );
gfx.PutPixel( 66 + x,13 + y,0,146,14 );
gfx.PutPixel( 67 + x,13 + y,0,146,14 );
gfx.PutPixel( 68 + x,13 + y,0,146,14 );
gfx.PutPixel( 69 + x,13 + y,0,146,14 );
gfx.PutPixel( 70 + x,13 + y,0,146,14 );
gfx.PutPixel( 71 + x,13 + y,0,146,14 );
gfx.PutPixel( 72 + x,13 + y,0,146,14 );
gfx.PutPixel( 73 + x,13 + y,0,146,14 );
gfx.PutPixel( 74 + x,13 + y,0,146,14 );
gfx.PutPixel( 75 + x,13 + y,0,146,14 );
gfx.PutPixel( 76 + x,13 + y,0,146,14 );
gfx.PutPixel( 77 + x,13 + y,0,146,14 );
gfx.PutPixel( 78 + x,13 + y,0,146,14 );
gfx.PutPixel( 79 + x,13 + y,0,146,14 );
gfx.PutPixel( 80 + x,13 + y,0,146,14 );
gfx.PutPixel( 81 + x,13 + y,0,146,14 );
gfx.PutPixel( 82 + x,13 + y,0,146,14 );
gfx.PutPixel( 83 + x,13 + y,0,146,14 );
gfx.PutPixel( 25 + x,14 + y,0,146,14 );
gfx.PutPixel( 26 + x,14 + y,0,146,14 );
gfx.PutPixel( 27 + x,14 + y,0,146,14 );
gfx.PutPixel( 28 + x,14 + y,0,146,14 );
gfx.PutPixel( 29 + x,14 + y,0,146,14 );
gfx.PutPixel( 30 + x,14 + y,0,146,14 );
gfx.PutPixel( 31 + x,14 + y,0,146,14 );
gfx.PutPixel( 32 + x,14 + y,0,146,14 );
gfx.PutPixel( 33 + x,14 + y,0,146,14 );
gfx.PutPixel( 34 + x,14 + y,0,146,14 );
gfx.PutPixel( 57 + x,14 + y,0,146,14 );
gfx.PutPixel( 58 + x,14 + y,0,146,14 );
gfx.PutPixel( 59 + x,14 + y,0,146,14 );
gfx.PutPixel( 60 + x,14 + y,0,146,14 );
gfx.PutPixel( 64 + x,14 + y,0,146,14 );
gfx.PutPixel( 65 + x,14 + y,0,146,14 );
gfx.PutPixel( 66 + x,14 + y,0,146,14 );
gfx.PutPixel( 67 + x,14 + y,0,146,14 );
gfx.PutPixel( 68 + x,14 + y,0,146,14 );
gfx.PutPixel( 69 + x,14 + y,0,146,14 );
gfx.PutPixel( 70 + x,14 + y,0,146,14 );
gfx.PutPixel( 71 + x,14 + y,0,146,14 );
gfx.PutPixel( 72 + x,14 + y,0,146,14 );
gfx.PutPixel( 73 + x,14 + y,0,146,14 );
gfx.PutPixel( 74 + x,14 + y,0,146,14 );
gfx.PutPixel( 75 + x,14 + y,0,146,14 );
gfx.PutPixel( 76 + x,14 + y,0,146,14 );
gfx.PutPixel( 77 + x,14 + y,0,146,14 );
gfx.PutPixel( 78 + x,14 + y,0,146,14 );
gfx.PutPixel( 79 + x,14 + y,0,146,14 );
gfx.PutPixel( 80 + x,14 + y,0,146,14 );
gfx.PutPixel( 81 + x,14 + y,0,146,14 );
gfx.PutPixel( 82 + x,14 + y,0,146,14 );
gfx.PutPixel( 83 + x,14 + y,0,146,14 );
gfx.PutPixel( 24 + x,15 + y,0,25,2 );
gfx.PutPixel( 25 + x,15 + y,0,146,14 );
gfx.PutPixel( 26 + x,15 + y,0,146,14 );
gfx.PutPixel( 27 + x,15 + y,0,146,14 );
gfx.PutPixel( 28 + x,15 + y,0,146,14 );
gfx.PutPixel( 29 + x,15 + y,0,146,14 );
gfx.PutPixel( 30 + x,15 + y,0,146,14 );
gfx.PutPixel( 31 + x,15 + y,0,146,14 );
gfx.PutPixel( 32 + x,15 + y,0,146,14 );
gfx.PutPixel( 33 + x,15 + y,0,146,14 );
gfx.PutPixel( 34 + x,15 + y,0,146,14 );
gfx.PutPixel( 58 + x,15 + y,0,146,14 );
gfx.PutPixel( 59 + x,15 + y,0,146,14 );
gfx.PutPixel( 60 + x,15 + y,0,146,14 );
gfx.PutPixel( 64 + x,15 + y,0,146,14 );
gfx.PutPixel( 65 + x,15 + y,0,146,14 );
gfx.PutPixel( 66 + x,15 + y,0,146,14 );
gfx.PutPixel( 81 + x,15 + y,0,146,14 );
gfx.PutPixel( 82 + x,15 + y,0,146,14 );
gfx.PutPixel( 83 + x,15 + y,0,146,14 );
gfx.PutPixel( 24 + x,16 + y,0,146,14 );
gfx.PutPixel( 25 + x,16 + y,0,146,14 );
gfx.PutPixel( 26 + x,16 + y,0,146,14 );
gfx.PutPixel( 27 + x,16 + y,0,146,14 );
gfx.PutPixel( 28 + x,16 + y,0,146,14 );
gfx.PutPixel( 29 + x,16 + y,0,146,14 );
gfx.PutPixel( 30 + x,16 + y,0,146,14 );
gfx.PutPixel( 31 + x,16 + y,0,146,14 );
gfx.PutPixel( 32 + x,16 + y,0,146,14 );
gfx.PutPixel( 33 + x,16 + y,0,146,14 );
gfx.PutPixel( 34 + x,16 + y,0,146,14 );
gfx.PutPixel( 58 + x,16 + y,0,146,14 );
gfx.PutPixel( 59 + x,16 + y,0,146,14 );
gfx.PutPixel( 60 + x,16 + y,0,146,14 );
gfx.PutPixel( 61 + x,16 + y,0,146,14 );
gfx.PutPixel( 64 + x,16 + y,0,146,14 );
gfx.PutPixel( 65 + x,16 + y,0,146,14 );
gfx.PutPixel( 66 + x,16 + y,0,146,14 );
gfx.PutPixel( 81 + x,16 + y,0,146,14 );
gfx.PutPixel( 82 + x,16 + y,0,146,14 );
gfx.PutPixel( 83 + x,16 + y,0,146,14 );
gfx.PutPixel( 23 + x,17 + y,0,146,14 );
gfx.PutPixel( 24 + x,17 + y,0,146,14 );
gfx.PutPixel( 25 + x,17 + y,0,146,14 );
gfx.PutPixel( 26 + x,17 + y,0,146,14 );
gfx.PutPixel( 27 + x,17 + y,0,146,14 );
gfx.PutPixel( 28 + x,17 + y,0,146,14 );
gfx.PutPixel( 29 + x,17 + y,0,146,14 );
gfx.PutPixel( 30 + x,17 + y,0,146,14 );
gfx.PutPixel( 31 + x,17 + y,0,146,14 );
gfx.PutPixel( 32 + x,17 + y,0,146,14 );
gfx.PutPixel( 33 + x,17 + y,0,146,14 );
gfx.PutPixel( 34 + x,17 + y,0,146,14 );
gfx.PutPixel( 59 + x,17 + y,0,146,14 );
gfx.PutPixel( 60 + x,17 + y,0,146,14 );
gfx.PutPixel( 61 + x,17 + y,0,146,14 );
gfx.PutPixel( 62 + x,17 + y,0,146,14 );
gfx.PutPixel( 64 + x,17 + y,0,146,14 );
gfx.PutPixel( 65 + x,17 + y,0,146,14 );
gfx.PutPixel( 66 + x,17 + y,0,146,14 );
gfx.PutPixel( 81 + x,17 + y,0,146,14 );
gfx.PutPixel( 82 + x,17 + y,0,146,14 );
gfx.PutPixel( 83 + x,17 + y,0,146,14 );
gfx.PutPixel( 22 + x,18 + y,0,146,14 );
gfx.PutPixel( 23 + x,18 + y,0,146,14 );
gfx.PutPixel( 24 + x,18 + y,0,146,14 );
gfx.PutPixel( 25 + x,18 + y,0,146,14 );
gfx.PutPixel( 26 + x,18 + y,0,146,14 );
gfx.PutPixel( 27 + x,18 + y,0,146,14 );
gfx.PutPixel( 28 + x,18 + y,0,146,14 );
gfx.PutPixel( 29 + x,18 + y,0,146,14 );
gfx.PutPixel( 30 + x,18 + y,0,146,14 );
gfx.PutPixel( 31 + x,18 + y,0,146,14 );
gfx.PutPixel( 32 + x,18 + y,0,146,14 );
gfx.PutPixel( 33 + x,18 + y,0,146,14 );
gfx.PutPixel( 34 + x,18 + y,0,146,14 );
gfx.PutPixel( 60 + x,18 + y,0,146,14 );
gfx.PutPixel( 61 + x,18 + y,0,146,14 );
gfx.PutPixel( 62 + x,18 + y,0,146,14 );
gfx.PutPixel( 64 + x,18 + y,0,146,14 );
gfx.PutPixel( 65 + x,18 + y,0,146,14 );
gfx.PutPixel( 66 + x,18 + y,0,146,14 );
gfx.PutPixel( 81 + x,18 + y,0,146,14 );
gfx.PutPixel( 82 + x,18 + y,0,146,14 );
gfx.PutPixel( 83 + x,18 + y,0,146,14 );
gfx.PutPixel( 21 + x,19 + y,0,146,14 );
gfx.PutPixel( 22 + x,19 + y,0,146,14 );
gfx.PutPixel( 23 + x,19 + y,0,146,14 );
gfx.PutPixel( 24 + x,19 + y,0,146,14 );
gfx.PutPixel( 25 + x,19 + y,0,146,14 );
gfx.PutPixel( 26 + x,19 + y,0,146,14 );
gfx.PutPixel( 27 + x,19 + y,0,146,14 );
gfx.PutPixel( 28 + x,19 + y,0,146,14 );
gfx.PutPixel( 29 + x,19 + y,0,146,14 );
gfx.PutPixel( 30 + x,19 + y,0,146,14 );
gfx.PutPixel( 31 + x,19 + y,0,146,14 );
gfx.PutPixel( 32 + x,19 + y,0,146,14 );
gfx.PutPixel( 33 + x,19 + y,0,146,14 );
gfx.PutPixel( 34 + x,19 + y,0,146,14 );
gfx.PutPixel( 60 + x,19 + y,0,146,14 );
gfx.PutPixel( 61 + x,19 + y,0,146,14 );
gfx.PutPixel( 62 + x,19 + y,0,146,14 );
gfx.PutPixel( 63 + x,19 + y,0,146,14 );
gfx.PutPixel( 64 + x,19 + y,0,146,14 );
gfx.PutPixel( 65 + x,19 + y,0,146,14 );
gfx.PutPixel( 66 + x,19 + y,0,146,14 );
gfx.PutPixel( 81 + x,19 + y,0,146,14 );
gfx.PutPixel( 82 + x,19 + y,0,146,14 );
gfx.PutPixel( 83 + x,19 + y,0,146,14 );
gfx.PutPixel( 20 + x,20 + y,0,146,14 );
gfx.PutPixel( 21 + x,20 + y,0,146,14 );
gfx.PutPixel( 22 + x,20 + y,0,146,14 );
gfx.PutPixel( 23 + x,20 + y,0,146,14 );
gfx.PutPixel( 24 + x,20 + y,0,146,14 );
gfx.PutPixel( 25 + x,20 + y,0,146,14 );
gfx.PutPixel( 26 + x,20 + y,0,146,14 );
gfx.PutPixel( 27 + x,20 + y,0,146,14 );
gfx.PutPixel( 28 + x,20 + y,0,146,14 );
gfx.PutPixel( 29 + x,20 + y,0,146,14 );
gfx.PutPixel( 30 + x,20 + y,0,146,14 );
gfx.PutPixel( 31 + x,20 + y,0,146,14 );
gfx.PutPixel( 32 + x,20 + y,0,146,14 );
gfx.PutPixel( 33 + x,20 + y,0,146,14 );
gfx.PutPixel( 34 + x,20 + y,0,146,14 );
gfx.PutPixel( 61 + x,20 + y,0,146,14 );
gfx.PutPixel( 62 + x,20 + y,0,146,14 );
gfx.PutPixel( 63 + x,20 + y,0,146,14 );
gfx.PutPixel( 64 + x,20 + y,0,146,14 );
gfx.PutPixel( 65 + x,20 + y,0,146,14 );
gfx.PutPixel( 66 + x,20 + y,0,146,14 );
gfx.PutPixel( 81 + x,20 + y,0,146,14 );
gfx.PutPixel( 82 + x,20 + y,0,146,14 );
gfx.PutPixel( 83 + x,20 + y,0,146,14 );
gfx.PutPixel( 19 + x,21 + y,0,146,14 );
gfx.PutPixel( 20 + x,21 + y,0,146,14 );
gfx.PutPixel( 21 + x,21 + y,0,146,14 );
gfx.PutPixel( 22 + x,21 + y,0,146,14 );
gfx.PutPixel( 23 + x,21 + y,0,146,14 );
gfx.PutPixel( 24 + x,21 + y,0,146,14 );
gfx.PutPixel( 25 + x,21 + y,0,146,14 );
gfx.PutPixel( 26 + x,21 + y,0,146,14 );
gfx.PutPixel( 27 + x,21 + y,0,146,14 );
gfx.PutPixel( 28 + x,21 + y,0,146,14 );
gfx.PutPixel( 29 + x,21 + y,0,146,14 );
gfx.PutPixel( 30 + x,21 + y,0,146,14 );
gfx.PutPixel( 31 + x,21 + y,0,146,14 );
gfx.PutPixel( 32 + x,21 + y,0,146,14 );
gfx.PutPixel( 33 + x,21 + y,0,146,14 );
gfx.PutPixel( 34 + x,21 + y,0,146,14 );
gfx.PutPixel( 61 + x,21 + y,0,146,14 );
gfx.PutPixel( 62 + x,21 + y,0,146,14 );
gfx.PutPixel( 63 + x,21 + y,0,146,14 );
gfx.PutPixel( 64 + x,21 + y,0,146,14 );
gfx.PutPixel( 65 + x,21 + y,0,146,14 );
gfx.PutPixel( 66 + x,21 + y,0,146,14 );
gfx.PutPixel( 81 + x,21 + y,0,146,14 );
gfx.PutPixel( 82 + x,21 + y,0,146,14 );
gfx.PutPixel( 83 + x,21 + y,0,146,14 );
gfx.PutPixel( 18 + x,22 + y,0,146,14 );
gfx.PutPixel( 19 + x,22 + y,0,146,14 );
gfx.PutPixel( 20 + x,22 + y,0,146,14 );
gfx.PutPixel( 21 + x,22 + y,0,146,14 );
gfx.PutPixel( 22 + x,22 + y,0,146,14 );
gfx.PutPixel( 23 + x,22 + y,0,146,14 );
gfx.PutPixel( 24 + x,22 + y,0,146,14 );
gfx.PutPixel( 25 + x,22 + y,0,146,14 );
gfx.PutPixel( 26 + x,22 + y,0,146,14 );
gfx.PutPixel( 27 + x,22 + y,0,146,14 );
gfx.PutPixel( 28 + x,22 + y,0,146,14 );
gfx.PutPixel( 29 + x,22 + y,0,146,14 );
gfx.PutPixel( 30 + x,22 + y,0,146,14 );
gfx.PutPixel( 31 + x,22 + y,0,146,14 );
gfx.PutPixel( 32 + x,22 + y,0,146,14 );
gfx.PutPixel( 33 + x,22 + y,0,146,14 );
gfx.PutPixel( 34 + x,22 + y,0,146,14 );
gfx.PutPixel( 35 + x,22 + y,0,25,2 );
gfx.PutPixel( 62 + x,22 + y,0,146,14 );
gfx.PutPixel( 63 + x,22 + y,0,146,14 );
gfx.PutPixel( 64 + x,22 + y,0,146,14 );
gfx.PutPixel( 65 + x,22 + y,0,146,14 );
gfx.PutPixel( 66 + x,22 + y,0,146,14 );
gfx.PutPixel( 81 + x,22 + y,0,146,14 );
gfx.PutPixel( 82 + x,22 + y,0,146,14 );
gfx.PutPixel( 83 + x,22 + y,0,146,14 );
gfx.PutPixel( 17 + x,23 + y,0,3,0 );
gfx.PutPixel( 18 + x,23 + y,0,146,14 );
gfx.PutPixel( 19 + x,23 + y,0,146,14 );
gfx.PutPixel( 20 + x,23 + y,0,146,14 );
gfx.PutPixel( 21 + x,23 + y,0,146,14 );
gfx.PutPixel( 22 + x,23 + y,0,146,14 );
gfx.PutPixel( 23 + x,23 + y,0,146,14 );
gfx.PutPixel( 24 + x,23 + y,0,146,14 );
gfx.PutPixel( 25 + x,23 + y,0,146,14 );
gfx.PutPixel( 26 + x,23 + y,0,146,14 );
gfx.PutPixel( 27 + x,23 + y,0,146,14 );
gfx.PutPixel( 28 + x,23 + y,0,146,14 );
gfx.PutPixel( 30 + x,23 + y,0,146,14 );
gfx.PutPixel( 31 + x,23 + y,0,146,14 );
gfx.PutPixel( 32 + x,23 + y,0,146,14 );
gfx.PutPixel( 33 + x,23 + y,0,146,14 );
gfx.PutPixel( 34 + x,23 + y,0,146,14 );
gfx.PutPixel( 35 + x,23 + y,0,25,2 );
gfx.PutPixel( 63 + x,23 + y,0,146,14 );
gfx.PutPixel( 64 + x,23 + y,0,146,14 );
gfx.PutPixel( 65 + x,23 + y,0,146,14 );
gfx.PutPixel( 66 + x,23 + y,0,146,14 );
gfx.PutPixel( 81 + x,23 + y,0,146,14 );
gfx.PutPixel( 82 + x,23 + y,0,146,14 );
gfx.PutPixel( 83 + x,23 + y,0,146,14 );
gfx.PutPixel( 17 + x,24 + y,0,146,14 );
gfx.PutPixel( 18 + x,24 + y,0,146,14 );
gfx.PutPixel( 19 + x,24 + y,0,146,14 );
gfx.PutPixel( 20 + x,24 + y,0,146,14 );
gfx.PutPixel( 21 + x,24 + y,0,146,14 );
gfx.PutPixel( 22 + x,24 + y,0,146,14 );
gfx.PutPixel( 23 + x,24 + y,0,146,14 );
gfx.PutPixel( 24 + x,24 + y,0,146,14 );
gfx.PutPixel( 25 + x,24 + y,0,146,14 );
gfx.PutPixel( 26 + x,24 + y,0,146,14 );
gfx.PutPixel( 27 + x,24 + y,0,146,14 );
gfx.PutPixel( 30 + x,24 + y,0,146,14 );
gfx.PutPixel( 31 + x,24 + y,0,146,14 );
gfx.PutPixel( 32 + x,24 + y,0,146,14 );
gfx.PutPixel( 33 + x,24 + y,0,146,14 );
gfx.PutPixel( 34 + x,24 + y,0,146,14 );
gfx.PutPixel( 35 + x,24 + y,0,146,14 );
gfx.PutPixel( 36 + x,24 + y,0,146,14 );
gfx.PutPixel( 37 + x,24 + y,0,146,14 );
gfx.PutPixel( 38 + x,24 + y,0,146,14 );
gfx.PutPixel( 39 + x,24 + y,0,146,14 );
gfx.PutPixel( 40 + x,24 + y,0,146,14 );
gfx.PutPixel( 41 + x,24 + y,0,146,14 );
gfx.PutPixel( 42 + x,24 + y,0,146,14 );
gfx.PutPixel( 43 + x,24 + y,0,146,14 );
gfx.PutPixel( 44 + x,24 + y,0,146,14 );
gfx.PutPixel( 45 + x,24 + y,0,146,14 );
gfx.PutPixel( 46 + x,24 + y,0,146,14 );
gfx.PutPixel( 47 + x,24 + y,0,146,14 );
gfx.PutPixel( 48 + x,24 + y,0,146,14 );
gfx.PutPixel( 49 + x,24 + y,0,146,14 );
gfx.PutPixel( 50 + x,24 + y,0,146,14 );
gfx.PutPixel( 51 + x,24 + y,0,146,14 );
gfx.PutPixel( 52 + x,24 + y,0,146,14 );
gfx.PutPixel( 53 + x,24 + y,0,146,14 );
gfx.PutPixel( 54 + x,24 + y,0,146,14 );
gfx.PutPixel( 55 + x,24 + y,0,146,14 );
gfx.PutPixel( 56 + x,24 + y,0,146,14 );
gfx.PutPixel( 57 + x,24 + y,0,146,14 );
gfx.PutPixel( 58 + x,24 + y,0,146,14 );
gfx.PutPixel( 59 + x,24 + y,0,146,14 );
gfx.PutPixel( 60 + x,24 + y,0,146,14 );
gfx.PutPixel( 61 + x,24 + y,0,146,14 );
gfx.PutPixel( 62 + x,24 + y,0,146,14 );
gfx.PutPixel( 63 + x,24 + y,0,146,14 );
gfx.PutPixel( 64 + x,24 + y,0,146,14 );
gfx.PutPixel( 65 + x,24 + y,0,146,14 );
gfx.PutPixel( 66 + x,24 + y,0,146,14 );
gfx.PutPixel( 81 + x,24 + y,0,146,14 );
gfx.PutPixel( 82 + x,24 + y,0,146,14 );
gfx.PutPixel( 83 + x,24 + y,0,146,14 );
gfx.PutPixel( 16 + x,25 + y,0,146,14 );
gfx.PutPixel( 17 + x,25 + y,0,146,14 );
gfx.PutPixel( 18 + x,25 + y,0,146,14 );
gfx.PutPixel( 19 + x,25 + y,0,146,14 );
gfx.PutPixel( 20 + x,25 + y,0,146,14 );
gfx.PutPixel( 21 + x,25 + y,0,146,14 );
gfx.PutPixel( 22 + x,25 + y,0,146,14 );
gfx.PutPixel( 23 + x,25 + y,0,146,14 );
gfx.PutPixel( 24 + x,25 + y,0,146,14 );
gfx.PutPixel( 25 + x,25 + y,0,146,14 );
gfx.PutPixel( 26 + x,25 + y,0,146,14 );
gfx.PutPixel( 30 + x,25 + y,0,146,14 );
gfx.PutPixel( 31 + x,25 + y,0,146,14 );
gfx.PutPixel( 32 + x,25 + y,0,146,14 );
gfx.PutPixel( 33 + x,25 + y,0,146,14 );
gfx.PutPixel( 34 + x,25 + y,0,146,14 );
gfx.PutPixel( 35 + x,25 + y,0,146,14 );
gfx.PutPixel( 36 + x,25 + y,0,146,14 );
gfx.PutPixel( 37 + x,25 + y,0,146,14 );
gfx.PutPixel( 38 + x,25 + y,0,146,14 );
gfx.PutPixel( 39 + x,25 + y,0,146,14 );
gfx.PutPixel( 40 + x,25 + y,0,146,14 );
gfx.PutPixel( 41 + x,25 + y,0,146,14 );
gfx.PutPixel( 42 + x,25 + y,0,146,14 );
gfx.PutPixel( 43 + x,25 + y,0,146,14 );
gfx.PutPixel( 44 + x,25 + y,0,146,14 );
gfx.PutPixel( 45 + x,25 + y,0,146,14 );
gfx.PutPixel( 46 + x,25 + y,0,146,14 );
gfx.PutPixel( 47 + x,25 + y,0,146,14 );
gfx.PutPixel( 48 + x,25 + y,0,146,14 );
gfx.PutPixel( 49 + x,25 + y,0,146,14 );
gfx.PutPixel( 50 + x,25 + y,0,146,14 );
gfx.PutPixel( 51 + x,25 + y,0,146,14 );
gfx.PutPixel( 52 + x,25 + y,0,146,14 );
gfx.PutPixel( 53 + x,25 + y,0,146,14 );
gfx.PutPixel( 54 + x,25 + y,0,146,14 );
gfx.PutPixel( 55 + x,25 + y,0,146,14 );
gfx.PutPixel( 56 + x,25 + y,0,146,14 );
gfx.PutPixel( 57 + x,25 + y,0,146,14 );
gfx.PutPixel( 58 + x,25 + y,0,146,14 );
gfx.PutPixel( 59 + x,25 + y,0,146,14 );
gfx.PutPixel( 60 + x,25 + y,0,146,14 );
gfx.PutPixel( 61 + x,25 + y,0,146,14 );
gfx.PutPixel( 62 + x,25 + y,0,146,14 );
gfx.PutPixel( 63 + x,25 + y,0,146,14 );
gfx.PutPixel( 64 + x,25 + y,0,146,14 );
gfx.PutPixel( 65 + x,25 + y,0,146,14 );
gfx.PutPixel( 66 + x,25 + y,0,146,14 );
gfx.PutPixel( 81 + x,25 + y,0,146,14 );
gfx.PutPixel( 82 + x,25 + y,0,146,14 );
gfx.PutPixel( 83 + x,25 + y,0,146,14 );
gfx.PutPixel( 15 + x,26 + y,0,146,14 );
gfx.PutPixel( 16 + x,26 + y,0,146,14 );
gfx.PutPixel( 17 + x,26 + y,0,146,14 );
gfx.PutPixel( 18 + x,26 + y,0,146,14 );
gfx.PutPixel( 19 + x,26 + y,0,146,14 );
gfx.PutPixel( 20 + x,26 + y,0,146,14 );
gfx.PutPixel( 21 + x,26 + y,0,146,14 );
gfx.PutPixel( 22 + x,26 + y,0,146,14 );
gfx.PutPixel( 23 + x,26 + y,0,146,14 );
gfx.PutPixel( 24 + x,26 + y,0,146,14 );
gfx.PutPixel( 25 + x,26 + y,0,146,14 );
gfx.PutPixel( 30 + x,26 + y,0,146,14 );
gfx.PutPixel( 31 + x,26 + y,0,146,14 );
gfx.PutPixel( 32 + x,26 + y,0,146,14 );
gfx.PutPixel( 33 + x,26 + y,0,146,14 );
gfx.PutPixel( 34 + x,26 + y,0,146,14 );
gfx.PutPixel( 35 + x,26 + y,0,146,14 );
gfx.PutPixel( 36 + x,26 + y,0,146,14 );
gfx.PutPixel( 37 + x,26 + y,0,146,14 );
gfx.PutPixel( 38 + x,26 + y,0,146,14 );
gfx.PutPixel( 39 + x,26 + y,0,146,14 );
gfx.PutPixel( 40 + x,26 + y,0,146,14 );
gfx.PutPixel( 41 + x,26 + y,0,146,14 );
gfx.PutPixel( 42 + x,26 + y,0,146,14 );
gfx.PutPixel( 43 + x,26 + y,0,146,14 );
gfx.PutPixel( 44 + x,26 + y,0,146,14 );
gfx.PutPixel( 45 + x,26 + y,0,146,14 );
gfx.PutPixel( 46 + x,26 + y,0,146,14 );
gfx.PutPixel( 47 + x,26 + y,0,146,14 );
gfx.PutPixel( 48 + x,26 + y,0,146,14 );
gfx.PutPixel( 49 + x,26 + y,0,146,14 );
gfx.PutPixel( 50 + x,26 + y,0,146,14 );
gfx.PutPixel( 51 + x,26 + y,0,146,14 );
gfx.PutPixel( 52 + x,26 + y,0,146,14 );
gfx.PutPixel( 53 + x,26 + y,0,146,14 );
gfx.PutPixel( 54 + x,26 + y,0,146,14 );
gfx.PutPixel( 55 + x,26 + y,0,146,14 );
gfx.PutPixel( 56 + x,26 + y,0,146,14 );
gfx.PutPixel( 57 + x,26 + y,0,146,14 );
gfx.PutPixel( 58 + x,26 + y,0,146,14 );
gfx.PutPixel( 59 + x,26 + y,0,146,14 );
gfx.PutPixel( 60 + x,26 + y,0,146,14 );
gfx.PutPixel( 61 + x,26 + y,0,146,14 );
gfx.PutPixel( 62 + x,26 + y,0,146,14 );
gfx.PutPixel( 63 + x,26 + y,0,146,14 );
gfx.PutPixel( 64 + x,26 + y,0,146,14 );
gfx.PutPixel( 65 + x,26 + y,0,146,14 );
gfx.PutPixel( 66 + x,26 + y,0,146,14 );
gfx.PutPixel( 81 + x,26 + y,0,146,14 );
gfx.PutPixel( 82 + x,26 + y,0,146,14 );
gfx.PutPixel( 83 + x,26 + y,0,146,14 );
gfx.PutPixel( 14 + x,27 + y,0,146,14 );
gfx.PutPixel( 15 + x,27 + y,0,146,14 );
gfx.PutPixel( 16 + x,27 + y,0,146,14 );
gfx.PutPixel( 17 + x,27 + y,0,146,14 );
gfx.PutPixel( 18 + x,27 + y,0,146,14 );
gfx.PutPixel( 19 + x,27 + y,0,146,14 );
gfx.PutPixel( 20 + x,27 + y,0,146,14 );
gfx.PutPixel( 21 + x,27 + y,0,146,14 );
gfx.PutPixel( 22 + x,27 + y,0,146,14 );
gfx.PutPixel( 23 + x,27 + y,0,146,14 );
gfx.PutPixel( 24 + x,27 + y,0,146,14 );
gfx.PutPixel( 30 + x,27 + y,0,146,14 );
gfx.PutPixel( 31 + x,27 + y,0,146,14 );
gfx.PutPixel( 32 + x,27 + y,0,146,14 );
gfx.PutPixel( 33 + x,27 + y,0,146,14 );
gfx.PutPixel( 34 + x,27 + y,0,146,14 );
gfx.PutPixel( 35 + x,27 + y,0,146,14 );
gfx.PutPixel( 36 + x,27 + y,0,146,14 );
gfx.PutPixel( 37 + x,27 + y,0,146,14 );
gfx.PutPixel( 38 + x,27 + y,0,146,14 );
gfx.PutPixel( 39 + x,27 + y,0,146,14 );
gfx.PutPixel( 40 + x,27 + y,0,146,14 );
gfx.PutPixel( 41 + x,27 + y,0,146,14 );
gfx.PutPixel( 42 + x,27 + y,0,146,14 );
gfx.PutPixel( 43 + x,27 + y,0,146,14 );
gfx.PutPixel( 44 + x,27 + y,0,146,14 );
gfx.PutPixel( 45 + x,27 + y,0,146,14 );
gfx.PutPixel( 46 + x,27 + y,0,146,14 );
gfx.PutPixel( 64 + x,27 + y,0,146,14 );
gfx.PutPixel( 65 + x,27 + y,0,146,14 );
gfx.PutPixel( 66 + x,27 + y,0,146,14 );
gfx.PutPixel( 81 + x,27 + y,0,146,14 );
gfx.PutPixel( 82 + x,27 + y,0,146,14 );
gfx.PutPixel( 83 + x,27 + y,0,146,14 );
gfx.PutPixel( 13 + x,28 + y,0,146,14 );
gfx.PutPixel( 14 + x,28 + y,0,146,14 );
gfx.PutPixel( 15 + x,28 + y,0,146,14 );
gfx.PutPixel( 16 + x,28 + y,0,146,14 );
gfx.PutPixel( 17 + x,28 + y,0,146,14 );
gfx.PutPixel( 18 + x,28 + y,0,146,14 );
gfx.PutPixel( 19 + x,28 + y,0,146,14 );
gfx.PutPixel( 20 + x,28 + y,0,146,14 );
gfx.PutPixel( 21 + x,28 + y,0,146,14 );
gfx.PutPixel( 22 + x,28 + y,0,146,14 );
gfx.PutPixel( 23 + x,28 + y,0,146,14 );
gfx.PutPixel( 30 + x,28 + y,0,146,14 );
gfx.PutPixel( 31 + x,28 + y,0,146,14 );
gfx.PutPixel( 32 + x,28 + y,0,146,14 );
gfx.PutPixel( 33 + x,28 + y,0,146,14 );
gfx.PutPixel( 34 + x,28 + y,0,146,14 );
gfx.PutPixel( 35 + x,28 + y,0,146,14 );
gfx.PutPixel( 36 + x,28 + y,0,146,14 );
gfx.PutPixel( 37 + x,28 + y,0,146,14 );
gfx.PutPixel( 38 + x,28 + y,0,146,14 );
gfx.PutPixel( 39 + x,28 + y,0,146,14 );
gfx.PutPixel( 40 + x,28 + y,0,146,14 );
gfx.PutPixel( 41 + x,28 + y,0,146,14 );
gfx.PutPixel( 42 + x,28 + y,0,146,14 );
gfx.PutPixel( 43 + x,28 + y,0,146,14 );
gfx.PutPixel( 44 + x,28 + y,0,146,14 );
gfx.PutPixel( 45 + x,28 + y,0,146,14 );
gfx.PutPixel( 46 + x,28 + y,0,146,14 );
gfx.PutPixel( 47 + x,28 + y,0,146,14 );
gfx.PutPixel( 64 + x,28 + y,0,146,14 );
gfx.PutPixel( 65 + x,28 + y,0,146,14 );
gfx.PutPixel( 66 + x,28 + y,0,146,14 );
gfx.PutPixel( 81 + x,28 + y,0,146,14 );
gfx.PutPixel( 82 + x,28 + y,0,146,14 );
gfx.PutPixel( 83 + x,28 + y,0,146,14 );
gfx.PutPixel( 12 + x,29 + y,0,146,14 );
gfx.PutPixel( 13 + x,29 + y,0,146,14 );
gfx.PutPixel( 14 + x,29 + y,0,146,14 );
gfx.PutPixel( 15 + x,29 + y,0,146,14 );
gfx.PutPixel( 16 + x,29 + y,0,146,14 );
gfx.PutPixel( 17 + x,29 + y,0,146,14 );
gfx.PutPixel( 18 + x,29 + y,0,146,14 );
gfx.PutPixel( 19 + x,29 + y,0,146,14 );
gfx.PutPixel( 20 + x,29 + y,0,146,14 );
gfx.PutPixel( 21 + x,29 + y,0,146,14 );
gfx.PutPixel( 22 + x,29 + y,0,146,14 );
gfx.PutPixel( 23 + x,29 + y,0,146,14 );
gfx.PutPixel( 30 + x,29 + y,0,146,14 );
gfx.PutPixel( 31 + x,29 + y,0,146,14 );
gfx.PutPixel( 32 + x,29 + y,0,146,14 );
gfx.PutPixel( 33 + x,29 + y,0,146,14 );
gfx.PutPixel( 34 + x,29 + y,0,146,14 );
gfx.PutPixel( 35 + x,29 + y,0,146,14 );
gfx.PutPixel( 36 + x,29 + y,0,146,14 );
gfx.PutPixel( 37 + x,29 + y,0,146,14 );
gfx.PutPixel( 38 + x,29 + y,0,146,14 );
gfx.PutPixel( 39 + x,29 + y,0,146,14 );
gfx.PutPixel( 40 + x,29 + y,0,146,14 );
gfx.PutPixel( 41 + x,29 + y,0,146,14 );
gfx.PutPixel( 42 + x,29 + y,0,146,14 );
gfx.PutPixel( 43 + x,29 + y,0,146,14 );
gfx.PutPixel( 44 + x,29 + y,0,146,14 );
gfx.PutPixel( 45 + x,29 + y,0,146,14 );
gfx.PutPixel( 46 + x,29 + y,0,146,14 );
gfx.PutPixel( 47 + x,29 + y,0,146,14 );
gfx.PutPixel( 63 + x,29 + y,0,25,2 );
gfx.PutPixel( 64 + x,29 + y,0,146,14 );
gfx.PutPixel( 65 + x,29 + y,0,146,14 );
gfx.PutPixel( 66 + x,29 + y,0,146,14 );
gfx.PutPixel( 81 + x,29 + y,0,146,14 );
gfx.PutPixel( 82 + x,29 + y,0,146,14 );
gfx.PutPixel( 83 + x,29 + y,0,146,14 );
gfx.PutPixel( 11 + x,30 + y,0,146,14 );
gfx.PutPixel( 12 + x,30 + y,0,146,14 );
gfx.PutPixel( 13 + x,30 + y,0,146,14 );
gfx.PutPixel( 14 + x,30 + y,0,146,14 );
gfx.PutPixel( 15 + x,30 + y,0,146,14 );
gfx.PutPixel( 16 + x,30 + y,0,146,14 );
gfx.PutPixel( 17 + x,30 + y,0,146,14 );
gfx.PutPixel( 18 + x,30 + y,0,146,14 );
gfx.PutPixel( 19 + x,30 + y,0,146,14 );
gfx.PutPixel( 20 + x,30 + y,0,146,14 );
gfx.PutPixel( 21 + x,30 + y,0,146,14 );
gfx.PutPixel( 22 + x,30 + y,0,146,14 );
gfx.PutPixel( 30 + x,30 + y,0,146,14 );
gfx.PutPixel( 31 + x,30 + y,0,146,14 );
gfx.PutPixel( 32 + x,30 + y,0,146,14 );
gfx.PutPixel( 33 + x,30 + y,0,146,14 );
gfx.PutPixel( 34 + x,30 + y,0,146,14 );
gfx.PutPixel( 35 + x,30 + y,0,146,14 );
gfx.PutPixel( 36 + x,30 + y,0,146,14 );
gfx.PutPixel( 37 + x,30 + y,0,146,14 );
gfx.PutPixel( 38 + x,30 + y,0,146,14 );
gfx.PutPixel( 39 + x,30 + y,0,146,14 );
gfx.PutPixel( 40 + x,30 + y,0,146,14 );
gfx.PutPixel( 41 + x,30 + y,0,146,14 );
gfx.PutPixel( 42 + x,30 + y,0,146,14 );
gfx.PutPixel( 43 + x,30 + y,0,146,14 );
gfx.PutPixel( 44 + x,30 + y,0,146,14 );
gfx.PutPixel( 45 + x,30 + y,0,146,14 );
gfx.PutPixel( 46 + x,30 + y,0,146,14 );
gfx.PutPixel( 47 + x,30 + y,0,146,14 );
gfx.PutPixel( 63 + x,30 + y,0,146,14 );
gfx.PutPixel( 64 + x,30 + y,0,146,14 );
gfx.PutPixel( 65 + x,30 + y,0,146,14 );
gfx.PutPixel( 66 + x,30 + y,0,146,14 );
gfx.PutPixel( 80 + x,30 + y,0,25,2 );
gfx.PutPixel( 81 + x,30 + y,0,146,14 );
gfx.PutPixel( 82 + x,30 + y,0,146,14 );
gfx.PutPixel( 83 + x,30 + y,0,146,14 );
gfx.PutPixel( 10 + x,31 + y,0,70,6 );
gfx.PutPixel( 11 + x,31 + y,0,146,14 );
gfx.PutPixel( 12 + x,31 + y,0,146,14 );
gfx.PutPixel( 13 + x,31 + y,0,146,14 );
gfx.PutPixel( 14 + x,31 + y,0,146,14 );
gfx.PutPixel( 15 + x,31 + y,0,146,14 );
gfx.PutPixel( 16 + x,31 + y,0,146,14 );
gfx.PutPixel( 17 + x,31 + y,0,146,14 );
gfx.PutPixel( 18 + x,31 + y,0,146,14 );
gfx.PutPixel( 19 + x,31 + y,0,146,14 );
gfx.PutPixel( 20 + x,31 + y,0,146,14 );
gfx.PutPixel( 21 + x,31 + y,0,146,14 );
gfx.PutPixel( 30 + x,31 + y,0,146,14 );
gfx.PutPixel( 31 + x,31 + y,0,146,14 );
gfx.PutPixel( 32 + x,31 + y,0,146,14 );
gfx.PutPixel( 33 + x,31 + y,0,146,14 );
gfx.PutPixel( 34 + x,31 + y,0,146,14 );
gfx.PutPixel( 35 + x,31 + y,0,146,14 );
gfx.PutPixel( 36 + x,31 + y,0,146,14 );
gfx.PutPixel( 37 + x,31 + y,0,146,14 );
gfx.PutPixel( 38 + x,31 + y,0,146,14 );
gfx.PutPixel( 39 + x,31 + y,0,146,14 );
gfx.PutPixel( 40 + x,31 + y,0,146,14 );
gfx.PutPixel( 41 + x,31 + y,0,146,14 );
gfx.PutPixel( 42 + x,31 + y,0,146,14 );
gfx.PutPixel( 43 + x,31 + y,0,146,14 );
gfx.PutPixel( 44 + x,31 + y,0,146,14 );
gfx.PutPixel( 45 + x,31 + y,0,146,14 );
gfx.PutPixel( 46 + x,31 + y,0,146,14 );
gfx.PutPixel( 47 + x,31 + y,0,146,14 );
gfx.PutPixel( 63 + x,31 + y,0,146,14 );
gfx.PutPixel( 64 + x,31 + y,0,146,14 );
gfx.PutPixel( 65 + x,31 + y,0,146,14 );
gfx.PutPixel( 66 + x,31 + y,0,146,14 );
gfx.PutPixel( 67 + x,31 + y,0,146,14 );
gfx.PutPixel( 80 + x,31 + y,0,146,14 );
gfx.PutPixel( 81 + x,31 + y,0,146,14 );
gfx.PutPixel( 82 + x,31 + y,0,146,14 );
gfx.PutPixel( 10 + x,32 + y,0,146,14 );
gfx.PutPixel( 11 + x,32 + y,0,146,14 );
gfx.PutPixel( 12 + x,32 + y,0,146,14 );
gfx.PutPixel( 13 + x,32 + y,0,146,14 );
gfx.PutPixel( 14 + x,32 + y,0,146,14 );
gfx.PutPixel( 15 + x,32 + y,0,146,14 );
gfx.PutPixel( 16 + x,32 + y,0,146,14 );
gfx.PutPixel( 17 + x,32 + y,0,146,14 );
gfx.PutPixel( 18 + x,32 + y,0,146,14 );
gfx.PutPixel( 19 + x,32 + y,0,146,14 );
gfx.PutPixel( 20 + x,32 + y,0,146,14 );
gfx.PutPixel( 32 + x,32 + y,0,146,14 );
gfx.PutPixel( 33 + x,32 + y,0,146,14 );
gfx.PutPixel( 34 + x,32 + y,0,146,14 );
gfx.PutPixel( 35 + x,32 + y,0,146,14 );
gfx.PutPixel( 36 + x,32 + y,0,146,14 );
gfx.PutPixel( 37 + x,32 + y,0,146,14 );
gfx.PutPixel( 38 + x,32 + y,0,146,14 );
gfx.PutPixel( 39 + x,32 + y,0,146,14 );
gfx.PutPixel( 40 + x,32 + y,0,146,14 );
gfx.PutPixel( 41 + x,32 + y,0,146,14 );
gfx.PutPixel( 42 + x,32 + y,0,146,14 );
gfx.PutPixel( 43 + x,32 + y,0,146,14 );
gfx.PutPixel( 44 + x,32 + y,0,146,14 );
gfx.PutPixel( 45 + x,32 + y,0,146,14 );
gfx.PutPixel( 46 + x,32 + y,0,118,11 );
gfx.PutPixel( 62 + x,32 + y,0,146,14 );
gfx.PutPixel( 63 + x,32 + y,0,146,14 );
gfx.PutPixel( 64 + x,32 + y,0,146,14 );
gfx.PutPixel( 65 + x,32 + y,0,146,14 );
gfx.PutPixel( 66 + x,32 + y,0,146,14 );
gfx.PutPixel( 67 + x,32 + y,0,146,14 );
gfx.PutPixel( 68 + x,32 + y,0,25,2 );
gfx.PutPixel( 79 + x,32 + y,0,146,14 );
gfx.PutPixel( 80 + x,32 + y,0,146,14 );
gfx.PutPixel( 81 + x,32 + y,0,146,14 );
gfx.PutPixel( 82 + x,32 + y,0,146,14 );
gfx.PutPixel( 9 + x,33 + y,0,146,14 );
gfx.PutPixel( 10 + x,33 + y,0,146,14 );
gfx.PutPixel( 11 + x,33 + y,0,146,14 );
gfx.PutPixel( 12 + x,33 + y,0,146,14 );
gfx.PutPixel( 13 + x,33 + y,0,146,14 );
gfx.PutPixel( 14 + x,33 + y,0,146,14 );
gfx.PutPixel( 15 + x,33 + y,0,146,14 );
gfx.PutPixel( 16 + x,33 + y,0,146,14 );
gfx.PutPixel( 17 + x,33 + y,0,146,14 );
gfx.PutPixel( 18 + x,33 + y,0,146,14 );
gfx.PutPixel( 19 + x,33 + y,0,146,14 );
gfx.PutPixel( 35 + x,33 + y,0,146,14 );
gfx.PutPixel( 36 + x,33 + y,0,146,14 );
gfx.PutPixel( 37 + x,33 + y,0,146,14 );
gfx.PutPixel( 62 + x,33 + y,0,146,14 );
gfx.PutPixel( 63 + x,33 + y,0,146,14 );
gfx.PutPixel( 64 + x,33 + y,0,146,14 );
gfx.PutPixel( 65 + x,33 + y,0,146,14 );
gfx.PutPixel( 66 + x,33 + y,0,146,14 );
gfx.PutPixel( 67 + x,33 + y,0,146,14 );
gfx.PutPixel( 68 + x,33 + y,0,146,14 );
gfx.PutPixel( 69 + x,33 + y,0,146,14 );
gfx.PutPixel( 70 + x,33 + y,0,146,14 );
gfx.PutPixel( 71 + x,33 + y,0,146,14 );
gfx.PutPixel( 72 + x,33 + y,0,146,14 );
gfx.PutPixel( 73 + x,33 + y,0,146,14 );
gfx.PutPixel( 74 + x,33 + y,0,146,14 );
gfx.PutPixel( 75 + x,33 + y,0,146,14 );
gfx.PutPixel( 76 + x,33 + y,0,146,14 );
gfx.PutPixel( 77 + x,33 + y,0,146,14 );
gfx.PutPixel( 78 + x,33 + y,0,146,14 );
gfx.PutPixel( 79 + x,33 + y,0,146,14 );
gfx.PutPixel( 80 + x,33 + y,0,146,14 );
gfx.PutPixel( 81 + x,33 + y,0,146,14 );
gfx.PutPixel( 82 + x,33 + y,0,25,2 );
gfx.PutPixel( 8 + x,34 + y,0,146,14 );
gfx.PutPixel( 9 + x,34 + y,0,146,14 );
gfx.PutPixel( 10 + x,34 + y,0,146,14 );
gfx.PutPixel( 11 + x,34 + y,0,146,14 );
gfx.PutPixel( 12 + x,34 + y,0,146,14 );
gfx.PutPixel( 13 + x,34 + y,0,146,14 );
gfx.PutPixel( 14 + x,34 + y,0,146,14 );
gfx.PutPixel( 15 + x,34 + y,0,146,14 );
gfx.PutPixel( 16 + x,34 + y,0,146,14 );
gfx.PutPixel( 17 + x,34 + y,0,146,14 );
gfx.PutPixel( 18 + x,34 + y,0,146,14 );
gfx.PutPixel( 35 + x,34 + y,0,146,14 );
gfx.PutPixel( 36 + x,34 + y,0,146,14 );
gfx.PutPixel( 37 + x,34 + y,0,146,14 );
gfx.PutPixel( 38 + x,34 + y,0,146,14 );
gfx.PutPixel( 61 + x,34 + y,0,146,14 );
gfx.PutPixel( 62 + x,34 + y,0,146,14 );
gfx.PutPixel( 63 + x,34 + y,0,146,14 );
gfx.PutPixel( 64 + x,34 + y,0,146,14 );
gfx.PutPixel( 65 + x,34 + y,0,146,14 );
gfx.PutPixel( 66 + x,34 + y,0,146,14 );
gfx.PutPixel( 67 + x,34 + y,0,146,14 );
gfx.PutPixel( 68 + x,34 + y,0,146,14 );
gfx.PutPixel( 69 + x,34 + y,0,146,14 );
gfx.PutPixel( 70 + x,34 + y,0,146,14 );
gfx.PutPixel( 71 + x,34 + y,0,146,14 );
gfx.PutPixel( 72 + x,34 + y,0,146,14 );
gfx.PutPixel( 73 + x,34 + y,0,146,14 );
gfx.PutPixel( 74 + x,34 + y,0,146,14 );
gfx.PutPixel( 75 + x,34 + y,0,146,14 );
gfx.PutPixel( 76 + x,34 + y,0,146,14 );
gfx.PutPixel( 77 + x,34 + y,0,146,14 );
gfx.PutPixel( 78 + x,34 + y,0,146,14 );
gfx.PutPixel( 79 + x,34 + y,0,146,14 );
gfx.PutPixel( 80 + x,34 + y,0,146,14 );
gfx.PutPixel( 81 + x,34 + y,0,146,14 );
gfx.PutPixel( 8 + x,35 + y,0,146,14 );
gfx.PutPixel( 9 + x,35 + y,0,146,14 );
gfx.PutPixel( 10 + x,35 + y,0,146,14 );
gfx.PutPixel( 11 + x,35 + y,0,146,14 );
gfx.PutPixel( 12 + x,35 + y,0,146,14 );
gfx.PutPixel( 13 + x,35 + y,0,146,14 );
gfx.PutPixel( 14 + x,35 + y,0,146,14 );
gfx.PutPixel( 15 + x,35 + y,0,146,14 );
gfx.PutPixel( 16 + x,35 + y,0,146,14 );
gfx.PutPixel( 17 + x,35 + y,0,146,14 );
gfx.PutPixel( 36 + x,35 + y,0,146,14 );
gfx.PutPixel( 37 + x,35 + y,0,146,14 );
gfx.PutPixel( 38 + x,35 + y,0,146,14 );
gfx.PutPixel( 39 + x,35 + y,0,146,14 );
gfx.PutPixel( 60 + x,35 + y,0,146,14 );
gfx.PutPixel( 61 + x,35 + y,0,146,14 );
gfx.PutPixel( 62 + x,35 + y,0,146,14 );
gfx.PutPixel( 63 + x,35 + y,0,146,14 );
gfx.PutPixel( 64 + x,35 + y,0,146,14 );
gfx.PutPixel( 65 + x,35 + y,0,146,14 );
gfx.PutPixel( 66 + x,35 + y,0,146,14 );
gfx.PutPixel( 67 + x,35 + y,0,146,14 );
gfx.PutPixel( 68 + x,35 + y,0,146,14 );
gfx.PutPixel( 69 + x,35 + y,0,146,14 );
gfx.PutPixel( 70 + x,35 + y,0,146,14 );
gfx.PutPixel( 71 + x,35 + y,0,146,14 );
gfx.PutPixel( 72 + x,35 + y,0,146,14 );
gfx.PutPixel( 73 + x,35 + y,0,146,14 );
gfx.PutPixel( 74 + x,35 + y,0,146,14 );
gfx.PutPixel( 75 + x,35 + y,0,146,14 );
gfx.PutPixel( 76 + x,35 + y,0,146,14 );
gfx.PutPixel( 77 + x,35 + y,0,146,14 );
gfx.PutPixel( 78 + x,35 + y,0,146,14 );
gfx.PutPixel( 79 + x,35 + y,0,146,14 );
gfx.PutPixel( 8 + x,36 + y,0,146,14 );
gfx.PutPixel( 9 + x,36 + y,0,146,14 );
gfx.PutPixel( 10 + x,36 + y,0,146,14 );
gfx.PutPixel( 11 + x,36 + y,0,146,14 );
gfx.PutPixel( 12 + x,36 + y,0,146,14 );
gfx.PutPixel( 13 + x,36 + y,0,146,14 );
gfx.PutPixel( 14 + x,36 + y,0,146,14 );
gfx.PutPixel( 15 + x,36 + y,0,146,14 );
gfx.PutPixel( 16 + x,36 + y,0,146,14 );
gfx.PutPixel( 17 + x,36 + y,0,146,14 );
gfx.PutPixel( 18 + x,36 + y,0,146,14 );
gfx.PutPixel( 37 + x,36 + y,0,146,14 );
gfx.PutPixel( 38 + x,36 + y,0,146,14 );
gfx.PutPixel( 39 + x,36 + y,0,146,14 );
gfx.PutPixel( 40 + x,36 + y,0,146,14 );
gfx.PutPixel( 59 + x,36 + y,0,146,14 );
gfx.PutPixel( 60 + x,36 + y,0,146,14 );
gfx.PutPixel( 61 + x,36 + y,0,146,14 );
gfx.PutPixel( 62 + x,36 + y,0,146,14 );
gfx.PutPixel( 63 + x,36 + y,0,146,14 );
gfx.PutPixel( 64 + x,36 + y,0,146,14 );
gfx.PutPixel( 65 + x,36 + y,0,146,14 );
gfx.PutPixel( 66 + x,36 + y,0,146,14 );
gfx.PutPixel( 67 + x,36 + y,0,146,14 );
gfx.PutPixel( 68 + x,36 + y,0,146,14 );
gfx.PutPixel( 69 + x,36 + y,0,146,14 );
gfx.PutPixel( 70 + x,36 + y,0,146,14 );
gfx.PutPixel( 71 + x,36 + y,0,146,14 );
gfx.PutPixel( 72 + x,36 + y,0,146,14 );
gfx.PutPixel( 73 + x,36 + y,0,146,14 );
gfx.PutPixel( 74 + x,36 + y,0,146,14 );
gfx.PutPixel( 9 + x,37 + y,0,146,14 );
gfx.PutPixel( 10 + x,37 + y,0,146,14 );
gfx.PutPixel( 11 + x,37 + y,0,146,14 );
gfx.PutPixel( 12 + x,37 + y,0,146,14 );
gfx.PutPixel( 13 + x,37 + y,0,146,14 );
gfx.PutPixel( 14 + x,37 + y,0,146,14 );
gfx.PutPixel( 15 + x,37 + y,0,146,14 );
gfx.PutPixel( 16 + x,37 + y,0,146,14 );
gfx.PutPixel( 17 + x,37 + y,0,146,14 );
gfx.PutPixel( 18 + x,37 + y,0,146,14 );
gfx.PutPixel( 19 + x,37 + y,0,146,14 );
gfx.PutPixel( 37 + x,37 + y,0,70,6 );
gfx.PutPixel( 38 + x,37 + y,0,146,14 );
gfx.PutPixel( 39 + x,37 + y,0,146,14 );
gfx.PutPixel( 40 + x,37 + y,0,146,14 );
gfx.PutPixel( 41 + x,37 + y,0,146,14 );
gfx.PutPixel( 58 + x,37 + y,0,146,14 );
gfx.PutPixel( 59 + x,37 + y,0,146,14 );
gfx.PutPixel( 60 + x,37 + y,0,146,14 );
gfx.PutPixel( 61 + x,37 + y,0,146,14 );
gfx.PutPixel( 62 + x,37 + y,0,146,14 );
gfx.PutPixel( 63 + x,37 + y,0,146,14 );
gfx.PutPixel( 64 + x,37 + y,0,146,14 );
gfx.PutPixel( 65 + x,37 + y,0,146,14 );
gfx.PutPixel( 66 + x,37 + y,0,146,14 );
gfx.PutPixel( 67 + x,37 + y,0,146,14 );
gfx.PutPixel( 68 + x,37 + y,0,146,14 );
gfx.PutPixel( 69 + x,37 + y,0,146,14 );
gfx.PutPixel( 70 + x,37 + y,0,146,14 );
gfx.PutPixel( 71 + x,37 + y,0,146,14 );
gfx.PutPixel( 72 + x,37 + y,0,146,14 );
gfx.PutPixel( 73 + x,37 + y,0,146,14 );
gfx.PutPixel( 74 + x,37 + y,0,146,14 );
gfx.PutPixel( 9 + x,38 + y,0,146,14 );
gfx.PutPixel( 10 + x,38 + y,0,146,14 );
gfx.PutPixel( 11 + x,38 + y,0,146,14 );
gfx.PutPixel( 12 + x,38 + y,0,146,14 );
gfx.PutPixel( 13 + x,38 + y,0,146,14 );
gfx.PutPixel( 14 + x,38 + y,0,146,14 );
gfx.PutPixel( 15 + x,38 + y,0,146,14 );
gfx.PutPixel( 16 + x,38 + y,0,146,14 );
gfx.PutPixel( 17 + x,38 + y,0,146,14 );
gfx.PutPixel( 18 + x,38 + y,0,146,14 );
gfx.PutPixel( 19 + x,38 + y,0,146,14 );
gfx.PutPixel( 20 + x,38 + y,0,146,14 );
gfx.PutPixel( 38 + x,38 + y,0,70,6 );
gfx.PutPixel( 39 + x,38 + y,0,146,14 );
gfx.PutPixel( 40 + x,38 + y,0,146,14 );
gfx.PutPixel( 41 + x,38 + y,0,146,14 );
gfx.PutPixel( 42 + x,38 + y,0,146,14 );
gfx.PutPixel( 43 + x,38 + y,0,146,14 );
gfx.PutPixel( 56 + x,38 + y,0,146,14 );
gfx.PutPixel( 57 + x,38 + y,0,146,14 );
gfx.PutPixel( 58 + x,38 + y,0,146,14 );
gfx.PutPixel( 59 + x,38 + y,0,146,14 );
gfx.PutPixel( 60 + x,38 + y,0,146,14 );
gfx.PutPixel( 61 + x,38 + y,0,146,14 );
gfx.PutPixel( 62 + x,38 + y,0,146,14 );
gfx.PutPixel( 63 + x,38 + y,0,146,14 );
gfx.PutPixel( 64 + x,38 + y,0,146,14 );
gfx.PutPixel( 65 + x,38 + y,0,146,14 );
gfx.PutPixel( 66 + x,38 + y,0,146,14 );
gfx.PutPixel( 67 + x,38 + y,0,146,14 );
gfx.PutPixel( 68 + x,38 + y,0,146,14 );
gfx.PutPixel( 69 + x,38 + y,0,146,14 );
gfx.PutPixel( 70 + x,38 + y,0,146,14 );
gfx.PutPixel( 71 + x,38 + y,0,146,14 );
gfx.PutPixel( 72 + x,38 + y,0,146,14 );
gfx.PutPixel( 73 + x,38 + y,0,146,14 );
gfx.PutPixel( 74 + x,38 + y,0,146,14 );
gfx.PutPixel( 10 + x,39 + y,0,146,14 );
gfx.PutPixel( 11 + x,39 + y,0,146,14 );
gfx.PutPixel( 12 + x,39 + y,0,146,14 );
gfx.PutPixel( 13 + x,39 + y,0,146,14 );
gfx.PutPixel( 14 + x,39 + y,0,146,14 );
gfx.PutPixel( 15 + x,39 + y,0,146,14 );
gfx.PutPixel( 16 + x,39 + y,0,146,14 );
gfx.PutPixel( 17 + x,39 + y,0,146,14 );
gfx.PutPixel( 18 + x,39 + y,0,146,14 );
gfx.PutPixel( 19 + x,39 + y,0,146,14 );
gfx.PutPixel( 20 + x,39 + y,0,146,14 );
gfx.PutPixel( 21 + x,39 + y,0,146,14 );
gfx.PutPixel( 40 + x,39 + y,0,146,14 );
gfx.PutPixel( 41 + x,39 + y,0,146,14 );
gfx.PutPixel( 42 + x,39 + y,0,146,14 );
gfx.PutPixel( 43 + x,39 + y,0,146,14 );
gfx.PutPixel( 44 + x,39 + y,0,146,14 );
gfx.PutPixel( 45 + x,39 + y,0,146,14 );
gfx.PutPixel( 46 + x,39 + y,0,146,14 );
gfx.PutPixel( 53 + x,39 + y,0,146,14 );
gfx.PutPixel( 54 + x,39 + y,0,146,14 );
gfx.PutPixel( 55 + x,39 + y,0,146,14 );
gfx.PutPixel( 56 + x,39 + y,0,146,14 );
gfx.PutPixel( 57 + x,39 + y,0,146,14 );
gfx.PutPixel( 58 + x,39 + y,0,146,14 );
gfx.PutPixel( 59 + x,39 + y,0,146,14 );
gfx.PutPixel( 60 + x,39 + y,0,146,14 );
gfx.PutPixel( 61 + x,39 + y,0,146,14 );
gfx.PutPixel( 62 + x,39 + y,0,146,14 );
gfx.PutPixel( 63 + x,39 + y,0,146,14 );
gfx.PutPixel( 64 + x,39 + y,0,146,14 );
gfx.PutPixel( 65 + x,39 + y,0,146,14 );
gfx.PutPixel( 66 + x,39 + y,0,146,14 );
gfx.PutPixel( 67 + x,39 + y,0,146,14 );
gfx.PutPixel( 68 + x,39 + y,0,146,14 );
gfx.PutPixel( 69 + x,39 + y,0,146,14 );
gfx.PutPixel( 70 + x,39 + y,0,146,14 );
gfx.PutPixel( 71 + x,39 + y,0,146,14 );
gfx.PutPixel( 72 + x,39 + y,0,146,14 );
gfx.PutPixel( 73 + x,39 + y,0,146,14 );
gfx.PutPixel( 74 + x,39 + y,0,146,14 );
gfx.PutPixel( 11 + x,40 + y,0,146,14 );
gfx.PutPixel( 12 + x,40 + y,0,146,14 );
gfx.PutPixel( 13 + x,40 + y,0,146,14 );
gfx.PutPixel( 14 + x,40 + y,0,146,14 );
gfx.PutPixel( 15 + x,40 + y,0,146,14 );
gfx.PutPixel( 16 + x,40 + y,0,146,14 );
gfx.PutPixel( 17 + x,40 + y,0,146,14 );
gfx.PutPixel( 18 + x,40 + y,0,146,14 );
gfx.PutPixel( 19 + x,40 + y,0,146,14 );
gfx.PutPixel( 20 + x,40 + y,0,146,14 );
gfx.PutPixel( 21 + x,40 + y,0,146,14 );
gfx.PutPixel( 22 + x,40 + y,0,146,14 );
gfx.PutPixel( 41 + x,40 + y,0,146,14 );
gfx.PutPixel( 42 + x,40 + y,0,146,14 );
gfx.PutPixel( 43 + x,40 + y,0,146,14 );
gfx.PutPixel( 44 + x,40 + y,0,146,14 );
gfx.PutPixel( 45 + x,40 + y,0,146,14 );
gfx.PutPixel( 46 + x,40 + y,0,146,14 );
gfx.PutPixel( 47 + x,40 + y,0,146,14 );
gfx.PutPixel( 48 + x,40 + y,0,146,14 );
gfx.PutPixel( 49 + x,40 + y,0,146,14 );
gfx.PutPixel( 50 + x,40 + y,0,146,14 );
gfx.PutPixel( 51 + x,40 + y,0,146,14 );
gfx.PutPixel( 52 + x,40 + y,0,146,14 );
gfx.PutPixel( 53 + x,40 + y,0,146,14 );
gfx.PutPixel( 54 + x,40 + y,0,146,14 );
gfx.PutPixel( 55 + x,40 + y,0,146,14 );
gfx.PutPixel( 56 + x,40 + y,0,146,14 );
gfx.PutPixel( 57 + x,40 + y,0,146,14 );
gfx.PutPixel( 58 + x,40 + y,0,146,14 );
gfx.PutPixel( 59 + x,40 + y,0,146,14 );
gfx.PutPixel( 60 + x,40 + y,0,146,14 );
gfx.PutPixel( 61 + x,40 + y,0,146,14 );
gfx.PutPixel( 62 + x,40 + y,0,146,14 );
gfx.PutPixel( 63 + x,40 + y,0,146,14 );
gfx.PutPixel( 64 + x,40 + y,0,146,14 );
gfx.PutPixel( 65 + x,40 + y,0,146,14 );
gfx.PutPixel( 66 + x,40 + y,0,146,14 );
gfx.PutPixel( 67 + x,40 + y,0,146,14 );
gfx.PutPixel( 68 + x,40 + y,0,146,14 );
gfx.PutPixel( 69 + x,40 + y,0,146,14 );
gfx.PutPixel( 70 + x,40 + y,0,146,14 );
gfx.PutPixel( 71 + x,40 + y,0,146,14 );
gfx.PutPixel( 72 + x,40 + y,0,146,14 );
gfx.PutPixel( 73 + x,40 + y,0,146,14 );
gfx.PutPixel( 74 + x,40 + y,0,146,14 );
gfx.PutPixel( 75 + x,40 + y,0,146,14 );
gfx.PutPixel( 76 + x,40 + y,0,146,14 );
gfx.PutPixel( 77 + x,40 + y,0,70,6 );
gfx.PutPixel( 12 + x,41 + y,0,146,14 );
gfx.PutPixel( 13 + x,41 + y,0,146,14 );
gfx.PutPixel( 14 + x,41 + y,0,146,14 );
gfx.PutPixel( 15 + x,41 + y,0,146,14 );
gfx.PutPixel( 16 + x,41 + y,0,146,14 );
gfx.PutPixel( 17 + x,41 + y,0,146,14 );
gfx.PutPixel( 18 + x,41 + y,0,146,14 );
gfx.PutPixel( 19 + x,41 + y,0,146,14 );
gfx.PutPixel( 20 + x,41 + y,0,146,14 );
gfx.PutPixel( 21 + x,41 + y,0,146,14 );
gfx.PutPixel( 22 + x,41 + y,0,146,14 );
gfx.PutPixel( 23 + x,41 + y,0,146,14 );
gfx.PutPixel( 40 + x,41 + y,0,146,14 );
gfx.PutPixel( 41 + x,41 + y,0,146,14 );
gfx.PutPixel( 42 + x,41 + y,0,146,14 );
gfx.PutPixel( 43 + x,41 + y,0,146,14 );
gfx.PutPixel( 44 + x,41 + y,0,146,14 );
gfx.PutPixel( 45 + x,41 + y,0,146,14 );
gfx.PutPixel( 46 + x,41 + y,0,146,14 );
gfx.PutPixel( 47 + x,41 + y,0,146,14 );
gfx.PutPixel( 48 + x,41 + y,0,146,14 );
gfx.PutPixel( 49 + x,41 + y,0,146,14 );
gfx.PutPixel( 50 + x,41 + y,0,146,14 );
gfx.PutPixel( 51 + x,41 + y,0,146,14 );
gfx.PutPixel( 52 + x,41 + y,0,146,14 );
gfx.PutPixel( 53 + x,41 + y,0,146,14 );
gfx.PutPixel( 54 + x,41 + y,0,146,14 );
gfx.PutPixel( 55 + x,41 + y,0,146,14 );
gfx.PutPixel( 56 + x,41 + y,0,146,14 );
gfx.PutPixel( 57 + x,41 + y,0,146,14 );
gfx.PutPixel( 58 + x,41 + y,0,146,14 );
gfx.PutPixel( 59 + x,41 + y,0,146,14 );
gfx.PutPixel( 60 + x,41 + y,0,146,14 );
gfx.PutPixel( 61 + x,41 + y,0,146,14 );
gfx.PutPixel( 62 + x,41 + y,0,146,14 );
gfx.PutPixel( 63 + x,41 + y,0,146,14 );
gfx.PutPixel( 64 + x,41 + y,0,146,14 );
gfx.PutPixel( 65 + x,41 + y,0,146,14 );
gfx.PutPixel( 66 + x,41 + y,0,146,14 );
gfx.PutPixel( 67 + x,41 + y,0,146,14 );
gfx.PutPixel( 68 + x,41 + y,0,146,14 );
gfx.PutPixel( 69 + x,41 + y,0,146,14 );
gfx.PutPixel( 70 + x,41 + y,0,146,14 );
gfx.PutPixel( 71 + x,41 + y,0,146,14 );
gfx.PutPixel( 72 + x,41 + y,0,146,14 );
gfx.PutPixel( 73 + x,41 + y,0,146,14 );
gfx.PutPixel( 74 + x,41 + y,0,146,14 );
gfx.PutPixel( 75 + x,41 + y,0,146,14 );
gfx.PutPixel( 76 + x,41 + y,0,146,14 );
gfx.PutPixel( 77 + x,41 + y,0,146,14 );
gfx.PutPixel( 78 + x,41 + y,0,146,14 );
gfx.PutPixel( 3 + x,42 + y,0,25,2 );
gfx.PutPixel( 4 + x,42 + y,0,146,14 );
gfx.PutPixel( 5 + x,42 + y,0,146,14 );
gfx.PutPixel( 6 + x,42 + y,0,25,2 );
gfx.PutPixel( 13 + x,42 + y,0,146,14 );
gfx.PutPixel( 14 + x,42 + y,0,146,14 );
gfx.PutPixel( 15 + x,42 + y,0,146,14 );
gfx.PutPixel( 16 + x,42 + y,0,146,14 );
gfx.PutPixel( 17 + x,42 + y,0,146,14 );
gfx.PutPixel( 18 + x,42 + y,0,146,14 );
gfx.PutPixel( 19 + x,42 + y,0,146,14 );
gfx.PutPixel( 20 + x,42 + y,0,146,14 );
gfx.PutPixel( 21 + x,42 + y,0,146,14 );
gfx.PutPixel( 22 + x,42 + y,0,146,14 );
gfx.PutPixel( 23 + x,42 + y,0,146,14 );
gfx.PutPixel( 24 + x,42 + y,0,146,14 );
gfx.PutPixel( 39 + x,42 + y,0,146,14 );
gfx.PutPixel( 40 + x,42 + y,0,146,14 );
gfx.PutPixel( 41 + x,42 + y,0,146,14 );
gfx.PutPixel( 42 + x,42 + y,0,146,14 );
gfx.PutPixel( 43 + x,42 + y,0,146,14 );
gfx.PutPixel( 44 + x,42 + y,0,146,14 );
gfx.PutPixel( 45 + x,42 + y,0,146,14 );
gfx.PutPixel( 46 + x,42 + y,0,146,14 );
gfx.PutPixel( 47 + x,42 + y,0,146,14 );
gfx.PutPixel( 48 + x,42 + y,0,146,14 );
gfx.PutPixel( 49 + x,42 + y,0,146,14 );
gfx.PutPixel( 50 + x,42 + y,0,146,14 );
gfx.PutPixel( 51 + x,42 + y,0,146,14 );
gfx.PutPixel( 52 + x,42 + y,0,146,14 );
gfx.PutPixel( 53 + x,42 + y,0,146,14 );
gfx.PutPixel( 54 + x,42 + y,0,146,14 );
gfx.PutPixel( 55 + x,42 + y,0,146,14 );
gfx.PutPixel( 56 + x,42 + y,0,146,14 );
gfx.PutPixel( 57 + x,42 + y,0,146,14 );
gfx.PutPixel( 58 + x,42 + y,0,146,14 );
gfx.PutPixel( 59 + x,42 + y,0,146,14 );
gfx.PutPixel( 60 + x,42 + y,0,146,14 );
gfx.PutPixel( 61 + x,42 + y,0,146,14 );
gfx.PutPixel( 62 + x,42 + y,0,146,14 );
gfx.PutPixel( 63 + x,42 + y,0,146,14 );
gfx.PutPixel( 64 + x,42 + y,0,146,14 );
gfx.PutPixel( 65 + x,42 + y,0,146,14 );
gfx.PutPixel( 66 + x,42 + y,0,146,14 );
gfx.PutPixel( 67 + x,42 + y,0,146,14 );
gfx.PutPixel( 68 + x,42 + y,0,146,14 );
gfx.PutPixel( 69 + x,42 + y,0,146,14 );
gfx.PutPixel( 70 + x,42 + y,0,146,14 );
gfx.PutPixel( 71 + x,42 + y,0,146,14 );
gfx.PutPixel( 72 + x,42 + y,0,146,14 );
gfx.PutPixel( 73 + x,42 + y,0,146,14 );
gfx.PutPixel( 74 + x,42 + y,0,146,14 );
gfx.PutPixel( 75 + x,42 + y,0,146,14 );
gfx.PutPixel( 76 + x,42 + y,0,146,14 );
gfx.PutPixel( 77 + x,42 + y,0,146,14 );
gfx.PutPixel( 78 + x,42 + y,0,146,14 );
gfx.PutPixel( 79 + x,42 + y,0,146,14 );
gfx.PutPixel( 1 + x,43 + y,0,146,14 );
gfx.PutPixel( 2 + x,43 + y,0,146,14 );
gfx.PutPixel( 3 + x,43 + y,0,146,14 );
gfx.PutPixel( 4 + x,43 + y,0,146,14 );
gfx.PutPixel( 5 + x,43 + y,0,146,14 );
gfx.PutPixel( 6 + x,43 + y,0,146,14 );
gfx.PutPixel( 7 + x,43 + y,0,146,14 );
gfx.PutPixel( 8 + x,43 + y,0,146,14 );
gfx.PutPixel( 9 + x,43 + y,0,146,14 );
gfx.PutPixel( 10 + x,43 + y,0,146,14 );
gfx.PutPixel( 11 + x,43 + y,0,146,14 );
gfx.PutPixel( 12 + x,43 + y,0,146,14 );
gfx.PutPixel( 13 + x,43 + y,0,146,14 );
gfx.PutPixel( 14 + x,43 + y,0,146,14 );
gfx.PutPixel( 15 + x,43 + y,0,146,14 );
gfx.PutPixel( 16 + x,43 + y,0,146,14 );
gfx.PutPixel( 17 + x,43 + y,0,146,14 );
gfx.PutPixel( 18 + x,43 + y,0,146,14 );
gfx.PutPixel( 19 + x,43 + y,0,146,14 );
gfx.PutPixel( 20 + x,43 + y,0,146,14 );
gfx.PutPixel( 21 + x,43 + y,0,146,14 );
gfx.PutPixel( 22 + x,43 + y,0,146,14 );
gfx.PutPixel( 23 + x,43 + y,0,146,14 );
gfx.PutPixel( 24 + x,43 + y,0,146,14 );
gfx.PutPixel( 25 + x,43 + y,0,146,14 );
gfx.PutPixel( 38 + x,43 + y,0,146,14 );
gfx.PutPixel( 39 + x,43 + y,0,146,14 );
gfx.PutPixel( 40 + x,43 + y,0,146,14 );
gfx.PutPixel( 41 + x,43 + y,0,146,14 );
gfx.PutPixel( 77 + x,43 + y,0,146,14 );
gfx.PutPixel( 78 + x,43 + y,0,146,14 );
gfx.PutPixel( 79 + x,43 + y,0,146,14 );
gfx.PutPixel( 0 + x,44 + y,0,146,14 );
gfx.PutPixel( 1 + x,44 + y,0,146,14 );
gfx.PutPixel( 2 + x,44 + y,0,146,14 );
gfx.PutPixel( 3 + x,44 + y,0,146,14 );
gfx.PutPixel( 4 + x,44 + y,0,146,14 );
gfx.PutPixel( 5 + x,44 + y,0,146,14 );
gfx.PutPixel( 6 + x,44 + y,0,146,14 );
gfx.PutPixel( 7 + x,44 + y,0,146,14 );
gfx.PutPixel( 8 + x,44 + y,0,146,14 );
gfx.PutPixel( 9 + x,44 + y,0,146,14 );
gfx.PutPixel( 10 + x,44 + y,0,146,14 );
gfx.PutPixel( 11 + x,44 + y,0,146,14 );
gfx.PutPixel( 12 + x,44 + y,0,146,14 );
gfx.PutPixel( 13 + x,44 + y,0,146,14 );
gfx.PutPixel( 14 + x,44 + y,0,146,14 );
gfx.PutPixel( 15 + x,44 + y,0,146,14 );
gfx.PutPixel( 16 + x,44 + y,0,146,14 );
gfx.PutPixel( 17 + x,44 + y,0,146,14 );
gfx.PutPixel( 18 + x,44 + y,0,146,14 );
gfx.PutPixel( 19 + x,44 + y,0,146,14 );
gfx.PutPixel( 20 + x,44 + y,0,146,14 );
gfx.PutPixel( 21 + x,44 + y,0,146,14 );
gfx.PutPixel( 22 + x,44 + y,0,146,14 );
gfx.PutPixel( 23 + x,44 + y,0,146,14 );
gfx.PutPixel( 24 + x,44 + y,0,146,14 );
gfx.PutPixel( 25 + x,44 + y,0,146,14 );
gfx.PutPixel( 26 + x,44 + y,0,146,14 );
gfx.PutPixel( 38 + x,44 + y,0,146,14 );
gfx.PutPixel( 39 + x,44 + y,0,146,14 );
gfx.PutPixel( 40 + x,44 + y,0,146,14 );
gfx.PutPixel( 77 + x,44 + y,0,3,0 );
gfx.PutPixel( 78 + x,44 + y,0,146,14 );
gfx.PutPixel( 79 + x,44 + y,0,146,14 );
gfx.PutPixel( 80 + x,44 + y,0,146,14 );
gfx.PutPixel( 0 + x,45 + y,0,146,14 );
gfx.PutPixel( 1 + x,45 + y,0,146,14 );
gfx.PutPixel( 2 + x,45 + y,0,146,14 );
gfx.PutPixel( 3 + x,45 + y,0,146,14 );
gfx.PutPixel( 4 + x,45 + y,0,146,14 );
gfx.PutPixel( 5 + x,45 + y,0,146,14 );
gfx.PutPixel( 6 + x,45 + y,0,146,14 );
gfx.PutPixel( 7 + x,45 + y,0,146,14 );
gfx.PutPixel( 8 + x,45 + y,0,146,14 );
gfx.PutPixel( 9 + x,45 + y,0,146,14 );
gfx.PutPixel( 10 + x,45 + y,0,146,14 );
gfx.PutPixel( 11 + x,45 + y,0,146,14 );
gfx.PutPixel( 12 + x,45 + y,0,146,14 );
gfx.PutPixel( 13 + x,45 + y,0,146,14 );
gfx.PutPixel( 14 + x,45 + y,0,146,14 );
gfx.PutPixel( 15 + x,45 + y,0,146,14 );
gfx.PutPixel( 16 + x,45 + y,0,146,14 );
gfx.PutPixel( 17 + x,45 + y,0,146,14 );
gfx.PutPixel( 18 + x,45 + y,0,146,14 );
gfx.PutPixel( 19 + x,45 + y,0,146,14 );
gfx.PutPixel( 20 + x,45 + y,0,146,14 );
gfx.PutPixel( 21 + x,45 + y,0,146,14 );
gfx.PutPixel( 22 + x,45 + y,0,146,14 );
gfx.PutPixel( 23 + x,45 + y,0,146,14 );
gfx.PutPixel( 24 + x,45 + y,0,146,14 );
gfx.PutPixel( 25 + x,45 + y,0,146,14 );
gfx.PutPixel( 26 + x,45 + y,0,146,14 );
gfx.PutPixel( 27 + x,45 + y,0,118,11 );
gfx.PutPixel( 38 + x,45 + y,0,146,14 );
gfx.PutPixel( 39 + x,45 + y,0,146,14 );
gfx.PutPixel( 40 + x,45 + y,0,146,14 );
gfx.PutPixel( 78 + x,45 + y,0,146,14 );
gfx.PutPixel( 79 + x,45 + y,0,146,14 );
gfx.PutPixel( 80 + x,45 + y,0,146,14 );
gfx.PutPixel( 0 + x,46 + y,0,146,14 );
gfx.PutPixel( 1 + x,46 + y,0,146,14 );
gfx.PutPixel( 2 + x,46 + y,0,146,14 );
gfx.PutPixel( 3 + x,46 + y,0,146,14 );
gfx.PutPixel( 4 + x,46 + y,0,146,14 );
gfx.PutPixel( 5 + x,46 + y,0,146,14 );
gfx.PutPixel( 6 + x,46 + y,0,146,14 );
gfx.PutPixel( 7 + x,46 + y,0,146,14 );
gfx.PutPixel( 8 + x,46 + y,0,146,14 );
gfx.PutPixel( 9 + x,46 + y,0,146,14 );
gfx.PutPixel( 10 + x,46 + y,0,146,14 );
gfx.PutPixel( 11 + x,46 + y,0,146,14 );
gfx.PutPixel( 12 + x,46 + y,0,146,14 );
gfx.PutPixel( 13 + x,46 + y,0,146,14 );
gfx.PutPixel( 14 + x,46 + y,0,146,14 );
gfx.PutPixel( 15 + x,46 + y,0,146,14 );
gfx.PutPixel( 16 + x,46 + y,0,146,14 );
gfx.PutPixel( 17 + x,46 + y,0,146,14 );
gfx.PutPixel( 18 + x,46 + y,0,146,14 );
gfx.PutPixel( 19 + x,46 + y,0,146,14 );
gfx.PutPixel( 20 + x,46 + y,0,146,14 );
gfx.PutPixel( 21 + x,46 + y,0,146,14 );
gfx.PutPixel( 22 + x,46 + y,0,146,14 );
gfx.PutPixel( 23 + x,46 + y,0,146,14 );
gfx.PutPixel( 24 + x,46 + y,0,146,14 );
gfx.PutPixel( 25 + x,46 + y,0,146,14 );
gfx.PutPixel( 26 + x,46 + y,0,146,14 );
gfx.PutPixel( 27 + x,46 + y,0,146,14 );
gfx.PutPixel( 38 + x,46 + y,0,146,14 );
gfx.PutPixel( 39 + x,46 + y,0,146,14 );
gfx.PutPixel( 40 + x,46 + y,0,146,14 );
gfx.PutPixel( 77 + x,46 + y,0,118,11 );
gfx.PutPixel( 78 + x,46 + y,0,146,14 );
gfx.PutPixel( 79 + x,46 + y,0,146,14 );
gfx.PutPixel( 80 + x,46 + y,0,146,14 );
gfx.PutPixel( 0 + x,47 + y,0,146,14 );
gfx.PutPixel( 1 + x,47 + y,0,146,14 );
gfx.PutPixel( 2 + x,47 + y,0,146,14 );
gfx.PutPixel( 3 + x,47 + y,0,146,14 );
gfx.PutPixel( 4 + x,47 + y,0,146,14 );
gfx.PutPixel( 5 + x,47 + y,0,146,14 );
gfx.PutPixel( 6 + x,47 + y,0,146,14 );
gfx.PutPixel( 7 + x,47 + y,0,146,14 );
gfx.PutPixel( 8 + x,47 + y,0,146,14 );
gfx.PutPixel( 9 + x,47 + y,0,146,14 );
gfx.PutPixel( 10 + x,47 + y,0,146,14 );
gfx.PutPixel( 11 + x,47 + y,0,146,14 );
gfx.PutPixel( 12 + x,47 + y,0,146,14 );
gfx.PutPixel( 13 + x,47 + y,0,146,14 );
gfx.PutPixel( 14 + x,47 + y,0,146,14 );
gfx.PutPixel( 15 + x,47 + y,0,146,14 );
gfx.PutPixel( 16 + x,47 + y,0,146,14 );
gfx.PutPixel( 17 + x,47 + y,0,146,14 );
gfx.PutPixel( 18 + x,47 + y,0,146,14 );
gfx.PutPixel( 19 + x,47 + y,0,146,14 );
gfx.PutPixel( 20 + x,47 + y,0,146,14 );
gfx.PutPixel( 21 + x,47 + y,0,146,14 );
gfx.PutPixel( 22 + x,47 + y,0,146,14 );
gfx.PutPixel( 23 + x,47 + y,0,146,14 );
gfx.PutPixel( 24 + x,47 + y,0,146,14 );
gfx.PutPixel( 25 + x,47 + y,0,146,14 );
gfx.PutPixel( 26 + x,47 + y,0,146,14 );
gfx.PutPixel( 27 + x,47 + y,0,146,14 );
gfx.PutPixel( 38 + x,47 + y,0,146,14 );
gfx.PutPixel( 39 + x,47 + y,0,146,14 );
gfx.PutPixel( 40 + x,47 + y,0,146,14 );
gfx.PutPixel( 41 + x,47 + y,0,146,14 );
gfx.PutPixel( 77 + x,47 + y,0,146,14 );
gfx.PutPixel( 78 + x,47 + y,0,146,14 );
gfx.PutPixel( 79 + x,47 + y,0,146,14 );
gfx.PutPixel( 0 + x,48 + y,0,146,14 );
gfx.PutPixel( 1 + x,48 + y,0,146,14 );
gfx.PutPixel( 2 + x,48 + y,0,146,14 );
gfx.PutPixel( 3 + x,48 + y,0,146,14 );
gfx.PutPixel( 4 + x,48 + y,0,146,14 );
gfx.PutPixel( 5 + x,48 + y,0,146,14 );
gfx.PutPixel( 6 + x,48 + y,0,146,14 );
gfx.PutPixel( 7 + x,48 + y,0,146,14 );
gfx.PutPixel( 8 + x,48 + y,0,146,14 );
gfx.PutPixel( 9 + x,48 + y,0,146,14 );
gfx.PutPixel( 10 + x,48 + y,0,146,14 );
gfx.PutPixel( 11 + x,48 + y,0,146,14 );
gfx.PutPixel( 12 + x,48 + y,0,146,14 );
gfx.PutPixel( 13 + x,48 + y,0,146,14 );
gfx.PutPixel( 14 + x,48 + y,0,146,14 );
gfx.PutPixel( 15 + x,48 + y,0,146,14 );
gfx.PutPixel( 16 + x,48 + y,0,146,14 );
gfx.PutPixel( 17 + x,48 + y,0,146,14 );
gfx.PutPixel( 18 + x,48 + y,0,146,14 );
gfx.PutPixel( 19 + x,48 + y,0,146,14 );
gfx.PutPixel( 20 + x,48 + y,0,146,14 );
gfx.PutPixel( 21 + x,48 + y,0,146,14 );
gfx.PutPixel( 22 + x,48 + y,0,146,14 );
gfx.PutPixel( 23 + x,48 + y,0,146,14 );
gfx.PutPixel( 24 + x,48 + y,0,146,14 );
gfx.PutPixel( 25 + x,48 + y,0,146,14 );
gfx.PutPixel( 26 + x,48 + y,0,146,14 );
gfx.PutPixel( 39 + x,48 + y,0,146,14 );
gfx.PutPixel( 40 + x,48 + y,0,146,14 );
gfx.PutPixel( 41 + x,48 + y,0,146,14 );
gfx.PutPixel( 42 + x,48 + y,0,146,14 );
gfx.PutPixel( 43 + x,48 + y,0,146,14 );
gfx.PutPixel( 44 + x,48 + y,0,146,14 );
gfx.PutPixel( 45 + x,48 + y,0,146,14 );
gfx.PutPixel( 46 + x,48 + y,0,146,14 );
gfx.PutPixel( 47 + x,48 + y,0,146,14 );
gfx.PutPixel( 48 + x,48 + y,0,146,14 );
gfx.PutPixel( 49 + x,48 + y,0,146,14 );
gfx.PutPixel( 50 + x,48 + y,0,146,14 );
gfx.PutPixel( 51 + x,48 + y,0,146,14 );
gfx.PutPixel( 52 + x,48 + y,0,146,14 );
gfx.PutPixel( 53 + x,48 + y,0,146,14 );
gfx.PutPixel( 54 + x,48 + y,0,146,14 );
gfx.PutPixel( 55 + x,48 + y,0,146,14 );
gfx.PutPixel( 56 + x,48 + y,0,146,14 );
gfx.PutPixel( 57 + x,48 + y,0,146,14 );
gfx.PutPixel( 58 + x,48 + y,0,146,14 );
gfx.PutPixel( 59 + x,48 + y,0,146,14 );
gfx.PutPixel( 60 + x,48 + y,0,146,14 );
gfx.PutPixel( 61 + x,48 + y,0,146,14 );
gfx.PutPixel( 62 + x,48 + y,0,146,14 );
gfx.PutPixel( 63 + x,48 + y,0,146,14 );
gfx.PutPixel( 64 + x,48 + y,0,146,14 );
gfx.PutPixel( 65 + x,48 + y,0,146,14 );
gfx.PutPixel( 66 + x,48 + y,0,146,14 );
gfx.PutPixel( 67 + x,48 + y,0,146,14 );
gfx.PutPixel( 68 + x,48 + y,0,146,14 );
gfx.PutPixel( 69 + x,48 + y,0,146,14 );
gfx.PutPixel( 70 + x,48 + y,0,146,14 );
gfx.PutPixel( 71 + x,48 + y,0,146,14 );
gfx.PutPixel( 72 + x,48 + y,0,146,14 );
gfx.PutPixel( 73 + x,48 + y,0,146,14 );
gfx.PutPixel( 74 + x,48 + y,0,146,14 );
gfx.PutPixel( 75 + x,48 + y,0,146,14 );
gfx.PutPixel( 76 + x,48 + y,0,146,14 );
gfx.PutPixel( 77 + x,48 + y,0,146,14 );
gfx.PutPixel( 78 + x,48 + y,0,146,14 );
gfx.PutPixel( 79 + x,48 + y,0,146,14 );
gfx.PutPixel( 0 + x,49 + y,0,142,13 );
gfx.PutPixel( 1 + x,49 + y,0,146,14 );
gfx.PutPixel( 2 + x,49 + y,0,146,14 );
gfx.PutPixel( 3 + x,49 + y,0,146,14 );
gfx.PutPixel( 4 + x,49 + y,0,146,14 );
gfx.PutPixel( 5 + x,49 + y,0,146,14 );
gfx.PutPixel( 6 + x,49 + y,0,146,14 );
gfx.PutPixel( 7 + x,49 + y,0,146,14 );
gfx.PutPixel( 8 + x,49 + y,0,146,14 );
gfx.PutPixel( 9 + x,49 + y,0,146,14 );
gfx.PutPixel( 10 + x,49 + y,0,146,14 );
gfx.PutPixel( 11 + x,49 + y,0,146,14 );
gfx.PutPixel( 12 + x,49 + y,0,146,14 );
gfx.PutPixel( 13 + x,49 + y,0,146,14 );
gfx.PutPixel( 14 + x,49 + y,0,146,14 );
gfx.PutPixel( 15 + x,49 + y,0,146,14 );
gfx.PutPixel( 16 + x,49 + y,0,146,14 );
gfx.PutPixel( 17 + x,49 + y,0,146,14 );
gfx.PutPixel( 18 + x,49 + y,0,146,14 );
gfx.PutPixel( 19 + x,49 + y,0,146,14 );
gfx.PutPixel( 20 + x,49 + y,0,146,14 );
gfx.PutPixel( 21 + x,49 + y,0,146,14 );
gfx.PutPixel( 22 + x,49 + y,0,146,14 );
gfx.PutPixel( 23 + x,49 + y,0,146,14 );
gfx.PutPixel( 24 + x,49 + y,0,146,14 );
gfx.PutPixel( 25 + x,49 + y,0,146,14 );
gfx.PutPixel( 26 + x,49 + y,0,146,14 );
gfx.PutPixel( 40 + x,49 + y,0,146,14 );
gfx.PutPixel( 41 + x,49 + y,0,146,14 );
gfx.PutPixel( 42 + x,49 + y,0,146,14 );
gfx.PutPixel( 43 + x,49 + y,0,146,14 );
gfx.PutPixel( 44 + x,49 + y,0,146,14 );
gfx.PutPixel( 45 + x,49 + y,0,146,14 );
gfx.PutPixel( 46 + x,49 + y,0,146,14 );
gfx.PutPixel( 47 + x,49 + y,0,146,14 );
gfx.PutPixel( 48 + x,49 + y,0,146,14 );
gfx.PutPixel( 49 + x,49 + y,0,146,14 );
gfx.PutPixel( 50 + x,49 + y,0,146,14 );
gfx.PutPixel( 51 + x,49 + y,0,146,14 );
gfx.PutPixel( 52 + x,49 + y,0,146,14 );
gfx.PutPixel( 53 + x,49 + y,0,146,14 );
gfx.PutPixel( 54 + x,49 + y,0,146,14 );
gfx.PutPixel( 55 + x,49 + y,0,146,14 );
gfx.PutPixel( 56 + x,49 + y,0,146,14 );
gfx.PutPixel( 57 + x,49 + y,0,146,14 );
gfx.PutPixel( 58 + x,49 + y,0,146,14 );
gfx.PutPixel( 59 + x,49 + y,0,146,14 );
gfx.PutPixel( 60 + x,49 + y,0,146,14 );
gfx.PutPixel( 61 + x,49 + y,0,146,14 );
gfx.PutPixel( 62 + x,49 + y,0,146,14 );
gfx.PutPixel( 63 + x,49 + y,0,146,14 );
gfx.PutPixel( 64 + x,49 + y,0,146,14 );
gfx.PutPixel( 65 + x,49 + y,0,146,14 );
gfx.PutPixel( 66 + x,49 + y,0,146,14 );
gfx.PutPixel( 67 + x,49 + y,0,146,14 );
gfx.PutPixel( 68 + x,49 + y,0,146,14 );
gfx.PutPixel( 69 + x,49 + y,0,146,14 );
gfx.PutPixel( 70 + x,49 + y,0,146,14 );
gfx.PutPixel( 71 + x,49 + y,0,146,14 );
gfx.PutPixel( 72 + x,49 + y,0,146,14 );
gfx.PutPixel( 73 + x,49 + y,0,146,14 );
gfx.PutPixel( 74 + x,49 + y,0,146,14 );
gfx.PutPixel( 75 + x,49 + y,0,146,14 );
gfx.PutPixel( 76 + x,49 + y,0,146,14 );
gfx.PutPixel( 77 + x,49 + y,0,146,14 );
gfx.PutPixel( 78 + x,49 + y,0,146,14 );
gfx.PutPixel( 2 + x,50 + y,0,146,14 );
gfx.PutPixel( 3 + x,50 + y,0,146,14 );
gfx.PutPixel( 4 + x,50 + y,0,146,14 );
gfx.PutPixel( 5 + x,50 + y,0,146,14 );
gfx.PutPixel( 6 + x,50 + y,0,146,14 );
gfx.PutPixel( 7 + x,50 + y,0,146,14 );
gfx.PutPixel( 8 + x,50 + y,0,146,14 );
gfx.PutPixel( 9 + x,50 + y,0,146,14 );
gfx.PutPixel( 10 + x,50 + y,0,146,14 );
gfx.PutPixel( 11 + x,50 + y,0,146,14 );
gfx.PutPixel( 12 + x,50 + y,0,146,14 );
gfx.PutPixel( 13 + x,50 + y,0,146,14 );
gfx.PutPixel( 14 + x,50 + y,0,146,14 );
gfx.PutPixel( 15 + x,50 + y,0,146,14 );
gfx.PutPixel( 16 + x,50 + y,0,146,14 );
gfx.PutPixel( 17 + x,50 + y,0,146,14 );
gfx.PutPixel( 18 + x,50 + y,0,146,14 );
gfx.PutPixel( 19 + x,50 + y,0,146,14 );
gfx.PutPixel( 20 + x,50 + y,0,146,14 );
gfx.PutPixel( 21 + x,50 + y,0,146,14 );
gfx.PutPixel( 22 + x,50 + y,0,146,14 );
gfx.PutPixel( 23 + x,50 + y,0,146,14 );
gfx.PutPixel( 24 + x,50 + y,0,146,14 );
gfx.PutPixel( 25 + x,50 + y,0,142,13 );
gfx.PutPixel( 41 + x,50 + y,0,146,14 );
gfx.PutPixel( 42 + x,50 + y,0,146,14 );
gfx.PutPixel( 43 + x,50 + y,0,146,14 );
gfx.PutPixel( 44 + x,50 + y,0,146,14 );
gfx.PutPixel( 45 + x,50 + y,0,146,14 );
gfx.PutPixel( 46 + x,50 + y,0,146,14 );
gfx.PutPixel( 47 + x,50 + y,0,146,14 );
gfx.PutPixel( 48 + x,50 + y,0,146,14 );
gfx.PutPixel( 49 + x,50 + y,0,146,14 );
gfx.PutPixel( 50 + x,50 + y,0,146,14 );
gfx.PutPixel( 51 + x,50 + y,0,146,14 );
gfx.PutPixel( 52 + x,50 + y,0,146,14 );
gfx.PutPixel( 53 + x,50 + y,0,146,14 );
gfx.PutPixel( 54 + x,50 + y,0,146,14 );
gfx.PutPixel( 55 + x,50 + y,0,146,14 );
gfx.PutPixel( 56 + x,50 + y,0,146,14 );
gfx.PutPixel( 57 + x,50 + y,0,146,14 );
gfx.PutPixel( 58 + x,50 + y,0,146,14 );
gfx.PutPixel( 59 + x,50 + y,0,146,14 );
gfx.PutPixel( 60 + x,50 + y,0,146,14 );
gfx.PutPixel( 61 + x,50 + y,0,146,14 );
gfx.PutPixel( 62 + x,50 + y,0,146,14 );
gfx.PutPixel( 63 + x,50 + y,0,146,14 );
gfx.PutPixel( 64 + x,50 + y,0,146,14 );
gfx.PutPixel( 65 + x,50 + y,0,146,14 );
gfx.PutPixel( 66 + x,50 + y,0,146,14 );
gfx.PutPixel( 67 + x,50 + y,0,146,14 );
gfx.PutPixel( 68 + x,50 + y,0,146,14 );
gfx.PutPixel( 69 + x,50 + y,0,146,14 );
gfx.PutPixel( 70 + x,50 + y,0,146,14 );
gfx.PutPixel( 71 + x,50 + y,0,146,14 );
gfx.PutPixel( 72 + x,50 + y,0,146,14 );
gfx.PutPixel( 73 + x,50 + y,0,146,14 );
gfx.PutPixel( 74 + x,50 + y,0,146,14 );
gfx.PutPixel( 75 + x,50 + y,0,146,14 );
gfx.PutPixel( 76 + x,50 + y,0,146,14 );
gfx.PutPixel( 2 + x,55 + y,0,146,14 );
gfx.PutPixel( 3 + x,55 + y,0,146,14 );
gfx.PutPixel( 4 + x,55 + y,0,146,14 );
gfx.PutPixel( 5 + x,55 + y,0,146,14 );
gfx.PutPixel( 6 + x,55 + y,0,146,14 );
gfx.PutPixel( 7 + x,55 + y,0,146,14 );
gfx.PutPixel( 12 + x,55 + y,0,146,14 );
gfx.PutPixel( 13 + x,55 + y,0,146,14 );
gfx.PutPixel( 14 + x,55 + y,0,146,14 );
gfx.PutPixel( 19 + x,55 + y,0,146,14 );
gfx.PutPixel( 20 + x,55 + y,0,146,14 );
gfx.PutPixel( 25 + x,55 + y,0,146,14 );
gfx.PutPixel( 26 + x,55 + y,0,146,14 );
gfx.PutPixel( 28 + x,55 + y,0,146,14 );
gfx.PutPixel( 29 + x,55 + y,0,146,14 );
gfx.PutPixel( 30 + x,55 + y,0,146,14 );
gfx.PutPixel( 31 + x,55 + y,0,146,14 );
gfx.PutPixel( 32 + x,55 + y,0,146,14 );
gfx.PutPixel( 33 + x,55 + y,0,146,14 );
gfx.PutPixel( 34 + x,55 + y,0,146,14 );
gfx.PutPixel( 35 + x,55 + y,0,146,14 );
gfx.PutPixel( 36 + x,55 + y,0,146,14 );
gfx.PutPixel( 48 + x,55 + y,0,118,11 );
gfx.PutPixel( 49 + x,55 + y,0,146,14 );
gfx.PutPixel( 50 + x,55 + y,0,146,14 );
gfx.PutPixel( 51 + x,55 + y,0,146,14 );
gfx.PutPixel( 52 + x,55 + y,0,146,14 );
gfx.PutPixel( 53 + x,55 + y,0,146,14 );
gfx.PutPixel( 54 + x,55 + y,0,146,14 );
gfx.PutPixel( 57 + x,55 + y,0,146,14 );
gfx.PutPixel( 58 + x,55 + y,0,146,14 );
gfx.PutPixel( 63 + x,55 + y,0,146,14 );
gfx.PutPixel( 64 + x,55 + y,0,146,14 );
gfx.PutPixel( 66 + x,55 + y,0,3,0 );
gfx.PutPixel( 67 + x,55 + y,0,146,14 );
gfx.PutPixel( 68 + x,55 + y,0,146,14 );
gfx.PutPixel( 69 + x,55 + y,0,146,14 );
gfx.PutPixel( 70 + x,55 + y,0,146,14 );
gfx.PutPixel( 71 + x,55 + y,0,146,14 );
gfx.PutPixel( 72 + x,55 + y,0,146,14 );
gfx.PutPixel( 73 + x,55 + y,0,146,14 );
gfx.PutPixel( 74 + x,55 + y,0,146,14 );
gfx.PutPixel( 76 + x,55 + y,0,146,14 );
gfx.PutPixel( 77 + x,55 + y,0,146,14 );
gfx.PutPixel( 78 + x,55 + y,0,146,14 );
gfx.PutPixel( 79 + x,55 + y,0,146,14 );
gfx.PutPixel( 80 + x,55 + y,0,146,14 );
gfx.PutPixel( 81 + x,55 + y,0,146,14 );
gfx.PutPixel( 82 + x,55 + y,0,146,14 );
gfx.PutPixel( 1 + x,56 + y,0,146,14 );
gfx.PutPixel( 2 + x,56 + y,0,146,14 );
gfx.PutPixel( 3 + x,56 + y,0,146,14 );
gfx.PutPixel( 4 + x,56 + y,0,146,14 );
gfx.PutPixel( 5 + x,56 + y,0,146,14 );
gfx.PutPixel( 6 + x,56 + y,0,146,14 );
gfx.PutPixel( 7 + x,56 + y,0,146,14 );
gfx.PutPixel( 11 + x,56 + y,0,146,14 );
gfx.PutPixel( 12 + x,56 + y,0,146,14 );
gfx.PutPixel( 13 + x,56 + y,0,146,14 );
gfx.PutPixel( 14 + x,56 + y,0,146,14 );
gfx.PutPixel( 15 + x,56 + y,0,146,14 );
gfx.PutPixel( 16 + x,56 + y,0,142,13 );
gfx.PutPixel( 19 + x,56 + y,0,146,14 );
gfx.PutPixel( 20 + x,56 + y,0,146,14 );
gfx.PutPixel( 21 + x,56 + y,0,146,14 );
gfx.PutPixel( 24 + x,56 + y,0,146,14 );
gfx.PutPixel( 25 + x,56 + y,0,146,14 );
gfx.PutPixel( 26 + x,56 + y,0,146,14 );
gfx.PutPixel( 28 + x,56 + y,0,146,14 );
gfx.PutPixel( 29 + x,56 + y,0,146,14 );
gfx.PutPixel( 30 + x,56 + y,0,146,14 );
gfx.PutPixel( 31 + x,56 + y,0,146,14 );
gfx.PutPixel( 32 + x,56 + y,0,146,14 );
gfx.PutPixel( 33 + x,56 + y,0,146,14 );
gfx.PutPixel( 34 + x,56 + y,0,146,14 );
gfx.PutPixel( 35 + x,56 + y,0,146,14 );
gfx.PutPixel( 36 + x,56 + y,0,142,13 );
gfx.PutPixel( 47 + x,56 + y,0,146,14 );
gfx.PutPixel( 48 + x,56 + y,0,146,14 );
gfx.PutPixel( 49 + x,56 + y,0,146,14 );
gfx.PutPixel( 50 + x,56 + y,0,25,2 );
gfx.PutPixel( 51 + x,56 + y,0,25,2 );
gfx.PutPixel( 52 + x,56 + y,0,146,14 );
gfx.PutPixel( 53 + x,56 + y,0,146,14 );
gfx.PutPixel( 54 + x,56 + y,0,146,14 );
gfx.PutPixel( 55 + x,56 + y,0,146,14 );
gfx.PutPixel( 57 + x,56 + y,0,146,14 );
gfx.PutPixel( 58 + x,56 + y,0,146,14 );
gfx.PutPixel( 63 + x,56 + y,0,146,14 );
gfx.PutPixel( 64 + x,56 + y,0,146,14 );
gfx.PutPixel( 65 + x,56 + y,0,146,14 );
gfx.PutPixel( 66 + x,56 + y,0,146,14 );
gfx.PutPixel( 67 + x,56 + y,0,146,14 );
gfx.PutPixel( 68 + x,56 + y,0,146,14 );
gfx.PutPixel( 69 + x,56 + y,0,146,14 );
gfx.PutPixel( 70 + x,56 + y,0,146,14 );
gfx.PutPixel( 71 + x,56 + y,0,146,14 );
gfx.PutPixel( 72 + x,56 + y,0,146,14 );
gfx.PutPixel( 73 + x,56 + y,0,146,14 );
gfx.PutPixel( 74 + x,56 + y,0,146,14 );
gfx.PutPixel( 76 + x,56 + y,0,146,14 );
gfx.PutPixel( 77 + x,56 + y,0,146,14 );
gfx.PutPixel( 78 + x,56 + y,0,146,14 );
gfx.PutPixel( 79 + x,56 + y,0,25,2 );
gfx.PutPixel( 80 + x,56 + y,0,146,14 );
gfx.PutPixel( 81 + x,56 + y,0,146,14 );
gfx.PutPixel( 82 + x,56 + y,0,146,14 );
gfx.PutPixel( 83 + x,56 + y,0,146,14 );
gfx.PutPixel( 0 + x,57 + y,0,146,14 );
gfx.PutPixel( 1 + x,57 + y,0,146,14 );
gfx.PutPixel( 9 + x,57 + y,0,25,2 );
gfx.PutPixel( 10 + x,57 + y,0,146,14 );
gfx.PutPixel( 11 + x,57 + y,0,146,14 );
gfx.PutPixel( 15 + x,57 + y,0,146,14 );
gfx.PutPixel( 16 + x,57 + y,0,146,14 );
gfx.PutPixel( 17 + x,57 + y,0,118,11 );
gfx.PutPixel( 19 + x,57 + y,0,146,14 );
gfx.PutPixel( 20 + x,57 + y,0,146,14 );
gfx.PutPixel( 21 + x,57 + y,0,146,14 );
gfx.PutPixel( 22 + x,57 + y,0,146,14 );
gfx.PutPixel( 23 + x,57 + y,0,146,14 );
gfx.PutPixel( 24 + x,57 + y,0,146,14 );
gfx.PutPixel( 25 + x,57 + y,0,146,14 );
gfx.PutPixel( 26 + x,57 + y,0,146,14 );
gfx.PutPixel( 28 + x,57 + y,0,146,14 );
gfx.PutPixel( 29 + x,57 + y,0,146,14 );
gfx.PutPixel( 30 + x,57 + y,0,146,14 );
gfx.PutPixel( 47 + x,57 + y,0,146,14 );
gfx.PutPixel( 48 + x,57 + y,0,146,14 );
gfx.PutPixel( 49 + x,57 + y,0,146,14 );
gfx.PutPixel( 54 + x,57 + y,0,146,14 );
gfx.PutPixel( 55 + x,57 + y,0,146,14 );
gfx.PutPixel( 57 + x,57 + y,0,146,14 );
gfx.PutPixel( 58 + x,57 + y,0,146,14 );
gfx.PutPixel( 63 + x,57 + y,0,146,14 );
gfx.PutPixel( 64 + x,57 + y,0,146,14 );
gfx.PutPixel( 65 + x,57 + y,0,25,2 );
gfx.PutPixel( 66 + x,57 + y,0,146,14 );
gfx.PutPixel( 67 + x,57 + y,0,146,14 );
gfx.PutPixel( 68 + x,57 + y,0,146,14 );
gfx.PutPixel( 76 + x,57 + y,0,146,14 );
gfx.PutPixel( 77 + x,57 + y,0,146,14 );
gfx.PutPixel( 82 + x,57 + y,0,146,14 );
gfx.PutPixel( 83 + x,57 + y,0,146,14 );
gfx.PutPixel( 0 + x,58 + y,0,146,14 );
gfx.PutPixel( 1 + x,58 + y,0,146,14 );
gfx.PutPixel( 9 + x,58 + y,0,146,14 );
gfx.PutPixel( 10 + x,58 + y,0,146,14 );
gfx.PutPixel( 11 + x,58 + y,0,118,11 );
gfx.PutPixel( 15 + x,58 + y,0,25,2 );
gfx.PutPixel( 16 + x,58 + y,0,146,14 );
gfx.PutPixel( 17 + x,58 + y,0,146,14 );
gfx.PutPixel( 19 + x,58 + y,0,146,14 );
gfx.PutPixel( 20 + x,58 + y,0,146,14 );
gfx.PutPixel( 21 + x,58 + y,0,146,14 );
gfx.PutPixel( 22 + x,58 + y,0,146,14 );
gfx.PutPixel( 23 + x,58 + y,0,146,14 );
gfx.PutPixel( 24 + x,58 + y,0,146,14 );
gfx.PutPixel( 25 + x,58 + y,0,146,14 );
gfx.PutPixel( 26 + x,58 + y,0,146,14 );
gfx.PutPixel( 28 + x,58 + y,0,146,14 );
gfx.PutPixel( 29 + x,58 + y,0,146,14 );
gfx.PutPixel( 30 + x,58 + y,0,146,14 );
gfx.PutPixel( 47 + x,58 + y,0,146,14 );
gfx.PutPixel( 48 + x,58 + y,0,146,14 );
gfx.PutPixel( 49 + x,58 + y,0,146,14 );
gfx.PutPixel( 54 + x,58 + y,0,146,14 );
gfx.PutPixel( 55 + x,58 + y,0,146,14 );
gfx.PutPixel( 57 + x,58 + y,0,146,14 );
gfx.PutPixel( 58 + x,58 + y,0,146,14 );
gfx.PutPixel( 63 + x,58 + y,0,146,14 );
gfx.PutPixel( 64 + x,58 + y,0,146,14 );
gfx.PutPixel( 65 + x,58 + y,0,25,2 );
gfx.PutPixel( 66 + x,58 + y,0,146,14 );
gfx.PutPixel( 67 + x,58 + y,0,146,14 );
gfx.PutPixel( 68 + x,58 + y,0,146,14 );
gfx.PutPixel( 76 + x,58 + y,0,146,14 );
gfx.PutPixel( 77 + x,58 + y,0,146,14 );
gfx.PutPixel( 82 + x,58 + y,0,146,14 );
gfx.PutPixel( 83 + x,58 + y,0,146,14 );
gfx.PutPixel( 0 + x,59 + y,0,146,14 );
gfx.PutPixel( 1 + x,59 + y,0,146,14 );
gfx.PutPixel( 5 + x,59 + y,0,146,14 );
gfx.PutPixel( 6 + x,59 + y,0,146,14 );
gfx.PutPixel( 7 + x,59 + y,0,146,14 );
gfx.PutPixel( 9 + x,59 + y,0,146,14 );
gfx.PutPixel( 10 + x,59 + y,0,146,14 );
gfx.PutPixel( 11 + x,59 + y,0,25,2 );
gfx.PutPixel( 15 + x,59 + y,0,70,6 );
gfx.PutPixel( 16 + x,59 + y,0,146,14 );
gfx.PutPixel( 17 + x,59 + y,0,146,14 );
gfx.PutPixel( 19 + x,59 + y,0,146,14 );
gfx.PutPixel( 20 + x,59 + y,0,146,14 );
gfx.PutPixel( 22 + x,59 + y,0,146,14 );
gfx.PutPixel( 23 + x,59 + y,0,146,14 );
gfx.PutPixel( 24 + x,59 + y,0,25,2 );
gfx.PutPixel( 25 + x,59 + y,0,146,14 );
gfx.PutPixel( 26 + x,59 + y,0,146,14 );
gfx.PutPixel( 28 + x,59 + y,0,146,14 );
gfx.PutPixel( 29 + x,59 + y,0,146,14 );
gfx.PutPixel( 30 + x,59 + y,0,146,14 );
gfx.PutPixel( 31 + x,59 + y,0,146,14 );
gfx.PutPixel( 32 + x,59 + y,0,146,14 );
gfx.PutPixel( 33 + x,59 + y,0,146,14 );
gfx.PutPixel( 34 + x,59 + y,0,146,14 );
gfx.PutPixel( 35 + x,59 + y,0,146,14 );
gfx.PutPixel( 47 + x,59 + y,0,146,14 );
gfx.PutPixel( 48 + x,59 + y,0,146,14 );
gfx.PutPixel( 49 + x,59 + y,0,146,14 );
gfx.PutPixel( 54 + x,59 + y,0,146,14 );
gfx.PutPixel( 55 + x,59 + y,0,146,14 );
gfx.PutPixel( 57 + x,59 + y,0,146,14 );
gfx.PutPixel( 58 + x,59 + y,0,146,14 );
gfx.PutPixel( 59 + x,59 + y,0,146,14 );
gfx.PutPixel( 63 + x,59 + y,0,146,14 );
gfx.PutPixel( 64 + x,59 + y,0,146,14 );
gfx.PutPixel( 65 + x,59 + y,0,25,2 );
gfx.PutPixel( 66 + x,59 + y,0,146,14 );
gfx.PutPixel( 67 + x,59 + y,0,146,14 );
gfx.PutPixel( 68 + x,59 + y,0,146,14 );
gfx.PutPixel( 69 + x,59 + y,0,146,14 );
gfx.PutPixel( 70 + x,59 + y,0,146,14 );
gfx.PutPixel( 71 + x,59 + y,0,146,14 );
gfx.PutPixel( 72 + x,59 + y,0,146,14 );
gfx.PutPixel( 73 + x,59 + y,0,146,14 );
gfx.PutPixel( 76 + x,59 + y,0,146,14 );
gfx.PutPixel( 77 + x,59 + y,0,146,14 );
gfx.PutPixel( 82 + x,59 + y,0,146,14 );
gfx.PutPixel( 83 + x,59 + y,0,146,14 );
gfx.PutPixel( 0 + x,60 + y,0,146,14 );
gfx.PutPixel( 1 + x,60 + y,0,146,14 );
gfx.PutPixel( 6 + x,60 + y,0,146,14 );
gfx.PutPixel( 7 + x,60 + y,0,146,14 );
gfx.PutPixel( 9 + x,60 + y,0,146,14 );
gfx.PutPixel( 10 + x,60 + y,0,146,14 );
gfx.PutPixel( 11 + x,60 + y,0,146,14 );
gfx.PutPixel( 12 + x,60 + y,0,146,14 );
gfx.PutPixel( 13 + x,60 + y,0,146,14 );
gfx.PutPixel( 14 + x,60 + y,0,146,14 );
gfx.PutPixel( 15 + x,60 + y,0,146,14 );
gfx.PutPixel( 16 + x,60 + y,0,146,14 );
gfx.PutPixel( 17 + x,60 + y,0,146,14 );
gfx.PutPixel( 19 + x,60 + y,0,146,14 );
gfx.PutPixel( 20 + x,60 + y,0,146,14 );
gfx.PutPixel( 25 + x,60 + y,0,146,14 );
gfx.PutPixel( 26 + x,60 + y,0,146,14 );
gfx.PutPixel( 28 + x,60 + y,0,146,14 );
gfx.PutPixel( 29 + x,60 + y,0,146,14 );
gfx.PutPixel( 30 + x,60 + y,0,146,14 );
gfx.PutPixel( 47 + x,60 + y,0,146,14 );
gfx.PutPixel( 48 + x,60 + y,0,146,14 );
gfx.PutPixel( 49 + x,60 + y,0,146,14 );
gfx.PutPixel( 54 + x,60 + y,0,146,14 );
gfx.PutPixel( 55 + x,60 + y,0,146,14 );
gfx.PutPixel( 57 + x,60 + y,0,146,14 );
gfx.PutPixel( 58 + x,60 + y,0,146,14 );
gfx.PutPixel( 59 + x,60 + y,0,146,14 );
gfx.PutPixel( 60 + x,60 + y,0,146,14 );
gfx.PutPixel( 61 + x,60 + y,0,146,14 );
gfx.PutPixel( 62 + x,60 + y,0,146,14 );
gfx.PutPixel( 63 + x,60 + y,0,146,14 );
gfx.PutPixel( 64 + x,60 + y,0,146,14 );
gfx.PutPixel( 66 + x,60 + y,0,146,14 );
gfx.PutPixel( 67 + x,60 + y,0,146,14 );
gfx.PutPixel( 68 + x,60 + y,0,146,14 );
gfx.PutPixel( 76 + x,60 + y,0,146,14 );
gfx.PutPixel( 77 + x,60 + y,0,146,14 );
gfx.PutPixel( 78 + x,60 + y,0,146,14 );
gfx.PutPixel( 80 + x,60 + y,0,146,14 );
gfx.PutPixel( 81 + x,60 + y,0,146,14 );
gfx.PutPixel( 82 + x,60 + y,0,146,14 );
gfx.PutPixel( 83 + x,60 + y,0,146,14 );
gfx.PutPixel( 0 + x,61 + y,0,146,14 );
gfx.PutPixel( 1 + x,61 + y,0,146,14 );
gfx.PutPixel( 6 + x,61 + y,0,146,14 );
gfx.PutPixel( 7 + x,61 + y,0,146,14 );
gfx.PutPixel( 9 + x,61 + y,0,146,14 );
gfx.PutPixel( 10 + x,61 + y,0,146,14 );
gfx.PutPixel( 11 + x,61 + y,0,146,14 );
gfx.PutPixel( 12 + x,61 + y,0,146,14 );
gfx.PutPixel( 13 + x,61 + y,0,146,14 );
gfx.PutPixel( 14 + x,61 + y,0,146,14 );
gfx.PutPixel( 15 + x,61 + y,0,146,14 );
gfx.PutPixel( 16 + x,61 + y,0,146,14 );
gfx.PutPixel( 17 + x,61 + y,0,146,14 );
gfx.PutPixel( 19 + x,61 + y,0,146,14 );
gfx.PutPixel( 20 + x,61 + y,0,146,14 );
gfx.PutPixel( 25 + x,61 + y,0,146,14 );
gfx.PutPixel( 26 + x,61 + y,0,146,14 );
gfx.PutPixel( 28 + x,61 + y,0,146,14 );
gfx.PutPixel( 29 + x,61 + y,0,146,14 );
gfx.PutPixel( 30 + x,61 + y,0,146,14 );
gfx.PutPixel( 47 + x,61 + y,0,146,14 );
gfx.PutPixel( 48 + x,61 + y,0,146,14 );
gfx.PutPixel( 49 + x,61 + y,0,146,14 );
gfx.PutPixel( 54 + x,61 + y,0,146,14 );
gfx.PutPixel( 55 + x,61 + y,0,146,14 );
gfx.PutPixel( 58 + x,61 + y,0,146,14 );
gfx.PutPixel( 59 + x,61 + y,0,146,14 );
gfx.PutPixel( 60 + x,61 + y,0,146,14 );
gfx.PutPixel( 61 + x,61 + y,0,146,14 );
gfx.PutPixel( 62 + x,61 + y,0,146,14 );
gfx.PutPixel( 63 + x,61 + y,0,146,14 );
gfx.PutPixel( 66 + x,61 + y,0,146,14 );
gfx.PutPixel( 67 + x,61 + y,0,146,14 );
gfx.PutPixel( 68 + x,61 + y,0,146,14 );
gfx.PutPixel( 76 + x,61 + y,0,146,14 );
gfx.PutPixel( 77 + x,61 + y,0,146,14 );
gfx.PutPixel( 78 + x,61 + y,0,146,14 );
gfx.PutPixel( 79 + x,61 + y,0,146,14 );
gfx.PutPixel( 80 + x,61 + y,0,146,14 );
gfx.PutPixel( 81 + x,61 + y,0,146,14 );
gfx.PutPixel( 82 + x,61 + y,0,146,14 );
gfx.PutPixel( 0 + x,62 + y,0,142,13 );
gfx.PutPixel( 1 + x,62 + y,0,146,14 );
gfx.PutPixel( 2 + x,62 + y,0,146,14 );
gfx.PutPixel( 6 + x,62 + y,0,146,14 );
gfx.PutPixel( 7 + x,62 + y,0,146,14 );
gfx.PutPixel( 9 + x,62 + y,0,146,14 );
gfx.PutPixel( 10 + x,62 + y,0,146,14 );
gfx.PutPixel( 11 + x,62 + y,0,146,14 );
gfx.PutPixel( 15 + x,62 + y,0,70,6 );
gfx.PutPixel( 16 + x,62 + y,0,146,14 );
gfx.PutPixel( 17 + x,62 + y,0,146,14 );
gfx.PutPixel( 19 + x,62 + y,0,146,14 );
gfx.PutPixel( 20 + x,62 + y,0,146,14 );
gfx.PutPixel( 25 + x,62 + y,0,146,14 );
gfx.PutPixel( 26 + x,62 + y,0,146,14 );
gfx.PutPixel( 28 + x,62 + y,0,146,14 );
gfx.PutPixel( 29 + x,62 + y,0,146,14 );
gfx.PutPixel( 30 + x,62 + y,0,146,14 );
gfx.PutPixel( 47 + x,62 + y,0,146,14 );
gfx.PutPixel( 48 + x,62 + y,0,146,14 );
gfx.PutPixel( 49 + x,62 + y,0,146,14 );
gfx.PutPixel( 53 + x,62 + y,0,3,0 );
gfx.PutPixel( 54 + x,62 + y,0,146,14 );
gfx.PutPixel( 55 + x,62 + y,0,146,14 );
gfx.PutPixel( 59 + x,62 + y,0,146,14 );
gfx.PutPixel( 60 + x,62 + y,0,146,14 );
gfx.PutPixel( 61 + x,62 + y,0,146,14 );
gfx.PutPixel( 62 + x,62 + y,0,146,14 );
gfx.PutPixel( 66 + x,62 + y,0,146,14 );
gfx.PutPixel( 67 + x,62 + y,0,146,14 );
gfx.PutPixel( 68 + x,62 + y,0,146,14 );
gfx.PutPixel( 76 + x,62 + y,0,146,14 );
gfx.PutPixel( 77 + x,62 + y,0,146,14 );
gfx.PutPixel( 80 + x,62 + y,0,146,14 );
gfx.PutPixel( 81 + x,62 + y,0,146,14 );
gfx.PutPixel( 82 + x,62 + y,0,146,14 );
gfx.PutPixel( 83 + x,62 + y,0,70,6 );
gfx.PutPixel( 1 + x,63 + y,0,142,13 );
gfx.PutPixel( 2 + x,63 + y,0,146,14 );
gfx.PutPixel( 3 + x,63 + y,0,146,14 );
gfx.PutPixel( 4 + x,63 + y,0,146,14 );
gfx.PutPixel( 5 + x,63 + y,0,146,14 );
gfx.PutPixel( 6 + x,63 + y,0,146,14 );
gfx.PutPixel( 7 + x,63 + y,0,146,14 );
gfx.PutPixel( 9 + x,63 + y,0,146,14 );
gfx.PutPixel( 10 + x,63 + y,0,146,14 );
gfx.PutPixel( 11 + x,63 + y,0,146,14 );
gfx.PutPixel( 15 + x,63 + y,0,25,2 );
gfx.PutPixel( 16 + x,63 + y,0,146,14 );
gfx.PutPixel( 17 + x,63 + y,0,146,14 );
gfx.PutPixel( 19 + x,63 + y,0,146,14 );
gfx.PutPixel( 20 + x,63 + y,0,146,14 );
gfx.PutPixel( 25 + x,63 + y,0,146,14 );
gfx.PutPixel( 26 + x,63 + y,0,146,14 );
gfx.PutPixel( 28 + x,63 + y,0,146,14 );
gfx.PutPixel( 29 + x,63 + y,0,146,14 );
gfx.PutPixel( 30 + x,63 + y,0,146,14 );
gfx.PutPixel( 31 + x,63 + y,0,146,14 );
gfx.PutPixel( 32 + x,63 + y,0,146,14 );
gfx.PutPixel( 33 + x,63 + y,0,146,14 );
gfx.PutPixel( 34 + x,63 + y,0,146,14 );
gfx.PutPixel( 35 + x,63 + y,0,146,14 );
gfx.PutPixel( 36 + x,63 + y,0,146,14 );
gfx.PutPixel( 48 + x,63 + y,0,146,14 );
gfx.PutPixel( 49 + x,63 + y,0,146,14 );
gfx.PutPixel( 50 + x,63 + y,0,146,14 );
gfx.PutPixel( 51 + x,63 + y,0,146,14 );
gfx.PutPixel( 52 + x,63 + y,0,146,14 );
gfx.PutPixel( 53 + x,63 + y,0,146,14 );
gfx.PutPixel( 54 + x,63 + y,0,146,14 );
gfx.PutPixel( 60 + x,63 + y,0,146,14 );
gfx.PutPixel( 61 + x,63 + y,0,146,14 );
gfx.PutPixel( 66 + x,63 + y,0,146,14 );
gfx.PutPixel( 67 + x,63 + y,0,146,14 );
gfx.PutPixel( 68 + x,63 + y,0,146,14 );
gfx.PutPixel( 69 + x,63 + y,0,146,14 );
gfx.PutPixel( 70 + x,63 + y,0,146,14 );
gfx.PutPixel( 71 + x,63 + y,0,146,14 );
gfx.PutPixel( 72 + x,63 + y,0,146,14 );
gfx.PutPixel( 73 + x,63 + y,0,146,14 );
gfx.PutPixel( 74 + x,63 + y,0,146,14 );
gfx.PutPixel( 76 + x,63 + y,0,146,14 );
gfx.PutPixel( 77 + x,63 + y,0,146,14 );
gfx.PutPixel( 82 + x,63 + y,0,146,14 );
gfx.PutPixel( 83 + x,63 + y,0,146,14 );
}
void Game::DrawTitleScreen( int x,int y )
{
gfx.PutPixel( 0 + x,0 + y,208,34,34 );
gfx.PutPixel( 1 + x,0 + y,208,34,34 );
gfx.PutPixel( 2 + x,0 + y,208,34,34 );
gfx.PutPixel( 3 + x,0 + y,208,34,34 );
gfx.PutPixel( 4 + x,0 + y,208,34,34 );
gfx.PutPixel( 5 + x,0 + y,208,34,34 );
gfx.PutPixel( 6 + x,0 + y,208,34,34 );
gfx.PutPixel( 7 + x,0 + y,208,34,34 );
gfx.PutPixel( 8 + x,0 + y,208,34,34 );
gfx.PutPixel( 9 + x,0 + y,208,34,34 );
gfx.PutPixel( 10 + x,0 + y,208,34,34 );
gfx.PutPixel( 11 + x,0 + y,208,34,34 );
gfx.PutPixel( 12 + x,0 + y,208,34,34 );
gfx.PutPixel( 13 + x,0 + y,208,34,34 );
gfx.PutPixel( 14 + x,0 + y,208,34,34 );
gfx.PutPixel( 15 + x,0 + y,208,34,34 );
gfx.PutPixel( 16 + x,0 + y,208,34,34 );
gfx.PutPixel( 17 + x,0 + y,208,34,34 );
gfx.PutPixel( 18 + x,0 + y,208,34,34 );
gfx.PutPixel( 19 + x,0 + y,208,34,34 );
gfx.PutPixel( 20 + x,0 + y,208,34,34 );
gfx.PutPixel( 21 + x,0 + y,208,34,34 );
gfx.PutPixel( 22 + x,0 + y,208,34,34 );
gfx.PutPixel( 23 + x,0 + y,208,34,34 );
gfx.PutPixel( 24 + x,0 + y,208,34,34 );
gfx.PutPixel( 25 + x,0 + y,208,34,34 );
gfx.PutPixel( 26 + x,0 + y,208,34,34 );
gfx.PutPixel( 27 + x,0 + y,208,34,34 );
gfx.PutPixel( 28 + x,0 + y,208,34,34 );
gfx.PutPixel( 29 + x,0 + y,208,34,34 );
gfx.PutPixel( 30 + x,0 + y,208,34,34 );
gfx.PutPixel( 31 + x,0 + y,208,34,34 );
gfx.PutPixel( 32 + x,0 + y,208,34,34 );
gfx.PutPixel( 33 + x,0 + y,208,34,34 );
gfx.PutPixel( 34 + x,0 + y,208,34,34 );
gfx.PutPixel( 35 + x,0 + y,208,34,34 );
gfx.PutPixel( 36 + x,0 + y,208,34,34 );
gfx.PutPixel( 37 + x,0 + y,208,34,34 );
gfx.PutPixel( 38 + x,0 + y,208,34,34 );
gfx.PutPixel( 39 + x,0 + y,208,34,34 );
gfx.PutPixel( 40 + x,0 + y,208,34,34 );
gfx.PutPixel( 41 + x,0 + y,208,34,34 );
gfx.PutPixel( 42 + x,0 + y,208,34,34 );
gfx.PutPixel( 43 + x,0 + y,208,34,34 );
gfx.PutPixel( 44 + x,0 + y,208,34,34 );
gfx.PutPixel( 45 + x,0 + y,208,34,34 );
gfx.PutPixel( 46 + x,0 + y,208,34,34 );
gfx.PutPixel( 47 + x,0 + y,208,34,34 );
gfx.PutPixel( 48 + x,0 + y,208,34,34 );
gfx.PutPixel( 49 + x,0 + y,208,34,34 );
gfx.PutPixel( 50 + x,0 + y,208,34,34 );
gfx.PutPixel( 51 + x,0 + y,208,34,34 );
gfx.PutPixel( 52 + x,0 + y,208,34,34 );
gfx.PutPixel( 53 + x,0 + y,208,34,34 );
gfx.PutPixel( 54 + x,0 + y,208,34,34 );
gfx.PutPixel( 55 + x,0 + y,208,34,34 );
gfx.PutPixel( 56 + x,0 + y,208,34,34 );
gfx.PutPixel( 57 + x,0 + y,208,34,34 );
gfx.PutPixel( 58 + x,0 + y,208,34,34 );
gfx.PutPixel( 59 + x,0 + y,208,34,34 );
gfx.PutPixel( 60 + x,0 + y,208,34,34 );
gfx.PutPixel( 61 + x,0 + y,208,34,34 );
gfx.PutPixel( 62 + x,0 + y,208,34,34 );
gfx.PutPixel( 63 + x,0 + y,208,34,34 );
gfx.PutPixel( 64 + x,0 + y,208,34,34 );
gfx.PutPixel( 65 + x,0 + y,208,34,34 );
gfx.PutPixel( 66 + x,0 + y,208,34,34 );
gfx.PutPixel( 67 + x,0 + y,208,34,34 );
gfx.PutPixel( 68 + x,0 + y,208,34,34 );
gfx.PutPixel( 69 + x,0 + y,208,34,34 );
gfx.PutPixel( 70 + x,0 + y,208,34,34 );
gfx.PutPixel( 71 + x,0 + y,208,34,34 );
gfx.PutPixel( 72 + x,0 + y,208,34,34 );
gfx.PutPixel( 73 + x,0 + y,208,34,34 );
gfx.PutPixel( 74 + x,0 + y,208,34,34 );
gfx.PutPixel( 75 + x,0 + y,208,34,34 );
gfx.PutPixel( 76 + x,0 + y,208,34,34 );
gfx.PutPixel( 77 + x,0 + y,208,34,34 );
gfx.PutPixel( 78 + x,0 + y,208,34,34 );
gfx.PutPixel( 79 + x,0 + y,208,34,34 );
gfx.PutPixel( 80 + x,0 + y,208,34,34 );
gfx.PutPixel( 81 + x,0 + y,208,34,34 );
gfx.PutPixel( 82 + x,0 + y,208,34,34 );
gfx.PutPixel( 83 + x,0 + y,208,34,34 );
gfx.PutPixel( 84 + x,0 + y,208,34,34 );
gfx.PutPixel( 85 + x,0 + y,208,34,34 );
gfx.PutPixel( 86 + x,0 + y,208,34,34 );
gfx.PutPixel( 87 + x,0 + y,208,34,34 );
gfx.PutPixel( 88 + x,0 + y,208,34,34 );
gfx.PutPixel( 89 + x,0 + y,208,34,34 );
gfx.PutPixel( 90 + x,0 + y,208,34,34 );
gfx.PutPixel( 91 + x,0 + y,208,34,34 );
gfx.PutPixel( 92 + x,0 + y,208,34,34 );
gfx.PutPixel( 93 + x,0 + y,208,34,34 );
gfx.PutPixel( 94 + x,0 + y,208,34,34 );
gfx.PutPixel( 95 + x,0 + y,208,34,34 );
gfx.PutPixel( 96 + x,0 + y,208,34,34 );
gfx.PutPixel( 97 + x,0 + y,208,34,34 );
gfx.PutPixel( 98 + x,0 + y,208,34,34 );
gfx.PutPixel( 99 + x,0 + y,208,34,34 );
gfx.PutPixel( 100 + x,0 + y,208,34,34 );
gfx.PutPixel( 101 + x,0 + y,208,34,34 );
gfx.PutPixel( 102 + x,0 + y,208,34,34 );
gfx.PutPixel( 103 + x,0 + y,208,34,34 );
gfx.PutPixel( 104 + x,0 + y,208,34,34 );
gfx.PutPixel( 105 + x,0 + y,208,34,34 );
gfx.PutPixel( 106 + x,0 + y,208,34,34 );
gfx.PutPixel( 107 + x,0 + y,208,34,34 );
gfx.PutPixel( 108 + x,0 + y,208,34,34 );
gfx.PutPixel( 109 + x,0 + y,208,34,34 );
gfx.PutPixel( 110 + x,0 + y,208,34,34 );
gfx.PutPixel( 111 + x,0 + y,208,34,34 );
gfx.PutPixel( 112 + x,0 + y,208,34,34 );
gfx.PutPixel( 113 + x,0 + y,208,34,34 );
gfx.PutPixel( 114 + x,0 + y,208,34,34 );
gfx.PutPixel( 115 + x,0 + y,208,34,34 );
gfx.PutPixel( 116 + x,0 + y,208,34,34 );
gfx.PutPixel( 117 + x,0 + y,208,34,34 );
gfx.PutPixel( 118 + x,0 + y,208,34,34 );
gfx.PutPixel( 119 + x,0 + y,208,34,34 );
gfx.PutPixel( 120 + x,0 + y,208,34,34 );
gfx.PutPixel( 121 + x,0 + y,208,34,34 );
gfx.PutPixel( 122 + x,0 + y,208,34,34 );
gfx.PutPixel( 123 + x,0 + y,208,34,34 );
gfx.PutPixel( 124 + x,0 + y,208,34,34 );
gfx.PutPixel( 125 + x,0 + y,208,34,34 );
gfx.PutPixel( 126 + x,0 + y,208,34,34 );
gfx.PutPixel( 127 + x,0 + y,208,34,34 );
gfx.PutPixel( 128 + x,0 + y,208,34,34 );
gfx.PutPixel( 129 + x,0 + y,208,34,34 );
gfx.PutPixel( 130 + x,0 + y,208,34,34 );
gfx.PutPixel( 131 + x,0 + y,208,34,34 );
gfx.PutPixel( 132 + x,0 + y,208,34,34 );
gfx.PutPixel( 133 + x,0 + y,208,34,34 );
gfx.PutPixel( 134 + x,0 + y,208,34,34 );
gfx.PutPixel( 135 + x,0 + y,208,34,34 );
gfx.PutPixel( 136 + x,0 + y,208,34,34 );
gfx.PutPixel( 137 + x,0 + y,208,34,34 );
gfx.PutPixel( 138 + x,0 + y,208,34,34 );
gfx.PutPixel( 139 + x,0 + y,208,34,34 );
gfx.PutPixel( 140 + x,0 + y,208,34,34 );
gfx.PutPixel( 141 + x,0 + y,208,34,34 );
gfx.PutPixel( 142 + x,0 + y,208,34,34 );
gfx.PutPixel( 143 + x,0 + y,208,34,34 );
gfx.PutPixel( 144 + x,0 + y,208,34,34 );
gfx.PutPixel( 145 + x,0 + y,208,34,34 );
gfx.PutPixel( 146 + x,0 + y,208,34,34 );
gfx.PutPixel( 147 + x,0 + y,208,34,34 );
gfx.PutPixel( 148 + x,0 + y,208,34,34 );
gfx.PutPixel( 149 + x,0 + y,208,34,34 );
gfx.PutPixel( 0 + x,1 + y,208,34,34 );
gfx.PutPixel( 1 + x,1 + y,208,34,34 );
gfx.PutPixel( 2 + x,1 + y,208,34,34 );
gfx.PutPixel( 3 + x,1 + y,208,34,34 );
gfx.PutPixel( 4 + x,1 + y,208,34,34 );
gfx.PutPixel( 5 + x,1 + y,208,34,34 );
gfx.PutPixel( 6 + x,1 + y,208,34,34 );
gfx.PutPixel( 7 + x,1 + y,208,34,34 );
gfx.PutPixel( 8 + x,1 + y,208,34,34 );
gfx.PutPixel( 9 + x,1 + y,208,34,34 );
gfx.PutPixel( 10 + x,1 + y,208,34,34 );
gfx.PutPixel( 11 + x,1 + y,208,34,34 );
gfx.PutPixel( 12 + x,1 + y,208,34,34 );
gfx.PutPixel( 13 + x,1 + y,208,34,34 );
gfx.PutPixel( 14 + x,1 + y,208,34,34 );
gfx.PutPixel( 15 + x,1 + y,208,34,34 );
gfx.PutPixel( 16 + x,1 + y,208,34,34 );
gfx.PutPixel( 17 + x,1 + y,208,34,34 );
gfx.PutPixel( 18 + x,1 + y,208,34,34 );
gfx.PutPixel( 19 + x,1 + y,208,34,34 );
gfx.PutPixel( 20 + x,1 + y,208,34,34 );
gfx.PutPixel( 21 + x,1 + y,208,34,34 );
gfx.PutPixel( 22 + x,1 + y,208,34,34 );
gfx.PutPixel( 23 + x,1 + y,208,34,34 );
gfx.PutPixel( 24 + x,1 + y,208,34,34 );
gfx.PutPixel( 25 + x,1 + y,208,34,34 );
gfx.PutPixel( 26 + x,1 + y,208,34,34 );
gfx.PutPixel( 27 + x,1 + y,208,34,34 );
gfx.PutPixel( 28 + x,1 + y,208,34,34 );
gfx.PutPixel( 29 + x,1 + y,208,34,34 );
gfx.PutPixel( 30 + x,1 + y,208,34,34 );
gfx.PutPixel( 31 + x,1 + y,208,34,34 );
gfx.PutPixel( 32 + x,1 + y,208,34,34 );
gfx.PutPixel( 33 + x,1 + y,208,34,34 );
gfx.PutPixel( 34 + x,1 + y,208,34,34 );
gfx.PutPixel( 35 + x,1 + y,208,34,34 );
gfx.PutPixel( 36 + x,1 + y,208,34,34 );
gfx.PutPixel( 37 + x,1 + y,208,34,34 );
gfx.PutPixel( 38 + x,1 + y,208,34,34 );
gfx.PutPixel( 39 + x,1 + y,208,34,34 );
gfx.PutPixel( 40 + x,1 + y,208,34,34 );
gfx.PutPixel( 41 + x,1 + y,208,34,34 );
gfx.PutPixel( 42 + x,1 + y,208,34,34 );
gfx.PutPixel( 43 + x,1 + y,208,34,34 );
gfx.PutPixel( 44 + x,1 + y,208,34,34 );
gfx.PutPixel( 45 + x,1 + y,208,34,34 );
gfx.PutPixel( 46 + x,1 + y,208,34,34 );
gfx.PutPixel( 47 + x,1 + y,208,34,34 );
gfx.PutPixel( 48 + x,1 + y,208,34,34 );
gfx.PutPixel( 49 + x,1 + y,208,34,34 );
gfx.PutPixel( 50 + x,1 + y,208,34,34 );
gfx.PutPixel( 51 + x,1 + y,208,34,34 );
gfx.PutPixel( 52 + x,1 + y,208,34,34 );
gfx.PutPixel( 53 + x,1 + y,208,34,34 );
gfx.PutPixel( 54 + x,1 + y,208,34,34 );
gfx.PutPixel( 55 + x,1 + y,208,34,34 );
gfx.PutPixel( 56 + x,1 + y,208,34,34 );
gfx.PutPixel( 57 + x,1 + y,208,34,34 );
gfx.PutPixel( 58 + x,1 + y,208,34,34 );
gfx.PutPixel( 59 + x,1 + y,208,34,34 );
gfx.PutPixel( 60 + x,1 + y,208,34,34 );
gfx.PutPixel( 61 + x,1 + y,208,34,34 );
gfx.PutPixel( 62 + x,1 + y,208,34,34 );
gfx.PutPixel( 63 + x,1 + y,208,34,34 );
gfx.PutPixel( 64 + x,1 + y,208,34,34 );
gfx.PutPixel( 65 + x,1 + y,208,34,34 );
gfx.PutPixel( 66 + x,1 + y,208,34,34 );
gfx.PutPixel( 67 + x,1 + y,208,34,34 );
gfx.PutPixel( 68 + x,1 + y,208,34,34 );
gfx.PutPixel( 69 + x,1 + y,208,34,34 );
gfx.PutPixel( 70 + x,1 + y,208,34,34 );
gfx.PutPixel( 71 + x,1 + y,208,34,34 );
gfx.PutPixel( 72 + x,1 + y,208,34,34 );
gfx.PutPixel( 73 + x,1 + y,208,34,34 );
gfx.PutPixel( 74 + x,1 + y,208,34,34 );
gfx.PutPixel( 75 + x,1 + y,208,34,34 );
gfx.PutPixel( 76 + x,1 + y,208,34,34 );
gfx.PutPixel( 77 + x,1 + y,208,34,34 );
gfx.PutPixel( 78 + x,1 + y,208,34,34 );
gfx.PutPixel( 79 + x,1 + y,208,34,34 );
gfx.PutPixel( 80 + x,1 + y,208,34,34 );
gfx.PutPixel( 81 + x,1 + y,208,34,34 );
gfx.PutPixel( 82 + x,1 + y,208,34,34 );
gfx.PutPixel( 83 + x,1 + y,208,34,34 );
gfx.PutPixel( 84 + x,1 + y,208,34,34 );
gfx.PutPixel( 85 + x,1 + y,208,34,34 );
gfx.PutPixel( 86 + x,1 + y,208,34,34 );
gfx.PutPixel( 87 + x,1 + y,208,34,34 );
gfx.PutPixel( 88 + x,1 + y,208,34,34 );
gfx.PutPixel( 89 + x,1 + y,208,34,34 );
gfx.PutPixel( 90 + x,1 + y,208,34,34 );
gfx.PutPixel( 91 + x,1 + y,208,34,34 );
gfx.PutPixel( 92 + x,1 + y,208,34,34 );
gfx.PutPixel( 93 + x,1 + y,208,34,34 );
gfx.PutPixel( 94 + x,1 + y,208,34,34 );
gfx.PutPixel( 95 + x,1 + y,208,34,34 );
gfx.PutPixel( 96 + x,1 + y,208,34,34 );
gfx.PutPixel( 97 + x,1 + y,208,34,34 );
gfx.PutPixel( 98 + x,1 + y,208,34,34 );
gfx.PutPixel( 99 + x,1 + y,208,34,34 );
gfx.PutPixel( 100 + x,1 + y,208,34,34 );
gfx.PutPixel( 101 + x,1 + y,208,34,34 );
gfx.PutPixel( 102 + x,1 + y,208,34,34 );
gfx.PutPixel( 103 + x,1 + y,208,34,34 );
gfx.PutPixel( 104 + x,1 + y,208,34,34 );
gfx.PutPixel( 105 + x,1 + y,208,34,34 );
gfx.PutPixel( 106 + x,1 + y,208,34,34 );
gfx.PutPixel( 107 + x,1 + y,208,34,34 );
gfx.PutPixel( 108 + x,1 + y,208,34,34 );
gfx.PutPixel( 109 + x,1 + y,208,34,34 );
gfx.PutPixel( 110 + x,1 + y,208,34,34 );
gfx.PutPixel( 111 + x,1 + y,208,34,34 );
gfx.PutPixel( 112 + x,1 + y,208,34,34 );
gfx.PutPixel( 113 + x,1 + y,208,34,34 );
gfx.PutPixel( 114 + x,1 + y,208,34,34 );
gfx.PutPixel( 115 + x,1 + y,208,34,34 );
gfx.PutPixel( 116 + x,1 + y,208,34,34 );
gfx.PutPixel( 117 + x,1 + y,208,34,34 );
gfx.PutPixel( 118 + x,1 + y,208,34,34 );
gfx.PutPixel( 119 + x,1 + y,208,34,34 );
gfx.PutPixel( 120 + x,1 + y,208,34,34 );
gfx.PutPixel( 121 + x,1 + y,208,34,34 );
gfx.PutPixel( 122 + x,1 + y,208,34,34 );
gfx.PutPixel( 123 + x,1 + y,208,34,34 );
gfx.PutPixel( 124 + x,1 + y,208,34,34 );
gfx.PutPixel( 125 + x,1 + y,208,34,34 );
gfx.PutPixel( 126 + x,1 + y,208,34,34 );
gfx.PutPixel( 127 + x,1 + y,208,34,34 );
gfx.PutPixel( 128 + x,1 + y,208,34,34 );
gfx.PutPixel( 129 + x,1 + y,208,34,34 );
gfx.PutPixel( 130 + x,1 + y,208,34,34 );
gfx.PutPixel( 131 + x,1 + y,208,34,34 );
gfx.PutPixel( 132 + x,1 + y,208,34,34 );
gfx.PutPixel( 133 + x,1 + y,208,34,34 );
gfx.PutPixel( 134 + x,1 + y,208,34,34 );
gfx.PutPixel( 135 + x,1 + y,208,34,34 );
gfx.PutPixel( 136 + x,1 + y,208,34,34 );
gfx.PutPixel( 137 + x,1 + y,208,34,34 );
gfx.PutPixel( 138 + x,1 + y,208,34,34 );
gfx.PutPixel( 139 + x,1 + y,208,34,34 );
gfx.PutPixel( 140 + x,1 + y,208,34,34 );
gfx.PutPixel( 141 + x,1 + y,208,34,34 );
gfx.PutPixel( 142 + x,1 + y,208,34,34 );
gfx.PutPixel( 143 + x,1 + y,208,34,34 );
gfx.PutPixel( 144 + x,1 + y,208,34,34 );
gfx.PutPixel( 145 + x,1 + y,208,34,34 );
gfx.PutPixel( 146 + x,1 + y,208,34,34 );
gfx.PutPixel( 147 + x,1 + y,208,34,34 );
gfx.PutPixel( 148 + x,1 + y,208,34,34 );
gfx.PutPixel( 149 + x,1 + y,208,34,34 );
gfx.PutPixel( 0 + x,2 + y,208,34,34 );
gfx.PutPixel( 1 + x,2 + y,208,34,34 );
gfx.PutPixel( 2 + x,2 + y,208,34,34 );
gfx.PutPixel( 3 + x,2 + y,208,34,34 );
gfx.PutPixel( 4 + x,2 + y,208,34,34 );
gfx.PutPixel( 5 + x,2 + y,208,34,34 );
gfx.PutPixel( 6 + x,2 + y,208,34,34 );
gfx.PutPixel( 7 + x,2 + y,208,34,34 );
gfx.PutPixel( 8 + x,2 + y,208,34,34 );
gfx.PutPixel( 9 + x,2 + y,208,34,34 );
gfx.PutPixel( 10 + x,2 + y,208,34,34 );
gfx.PutPixel( 11 + x,2 + y,208,34,34 );
gfx.PutPixel( 12 + x,2 + y,208,34,34 );
gfx.PutPixel( 13 + x,2 + y,208,34,34 );
gfx.PutPixel( 14 + x,2 + y,208,34,34 );
gfx.PutPixel( 15 + x,2 + y,208,34,34 );
gfx.PutPixel( 16 + x,2 + y,208,34,34 );
gfx.PutPixel( 17 + x,2 + y,208,34,34 );
gfx.PutPixel( 18 + x,2 + y,208,34,34 );
gfx.PutPixel( 19 + x,2 + y,208,34,34 );
gfx.PutPixel( 20 + x,2 + y,208,34,34 );
gfx.PutPixel( 21 + x,2 + y,208,34,34 );
gfx.PutPixel( 22 + x,2 + y,208,34,34 );
gfx.PutPixel( 23 + x,2 + y,208,34,34 );
gfx.PutPixel( 24 + x,2 + y,208,34,34 );
gfx.PutPixel( 25 + x,2 + y,208,34,34 );
gfx.PutPixel( 26 + x,2 + y,208,34,34 );
gfx.PutPixel( 27 + x,2 + y,208,34,34 );
gfx.PutPixel( 28 + x,2 + y,208,34,34 );
gfx.PutPixel( 29 + x,2 + y,208,34,34 );
gfx.PutPixel( 30 + x,2 + y,208,34,34 );
gfx.PutPixel( 31 + x,2 + y,208,34,34 );
gfx.PutPixel( 32 + x,2 + y,208,34,34 );
gfx.PutPixel( 33 + x,2 + y,208,34,34 );
gfx.PutPixel( 34 + x,2 + y,208,34,34 );
gfx.PutPixel( 35 + x,2 + y,208,34,34 );
gfx.PutPixel( 36 + x,2 + y,208,34,34 );
gfx.PutPixel( 37 + x,2 + y,208,34,34 );
gfx.PutPixel( 38 + x,2 + y,208,34,34 );
gfx.PutPixel( 39 + x,2 + y,208,34,34 );
gfx.PutPixel( 40 + x,2 + y,208,34,34 );
gfx.PutPixel( 41 + x,2 + y,208,34,34 );
gfx.PutPixel( 42 + x,2 + y,208,34,34 );
gfx.PutPixel( 43 + x,2 + y,208,34,34 );
gfx.PutPixel( 44 + x,2 + y,208,34,34 );
gfx.PutPixel( 45 + x,2 + y,208,34,34 );
gfx.PutPixel( 46 + x,2 + y,208,34,34 );
gfx.PutPixel( 47 + x,2 + y,208,34,34 );
gfx.PutPixel( 48 + x,2 + y,208,34,34 );
gfx.PutPixel( 49 + x,2 + y,208,34,34 );
gfx.PutPixel( 50 + x,2 + y,208,34,34 );
gfx.PutPixel( 51 + x,2 + y,208,34,34 );
gfx.PutPixel( 52 + x,2 + y,208,34,34 );
gfx.PutPixel( 53 + x,2 + y,208,34,34 );
gfx.PutPixel( 54 + x,2 + y,208,34,34 );
gfx.PutPixel( 55 + x,2 + y,208,34,34 );
gfx.PutPixel( 56 + x,2 + y,208,34,34 );
gfx.PutPixel( 57 + x,2 + y,208,34,34 );
gfx.PutPixel( 58 + x,2 + y,208,34,34 );
gfx.PutPixel( 59 + x,2 + y,208,34,34 );
gfx.PutPixel( 60 + x,2 + y,208,34,34 );
gfx.PutPixel( 61 + x,2 + y,208,34,34 );
gfx.PutPixel( 62 + x,2 + y,208,34,34 );
gfx.PutPixel( 63 + x,2 + y,208,34,34 );
gfx.PutPixel( 64 + x,2 + y,208,34,34 );
gfx.PutPixel( 65 + x,2 + y,208,34,34 );
gfx.PutPixel( 66 + x,2 + y,208,34,34 );
gfx.PutPixel( 67 + x,2 + y,208,34,34 );
gfx.PutPixel( 68 + x,2 + y,208,34,34 );
gfx.PutPixel( 69 + x,2 + y,208,34,34 );
gfx.PutPixel( 70 + x,2 + y,208,34,34 );
gfx.PutPixel( 71 + x,2 + y,208,34,34 );
gfx.PutPixel( 72 + x,2 + y,208,34,34 );
gfx.PutPixel( 73 + x,2 + y,208,34,34 );
gfx.PutPixel( 74 + x,2 + y,208,34,34 );
gfx.PutPixel( 75 + x,2 + y,208,34,34 );
gfx.PutPixel( 76 + x,2 + y,208,34,34 );
gfx.PutPixel( 77 + x,2 + y,208,34,34 );
gfx.PutPixel( 78 + x,2 + y,208,34,34 );
gfx.PutPixel( 79 + x,2 + y,208,34,34 );
gfx.PutPixel( 80 + x,2 + y,208,34,34 );
gfx.PutPixel( 81 + x,2 + y,208,34,34 );
gfx.PutPixel( 82 + x,2 + y,208,34,34 );
gfx.PutPixel( 83 + x,2 + y,208,34,34 );
gfx.PutPixel( 84 + x,2 + y,208,34,34 );
gfx.PutPixel( 85 + x,2 + y,208,34,34 );
gfx.PutPixel( 86 + x,2 + y,208,34,34 );
gfx.PutPixel( 87 + x,2 + y,208,34,34 );
gfx.PutPixel( 88 + x,2 + y,208,34,34 );
gfx.PutPixel( 89 + x,2 + y,208,34,34 );
gfx.PutPixel( 90 + x,2 + y,208,34,34 );
gfx.PutPixel( 91 + x,2 + y,208,34,34 );
gfx.PutPixel( 92 + x,2 + y,208,34,34 );
gfx.PutPixel( 93 + x,2 + y,208,34,34 );
gfx.PutPixel( 94 + x,2 + y,208,34,34 );
gfx.PutPixel( 95 + x,2 + y,208,34,34 );
gfx.PutPixel( 96 + x,2 + y,208,34,34 );
gfx.PutPixel( 97 + x,2 + y,208,34,34 );
gfx.PutPixel( 98 + x,2 + y,208,34,34 );
gfx.PutPixel( 99 + x,2 + y,208,34,34 );
gfx.PutPixel( 100 + x,2 + y,208,34,34 );
gfx.PutPixel( 101 + x,2 + y,208,34,34 );
gfx.PutPixel( 102 + x,2 + y,208,34,34 );
gfx.PutPixel( 103 + x,2 + y,208,34,34 );
gfx.PutPixel( 104 + x,2 + y,208,34,34 );
gfx.PutPixel( 105 + x,2 + y,208,34,34 );
gfx.PutPixel( 106 + x,2 + y,208,34,34 );
gfx.PutPixel( 107 + x,2 + y,208,34,34 );
gfx.PutPixel( 108 + x,2 + y,208,34,34 );
gfx.PutPixel( 109 + x,2 + y,208,34,34 );
gfx.PutPixel( 110 + x,2 + y,208,34,34 );
gfx.PutPixel( 111 + x,2 + y,208,34,34 );
gfx.PutPixel( 112 + x,2 + y,208,34,34 );
gfx.PutPixel( 113 + x,2 + y,208,34,34 );
gfx.PutPixel( 114 + x,2 + y,208,34,34 );
gfx.PutPixel( 115 + x,2 + y,208,34,34 );
gfx.PutPixel( 116 + x,2 + y,208,34,34 );
gfx.PutPixel( 117 + x,2 + y,208,34,34 );
gfx.PutPixel( 118 + x,2 + y,208,34,34 );
gfx.PutPixel( 119 + x,2 + y,208,34,34 );
gfx.PutPixel( 120 + x,2 + y,208,34,34 );
gfx.PutPixel( 121 + x,2 + y,208,34,34 );
gfx.PutPixel( 122 + x,2 + y,208,34,34 );
gfx.PutPixel( 123 + x,2 + y,208,34,34 );
gfx.PutPixel( 124 + x,2 + y,208,34,34 );
gfx.PutPixel( 125 + x,2 + y,208,34,34 );
gfx.PutPixel( 126 + x,2 + y,208,34,34 );
gfx.PutPixel( 127 + x,2 + y,208,34,34 );
gfx.PutPixel( 128 + x,2 + y,208,34,34 );
gfx.PutPixel( 129 + x,2 + y,208,34,34 );
gfx.PutPixel( 130 + x,2 + y,208,34,34 );
gfx.PutPixel( 131 + x,2 + y,208,34,34 );
gfx.PutPixel( 132 + x,2 + y,208,34,34 );
gfx.PutPixel( 133 + x,2 + y,208,34,34 );
gfx.PutPixel( 134 + x,2 + y,208,34,34 );
gfx.PutPixel( 135 + x,2 + y,208,34,34 );
gfx.PutPixel( 136 + x,2 + y,208,34,34 );
gfx.PutPixel( 137 + x,2 + y,208,34,34 );
gfx.PutPixel( 138 + x,2 + y,208,34,34 );
gfx.PutPixel( 139 + x,2 + y,208,34,34 );
gfx.PutPixel( 140 + x,2 + y,208,34,34 );
gfx.PutPixel( 141 + x,2 + y,208,34,34 );
gfx.PutPixel( 142 + x,2 + y,208,34,34 );
gfx.PutPixel( 143 + x,2 + y,208,34,34 );
gfx.PutPixel( 144 + x,2 + y,208,34,34 );
gfx.PutPixel( 145 + x,2 + y,208,34,34 );
gfx.PutPixel( 146 + x,2 + y,208,34,34 );
gfx.PutPixel( 147 + x,2 + y,208,34,34 );
gfx.PutPixel( 148 + x,2 + y,208,34,34 );
gfx.PutPixel( 149 + x,2 + y,208,34,34 );
gfx.PutPixel( 0 + x,3 + y,208,34,34 );
gfx.PutPixel( 1 + x,3 + y,208,34,34 );
gfx.PutPixel( 2 + x,3 + y,208,34,34 );
gfx.PutPixel( 3 + x,3 + y,208,34,34 );
gfx.PutPixel( 4 + x,3 + y,208,34,34 );
gfx.PutPixel( 5 + x,3 + y,208,34,34 );
gfx.PutPixel( 6 + x,3 + y,208,34,34 );
gfx.PutPixel( 7 + x,3 + y,208,34,34 );
gfx.PutPixel( 8 + x,3 + y,208,34,34 );
gfx.PutPixel( 9 + x,3 + y,208,34,34 );
gfx.PutPixel( 10 + x,3 + y,208,34,34 );
gfx.PutPixel( 11 + x,3 + y,208,34,34 );
gfx.PutPixel( 12 + x,3 + y,208,34,34 );
gfx.PutPixel( 13 + x,3 + y,208,34,34 );
gfx.PutPixel( 14 + x,3 + y,208,34,34 );
gfx.PutPixel( 15 + x,3 + y,208,34,34 );
gfx.PutPixel( 16 + x,3 + y,208,34,34 );
gfx.PutPixel( 17 + x,3 + y,208,34,34 );
gfx.PutPixel( 18 + x,3 + y,208,34,34 );
gfx.PutPixel( 19 + x,3 + y,208,34,34 );
gfx.PutPixel( 20 + x,3 + y,208,34,34 );
gfx.PutPixel( 21 + x,3 + y,208,34,34 );
gfx.PutPixel( 22 + x,3 + y,208,34,34 );
gfx.PutPixel( 23 + x,3 + y,208,34,34 );
gfx.PutPixel( 24 + x,3 + y,208,34,34 );
gfx.PutPixel( 25 + x,3 + y,208,34,34 );
gfx.PutPixel( 26 + x,3 + y,208,34,34 );
gfx.PutPixel( 27 + x,3 + y,208,34,34 );
gfx.PutPixel( 28 + x,3 + y,208,34,34 );
gfx.PutPixel( 29 + x,3 + y,208,34,34 );
gfx.PutPixel( 30 + x,3 + y,208,34,34 );
gfx.PutPixel( 31 + x,3 + y,208,34,34 );
gfx.PutPixel( 32 + x,3 + y,208,34,34 );
gfx.PutPixel( 33 + x,3 + y,208,34,34 );
gfx.PutPixel( 34 + x,3 + y,208,34,34 );
gfx.PutPixel( 35 + x,3 + y,208,34,34 );
gfx.PutPixel( 36 + x,3 + y,208,34,34 );
gfx.PutPixel( 37 + x,3 + y,208,34,34 );
gfx.PutPixel( 38 + x,3 + y,208,34,34 );
gfx.PutPixel( 39 + x,3 + y,208,34,34 );
gfx.PutPixel( 40 + x,3 + y,208,34,34 );
gfx.PutPixel( 41 + x,3 + y,208,34,34 );
gfx.PutPixel( 42 + x,3 + y,208,34,34 );
gfx.PutPixel( 43 + x,3 + y,208,34,34 );
gfx.PutPixel( 44 + x,3 + y,208,34,34 );
gfx.PutPixel( 45 + x,3 + y,208,34,34 );
gfx.PutPixel( 46 + x,3 + y,208,34,34 );
gfx.PutPixel( 47 + x,3 + y,208,34,34 );
gfx.PutPixel( 48 + x,3 + y,208,34,34 );
gfx.PutPixel( 49 + x,3 + y,208,34,34 );
gfx.PutPixel( 50 + x,3 + y,208,34,34 );
gfx.PutPixel( 51 + x,3 + y,208,34,34 );
gfx.PutPixel( 52 + x,3 + y,208,34,34 );
gfx.PutPixel( 53 + x,3 + y,208,34,34 );
gfx.PutPixel( 54 + x,3 + y,208,34,34 );
gfx.PutPixel( 55 + x,3 + y,208,34,34 );
gfx.PutPixel( 56 + x,3 + y,208,34,34 );
gfx.PutPixel( 57 + x,3 + y,208,34,34 );
gfx.PutPixel( 58 + x,3 + y,208,34,34 );
gfx.PutPixel( 59 + x,3 + y,208,34,34 );
gfx.PutPixel( 60 + x,3 + y,208,34,34 );
gfx.PutPixel( 61 + x,3 + y,208,34,34 );
gfx.PutPixel( 62 + x,3 + y,208,34,34 );
gfx.PutPixel( 63 + x,3 + y,208,34,34 );
gfx.PutPixel( 64 + x,3 + y,208,34,34 );
gfx.PutPixel( 65 + x,3 + y,208,34,34 );
gfx.PutPixel( 66 + x,3 + y,208,34,34 );
gfx.PutPixel( 67 + x,3 + y,208,34,34 );
gfx.PutPixel( 68 + x,3 + y,208,34,34 );
gfx.PutPixel( 69 + x,3 + y,208,34,34 );
gfx.PutPixel( 70 + x,3 + y,208,34,34 );
gfx.PutPixel( 71 + x,3 + y,208,34,34 );
gfx.PutPixel( 72 + x,3 + y,208,34,34 );
gfx.PutPixel( 73 + x,3 + y,208,34,34 );
gfx.PutPixel( 74 + x,3 + y,208,34,34 );
gfx.PutPixel( 75 + x,3 + y,208,34,34 );
gfx.PutPixel( 76 + x,3 + y,208,34,34 );
gfx.PutPixel( 77 + x,3 + y,208,34,34 );
gfx.PutPixel( 78 + x,3 + y,208,34,34 );
gfx.PutPixel( 79 + x,3 + y,208,34,34 );
gfx.PutPixel( 80 + x,3 + y,208,34,34 );
gfx.PutPixel( 81 + x,3 + y,208,34,34 );
gfx.PutPixel( 82 + x,3 + y,208,34,34 );
gfx.PutPixel( 83 + x,3 + y,208,34,34 );
gfx.PutPixel( 84 + x,3 + y,208,34,34 );
gfx.PutPixel( 85 + x,3 + y,208,34,34 );
gfx.PutPixel( 86 + x,3 + y,208,34,34 );
gfx.PutPixel( 87 + x,3 + y,208,34,34 );
gfx.PutPixel( 88 + x,3 + y,208,34,34 );
gfx.PutPixel( 89 + x,3 + y,208,34,34 );
gfx.PutPixel( 90 + x,3 + y,208,34,34 );
gfx.PutPixel( 91 + x,3 + y,208,34,34 );
gfx.PutPixel( 92 + x,3 + y,208,34,34 );
gfx.PutPixel( 93 + x,3 + y,208,34,34 );
gfx.PutPixel( 94 + x,3 + y,208,34,34 );
gfx.PutPixel( 95 + x,3 + y,208,34,34 );
gfx.PutPixel( 96 + x,3 + y,208,34,34 );
gfx.PutPixel( 97 + x,3 + y,208,34,34 );
gfx.PutPixel( 98 + x,3 + y,208,34,34 );
gfx.PutPixel( 99 + x,3 + y,208,34,34 );
gfx.PutPixel( 100 + x,3 + y,208,34,34 );
gfx.PutPixel( 101 + x,3 + y,208,34,34 );
gfx.PutPixel( 102 + x,3 + y,208,34,34 );
gfx.PutPixel( 103 + x,3 + y,208,34,34 );
gfx.PutPixel( 104 + x,3 + y,208,34,34 );
gfx.PutPixel( 105 + x,3 + y,208,34,34 );
gfx.PutPixel( 106 + x,3 + y,208,34,34 );
gfx.PutPixel( 107 + x,3 + y,208,34,34 );
gfx.PutPixel( 108 + x,3 + y,208,34,34 );
gfx.PutPixel( 109 + x,3 + y,208,34,34 );
gfx.PutPixel( 110 + x,3 + y,208,34,34 );
gfx.PutPixel( 111 + x,3 + y,208,34,34 );
gfx.PutPixel( 112 + x,3 + y,208,34,34 );
gfx.PutPixel( 113 + x,3 + y,208,34,34 );
gfx.PutPixel( 114 + x,3 + y,208,34,34 );
gfx.PutPixel( 115 + x,3 + y,208,34,34 );
gfx.PutPixel( 116 + x,3 + y,208,34,34 );
gfx.PutPixel( 117 + x,3 + y,208,34,34 );
gfx.PutPixel( 118 + x,3 + y,208,34,34 );
gfx.PutPixel( 119 + x,3 + y,208,34,34 );
gfx.PutPixel( 120 + x,3 + y,208,34,34 );
gfx.PutPixel( 121 + x,3 + y,208,34,34 );
gfx.PutPixel( 122 + x,3 + y,208,34,34 );
gfx.PutPixel( 123 + x,3 + y,208,34,34 );
gfx.PutPixel( 124 + x,3 + y,208,34,34 );
gfx.PutPixel( 125 + x,3 + y,208,34,34 );
gfx.PutPixel( 126 + x,3 + y,208,34,34 );
gfx.PutPixel( 127 + x,3 + y,208,34,34 );
gfx.PutPixel( 128 + x,3 + y,208,34,34 );
gfx.PutPixel( 129 + x,3 + y,208,34,34 );
gfx.PutPixel( 130 + x,3 + y,208,34,34 );
gfx.PutPixel( 131 + x,3 + y,208,34,34 );
gfx.PutPixel( 132 + x,3 + y,208,34,34 );
gfx.PutPixel( 133 + x,3 + y,208,34,34 );
gfx.PutPixel( 134 + x,3 + y,208,34,34 );
gfx.PutPixel( 135 + x,3 + y,208,34,34 );
gfx.PutPixel( 136 + x,3 + y,208,34,34 );
gfx.PutPixel( 137 + x,3 + y,208,34,34 );
gfx.PutPixel( 138 + x,3 + y,208,34,34 );
gfx.PutPixel( 139 + x,3 + y,208,34,34 );
gfx.PutPixel( 140 + x,3 + y,208,34,34 );
gfx.PutPixel( 141 + x,3 + y,208,34,34 );
gfx.PutPixel( 142 + x,3 + y,208,34,34 );
gfx.PutPixel( 143 + x,3 + y,208,34,34 );
gfx.PutPixel( 144 + x,3 + y,208,34,34 );
gfx.PutPixel( 145 + x,3 + y,208,34,34 );
gfx.PutPixel( 146 + x,3 + y,208,34,34 );
gfx.PutPixel( 147 + x,3 + y,208,34,34 );
gfx.PutPixel( 148 + x,3 + y,208,34,34 );
gfx.PutPixel( 149 + x,3 + y,208,34,34 );
gfx.PutPixel( 0 + x,4 + y,208,34,34 );
gfx.PutPixel( 1 + x,4 + y,208,34,34 );
gfx.PutPixel( 2 + x,4 + y,208,34,34 );
gfx.PutPixel( 3 + x,4 + y,208,34,34 );
gfx.PutPixel( 4 + x,4 + y,208,34,34 );
gfx.PutPixel( 5 + x,4 + y,208,34,34 );
gfx.PutPixel( 6 + x,4 + y,208,34,34 );
gfx.PutPixel( 7 + x,4 + y,208,34,34 );
gfx.PutPixel( 8 + x,4 + y,208,34,34 );
gfx.PutPixel( 9 + x,4 + y,208,34,34 );
gfx.PutPixel( 10 + x,4 + y,208,34,34 );
gfx.PutPixel( 11 + x,4 + y,208,34,34 );
gfx.PutPixel( 12 + x,4 + y,208,34,34 );
gfx.PutPixel( 13 + x,4 + y,208,34,34 );
gfx.PutPixel( 14 + x,4 + y,208,34,34 );
gfx.PutPixel( 15 + x,4 + y,208,34,34 );
gfx.PutPixel( 16 + x,4 + y,208,34,34 );
gfx.PutPixel( 17 + x,4 + y,208,34,34 );
gfx.PutPixel( 18 + x,4 + y,208,34,34 );
gfx.PutPixel( 19 + x,4 + y,208,34,34 );
gfx.PutPixel( 20 + x,4 + y,208,34,34 );
gfx.PutPixel( 21 + x,4 + y,208,34,34 );
gfx.PutPixel( 22 + x,4 + y,208,34,34 );
gfx.PutPixel( 23 + x,4 + y,208,34,34 );
gfx.PutPixel( 24 + x,4 + y,208,34,34 );
gfx.PutPixel( 25 + x,4 + y,208,34,34 );
gfx.PutPixel( 26 + x,4 + y,208,34,34 );
gfx.PutPixel( 27 + x,4 + y,208,34,34 );
gfx.PutPixel( 28 + x,4 + y,208,34,34 );
gfx.PutPixel( 29 + x,4 + y,208,34,34 );
gfx.PutPixel( 30 + x,4 + y,208,34,34 );
gfx.PutPixel( 31 + x,4 + y,208,34,34 );
gfx.PutPixel( 32 + x,4 + y,208,34,34 );
gfx.PutPixel( 33 + x,4 + y,208,34,34 );
gfx.PutPixel( 34 + x,4 + y,208,34,34 );
gfx.PutPixel( 35 + x,4 + y,208,34,34 );
gfx.PutPixel( 36 + x,4 + y,208,34,34 );
gfx.PutPixel( 37 + x,4 + y,208,34,34 );
gfx.PutPixel( 38 + x,4 + y,208,34,34 );
gfx.PutPixel( 39 + x,4 + y,208,34,34 );
gfx.PutPixel( 40 + x,4 + y,208,34,34 );
gfx.PutPixel( 41 + x,4 + y,208,34,34 );
gfx.PutPixel( 42 + x,4 + y,208,34,34 );
gfx.PutPixel( 43 + x,4 + y,208,34,34 );
gfx.PutPixel( 44 + x,4 + y,208,34,34 );
gfx.PutPixel( 45 + x,4 + y,208,34,34 );
gfx.PutPixel( 46 + x,4 + y,208,34,34 );
gfx.PutPixel( 47 + x,4 + y,208,34,34 );
gfx.PutPixel( 48 + x,4 + y,208,34,34 );
gfx.PutPixel( 49 + x,4 + y,208,34,34 );
gfx.PutPixel( 50 + x,4 + y,208,34,34 );
gfx.PutPixel( 51 + x,4 + y,208,34,34 );
gfx.PutPixel( 52 + x,4 + y,208,34,34 );
gfx.PutPixel( 53 + x,4 + y,208,34,34 );
gfx.PutPixel( 54 + x,4 + y,208,34,34 );
gfx.PutPixel( 55 + x,4 + y,208,34,34 );
gfx.PutPixel( 56 + x,4 + y,208,34,34 );
gfx.PutPixel( 57 + x,4 + y,208,34,34 );
gfx.PutPixel( 58 + x,4 + y,208,34,34 );
gfx.PutPixel( 59 + x,4 + y,208,34,34 );
gfx.PutPixel( 60 + x,4 + y,208,34,34 );
gfx.PutPixel( 61 + x,4 + y,208,34,34 );
gfx.PutPixel( 62 + x,4 + y,208,34,34 );
gfx.PutPixel( 63 + x,4 + y,208,34,34 );
gfx.PutPixel( 64 + x,4 + y,208,34,34 );
gfx.PutPixel( 65 + x,4 + y,208,34,34 );
gfx.PutPixel( 66 + x,4 + y,208,34,34 );
gfx.PutPixel( 67 + x,4 + y,208,34,34 );
gfx.PutPixel( 68 + x,4 + y,208,34,34 );
gfx.PutPixel( 69 + x,4 + y,208,34,34 );
gfx.PutPixel( 70 + x,4 + y,208,34,34 );
gfx.PutPixel( 71 + x,4 + y,208,34,34 );
gfx.PutPixel( 72 + x,4 + y,208,34,34 );
gfx.PutPixel( 73 + x,4 + y,208,31,31 );
gfx.PutPixel( 74 + x,4 + y,207,24,24 );
gfx.PutPixel( 75 + x,4 + y,207,26,26 );
gfx.PutPixel( 76 + x,4 + y,208,34,34 );
gfx.PutPixel( 77 + x,4 + y,208,34,34 );
gfx.PutPixel( 78 + x,4 + y,208,34,34 );
gfx.PutPixel( 79 + x,4 + y,208,34,34 );
gfx.PutPixel( 80 + x,4 + y,208,34,34 );
gfx.PutPixel( 81 + x,4 + y,208,34,34 );
gfx.PutPixel( 82 + x,4 + y,208,34,34 );
gfx.PutPixel( 83 + x,4 + y,208,34,34 );
gfx.PutPixel( 84 + x,4 + y,208,34,34 );
gfx.PutPixel( 85 + x,4 + y,208,34,34 );
gfx.PutPixel( 86 + x,4 + y,208,34,34 );
gfx.PutPixel( 87 + x,4 + y,208,34,34 );
gfx.PutPixel( 88 + x,4 + y,208,34,34 );
gfx.PutPixel( 89 + x,4 + y,208,34,34 );
gfx.PutPixel( 90 + x,4 + y,208,34,34 );
gfx.PutPixel( 91 + x,4 + y,208,34,34 );
gfx.PutPixel( 92 + x,4 + y,208,34,34 );
gfx.PutPixel( 93 + x,4 + y,208,34,34 );
gfx.PutPixel( 94 + x,4 + y,208,34,34 );
gfx.PutPixel( 95 + x,4 + y,208,34,34 );
gfx.PutPixel( 96 + x,4 + y,208,34,34 );
gfx.PutPixel( 97 + x,4 + y,208,34,34 );
gfx.PutPixel( 98 + x,4 + y,208,34,34 );
gfx.PutPixel( 99 + x,4 + y,208,34,34 );
gfx.PutPixel( 100 + x,4 + y,208,34,34 );
gfx.PutPixel( 101 + x,4 + y,208,34,34 );
gfx.PutPixel( 102 + x,4 + y,208,34,34 );
gfx.PutPixel( 103 + x,4 + y,208,34,34 );
gfx.PutPixel( 104 + x,4 + y,208,34,34 );
gfx.PutPixel( 105 + x,4 + y,208,34,34 );
gfx.PutPixel( 106 + x,4 + y,208,34,34 );
gfx.PutPixel( 107 + x,4 + y,208,34,34 );
gfx.PutPixel( 108 + x,4 + y,208,34,34 );
gfx.PutPixel( 109 + x,4 + y,208,34,34 );
gfx.PutPixel( 110 + x,4 + y,208,34,34 );
gfx.PutPixel( 111 + x,4 + y,208,34,34 );
gfx.PutPixel( 112 + x,4 + y,208,34,34 );
gfx.PutPixel( 113 + x,4 + y,208,34,34 );
gfx.PutPixel( 114 + x,4 + y,208,34,34 );
gfx.PutPixel( 115 + x,4 + y,208,34,34 );
gfx.PutPixel( 116 + x,4 + y,208,34,34 );
gfx.PutPixel( 117 + x,4 + y,208,34,34 );
gfx.PutPixel( 118 + x,4 + y,208,34,34 );
gfx.PutPixel( 119 + x,4 + y,208,34,34 );
gfx.PutPixel( 120 + x,4 + y,208,34,34 );
gfx.PutPixel( 121 + x,4 + y,208,34,34 );
gfx.PutPixel( 122 + x,4 + y,208,34,34 );
gfx.PutPixel( 123 + x,4 + y,208,34,34 );
gfx.PutPixel( 124 + x,4 + y,208,34,34 );
gfx.PutPixel( 125 + x,4 + y,208,34,34 );
gfx.PutPixel( 126 + x,4 + y,208,34,34 );
gfx.PutPixel( 127 + x,4 + y,208,34,34 );
gfx.PutPixel( 128 + x,4 + y,208,34,34 );
gfx.PutPixel( 129 + x,4 + y,208,34,34 );
gfx.PutPixel( 130 + x,4 + y,208,34,34 );
gfx.PutPixel( 131 + x,4 + y,208,34,34 );
gfx.PutPixel( 132 + x,4 + y,208,34,34 );
gfx.PutPixel( 133 + x,4 + y,208,34,34 );
gfx.PutPixel( 134 + x,4 + y,208,34,34 );
gfx.PutPixel( 135 + x,4 + y,208,34,34 );
gfx.PutPixel( 136 + x,4 + y,208,34,34 );
gfx.PutPixel( 137 + x,4 + y,208,34,34 );
gfx.PutPixel( 138 + x,4 + y,208,34,34 );
gfx.PutPixel( 139 + x,4 + y,208,34,34 );
gfx.PutPixel( 140 + x,4 + y,208,34,34 );
gfx.PutPixel( 141 + x,4 + y,208,34,34 );
gfx.PutPixel( 142 + x,4 + y,208,34,34 );
gfx.PutPixel( 143 + x,4 + y,208,34,34 );
gfx.PutPixel( 144 + x,4 + y,208,34,34 );
gfx.PutPixel( 145 + x,4 + y,208,34,34 );
gfx.PutPixel( 146 + x,4 + y,208,34,34 );
gfx.PutPixel( 147 + x,4 + y,208,34,34 );
gfx.PutPixel( 148 + x,4 + y,208,34,34 );
gfx.PutPixel( 149 + x,4 + y,208,34,34 );
gfx.PutPixel( 0 + x,5 + y,208,34,34 );
gfx.PutPixel( 1 + x,5 + y,208,34,34 );
gfx.PutPixel( 2 + x,5 + y,208,34,34 );
gfx.PutPixel( 3 + x,5 + y,208,34,34 );
gfx.PutPixel( 4 + x,5 + y,208,34,34 );
gfx.PutPixel( 5 + x,5 + y,208,34,34 );
gfx.PutPixel( 6 + x,5 + y,208,34,34 );
gfx.PutPixel( 7 + x,5 + y,208,34,34 );
gfx.PutPixel( 8 + x,5 + y,208,34,34 );
gfx.PutPixel( 9 + x,5 + y,208,34,34 );
gfx.PutPixel( 10 + x,5 + y,208,34,34 );
gfx.PutPixel( 11 + x,5 + y,208,34,34 );
gfx.PutPixel( 12 + x,5 + y,208,34,34 );
gfx.PutPixel( 13 + x,5 + y,208,34,34 );
gfx.PutPixel( 14 + x,5 + y,208,34,34 );
gfx.PutPixel( 15 + x,5 + y,208,34,34 );
gfx.PutPixel( 16 + x,5 + y,208,34,34 );
gfx.PutPixel( 17 + x,5 + y,208,34,34 );
gfx.PutPixel( 18 + x,5 + y,208,34,34 );
gfx.PutPixel( 19 + x,5 + y,208,34,34 );
gfx.PutPixel( 20 + x,5 + y,208,34,34 );
gfx.PutPixel( 21 + x,5 + y,208,34,34 );
gfx.PutPixel( 22 + x,5 + y,208,34,34 );
gfx.PutPixel( 23 + x,5 + y,208,34,34 );
gfx.PutPixel( 24 + x,5 + y,208,34,34 );
gfx.PutPixel( 25 + x,5 + y,208,34,34 );
gfx.PutPixel( 26 + x,5 + y,208,34,34 );
gfx.PutPixel( 27 + x,5 + y,208,34,34 );
gfx.PutPixel( 28 + x,5 + y,208,34,34 );
gfx.PutPixel( 29 + x,5 + y,208,34,34 );
gfx.PutPixel( 30 + x,5 + y,208,34,34 );
gfx.PutPixel( 31 + x,5 + y,208,34,34 );
gfx.PutPixel( 32 + x,5 + y,208,34,34 );
gfx.PutPixel( 33 + x,5 + y,208,34,34 );
gfx.PutPixel( 34 + x,5 + y,208,34,34 );
gfx.PutPixel( 35 + x,5 + y,208,34,34 );
gfx.PutPixel( 36 + x,5 + y,208,34,34 );
gfx.PutPixel( 37 + x,5 + y,208,34,34 );
gfx.PutPixel( 38 + x,5 + y,208,34,34 );
gfx.PutPixel( 39 + x,5 + y,208,34,34 );
gfx.PutPixel( 40 + x,5 + y,208,34,34 );
gfx.PutPixel( 41 + x,5 + y,208,34,34 );
gfx.PutPixel( 42 + x,5 + y,208,34,34 );
gfx.PutPixel( 43 + x,5 + y,208,34,34 );
gfx.PutPixel( 44 + x,5 + y,208,34,34 );
gfx.PutPixel( 45 + x,5 + y,208,34,34 );
gfx.PutPixel( 46 + x,5 + y,208,34,34 );
gfx.PutPixel( 47 + x,5 + y,208,34,34 );
gfx.PutPixel( 48 + x,5 + y,208,34,34 );
gfx.PutPixel( 49 + x,5 + y,208,34,34 );
gfx.PutPixel( 50 + x,5 + y,208,34,34 );
gfx.PutPixel( 51 + x,5 + y,208,34,34 );
gfx.PutPixel( 52 + x,5 + y,208,34,34 );
gfx.PutPixel( 53 + x,5 + y,208,34,34 );
gfx.PutPixel( 54 + x,5 + y,208,34,34 );
gfx.PutPixel( 55 + x,5 + y,208,34,34 );
gfx.PutPixel( 56 + x,5 + y,208,34,34 );
gfx.PutPixel( 57 + x,5 + y,208,34,34 );
gfx.PutPixel( 58 + x,5 + y,208,34,34 );
gfx.PutPixel( 59 + x,5 + y,208,34,34 );
gfx.PutPixel( 60 + x,5 + y,208,34,34 );
gfx.PutPixel( 61 + x,5 + y,208,34,34 );
gfx.PutPixel( 62 + x,5 + y,208,34,34 );
gfx.PutPixel( 63 + x,5 + y,208,34,34 );
gfx.PutPixel( 64 + x,5 + y,208,34,34 );
gfx.PutPixel( 65 + x,5 + y,208,34,34 );
gfx.PutPixel( 66 + x,5 + y,208,34,34 );
gfx.PutPixel( 67 + x,5 + y,208,34,34 );
gfx.PutPixel( 68 + x,5 + y,208,34,34 );
gfx.PutPixel( 69 + x,5 + y,208,34,34 );
gfx.PutPixel( 70 + x,5 + y,208,34,34 );
gfx.PutPixel( 71 + x,5 + y,208,34,34 );
gfx.PutPixel( 72 + x,5 + y,208,31,31 );
gfx.PutPixel( 73 + x,5 + y,210,56,56 );
gfx.PutPixel( 74 + x,5 + y,213,106,106 );
gfx.PutPixel( 75 + x,5 + y,212,94,94 );
gfx.PutPixel( 76 + x,5 + y,208,37,37 );
gfx.PutPixel( 77 + x,5 + y,208,33,33 );
gfx.PutPixel( 78 + x,5 + y,208,34,34 );
gfx.PutPixel( 79 + x,5 + y,208,34,34 );
gfx.PutPixel( 80 + x,5 + y,208,34,34 );
gfx.PutPixel( 81 + x,5 + y,208,34,34 );
gfx.PutPixel( 82 + x,5 + y,208,34,34 );
gfx.PutPixel( 83 + x,5 + y,208,34,34 );
gfx.PutPixel( 84 + x,5 + y,208,34,34 );
gfx.PutPixel( 85 + x,5 + y,208,34,34 );
gfx.PutPixel( 86 + x,5 + y,208,34,34 );
gfx.PutPixel( 87 + x,5 + y,208,34,34 );
gfx.PutPixel( 88 + x,5 + y,208,34,34 );
gfx.PutPixel( 89 + x,5 + y,208,34,34 );
gfx.PutPixel( 90 + x,5 + y,208,34,34 );
gfx.PutPixel( 91 + x,5 + y,208,34,34 );
gfx.PutPixel( 92 + x,5 + y,208,34,34 );
gfx.PutPixel( 93 + x,5 + y,208,34,34 );
gfx.PutPixel( 94 + x,5 + y,208,34,34 );
gfx.PutPixel( 95 + x,5 + y,208,34,34 );
gfx.PutPixel( 96 + x,5 + y,208,34,34 );
gfx.PutPixel( 97 + x,5 + y,208,34,34 );
gfx.PutPixel( 98 + x,5 + y,208,34,34 );
gfx.PutPixel( 99 + x,5 + y,208,34,34 );
gfx.PutPixel( 100 + x,5 + y,208,34,34 );
gfx.PutPixel( 101 + x,5 + y,208,34,34 );
gfx.PutPixel( 102 + x,5 + y,208,34,34 );
gfx.PutPixel( 103 + x,5 + y,208,34,34 );
gfx.PutPixel( 104 + x,5 + y,208,34,34 );
gfx.PutPixel( 105 + x,5 + y,208,34,34 );
gfx.PutPixel( 106 + x,5 + y,208,34,34 );
gfx.PutPixel( 107 + x,5 + y,208,34,34 );
gfx.PutPixel( 108 + x,5 + y,208,34,34 );
gfx.PutPixel( 109 + x,5 + y,208,34,34 );
gfx.PutPixel( 110 + x,5 + y,208,34,34 );
gfx.PutPixel( 111 + x,5 + y,208,34,34 );
gfx.PutPixel( 112 + x,5 + y,208,34,34 );
gfx.PutPixel( 113 + x,5 + y,208,34,34 );
gfx.PutPixel( 114 + x,5 + y,208,34,34 );
gfx.PutPixel( 115 + x,5 + y,208,34,34 );
gfx.PutPixel( 116 + x,5 + y,208,34,34 );
gfx.PutPixel( 117 + x,5 + y,208,34,34 );
gfx.PutPixel( 118 + x,5 + y,208,34,34 );
gfx.PutPixel( 119 + x,5 + y,208,34,34 );
gfx.PutPixel( 120 + x,5 + y,208,34,34 );
gfx.PutPixel( 121 + x,5 + y,208,34,34 );
gfx.PutPixel( 122 + x,5 + y,208,34,34 );
gfx.PutPixel( 123 + x,5 + y,208,34,34 );
gfx.PutPixel( 124 + x,5 + y,208,34,34 );
gfx.PutPixel( 125 + x,5 + y,208,34,34 );
gfx.PutPixel( 126 + x,5 + y,208,34,34 );
gfx.PutPixel( 127 + x,5 + y,208,34,34 );
gfx.PutPixel( 128 + x,5 + y,208,34,34 );
gfx.PutPixel( 129 + x,5 + y,208,34,34 );
gfx.PutPixel( 130 + x,5 + y,208,34,34 );
gfx.PutPixel( 131 + x,5 + y,208,34,34 );
gfx.PutPixel( 132 + x,5 + y,208,34,34 );
gfx.PutPixel( 133 + x,5 + y,208,34,34 );
gfx.PutPixel( 134 + x,5 + y,208,34,34 );
gfx.PutPixel( 135 + x,5 + y,208,34,34 );
gfx.PutPixel( 136 + x,5 + y,208,34,34 );
gfx.PutPixel( 137 + x,5 + y,208,34,34 );
gfx.PutPixel( 138 + x,5 + y,208,34,34 );
gfx.PutPixel( 139 + x,5 + y,208,34,34 );
gfx.PutPixel( 140 + x,5 + y,208,34,34 );
gfx.PutPixel( 141 + x,5 + y,208,34,34 );
gfx.PutPixel( 142 + x,5 + y,208,34,34 );
gfx.PutPixel( 143 + x,5 + y,208,34,34 );
gfx.PutPixel( 144 + x,5 + y,208,34,34 );
gfx.PutPixel( 145 + x,5 + y,208,34,34 );
gfx.PutPixel( 146 + x,5 + y,208,34,34 );
gfx.PutPixel( 147 + x,5 + y,208,34,34 );
gfx.PutPixel( 148 + x,5 + y,208,34,34 );
gfx.PutPixel( 149 + x,5 + y,208,34,34 );
gfx.PutPixel( 0 + x,6 + y,208,34,34 );
gfx.PutPixel( 1 + x,6 + y,208,34,34 );
gfx.PutPixel( 2 + x,6 + y,208,34,34 );
gfx.PutPixel( 3 + x,6 + y,208,34,34 );
gfx.PutPixel( 4 + x,6 + y,208,34,34 );
gfx.PutPixel( 5 + x,6 + y,208,34,34 );
gfx.PutPixel( 6 + x,6 + y,208,34,34 );
gfx.PutPixel( 7 + x,6 + y,208,34,34 );
gfx.PutPixel( 8 + x,6 + y,208,34,34 );
gfx.PutPixel( 9 + x,6 + y,208,34,34 );
gfx.PutPixel( 10 + x,6 + y,208,34,34 );
gfx.PutPixel( 11 + x,6 + y,208,34,34 );
gfx.PutPixel( 12 + x,6 + y,208,34,34 );
gfx.PutPixel( 13 + x,6 + y,208,34,34 );
gfx.PutPixel( 14 + x,6 + y,208,34,34 );
gfx.PutPixel( 15 + x,6 + y,208,34,34 );
gfx.PutPixel( 16 + x,6 + y,208,34,34 );
gfx.PutPixel( 17 + x,6 + y,208,34,34 );
gfx.PutPixel( 18 + x,6 + y,208,34,34 );
gfx.PutPixel( 19 + x,6 + y,208,34,34 );
gfx.PutPixel( 20 + x,6 + y,208,34,34 );
gfx.PutPixel( 21 + x,6 + y,208,34,34 );
gfx.PutPixel( 22 + x,6 + y,208,34,34 );
gfx.PutPixel( 23 + x,6 + y,208,34,34 );
gfx.PutPixel( 24 + x,6 + y,208,34,34 );
gfx.PutPixel( 25 + x,6 + y,208,34,34 );
gfx.PutPixel( 26 + x,6 + y,208,34,34 );
gfx.PutPixel( 27 + x,6 + y,208,34,34 );
gfx.PutPixel( 28 + x,6 + y,208,34,34 );
gfx.PutPixel( 29 + x,6 + y,208,34,34 );
gfx.PutPixel( 30 + x,6 + y,208,34,34 );
gfx.PutPixel( 31 + x,6 + y,208,34,34 );
gfx.PutPixel( 32 + x,6 + y,208,34,34 );
gfx.PutPixel( 33 + x,6 + y,208,34,34 );
gfx.PutPixel( 34 + x,6 + y,208,34,34 );
gfx.PutPixel( 35 + x,6 + y,208,34,34 );
gfx.PutPixel( 36 + x,6 + y,208,34,34 );
gfx.PutPixel( 37 + x,6 + y,208,34,34 );
gfx.PutPixel( 38 + x,6 + y,208,34,34 );
gfx.PutPixel( 39 + x,6 + y,208,34,34 );
gfx.PutPixel( 40 + x,6 + y,208,34,34 );
gfx.PutPixel( 41 + x,6 + y,208,34,34 );
gfx.PutPixel( 42 + x,6 + y,208,34,34 );
gfx.PutPixel( 43 + x,6 + y,208,34,34 );
gfx.PutPixel( 44 + x,6 + y,208,34,34 );
gfx.PutPixel( 45 + x,6 + y,208,34,34 );
gfx.PutPixel( 46 + x,6 + y,208,34,34 );
gfx.PutPixel( 47 + x,6 + y,208,34,34 );
gfx.PutPixel( 48 + x,6 + y,208,34,34 );
gfx.PutPixel( 49 + x,6 + y,208,34,34 );
gfx.PutPixel( 50 + x,6 + y,208,34,34 );
gfx.PutPixel( 51 + x,6 + y,208,34,34 );
gfx.PutPixel( 52 + x,6 + y,208,34,34 );
gfx.PutPixel( 53 + x,6 + y,208,34,34 );
gfx.PutPixel( 54 + x,6 + y,208,34,34 );
gfx.PutPixel( 55 + x,6 + y,208,34,34 );
gfx.PutPixel( 56 + x,6 + y,208,34,34 );
gfx.PutPixel( 57 + x,6 + y,208,34,34 );
gfx.PutPixel( 58 + x,6 + y,208,34,34 );
gfx.PutPixel( 59 + x,6 + y,208,34,34 );
gfx.PutPixel( 60 + x,6 + y,208,34,34 );
gfx.PutPixel( 61 + x,6 + y,208,34,34 );
gfx.PutPixel( 62 + x,6 + y,208,34,34 );
gfx.PutPixel( 63 + x,6 + y,208,34,34 );
gfx.PutPixel( 64 + x,6 + y,208,34,34 );
gfx.PutPixel( 65 + x,6 + y,208,34,34 );
gfx.PutPixel( 66 + x,6 + y,208,34,34 );
gfx.PutPixel( 67 + x,6 + y,208,34,34 );
gfx.PutPixel( 68 + x,6 + y,208,34,34 );
gfx.PutPixel( 69 + x,6 + y,208,34,34 );
gfx.PutPixel( 70 + x,6 + y,208,34,34 );
gfx.PutPixel( 71 + x,6 + y,208,34,34 );
gfx.PutPixel( 72 + x,6 + y,208,27,27 );
gfx.PutPixel( 73 + x,6 + y,209,53,53 );
gfx.PutPixel( 74 + x,6 + y,222,228,228 );
gfx.PutPixel( 75 + x,6 + y,218,174,174 );
gfx.PutPixel( 76 + x,6 + y,207,22,22 );
gfx.PutPixel( 77 + x,6 + y,208,33,33 );
gfx.PutPixel( 78 + x,6 + y,208,34,34 );
gfx.PutPixel( 79 + x,6 + y,208,34,34 );
gfx.PutPixel( 80 + x,6 + y,208,34,34 );
gfx.PutPixel( 81 + x,6 + y,208,34,34 );
gfx.PutPixel( 82 + x,6 + y,208,34,34 );
gfx.PutPixel( 83 + x,6 + y,208,34,34 );
gfx.PutPixel( 84 + x,6 + y,208,34,34 );
gfx.PutPixel( 85 + x,6 + y,208,34,34 );
gfx.PutPixel( 86 + x,6 + y,208,34,34 );
gfx.PutPixel( 87 + x,6 + y,208,34,34 );
gfx.PutPixel( 88 + x,6 + y,208,34,34 );
gfx.PutPixel( 89 + x,6 + y,208,34,34 );
gfx.PutPixel( 90 + x,6 + y,208,34,34 );
gfx.PutPixel( 91 + x,6 + y,208,34,34 );
gfx.PutPixel( 92 + x,6 + y,208,34,34 );
gfx.PutPixel( 93 + x,6 + y,208,34,34 );
gfx.PutPixel( 94 + x,6 + y,208,34,34 );
gfx.PutPixel( 95 + x,6 + y,208,34,34 );
gfx.PutPixel( 96 + x,6 + y,208,34,34 );
gfx.PutPixel( 97 + x,6 + y,208,34,34 );
gfx.PutPixel( 98 + x,6 + y,208,34,34 );
gfx.PutPixel( 99 + x,6 + y,208,34,34 );
gfx.PutPixel( 100 + x,6 + y,208,34,34 );
gfx.PutPixel( 101 + x,6 + y,208,34,34 );
gfx.PutPixel( 102 + x,6 + y,208,34,34 );
gfx.PutPixel( 103 + x,6 + y,208,34,34 );
gfx.PutPixel( 104 + x,6 + y,208,34,34 );
gfx.PutPixel( 105 + x,6 + y,208,34,34 );
gfx.PutPixel( 106 + x,6 + y,208,34,34 );
gfx.PutPixel( 107 + x,6 + y,208,34,34 );
gfx.PutPixel( 108 + x,6 + y,208,34,34 );
gfx.PutPixel( 109 + x,6 + y,208,34,34 );
gfx.PutPixel( 110 + x,6 + y,208,34,34 );
gfx.PutPixel( 111 + x,6 + y,208,34,34 );
gfx.PutPixel( 112 + x,6 + y,208,34,34 );
gfx.PutPixel( 113 + x,6 + y,208,34,34 );
gfx.PutPixel( 114 + x,6 + y,208,34,34 );
gfx.PutPixel( 115 + x,6 + y,208,34,34 );
gfx.PutPixel( 116 + x,6 + y,208,34,34 );
gfx.PutPixel( 117 + x,6 + y,208,34,34 );
gfx.PutPixel( 118 + x,6 + y,208,34,34 );
gfx.PutPixel( 119 + x,6 + y,208,34,34 );
gfx.PutPixel( 120 + x,6 + y,208,34,34 );
gfx.PutPixel( 121 + x,6 + y,208,34,34 );
gfx.PutPixel( 122 + x,6 + y,208,34,34 );
gfx.PutPixel( 123 + x,6 + y,208,34,34 );
gfx.PutPixel( 124 + x,6 + y,208,34,34 );
gfx.PutPixel( 125 + x,6 + y,208,34,34 );
gfx.PutPixel( 126 + x,6 + y,208,34,34 );
gfx.PutPixel( 127 + x,6 + y,208,34,34 );
gfx.PutPixel( 128 + x,6 + y,208,34,34 );
gfx.PutPixel( 129 + x,6 + y,208,34,34 );
gfx.PutPixel( 130 + x,6 + y,208,34,34 );
gfx.PutPixel( 131 + x,6 + y,208,34,34 );
gfx.PutPixel( 132 + x,6 + y,208,34,34 );
gfx.PutPixel( 133 + x,6 + y,208,34,34 );
gfx.PutPixel( 134 + x,6 + y,208,34,34 );
gfx.PutPixel( 135 + x,6 + y,208,34,34 );
gfx.PutPixel( 136 + x,6 + y,208,34,34 );
gfx.PutPixel( 137 + x,6 + y,208,34,34 );
gfx.PutPixel( 138 + x,6 + y,208,34,34 );
gfx.PutPixel( 139 + x,6 + y,208,34,34 );
gfx.PutPixel( 140 + x,6 + y,208,34,34 );
gfx.PutPixel( 141 + x,6 + y,208,34,34 );
gfx.PutPixel( 142 + x,6 + y,208,34,34 );
gfx.PutPixel( 143 + x,6 + y,208,34,34 );
gfx.PutPixel( 144 + x,6 + y,208,34,34 );
gfx.PutPixel( 145 + x,6 + y,208,34,34 );
gfx.PutPixel( 146 + x,6 + y,208,34,34 );
gfx.PutPixel( 147 + x,6 + y,208,34,34 );
gfx.PutPixel( 148 + x,6 + y,208,34,34 );
gfx.PutPixel( 149 + x,6 + y,208,34,34 );
gfx.PutPixel( 0 + x,7 + y,208,34,34 );
gfx.PutPixel( 1 + x,7 + y,208,34,34 );
gfx.PutPixel( 2 + x,7 + y,208,34,34 );
gfx.PutPixel( 3 + x,7 + y,208,34,34 );
gfx.PutPixel( 4 + x,7 + y,208,34,34 );
gfx.PutPixel( 5 + x,7 + y,208,34,34 );
gfx.PutPixel( 6 + x,7 + y,208,34,34 );
gfx.PutPixel( 7 + x,7 + y,208,34,34 );
gfx.PutPixel( 8 + x,7 + y,208,34,34 );
gfx.PutPixel( 9 + x,7 + y,208,34,34 );
gfx.PutPixel( 10 + x,7 + y,208,34,34 );
gfx.PutPixel( 11 + x,7 + y,208,34,34 );
gfx.PutPixel( 12 + x,7 + y,208,34,34 );
gfx.PutPixel( 13 + x,7 + y,208,34,34 );
gfx.PutPixel( 14 + x,7 + y,208,34,34 );
gfx.PutPixel( 15 + x,7 + y,208,34,34 );
gfx.PutPixel( 16 + x,7 + y,208,34,34 );
gfx.PutPixel( 17 + x,7 + y,208,34,34 );
gfx.PutPixel( 18 + x,7 + y,208,34,34 );
gfx.PutPixel( 19 + x,7 + y,208,34,34 );
gfx.PutPixel( 20 + x,7 + y,208,34,34 );
gfx.PutPixel( 21 + x,7 + y,208,34,34 );
gfx.PutPixel( 22 + x,7 + y,208,34,34 );
gfx.PutPixel( 23 + x,7 + y,208,34,34 );
gfx.PutPixel( 24 + x,7 + y,208,34,34 );
gfx.PutPixel( 25 + x,7 + y,208,34,34 );
gfx.PutPixel( 26 + x,7 + y,208,34,34 );
gfx.PutPixel( 27 + x,7 + y,208,34,34 );
gfx.PutPixel( 28 + x,7 + y,208,34,34 );
gfx.PutPixel( 29 + x,7 + y,208,34,34 );
gfx.PutPixel( 30 + x,7 + y,208,34,34 );
gfx.PutPixel( 31 + x,7 + y,208,34,34 );
gfx.PutPixel( 32 + x,7 + y,208,34,34 );
gfx.PutPixel( 33 + x,7 + y,208,34,34 );
gfx.PutPixel( 34 + x,7 + y,208,34,34 );
gfx.PutPixel( 35 + x,7 + y,208,34,34 );
gfx.PutPixel( 36 + x,7 + y,208,34,34 );
gfx.PutPixel( 37 + x,7 + y,208,34,34 );
gfx.PutPixel( 38 + x,7 + y,208,34,34 );
gfx.PutPixel( 39 + x,7 + y,208,34,34 );
gfx.PutPixel( 40 + x,7 + y,208,34,34 );
gfx.PutPixel( 41 + x,7 + y,208,34,34 );
gfx.PutPixel( 42 + x,7 + y,208,34,34 );
gfx.PutPixel( 43 + x,7 + y,208,34,34 );
gfx.PutPixel( 44 + x,7 + y,208,34,34 );
gfx.PutPixel( 45 + x,7 + y,208,34,34 );
gfx.PutPixel( 46 + x,7 + y,208,34,34 );
gfx.PutPixel( 47 + x,7 + y,208,34,34 );
gfx.PutPixel( 48 + x,7 + y,208,34,34 );
gfx.PutPixel( 49 + x,7 + y,208,34,34 );
gfx.PutPixel( 50 + x,7 + y,208,34,34 );
gfx.PutPixel( 51 + x,7 + y,208,34,34 );
gfx.PutPixel( 52 + x,7 + y,208,34,34 );
gfx.PutPixel( 53 + x,7 + y,208,34,34 );
gfx.PutPixel( 54 + x,7 + y,208,34,34 );
gfx.PutPixel( 55 + x,7 + y,208,34,34 );
gfx.PutPixel( 56 + x,7 + y,208,34,34 );
gfx.PutPixel( 57 + x,7 + y,208,34,34 );
gfx.PutPixel( 58 + x,7 + y,208,34,34 );
gfx.PutPixel( 59 + x,7 + y,208,34,34 );
gfx.PutPixel( 60 + x,7 + y,208,34,34 );
gfx.PutPixel( 61 + x,7 + y,208,34,34 );
gfx.PutPixel( 62 + x,7 + y,208,34,34 );
gfx.PutPixel( 63 + x,7 + y,208,34,34 );
gfx.PutPixel( 64 + x,7 + y,208,34,34 );
gfx.PutPixel( 65 + x,7 + y,208,34,34 );
gfx.PutPixel( 66 + x,7 + y,208,34,34 );
gfx.PutPixel( 67 + x,7 + y,208,34,34 );
gfx.PutPixel( 68 + x,7 + y,208,34,34 );
gfx.PutPixel( 69 + x,7 + y,208,34,34 );
gfx.PutPixel( 70 + x,7 + y,208,34,34 );
gfx.PutPixel( 71 + x,7 + y,207,29,29 );
gfx.PutPixel( 72 + x,7 + y,210,65,65 );
gfx.PutPixel( 73 + x,7 + y,216,144,144 );
gfx.PutPixel( 74 + x,7 + y,220,207,207 );
gfx.PutPixel( 75 + x,7 + y,218,181,181 );
gfx.PutPixel( 76 + x,7 + y,215,127,127 );
gfx.PutPixel( 77 + x,7 + y,208,39,39 );
gfx.PutPixel( 78 + x,7 + y,208,32,32 );
gfx.PutPixel( 79 + x,7 + y,208,34,34 );
gfx.PutPixel( 80 + x,7 + y,208,34,34 );
gfx.PutPixel( 81 + x,7 + y,208,34,34 );
gfx.PutPixel( 82 + x,7 + y,208,34,34 );
gfx.PutPixel( 83 + x,7 + y,208,34,34 );
gfx.PutPixel( 84 + x,7 + y,208,34,34 );
gfx.PutPixel( 85 + x,7 + y,208,34,34 );
gfx.PutPixel( 86 + x,7 + y,208,34,34 );
gfx.PutPixel( 87 + x,7 + y,208,34,34 );
gfx.PutPixel( 88 + x,7 + y,208,34,34 );
gfx.PutPixel( 89 + x,7 + y,208,34,34 );
gfx.PutPixel( 90 + x,7 + y,208,34,34 );
gfx.PutPixel( 91 + x,7 + y,208,34,34 );
gfx.PutPixel( 92 + x,7 + y,208,34,34 );
gfx.PutPixel( 93 + x,7 + y,208,34,34 );
gfx.PutPixel( 94 + x,7 + y,208,34,34 );
gfx.PutPixel( 95 + x,7 + y,208,34,34 );
gfx.PutPixel( 96 + x,7 + y,208,34,34 );
gfx.PutPixel( 97 + x,7 + y,208,34,34 );
gfx.PutPixel( 98 + x,7 + y,208,34,34 );
gfx.PutPixel( 99 + x,7 + y,208,34,34 );
gfx.PutPixel( 100 + x,7 + y,208,34,34 );
gfx.PutPixel( 101 + x,7 + y,208,34,34 );
gfx.PutPixel( 102 + x,7 + y,208,34,34 );
gfx.PutPixel( 103 + x,7 + y,208,34,34 );
gfx.PutPixel( 104 + x,7 + y,208,34,34 );
gfx.PutPixel( 105 + x,7 + y,208,34,34 );
gfx.PutPixel( 106 + x,7 + y,208,34,34 );
gfx.PutPixel( 107 + x,7 + y,208,34,34 );
gfx.PutPixel( 108 + x,7 + y,208,34,34 );
gfx.PutPixel( 109 + x,7 + y,208,34,34 );
gfx.PutPixel( 110 + x,7 + y,208,34,34 );
gfx.PutPixel( 111 + x,7 + y,208,34,34 );
gfx.PutPixel( 112 + x,7 + y,208,34,34 );
gfx.PutPixel( 113 + x,7 + y,208,34,34 );
gfx.PutPixel( 114 + x,7 + y,208,34,34 );
gfx.PutPixel( 115 + x,7 + y,208,34,34 );
gfx.PutPixel( 116 + x,7 + y,208,34,34 );
gfx.PutPixel( 117 + x,7 + y,208,34,34 );
gfx.PutPixel( 118 + x,7 + y,208,34,34 );
gfx.PutPixel( 119 + x,7 + y,208,34,34 );
gfx.PutPixel( 120 + x,7 + y,208,34,34 );
gfx.PutPixel( 121 + x,7 + y,208,34,34 );
gfx.PutPixel( 122 + x,7 + y,208,34,34 );
gfx.PutPixel( 123 + x,7 + y,208,34,34 );
gfx.PutPixel( 124 + x,7 + y,208,34,34 );
gfx.PutPixel( 125 + x,7 + y,208,34,34 );
gfx.PutPixel( 126 + x,7 + y,208,34,34 );
gfx.PutPixel( 127 + x,7 + y,208,34,34 );
gfx.PutPixel( 128 + x,7 + y,208,34,34 );
gfx.PutPixel( 129 + x,7 + y,208,34,34 );
gfx.PutPixel( 130 + x,7 + y,208,34,34 );
gfx.PutPixel( 131 + x,7 + y,208,34,34 );
gfx.PutPixel( 132 + x,7 + y,208,34,34 );
gfx.PutPixel( 133 + x,7 + y,208,34,34 );
gfx.PutPixel( 134 + x,7 + y,208,34,34 );
gfx.PutPixel( 135 + x,7 + y,208,34,34 );
gfx.PutPixel( 136 + x,7 + y,208,34,34 );
gfx.PutPixel( 137 + x,7 + y,208,34,34 );
gfx.PutPixel( 138 + x,7 + y,208,34,34 );
gfx.PutPixel( 139 + x,7 + y,208,34,34 );
gfx.PutPixel( 140 + x,7 + y,208,34,34 );
gfx.PutPixel( 141 + x,7 + y,208,34,34 );
gfx.PutPixel( 142 + x,7 + y,208,34,34 );
gfx.PutPixel( 143 + x,7 + y,208,34,34 );
gfx.PutPixel( 144 + x,7 + y,208,34,34 );
gfx.PutPixel( 145 + x,7 + y,208,34,34 );
gfx.PutPixel( 146 + x,7 + y,208,34,34 );
gfx.PutPixel( 147 + x,7 + y,208,34,34 );
gfx.PutPixel( 148 + x,7 + y,208,34,34 );
gfx.PutPixel( 149 + x,7 + y,208,34,34 );
gfx.PutPixel( 0 + x,8 + y,208,34,34 );
gfx.PutPixel( 1 + x,8 + y,208,34,34 );
gfx.PutPixel( 2 + x,8 + y,208,34,34 );
gfx.PutPixel( 3 + x,8 + y,208,34,34 );
gfx.PutPixel( 4 + x,8 + y,208,34,34 );
gfx.PutPixel( 5 + x,8 + y,208,34,34 );
gfx.PutPixel( 6 + x,8 + y,208,34,34 );
gfx.PutPixel( 7 + x,8 + y,208,34,34 );
gfx.PutPixel( 8 + x,8 + y,208,34,34 );
gfx.PutPixel( 9 + x,8 + y,208,34,34 );
gfx.PutPixel( 10 + x,8 + y,208,34,34 );
gfx.PutPixel( 11 + x,8 + y,208,34,34 );
gfx.PutPixel( 12 + x,8 + y,208,34,34 );
gfx.PutPixel( 13 + x,8 + y,208,34,34 );
gfx.PutPixel( 14 + x,8 + y,208,34,34 );
gfx.PutPixel( 15 + x,8 + y,208,34,34 );
gfx.PutPixel( 16 + x,8 + y,208,34,34 );
gfx.PutPixel( 17 + x,8 + y,208,34,34 );
gfx.PutPixel( 18 + x,8 + y,208,34,34 );
gfx.PutPixel( 19 + x,8 + y,208,34,34 );
gfx.PutPixel( 20 + x,8 + y,208,34,34 );
gfx.PutPixel( 21 + x,8 + y,208,34,34 );
gfx.PutPixel( 22 + x,8 + y,208,34,34 );
gfx.PutPixel( 23 + x,8 + y,208,34,34 );
gfx.PutPixel( 24 + x,8 + y,208,34,34 );
gfx.PutPixel( 25 + x,8 + y,208,34,34 );
gfx.PutPixel( 26 + x,8 + y,208,34,34 );
gfx.PutPixel( 27 + x,8 + y,208,34,34 );
gfx.PutPixel( 28 + x,8 + y,208,34,34 );
gfx.PutPixel( 29 + x,8 + y,208,34,34 );
gfx.PutPixel( 30 + x,8 + y,208,34,34 );
gfx.PutPixel( 31 + x,8 + y,208,34,34 );
gfx.PutPixel( 32 + x,8 + y,208,34,34 );
gfx.PutPixel( 33 + x,8 + y,208,34,34 );
gfx.PutPixel( 34 + x,8 + y,208,34,34 );
gfx.PutPixel( 35 + x,8 + y,208,34,34 );
gfx.PutPixel( 36 + x,8 + y,208,34,34 );
gfx.PutPixel( 37 + x,8 + y,208,34,34 );
gfx.PutPixel( 38 + x,8 + y,208,34,34 );
gfx.PutPixel( 39 + x,8 + y,208,34,34 );
gfx.PutPixel( 40 + x,8 + y,208,34,34 );
gfx.PutPixel( 41 + x,8 + y,208,34,34 );
gfx.PutPixel( 42 + x,8 + y,208,34,34 );
gfx.PutPixel( 43 + x,8 + y,208,34,34 );
gfx.PutPixel( 44 + x,8 + y,208,34,34 );
gfx.PutPixel( 45 + x,8 + y,208,34,34 );
gfx.PutPixel( 46 + x,8 + y,208,34,34 );
gfx.PutPixel( 47 + x,8 + y,208,34,34 );
gfx.PutPixel( 48 + x,8 + y,208,34,34 );
gfx.PutPixel( 49 + x,8 + y,208,34,34 );
gfx.PutPixel( 50 + x,8 + y,208,34,34 );
gfx.PutPixel( 51 + x,8 + y,208,34,34 );
gfx.PutPixel( 52 + x,8 + y,208,34,34 );
gfx.PutPixel( 53 + x,8 + y,208,34,34 );
gfx.PutPixel( 54 + x,8 + y,208,34,34 );
gfx.PutPixel( 55 + x,8 + y,208,34,34 );
gfx.PutPixel( 56 + x,8 + y,208,34,34 );
gfx.PutPixel( 57 + x,8 + y,208,34,34 );
gfx.PutPixel( 58 + x,8 + y,208,34,34 );
gfx.PutPixel( 59 + x,8 + y,208,34,34 );
gfx.PutPixel( 60 + x,8 + y,208,34,34 );
gfx.PutPixel( 61 + x,8 + y,208,34,34 );
gfx.PutPixel( 62 + x,8 + y,208,34,34 );
gfx.PutPixel( 63 + x,8 + y,208,34,34 );
gfx.PutPixel( 64 + x,8 + y,208,34,34 );
gfx.PutPixel( 65 + x,8 + y,208,34,34 );
gfx.PutPixel( 66 + x,8 + y,208,34,34 );
gfx.PutPixel( 67 + x,8 + y,208,34,34 );
gfx.PutPixel( 68 + x,8 + y,208,34,34 );
gfx.PutPixel( 69 + x,8 + y,208,34,34 );
gfx.PutPixel( 70 + x,8 + y,208,34,34 );
gfx.PutPixel( 71 + x,8 + y,208,27,27 );
gfx.PutPixel( 72 + x,8 + y,211,76,76 );
gfx.PutPixel( 73 + x,8 + y,219,198,198 );
gfx.PutPixel( 74 + x,8 + y,218,182,182 );
gfx.PutPixel( 75 + x,8 + y,218,185,185 );
gfx.PutPixel( 76 + x,8 + y,218,179,179 );
gfx.PutPixel( 77 + x,8 + y,208,38,38 );
gfx.PutPixel( 78 + x,8 + y,208,32,32 );
gfx.PutPixel( 79 + x,8 + y,208,34,34 );
gfx.PutPixel( 80 + x,8 + y,208,34,34 );
gfx.PutPixel( 81 + x,8 + y,208,34,34 );
gfx.PutPixel( 82 + x,8 + y,208,34,34 );
gfx.PutPixel( 83 + x,8 + y,208,34,34 );
gfx.PutPixel( 84 + x,8 + y,208,34,34 );
gfx.PutPixel( 85 + x,8 + y,208,34,34 );
gfx.PutPixel( 86 + x,8 + y,208,34,34 );
gfx.PutPixel( 87 + x,8 + y,208,34,34 );
gfx.PutPixel( 88 + x,8 + y,208,34,34 );
gfx.PutPixel( 89 + x,8 + y,208,34,34 );
gfx.PutPixel( 90 + x,8 + y,208,34,34 );
gfx.PutPixel( 91 + x,8 + y,208,34,34 );
gfx.PutPixel( 92 + x,8 + y,208,34,34 );
gfx.PutPixel( 93 + x,8 + y,208,34,34 );
gfx.PutPixel( 94 + x,8 + y,208,34,34 );
gfx.PutPixel( 95 + x,8 + y,208,34,34 );
gfx.PutPixel( 96 + x,8 + y,208,34,34 );
gfx.PutPixel( 97 + x,8 + y,208,34,34 );
gfx.PutPixel( 98 + x,8 + y,208,34,34 );
gfx.PutPixel( 99 + x,8 + y,208,34,34 );
gfx.PutPixel( 100 + x,8 + y,208,34,34 );
gfx.PutPixel( 101 + x,8 + y,208,34,34 );
gfx.PutPixel( 102 + x,8 + y,208,34,34 );
gfx.PutPixel( 103 + x,8 + y,208,34,34 );
gfx.PutPixel( 104 + x,8 + y,208,34,34 );
gfx.PutPixel( 105 + x,8 + y,208,34,34 );
gfx.PutPixel( 106 + x,8 + y,208,34,34 );
gfx.PutPixel( 107 + x,8 + y,208,34,34 );
gfx.PutPixel( 108 + x,8 + y,208,34,34 );
gfx.PutPixel( 109 + x,8 + y,208,34,34 );
gfx.PutPixel( 110 + x,8 + y,208,34,34 );
gfx.PutPixel( 111 + x,8 + y,208,34,34 );
gfx.PutPixel( 112 + x,8 + y,208,34,34 );
gfx.PutPixel( 113 + x,8 + y,208,34,34 );
gfx.PutPixel( 114 + x,8 + y,208,34,34 );
gfx.PutPixel( 115 + x,8 + y,208,34,34 );
gfx.PutPixel( 116 + x,8 + y,208,34,34 );
gfx.PutPixel( 117 + x,8 + y,208,34,34 );
gfx.PutPixel( 118 + x,8 + y,208,34,34 );
gfx.PutPixel( 119 + x,8 + y,208,34,34 );
gfx.PutPixel( 120 + x,8 + y,208,34,34 );
gfx.PutPixel( 121 + x,8 + y,208,34,34 );
gfx.PutPixel( 122 + x,8 + y,208,34,34 );
gfx.PutPixel( 123 + x,8 + y,208,34,34 );
gfx.PutPixel( 124 + x,8 + y,208,34,34 );
gfx.PutPixel( 125 + x,8 + y,208,34,34 );
gfx.PutPixel( 126 + x,8 + y,208,34,34 );
gfx.PutPixel( 127 + x,8 + y,208,34,34 );
gfx.PutPixel( 128 + x,8 + y,208,34,34 );
gfx.PutPixel( 129 + x,8 + y,208,34,34 );
gfx.PutPixel( 130 + x,8 + y,208,34,34 );
gfx.PutPixel( 131 + x,8 + y,208,34,34 );
gfx.PutPixel( 132 + x,8 + y,208,34,34 );
gfx.PutPixel( 133 + x,8 + y,208,34,34 );
gfx.PutPixel( 134 + x,8 + y,208,34,34 );
gfx.PutPixel( 135 + x,8 + y,208,34,34 );
gfx.PutPixel( 136 + x,8 + y,208,34,34 );
gfx.PutPixel( 137 + x,8 + y,208,34,34 );
gfx.PutPixel( 138 + x,8 + y,208,34,34 );
gfx.PutPixel( 139 + x,8 + y,208,34,34 );
gfx.PutPixel( 140 + x,8 + y,208,34,34 );
gfx.PutPixel( 141 + x,8 + y,208,34,34 );
gfx.PutPixel( 142 + x,8 + y,208,34,34 );
gfx.PutPixel( 143 + x,8 + y,208,34,34 );
gfx.PutPixel( 144 + x,8 + y,208,34,34 );
gfx.PutPixel( 145 + x,8 + y,208,34,34 );
gfx.PutPixel( 146 + x,8 + y,208,34,34 );
gfx.PutPixel( 147 + x,8 + y,208,34,34 );
gfx.PutPixel( 148 + x,8 + y,208,34,34 );
gfx.PutPixel( 149 + x,8 + y,208,34,34 );
gfx.PutPixel( 0 + x,9 + y,208,34,34 );
gfx.PutPixel( 1 + x,9 + y,208,34,34 );
gfx.PutPixel( 2 + x,9 + y,208,34,34 );
gfx.PutPixel( 3 + x,9 + y,208,34,34 );
gfx.PutPixel( 4 + x,9 + y,208,34,34 );
gfx.PutPixel( 5 + x,9 + y,208,34,34 );
gfx.PutPixel( 6 + x,9 + y,208,34,34 );
gfx.PutPixel( 7 + x,9 + y,208,34,34 );
gfx.PutPixel( 8 + x,9 + y,208,34,34 );
gfx.PutPixel( 9 + x,9 + y,208,34,34 );
gfx.PutPixel( 10 + x,9 + y,208,34,34 );
gfx.PutPixel( 11 + x,9 + y,208,34,34 );
gfx.PutPixel( 12 + x,9 + y,208,34,34 );
gfx.PutPixel( 13 + x,9 + y,208,34,34 );
gfx.PutPixel( 14 + x,9 + y,208,34,34 );
gfx.PutPixel( 15 + x,9 + y,208,34,34 );
gfx.PutPixel( 16 + x,9 + y,208,34,34 );
gfx.PutPixel( 17 + x,9 + y,208,34,34 );
gfx.PutPixel( 18 + x,9 + y,208,34,34 );
gfx.PutPixel( 19 + x,9 + y,208,34,34 );
gfx.PutPixel( 20 + x,9 + y,208,34,34 );
gfx.PutPixel( 21 + x,9 + y,208,34,34 );
gfx.PutPixel( 22 + x,9 + y,208,34,34 );
gfx.PutPixel( 23 + x,9 + y,208,34,34 );
gfx.PutPixel( 24 + x,9 + y,208,34,34 );
gfx.PutPixel( 25 + x,9 + y,208,34,34 );
gfx.PutPixel( 26 + x,9 + y,208,34,34 );
gfx.PutPixel( 27 + x,9 + y,208,34,34 );
gfx.PutPixel( 28 + x,9 + y,208,34,34 );
gfx.PutPixel( 29 + x,9 + y,208,34,34 );
gfx.PutPixel( 30 + x,9 + y,208,34,34 );
gfx.PutPixel( 31 + x,9 + y,208,34,34 );
gfx.PutPixel( 32 + x,9 + y,208,34,34 );
gfx.PutPixel( 33 + x,9 + y,208,34,34 );
gfx.PutPixel( 34 + x,9 + y,208,34,34 );
gfx.PutPixel( 35 + x,9 + y,208,34,34 );
gfx.PutPixel( 36 + x,9 + y,208,34,34 );
gfx.PutPixel( 37 + x,9 + y,208,34,34 );
gfx.PutPixel( 38 + x,9 + y,208,34,34 );
gfx.PutPixel( 39 + x,9 + y,208,34,34 );
gfx.PutPixel( 40 + x,9 + y,208,34,34 );
gfx.PutPixel( 41 + x,9 + y,208,34,34 );
gfx.PutPixel( 42 + x,9 + y,208,34,34 );
gfx.PutPixel( 43 + x,9 + y,208,34,34 );
gfx.PutPixel( 44 + x,9 + y,208,34,34 );
gfx.PutPixel( 45 + x,9 + y,208,34,34 );
gfx.PutPixel( 46 + x,9 + y,208,34,34 );
gfx.PutPixel( 47 + x,9 + y,208,34,34 );
gfx.PutPixel( 48 + x,9 + y,208,34,34 );
gfx.PutPixel( 49 + x,9 + y,208,34,34 );
gfx.PutPixel( 50 + x,9 + y,208,34,34 );
gfx.PutPixel( 51 + x,9 + y,208,34,34 );
gfx.PutPixel( 52 + x,9 + y,208,34,34 );
gfx.PutPixel( 53 + x,9 + y,208,34,34 );
gfx.PutPixel( 54 + x,9 + y,208,34,34 );
gfx.PutPixel( 55 + x,9 + y,208,34,34 );
gfx.PutPixel( 56 + x,9 + y,208,34,34 );
gfx.PutPixel( 57 + x,9 + y,208,34,34 );
gfx.PutPixel( 58 + x,9 + y,208,34,34 );
gfx.PutPixel( 59 + x,9 + y,208,34,34 );
gfx.PutPixel( 60 + x,9 + y,208,34,34 );
gfx.PutPixel( 61 + x,9 + y,208,34,34 );
gfx.PutPixel( 62 + x,9 + y,208,34,34 );
gfx.PutPixel( 63 + x,9 + y,208,34,34 );
gfx.PutPixel( 64 + x,9 + y,208,34,34 );
gfx.PutPixel( 65 + x,9 + y,208,34,34 );
gfx.PutPixel( 66 + x,9 + y,208,34,34 );
gfx.PutPixel( 67 + x,9 + y,208,34,34 );
gfx.PutPixel( 68 + x,9 + y,208,34,34 );
gfx.PutPixel( 69 + x,9 + y,208,34,34 );
gfx.PutPixel( 70 + x,9 + y,208,34,34 );
gfx.PutPixel( 71 + x,9 + y,208,33,33 );
gfx.PutPixel( 72 + x,9 + y,208,37,37 );
gfx.PutPixel( 73 + x,9 + y,209,47,47 );
gfx.PutPixel( 74 + x,9 + y,216,155,155 );
gfx.PutPixel( 75 + x,9 + y,214,120,120 );
gfx.PutPixel( 76 + x,9 + y,208,40,40 );
gfx.PutPixel( 77 + x,9 + y,208,35,35 );
gfx.PutPixel( 78 + x,9 + y,208,34,34 );
gfx.PutPixel( 79 + x,9 + y,208,34,34 );
gfx.PutPixel( 80 + x,9 + y,208,34,34 );
gfx.PutPixel( 81 + x,9 + y,208,34,34 );
gfx.PutPixel( 82 + x,9 + y,208,34,34 );
gfx.PutPixel( 83 + x,9 + y,208,34,34 );
gfx.PutPixel( 84 + x,9 + y,208,34,34 );
gfx.PutPixel( 85 + x,9 + y,208,34,34 );
gfx.PutPixel( 86 + x,9 + y,208,34,34 );
gfx.PutPixel( 87 + x,9 + y,208,34,34 );
gfx.PutPixel( 88 + x,9 + y,208,34,34 );
gfx.PutPixel( 89 + x,9 + y,208,34,34 );
gfx.PutPixel( 90 + x,9 + y,208,34,34 );
gfx.PutPixel( 91 + x,9 + y,208,34,34 );
gfx.PutPixel( 92 + x,9 + y,208,34,34 );
gfx.PutPixel( 93 + x,9 + y,208,34,34 );
gfx.PutPixel( 94 + x,9 + y,208,34,34 );
gfx.PutPixel( 95 + x,9 + y,208,34,34 );
gfx.PutPixel( 96 + x,9 + y,208,34,34 );
gfx.PutPixel( 97 + x,9 + y,208,34,34 );
gfx.PutPixel( 98 + x,9 + y,208,34,34 );
gfx.PutPixel( 99 + x,9 + y,208,34,34 );
gfx.PutPixel( 100 + x,9 + y,208,34,34 );
gfx.PutPixel( 101 + x,9 + y,208,34,34 );
gfx.PutPixel( 102 + x,9 + y,208,34,34 );
gfx.PutPixel( 103 + x,9 + y,208,34,34 );
gfx.PutPixel( 104 + x,9 + y,208,34,34 );
gfx.PutPixel( 105 + x,9 + y,208,34,34 );
gfx.PutPixel( 106 + x,9 + y,208,34,34 );
gfx.PutPixel( 107 + x,9 + y,208,34,34 );
gfx.PutPixel( 108 + x,9 + y,208,34,34 );
gfx.PutPixel( 109 + x,9 + y,208,34,34 );
gfx.PutPixel( 110 + x,9 + y,208,34,34 );
gfx.PutPixel( 111 + x,9 + y,208,34,34 );
gfx.PutPixel( 112 + x,9 + y,208,34,34 );
gfx.PutPixel( 113 + x,9 + y,208,34,34 );
gfx.PutPixel( 114 + x,9 + y,208,34,34 );
gfx.PutPixel( 115 + x,9 + y,208,34,34 );
gfx.PutPixel( 116 + x,9 + y,208,34,34 );
gfx.PutPixel( 117 + x,9 + y,208,34,34 );
gfx.PutPixel( 118 + x,9 + y,208,34,34 );
gfx.PutPixel( 119 + x,9 + y,208,34,34 );
gfx.PutPixel( 120 + x,9 + y,208,34,34 );
gfx.PutPixel( 121 + x,9 + y,208,34,34 );
gfx.PutPixel( 122 + x,9 + y,208,34,34 );
gfx.PutPixel( 123 + x,9 + y,208,34,34 );
gfx.PutPixel( 124 + x,9 + y,208,34,34 );
gfx.PutPixel( 125 + x,9 + y,208,34,34 );
gfx.PutPixel( 126 + x,9 + y,208,34,34 );
gfx.PutPixel( 127 + x,9 + y,208,34,34 );
gfx.PutPixel( 128 + x,9 + y,208,34,34 );
gfx.PutPixel( 129 + x,9 + y,208,34,34 );
gfx.PutPixel( 130 + x,9 + y,208,34,34 );
gfx.PutPixel( 131 + x,9 + y,208,34,34 );
gfx.PutPixel( 132 + x,9 + y,208,34,34 );
gfx.PutPixel( 133 + x,9 + y,208,34,34 );
gfx.PutPixel( 134 + x,9 + y,208,34,34 );
gfx.PutPixel( 135 + x,9 + y,208,34,34 );
gfx.PutPixel( 136 + x,9 + y,208,34,34 );
gfx.PutPixel( 137 + x,9 + y,208,34,34 );
gfx.PutPixel( 138 + x,9 + y,208,34,34 );
gfx.PutPixel( 139 + x,9 + y,208,34,34 );
gfx.PutPixel( 140 + x,9 + y,208,34,34 );
gfx.PutPixel( 141 + x,9 + y,208,34,34 );
gfx.PutPixel( 142 + x,9 + y,208,34,34 );
gfx.PutPixel( 143 + x,9 + y,208,34,34 );
gfx.PutPixel( 144 + x,9 + y,208,34,34 );
gfx.PutPixel( 145 + x,9 + y,208,34,34 );
gfx.PutPixel( 146 + x,9 + y,208,34,34 );
gfx.PutPixel( 147 + x,9 + y,208,34,34 );
gfx.PutPixel( 148 + x,9 + y,208,34,34 );
gfx.PutPixel( 149 + x,9 + y,208,34,34 );
gfx.PutPixel( 0 + x,10 + y,208,34,34 );
gfx.PutPixel( 1 + x,10 + y,208,34,34 );
gfx.PutPixel( 2 + x,10 + y,208,34,34 );
gfx.PutPixel( 3 + x,10 + y,208,34,34 );
gfx.PutPixel( 4 + x,10 + y,208,34,34 );
gfx.PutPixel( 5 + x,10 + y,208,34,34 );
gfx.PutPixel( 6 + x,10 + y,208,34,34 );
gfx.PutPixel( 7 + x,10 + y,208,34,34 );
gfx.PutPixel( 8 + x,10 + y,208,34,34 );
gfx.PutPixel( 9 + x,10 + y,208,34,34 );
gfx.PutPixel( 10 + x,10 + y,208,34,34 );
gfx.PutPixel( 11 + x,10 + y,208,34,34 );
gfx.PutPixel( 12 + x,10 + y,208,34,34 );
gfx.PutPixel( 13 + x,10 + y,208,34,34 );
gfx.PutPixel( 14 + x,10 + y,208,34,34 );
gfx.PutPixel( 15 + x,10 + y,208,34,34 );
gfx.PutPixel( 16 + x,10 + y,208,34,34 );
gfx.PutPixel( 17 + x,10 + y,208,34,34 );
gfx.PutPixel( 18 + x,10 + y,208,34,34 );
gfx.PutPixel( 19 + x,10 + y,208,34,34 );
gfx.PutPixel( 20 + x,10 + y,208,34,34 );
gfx.PutPixel( 21 + x,10 + y,208,34,34 );
gfx.PutPixel( 22 + x,10 + y,208,34,34 );
gfx.PutPixel( 23 + x,10 + y,208,34,34 );
gfx.PutPixel( 24 + x,10 + y,208,34,34 );
gfx.PutPixel( 25 + x,10 + y,208,34,34 );
gfx.PutPixel( 26 + x,10 + y,208,34,34 );
gfx.PutPixel( 27 + x,10 + y,208,34,34 );
gfx.PutPixel( 28 + x,10 + y,208,34,34 );
gfx.PutPixel( 29 + x,10 + y,208,34,34 );
gfx.PutPixel( 30 + x,10 + y,208,34,34 );
gfx.PutPixel( 31 + x,10 + y,208,34,34 );
gfx.PutPixel( 32 + x,10 + y,208,34,34 );
gfx.PutPixel( 33 + x,10 + y,208,34,34 );
gfx.PutPixel( 34 + x,10 + y,208,34,34 );
gfx.PutPixel( 35 + x,10 + y,208,34,34 );
gfx.PutPixel( 36 + x,10 + y,208,34,34 );
gfx.PutPixel( 37 + x,10 + y,208,34,34 );
gfx.PutPixel( 38 + x,10 + y,208,34,34 );
gfx.PutPixel( 39 + x,10 + y,208,34,34 );
gfx.PutPixel( 40 + x,10 + y,208,34,34 );
gfx.PutPixel( 41 + x,10 + y,208,34,34 );
gfx.PutPixel( 42 + x,10 + y,208,34,34 );
gfx.PutPixel( 43 + x,10 + y,208,34,34 );
gfx.PutPixel( 44 + x,10 + y,208,34,34 );
gfx.PutPixel( 45 + x,10 + y,208,34,34 );
gfx.PutPixel( 46 + x,10 + y,208,34,34 );
gfx.PutPixel( 47 + x,10 + y,208,34,34 );
gfx.PutPixel( 48 + x,10 + y,208,34,34 );
gfx.PutPixel( 49 + x,10 + y,208,34,34 );
gfx.PutPixel( 50 + x,10 + y,208,34,34 );
gfx.PutPixel( 51 + x,10 + y,208,34,34 );
gfx.PutPixel( 52 + x,10 + y,208,34,34 );
gfx.PutPixel( 53 + x,10 + y,208,34,34 );
gfx.PutPixel( 54 + x,10 + y,208,34,34 );
gfx.PutPixel( 55 + x,10 + y,208,34,34 );
gfx.PutPixel( 56 + x,10 + y,208,34,34 );
gfx.PutPixel( 57 + x,10 + y,208,34,34 );
gfx.PutPixel( 58 + x,10 + y,208,34,34 );
gfx.PutPixel( 59 + x,10 + y,208,34,34 );
gfx.PutPixel( 60 + x,10 + y,208,34,34 );
gfx.PutPixel( 61 + x,10 + y,208,34,34 );
gfx.PutPixel( 62 + x,10 + y,208,34,34 );
gfx.PutPixel( 63 + x,10 + y,208,34,34 );
gfx.PutPixel( 64 + x,10 + y,208,34,34 );
gfx.PutPixel( 65 + x,10 + y,208,34,34 );
gfx.PutPixel( 66 + x,10 + y,208,34,34 );
gfx.PutPixel( 67 + x,10 + y,208,34,34 );
gfx.PutPixel( 68 + x,10 + y,208,34,34 );
gfx.PutPixel( 69 + x,10 + y,208,34,34 );
gfx.PutPixel( 70 + x,10 + y,208,30,30 );
gfx.PutPixel( 71 + x,10 + y,207,24,24 );
gfx.PutPixel( 72 + x,10 + y,208,40,40 );
gfx.PutPixel( 73 + x,10 + y,215,129,129 );
gfx.PutPixel( 74 + x,10 + y,217,160,160 );
gfx.PutPixel( 75 + x,10 + y,216,157,157 );
gfx.PutPixel( 76 + x,10 + y,213,104,104 );
gfx.PutPixel( 77 + x,10 + y,208,24,24 );
gfx.PutPixel( 78 + x,10 + y,208,27,27 );
gfx.PutPixel( 79 + x,10 + y,208,34,34 );
gfx.PutPixel( 80 + x,10 + y,208,34,34 );
gfx.PutPixel( 81 + x,10 + y,208,34,34 );
gfx.PutPixel( 82 + x,10 + y,208,34,34 );
gfx.PutPixel( 83 + x,10 + y,208,34,34 );
gfx.PutPixel( 84 + x,10 + y,208,34,34 );
gfx.PutPixel( 85 + x,10 + y,208,34,34 );
gfx.PutPixel( 86 + x,10 + y,208,34,34 );
gfx.PutPixel( 87 + x,10 + y,208,34,34 );
gfx.PutPixel( 88 + x,10 + y,208,34,34 );
gfx.PutPixel( 89 + x,10 + y,208,34,34 );
gfx.PutPixel( 90 + x,10 + y,208,34,34 );
gfx.PutPixel( 91 + x,10 + y,208,34,34 );
gfx.PutPixel( 92 + x,10 + y,208,34,34 );
gfx.PutPixel( 93 + x,10 + y,208,34,34 );
gfx.PutPixel( 94 + x,10 + y,208,34,34 );
gfx.PutPixel( 95 + x,10 + y,208,34,34 );
gfx.PutPixel( 96 + x,10 + y,208,34,34 );
gfx.PutPixel( 97 + x,10 + y,208,34,34 );
gfx.PutPixel( 98 + x,10 + y,208,34,34 );
gfx.PutPixel( 99 + x,10 + y,208,34,34 );
gfx.PutPixel( 100 + x,10 + y,208,34,34 );
gfx.PutPixel( 101 + x,10 + y,208,34,34 );
gfx.PutPixel( 102 + x,10 + y,208,34,34 );
gfx.PutPixel( 103 + x,10 + y,208,34,34 );
gfx.PutPixel( 104 + x,10 + y,208,34,34 );
gfx.PutPixel( 105 + x,10 + y,208,34,34 );
gfx.PutPixel( 106 + x,10 + y,208,34,34 );
gfx.PutPixel( 107 + x,10 + y,208,34,34 );
gfx.PutPixel( 108 + x,10 + y,208,34,34 );
gfx.PutPixel( 109 + x,10 + y,208,34,34 );
gfx.PutPixel( 110 + x,10 + y,208,34,34 );
gfx.PutPixel( 111 + x,10 + y,208,34,34 );
gfx.PutPixel( 112 + x,10 + y,208,34,34 );
gfx.PutPixel( 113 + x,10 + y,208,34,34 );
gfx.PutPixel( 114 + x,10 + y,208,34,34 );
gfx.PutPixel( 115 + x,10 + y,208,34,34 );
gfx.PutPixel( 116 + x,10 + y,208,34,34 );
gfx.PutPixel( 117 + x,10 + y,208,34,34 );
gfx.PutPixel( 118 + x,10 + y,208,34,34 );
gfx.PutPixel( 119 + x,10 + y,208,34,34 );
gfx.PutPixel( 120 + x,10 + y,208,34,34 );
gfx.PutPixel( 121 + x,10 + y,208,34,34 );
gfx.PutPixel( 122 + x,10 + y,208,34,34 );
gfx.PutPixel( 123 + x,10 + y,208,34,34 );
gfx.PutPixel( 124 + x,10 + y,208,34,34 );
gfx.PutPixel( 125 + x,10 + y,208,34,34 );
gfx.PutPixel( 126 + x,10 + y,208,34,34 );
gfx.PutPixel( 127 + x,10 + y,208,34,34 );
gfx.PutPixel( 128 + x,10 + y,208,34,34 );
gfx.PutPixel( 129 + x,10 + y,208,34,34 );
gfx.PutPixel( 130 + x,10 + y,208,34,34 );
gfx.PutPixel( 131 + x,10 + y,208,34,34 );
gfx.PutPixel( 132 + x,10 + y,208,34,34 );
gfx.PutPixel( 133 + x,10 + y,208,34,34 );
gfx.PutPixel( 134 + x,10 + y,208,34,34 );
gfx.PutPixel( 135 + x,10 + y,208,34,34 );
gfx.PutPixel( 136 + x,10 + y,208,34,34 );
gfx.PutPixel( 137 + x,10 + y,208,34,34 );
gfx.PutPixel( 138 + x,10 + y,208,34,34 );
gfx.PutPixel( 139 + x,10 + y,208,34,34 );
gfx.PutPixel( 140 + x,10 + y,208,34,34 );
gfx.PutPixel( 141 + x,10 + y,208,34,34 );
gfx.PutPixel( 142 + x,10 + y,208,34,34 );
gfx.PutPixel( 143 + x,10 + y,208,34,34 );
gfx.PutPixel( 144 + x,10 + y,208,34,34 );
gfx.PutPixel( 145 + x,10 + y,208,34,34 );
gfx.PutPixel( 146 + x,10 + y,208,34,34 );
gfx.PutPixel( 147 + x,10 + y,208,34,34 );
gfx.PutPixel( 148 + x,10 + y,208,34,34 );
gfx.PutPixel( 149 + x,10 + y,208,34,34 );
gfx.PutPixel( 0 + x,11 + y,208,34,34 );
gfx.PutPixel( 1 + x,11 + y,208,34,34 );
gfx.PutPixel( 2 + x,11 + y,208,34,34 );
gfx.PutPixel( 3 + x,11 + y,208,34,34 );
gfx.PutPixel( 4 + x,11 + y,208,34,34 );
gfx.PutPixel( 5 + x,11 + y,208,34,34 );
gfx.PutPixel( 6 + x,11 + y,208,34,34 );
gfx.PutPixel( 7 + x,11 + y,208,34,34 );
gfx.PutPixel( 8 + x,11 + y,208,34,34 );
gfx.PutPixel( 9 + x,11 + y,208,34,34 );
gfx.PutPixel( 10 + x,11 + y,208,34,34 );
gfx.PutPixel( 11 + x,11 + y,208,34,34 );
gfx.PutPixel( 12 + x,11 + y,208,34,34 );
gfx.PutPixel( 13 + x,11 + y,208,34,34 );
gfx.PutPixel( 14 + x,11 + y,208,34,34 );
gfx.PutPixel( 15 + x,11 + y,208,34,34 );
gfx.PutPixel( 16 + x,11 + y,208,34,34 );
gfx.PutPixel( 17 + x,11 + y,208,34,34 );
gfx.PutPixel( 18 + x,11 + y,208,34,34 );
gfx.PutPixel( 19 + x,11 + y,208,34,34 );
gfx.PutPixel( 20 + x,11 + y,208,34,34 );
gfx.PutPixel( 21 + x,11 + y,208,34,34 );
gfx.PutPixel( 22 + x,11 + y,208,34,34 );
gfx.PutPixel( 23 + x,11 + y,208,34,34 );
gfx.PutPixel( 24 + x,11 + y,208,34,34 );
gfx.PutPixel( 25 + x,11 + y,208,34,34 );
gfx.PutPixel( 26 + x,11 + y,208,34,34 );
gfx.PutPixel( 27 + x,11 + y,208,34,34 );
gfx.PutPixel( 28 + x,11 + y,208,34,34 );
gfx.PutPixel( 29 + x,11 + y,208,34,34 );
gfx.PutPixel( 30 + x,11 + y,208,34,34 );
gfx.PutPixel( 31 + x,11 + y,208,34,34 );
gfx.PutPixel( 32 + x,11 + y,208,34,34 );
gfx.PutPixel( 33 + x,11 + y,208,34,34 );
gfx.PutPixel( 34 + x,11 + y,208,34,34 );
gfx.PutPixel( 35 + x,11 + y,208,34,34 );
gfx.PutPixel( 36 + x,11 + y,208,34,34 );
gfx.PutPixel( 37 + x,11 + y,208,34,34 );
gfx.PutPixel( 38 + x,11 + y,208,34,34 );
gfx.PutPixel( 39 + x,11 + y,208,34,34 );
gfx.PutPixel( 40 + x,11 + y,208,34,34 );
gfx.PutPixel( 41 + x,11 + y,208,34,34 );
gfx.PutPixel( 42 + x,11 + y,208,34,34 );
gfx.PutPixel( 43 + x,11 + y,208,34,34 );
gfx.PutPixel( 44 + x,11 + y,208,34,34 );
gfx.PutPixel( 45 + x,11 + y,208,34,34 );
gfx.PutPixel( 46 + x,11 + y,208,34,34 );
gfx.PutPixel( 47 + x,11 + y,208,34,34 );
gfx.PutPixel( 48 + x,11 + y,208,34,34 );
gfx.PutPixel( 49 + x,11 + y,208,34,34 );
gfx.PutPixel( 50 + x,11 + y,208,34,34 );
gfx.PutPixel( 51 + x,11 + y,208,34,34 );
gfx.PutPixel( 52 + x,11 + y,208,34,34 );
gfx.PutPixel( 53 + x,11 + y,208,34,34 );
gfx.PutPixel( 54 + x,11 + y,208,34,34 );
gfx.PutPixel( 55 + x,11 + y,208,34,34 );
gfx.PutPixel( 56 + x,11 + y,208,34,34 );
gfx.PutPixel( 57 + x,11 + y,208,34,34 );
gfx.PutPixel( 58 + x,11 + y,208,34,34 );
gfx.PutPixel( 59 + x,11 + y,208,34,34 );
gfx.PutPixel( 60 + x,11 + y,208,34,34 );
gfx.PutPixel( 61 + x,11 + y,208,34,34 );
gfx.PutPixel( 62 + x,11 + y,208,34,34 );
gfx.PutPixel( 63 + x,11 + y,208,34,34 );
gfx.PutPixel( 64 + x,11 + y,208,34,34 );
gfx.PutPixel( 65 + x,11 + y,208,34,34 );
gfx.PutPixel( 66 + x,11 + y,208,33,33 );
gfx.PutPixel( 67 + x,11 + y,208,34,34 );
gfx.PutPixel( 68 + x,11 + y,208,27,27 );
gfx.PutPixel( 69 + x,11 + y,207,23,23 );
gfx.PutPixel( 70 + x,11 + y,209,55,55 );
gfx.PutPixel( 71 + x,11 + y,212,82,82 );
gfx.PutPixel( 72 + x,11 + y,211,72,72 );
gfx.PutPixel( 73 + x,11 + y,218,179,179 );
gfx.PutPixel( 74 + x,11 + y,215,138,138 );
gfx.PutPixel( 75 + x,11 + y,216,144,144 );
gfx.PutPixel( 76 + x,11 + y,217,165,165 );
gfx.PutPixel( 77 + x,11 + y,209,50,50 );
gfx.PutPixel( 78 + x,11 + y,211,71,71 );
gfx.PutPixel( 79 + x,11 + y,208,31,31 );
gfx.PutPixel( 80 + x,11 + y,207,23,23 );
gfx.PutPixel( 81 + x,11 + y,208,30,30 );
gfx.PutPixel( 82 + x,11 + y,208,34,34 );
gfx.PutPixel( 83 + x,11 + y,208,34,34 );
gfx.PutPixel( 84 + x,11 + y,208,34,34 );
gfx.PutPixel( 85 + x,11 + y,208,34,34 );
gfx.PutPixel( 86 + x,11 + y,208,34,34 );
gfx.PutPixel( 87 + x,11 + y,208,34,34 );
gfx.PutPixel( 88 + x,11 + y,208,34,34 );
gfx.PutPixel( 89 + x,11 + y,208,34,34 );
gfx.PutPixel( 90 + x,11 + y,208,34,34 );
gfx.PutPixel( 91 + x,11 + y,208,34,34 );
gfx.PutPixel( 92 + x,11 + y,208,34,34 );
gfx.PutPixel( 93 + x,11 + y,208,34,34 );
gfx.PutPixel( 94 + x,11 + y,208,34,34 );
gfx.PutPixel( 95 + x,11 + y,208,34,34 );
gfx.PutPixel( 96 + x,11 + y,208,34,34 );
gfx.PutPixel( 97 + x,11 + y,208,34,34 );
gfx.PutPixel( 98 + x,11 + y,208,34,34 );
gfx.PutPixel( 99 + x,11 + y,208,34,34 );
gfx.PutPixel( 100 + x,11 + y,208,34,34 );
gfx.PutPixel( 101 + x,11 + y,208,34,34 );
gfx.PutPixel( 102 + x,11 + y,208,34,34 );
gfx.PutPixel( 103 + x,11 + y,208,34,34 );
gfx.PutPixel( 104 + x,11 + y,208,34,34 );
gfx.PutPixel( 105 + x,11 + y,208,34,34 );
gfx.PutPixel( 106 + x,11 + y,208,34,34 );
gfx.PutPixel( 107 + x,11 + y,208,34,34 );
gfx.PutPixel( 108 + x,11 + y,208,34,34 );
gfx.PutPixel( 109 + x,11 + y,208,34,34 );
gfx.PutPixel( 110 + x,11 + y,208,34,34 );
gfx.PutPixel( 111 + x,11 + y,208,34,34 );
gfx.PutPixel( 112 + x,11 + y,208,34,34 );
gfx.PutPixel( 113 + x,11 + y,208,34,34 );
gfx.PutPixel( 114 + x,11 + y,208,34,34 );
gfx.PutPixel( 115 + x,11 + y,208,34,34 );
gfx.PutPixel( 116 + x,11 + y,208,34,34 );
gfx.PutPixel( 117 + x,11 + y,208,34,34 );
gfx.PutPixel( 118 + x,11 + y,208,34,34 );
gfx.PutPixel( 119 + x,11 + y,208,34,34 );
gfx.PutPixel( 120 + x,11 + y,208,34,34 );
gfx.PutPixel( 121 + x,11 + y,208,34,34 );
gfx.PutPixel( 122 + x,11 + y,208,34,34 );
gfx.PutPixel( 123 + x,11 + y,208,34,34 );
gfx.PutPixel( 124 + x,11 + y,208,34,34 );
gfx.PutPixel( 125 + x,11 + y,208,34,34 );
gfx.PutPixel( 126 + x,11 + y,208,34,34 );
gfx.PutPixel( 127 + x,11 + y,208,34,34 );
gfx.PutPixel( 128 + x,11 + y,208,34,34 );
gfx.PutPixel( 129 + x,11 + y,208,34,34 );
gfx.PutPixel( 130 + x,11 + y,208,34,34 );
gfx.PutPixel( 131 + x,11 + y,208,34,34 );
gfx.PutPixel( 132 + x,11 + y,208,34,34 );
gfx.PutPixel( 133 + x,11 + y,208,34,34 );
gfx.PutPixel( 134 + x,11 + y,208,34,34 );
gfx.PutPixel( 135 + x,11 + y,208,34,34 );
gfx.PutPixel( 136 + x,11 + y,208,34,34 );
gfx.PutPixel( 137 + x,11 + y,208,34,34 );
gfx.PutPixel( 138 + x,11 + y,208,34,34 );
gfx.PutPixel( 139 + x,11 + y,208,34,34 );
gfx.PutPixel( 140 + x,11 + y,208,34,34 );
gfx.PutPixel( 141 + x,11 + y,208,34,34 );
gfx.PutPixel( 142 + x,11 + y,208,34,34 );
gfx.PutPixel( 143 + x,11 + y,208,34,34 );
gfx.PutPixel( 144 + x,11 + y,208,34,34 );
gfx.PutPixel( 145 + x,11 + y,208,34,34 );
gfx.PutPixel( 146 + x,11 + y,208,34,34 );
gfx.PutPixel( 147 + x,11 + y,208,34,34 );
gfx.PutPixel( 148 + x,11 + y,208,34,34 );
gfx.PutPixel( 149 + x,11 + y,208,34,34 );
gfx.PutPixel( 0 + x,12 + y,208,34,34 );
gfx.PutPixel( 1 + x,12 + y,208,34,34 );
gfx.PutPixel( 2 + x,12 + y,208,34,34 );
gfx.PutPixel( 3 + x,12 + y,208,34,34 );
gfx.PutPixel( 4 + x,12 + y,208,34,34 );
gfx.PutPixel( 5 + x,12 + y,208,34,34 );
gfx.PutPixel( 6 + x,12 + y,208,34,34 );
gfx.PutPixel( 7 + x,12 + y,208,34,34 );
gfx.PutPixel( 8 + x,12 + y,208,34,34 );
gfx.PutPixel( 9 + x,12 + y,208,34,34 );
gfx.PutPixel( 10 + x,12 + y,208,34,34 );
gfx.PutPixel( 11 + x,12 + y,208,34,34 );
gfx.PutPixel( 12 + x,12 + y,208,34,34 );
gfx.PutPixel( 13 + x,12 + y,208,34,34 );
gfx.PutPixel( 14 + x,12 + y,208,34,34 );
gfx.PutPixel( 15 + x,12 + y,208,34,34 );
gfx.PutPixel( 16 + x,12 + y,208,34,34 );
gfx.PutPixel( 17 + x,12 + y,208,34,34 );
gfx.PutPixel( 18 + x,12 + y,208,34,34 );
gfx.PutPixel( 19 + x,12 + y,208,34,34 );
gfx.PutPixel( 20 + x,12 + y,208,34,34 );
gfx.PutPixel( 21 + x,12 + y,208,34,34 );
gfx.PutPixel( 22 + x,12 + y,208,34,34 );
gfx.PutPixel( 23 + x,12 + y,208,34,34 );
gfx.PutPixel( 24 + x,12 + y,208,34,34 );
gfx.PutPixel( 25 + x,12 + y,208,34,34 );
gfx.PutPixel( 26 + x,12 + y,208,34,34 );
gfx.PutPixel( 27 + x,12 + y,208,34,34 );
gfx.PutPixel( 28 + x,12 + y,208,34,34 );
gfx.PutPixel( 29 + x,12 + y,208,34,34 );
gfx.PutPixel( 30 + x,12 + y,208,34,34 );
gfx.PutPixel( 31 + x,12 + y,208,34,34 );
gfx.PutPixel( 32 + x,12 + y,208,34,34 );
gfx.PutPixel( 33 + x,12 + y,208,34,34 );
gfx.PutPixel( 34 + x,12 + y,208,34,34 );
gfx.PutPixel( 35 + x,12 + y,208,34,34 );
gfx.PutPixel( 36 + x,12 + y,208,34,34 );
gfx.PutPixel( 37 + x,12 + y,208,34,34 );
gfx.PutPixel( 38 + x,12 + y,208,34,34 );
gfx.PutPixel( 39 + x,12 + y,208,34,34 );
gfx.PutPixel( 40 + x,12 + y,208,34,34 );
gfx.PutPixel( 41 + x,12 + y,208,34,34 );
gfx.PutPixel( 42 + x,12 + y,208,34,34 );
gfx.PutPixel( 43 + x,12 + y,208,34,34 );
gfx.PutPixel( 44 + x,12 + y,208,34,34 );
gfx.PutPixel( 45 + x,12 + y,208,34,34 );
gfx.PutPixel( 46 + x,12 + y,208,34,34 );
gfx.PutPixel( 47 + x,12 + y,208,34,34 );
gfx.PutPixel( 48 + x,12 + y,208,34,34 );
gfx.PutPixel( 49 + x,12 + y,208,34,34 );
gfx.PutPixel( 50 + x,12 + y,208,34,34 );
gfx.PutPixel( 51 + x,12 + y,208,34,34 );
gfx.PutPixel( 52 + x,12 + y,208,34,34 );
gfx.PutPixel( 53 + x,12 + y,208,34,34 );
gfx.PutPixel( 54 + x,12 + y,208,34,34 );
gfx.PutPixel( 55 + x,12 + y,208,34,34 );
gfx.PutPixel( 56 + x,12 + y,208,34,34 );
gfx.PutPixel( 57 + x,12 + y,208,34,34 );
gfx.PutPixel( 58 + x,12 + y,208,34,34 );
gfx.PutPixel( 59 + x,12 + y,208,34,34 );
gfx.PutPixel( 60 + x,12 + y,208,34,34 );
gfx.PutPixel( 61 + x,12 + y,208,34,34 );
gfx.PutPixel( 62 + x,12 + y,208,34,34 );
gfx.PutPixel( 63 + x,12 + y,208,34,34 );
gfx.PutPixel( 64 + x,12 + y,208,34,34 );
gfx.PutPixel( 65 + x,12 + y,208,33,33 );
gfx.PutPixel( 66 + x,12 + y,208,30,30 );
gfx.PutPixel( 67 + x,12 + y,208,25,25 );
gfx.PutPixel( 68 + x,12 + y,214,122,122 );
gfx.PutPixel( 69 + x,12 + y,214,123,123 );
gfx.PutPixel( 70 + x,12 + y,214,127,127 );
gfx.PutPixel( 71 + x,12 + y,221,227,227 );
gfx.PutPixel( 72 + x,12 + y,210,58,58 );
gfx.PutPixel( 73 + x,12 + y,217,156,156 );
gfx.PutPixel( 74 + x,12 + y,214,114,114 );
gfx.PutPixel( 75 + x,12 + y,215,143,143 );
gfx.PutPixel( 76 + x,12 + y,213,111,111 );
gfx.PutPixel( 77 + x,12 + y,215,131,131 );
gfx.PutPixel( 78 + x,12 + y,221,218,218 );
gfx.PutPixel( 79 + x,12 + y,210,62,62 );
gfx.PutPixel( 80 + x,12 + y,215,133,133 );
gfx.PutPixel( 81 + x,12 + y,210,67,67 );
gfx.PutPixel( 82 + x,12 + y,207,21,21 );
gfx.PutPixel( 83 + x,12 + y,208,29,29 );
gfx.PutPixel( 84 + x,12 + y,208,34,34 );
gfx.PutPixel( 85 + x,12 + y,208,34,34 );
gfx.PutPixel( 86 + x,12 + y,208,34,34 );
gfx.PutPixel( 87 + x,12 + y,208,34,34 );
gfx.PutPixel( 88 + x,12 + y,208,34,34 );
gfx.PutPixel( 89 + x,12 + y,208,34,34 );
gfx.PutPixel( 90 + x,12 + y,208,34,34 );
gfx.PutPixel( 91 + x,12 + y,208,34,34 );
gfx.PutPixel( 92 + x,12 + y,208,34,34 );
gfx.PutPixel( 93 + x,12 + y,208,34,34 );
gfx.PutPixel( 94 + x,12 + y,208,34,34 );
gfx.PutPixel( 95 + x,12 + y,208,34,34 );
gfx.PutPixel( 96 + x,12 + y,208,34,34 );
gfx.PutPixel( 97 + x,12 + y,208,34,34 );
gfx.PutPixel( 98 + x,12 + y,208,34,34 );
gfx.PutPixel( 99 + x,12 + y,208,34,34 );
gfx.PutPixel( 100 + x,12 + y,208,34,34 );
gfx.PutPixel( 101 + x,12 + y,208,34,34 );
gfx.PutPixel( 102 + x,12 + y,208,34,34 );
gfx.PutPixel( 103 + x,12 + y,208,34,34 );
gfx.PutPixel( 104 + x,12 + y,208,34,34 );
gfx.PutPixel( 105 + x,12 + y,208,34,34 );
gfx.PutPixel( 106 + x,12 + y,208,34,34 );
gfx.PutPixel( 107 + x,12 + y,208,34,34 );
gfx.PutPixel( 108 + x,12 + y,208,34,34 );
gfx.PutPixel( 109 + x,12 + y,208,34,34 );
gfx.PutPixel( 110 + x,12 + y,208,34,34 );
gfx.PutPixel( 111 + x,12 + y,208,34,34 );
gfx.PutPixel( 112 + x,12 + y,208,34,34 );
gfx.PutPixel( 113 + x,12 + y,208,34,34 );
gfx.PutPixel( 114 + x,12 + y,208,34,34 );
gfx.PutPixel( 115 + x,12 + y,208,34,34 );
gfx.PutPixel( 116 + x,12 + y,208,34,34 );
gfx.PutPixel( 117 + x,12 + y,208,34,34 );
gfx.PutPixel( 118 + x,12 + y,208,34,34 );
gfx.PutPixel( 119 + x,12 + y,208,34,34 );
gfx.PutPixel( 120 + x,12 + y,208,34,34 );
gfx.PutPixel( 121 + x,12 + y,208,34,34 );
gfx.PutPixel( 122 + x,12 + y,208,34,34 );
gfx.PutPixel( 123 + x,12 + y,208,34,34 );
gfx.PutPixel( 124 + x,12 + y,208,34,34 );
gfx.PutPixel( 125 + x,12 + y,208,34,34 );
gfx.PutPixel( 126 + x,12 + y,208,34,34 );
gfx.PutPixel( 127 + x,12 + y,208,34,34 );
gfx.PutPixel( 128 + x,12 + y,208,34,34 );
gfx.PutPixel( 129 + x,12 + y,208,34,34 );
gfx.PutPixel( 130 + x,12 + y,208,34,34 );
gfx.PutPixel( 131 + x,12 + y,208,34,34 );
gfx.PutPixel( 132 + x,12 + y,208,34,34 );
gfx.PutPixel( 133 + x,12 + y,208,34,34 );
gfx.PutPixel( 134 + x,12 + y,208,34,34 );
gfx.PutPixel( 135 + x,12 + y,208,34,34 );
gfx.PutPixel( 136 + x,12 + y,208,34,34 );
gfx.PutPixel( 137 + x,12 + y,208,34,34 );
gfx.PutPixel( 138 + x,12 + y,208,34,34 );
gfx.PutPixel( 139 + x,12 + y,208,34,34 );
gfx.PutPixel( 140 + x,12 + y,208,34,34 );
gfx.PutPixel( 141 + x,12 + y,208,34,34 );
gfx.PutPixel( 142 + x,12 + y,208,34,34 );
gfx.PutPixel( 143 + x,12 + y,208,34,34 );
gfx.PutPixel( 144 + x,12 + y,208,34,34 );
gfx.PutPixel( 145 + x,12 + y,208,34,34 );
gfx.PutPixel( 146 + x,12 + y,208,34,34 );
gfx.PutPixel( 147 + x,12 + y,208,34,34 );
gfx.PutPixel( 148 + x,12 + y,208,34,34 );
gfx.PutPixel( 149 + x,12 + y,208,34,34 );
gfx.PutPixel( 0 + x,13 + y,208,34,34 );
gfx.PutPixel( 1 + x,13 + y,208,34,34 );
gfx.PutPixel( 2 + x,13 + y,208,34,34 );
gfx.PutPixel( 3 + x,13 + y,208,34,34 );
gfx.PutPixel( 4 + x,13 + y,208,34,34 );
gfx.PutPixel( 5 + x,13 + y,208,34,34 );
gfx.PutPixel( 6 + x,13 + y,208,34,34 );
gfx.PutPixel( 7 + x,13 + y,208,34,34 );
gfx.PutPixel( 8 + x,13 + y,208,34,34 );
gfx.PutPixel( 9 + x,13 + y,208,34,34 );
gfx.PutPixel( 10 + x,13 + y,208,34,34 );
gfx.PutPixel( 11 + x,13 + y,208,34,34 );
gfx.PutPixel( 12 + x,13 + y,208,34,34 );
gfx.PutPixel( 13 + x,13 + y,208,34,34 );
gfx.PutPixel( 14 + x,13 + y,208,34,34 );
gfx.PutPixel( 15 + x,13 + y,208,34,34 );
gfx.PutPixel( 16 + x,13 + y,208,34,34 );
gfx.PutPixel( 17 + x,13 + y,208,34,34 );
gfx.PutPixel( 18 + x,13 + y,208,34,34 );
gfx.PutPixel( 19 + x,13 + y,208,34,34 );
gfx.PutPixel( 20 + x,13 + y,208,34,34 );
gfx.PutPixel( 21 + x,13 + y,208,34,34 );
gfx.PutPixel( 22 + x,13 + y,208,34,34 );
gfx.PutPixel( 23 + x,13 + y,208,34,34 );
gfx.PutPixel( 24 + x,13 + y,208,34,34 );
gfx.PutPixel( 25 + x,13 + y,208,34,34 );
gfx.PutPixel( 26 + x,13 + y,208,34,34 );
gfx.PutPixel( 27 + x,13 + y,208,34,34 );
gfx.PutPixel( 28 + x,13 + y,208,34,34 );
gfx.PutPixel( 29 + x,13 + y,208,34,34 );
gfx.PutPixel( 30 + x,13 + y,208,34,34 );
gfx.PutPixel( 31 + x,13 + y,208,34,34 );
gfx.PutPixel( 32 + x,13 + y,208,34,34 );
gfx.PutPixel( 33 + x,13 + y,208,34,34 );
gfx.PutPixel( 34 + x,13 + y,208,34,34 );
gfx.PutPixel( 35 + x,13 + y,208,34,34 );
gfx.PutPixel( 36 + x,13 + y,208,34,34 );
gfx.PutPixel( 37 + x,13 + y,208,34,34 );
gfx.PutPixel( 38 + x,13 + y,208,34,34 );
gfx.PutPixel( 39 + x,13 + y,208,34,34 );
gfx.PutPixel( 40 + x,13 + y,208,34,34 );
gfx.PutPixel( 41 + x,13 + y,208,34,34 );
gfx.PutPixel( 42 + x,13 + y,208,34,34 );
gfx.PutPixel( 43 + x,13 + y,208,34,34 );
gfx.PutPixel( 44 + x,13 + y,208,34,34 );
gfx.PutPixel( 45 + x,13 + y,208,34,34 );
gfx.PutPixel( 46 + x,13 + y,208,34,34 );
gfx.PutPixel( 47 + x,13 + y,208,34,34 );
gfx.PutPixel( 48 + x,13 + y,208,34,34 );
gfx.PutPixel( 49 + x,13 + y,208,34,34 );
gfx.PutPixel( 50 + x,13 + y,208,34,34 );
gfx.PutPixel( 51 + x,13 + y,208,34,34 );
gfx.PutPixel( 52 + x,13 + y,208,34,34 );
gfx.PutPixel( 53 + x,13 + y,208,34,34 );
gfx.PutPixel( 54 + x,13 + y,208,34,34 );
gfx.PutPixel( 55 + x,13 + y,208,34,34 );
gfx.PutPixel( 56 + x,13 + y,208,34,34 );
gfx.PutPixel( 57 + x,13 + y,208,34,34 );
gfx.PutPixel( 58 + x,13 + y,208,34,34 );
gfx.PutPixel( 59 + x,13 + y,208,34,34 );
gfx.PutPixel( 60 + x,13 + y,208,34,34 );
gfx.PutPixel( 61 + x,13 + y,208,34,34 );
gfx.PutPixel( 62 + x,13 + y,208,34,34 );
gfx.PutPixel( 63 + x,13 + y,208,34,34 );
gfx.PutPixel( 64 + x,13 + y,208,29,29 );
gfx.PutPixel( 65 + x,13 + y,208,29,29 );
gfx.PutPixel( 66 + x,13 + y,217,163,163 );
gfx.PutPixel( 67 + x,13 + y,214,120,120 );
gfx.PutPixel( 68 + x,13 + y,215,138,138 );
gfx.PutPixel( 69 + x,13 + y,217,158,158 );
gfx.PutPixel( 70 + x,13 + y,209,55,55 );
gfx.PutPixel( 71 + x,13 + y,214,125,125 );
gfx.PutPixel( 72 + x,13 + y,211,73,73 );
gfx.PutPixel( 73 + x,13 + y,208,37,37 );
gfx.PutPixel( 74 + x,13 + y,215,140,140 );
gfx.PutPixel( 75 + x,13 + y,213,109,109 );
gfx.PutPixel( 76 + x,13 + y,208,31,31 );
gfx.PutPixel( 77 + x,13 + y,214,121,121 );
gfx.PutPixel( 78 + x,13 + y,214,119,119 );
gfx.PutPixel( 79 + x,13 + y,210,60,60 );
gfx.PutPixel( 80 + x,13 + y,220,208,208 );
gfx.PutPixel( 81 + x,13 + y,213,105,105 );
gfx.PutPixel( 82 + x,13 + y,216,143,143 );
gfx.PutPixel( 83 + x,13 + y,212,99,99 );
gfx.PutPixel( 84 + x,13 + y,207,18,18 );
gfx.PutPixel( 85 + x,13 + y,208,31,31 );
gfx.PutPixel( 86 + x,13 + y,208,34,34 );
gfx.PutPixel( 87 + x,13 + y,208,34,34 );
gfx.PutPixel( 88 + x,13 + y,208,34,34 );
gfx.PutPixel( 89 + x,13 + y,208,34,34 );
gfx.PutPixel( 90 + x,13 + y,208,34,34 );
gfx.PutPixel( 91 + x,13 + y,208,34,34 );
gfx.PutPixel( 92 + x,13 + y,208,34,34 );
gfx.PutPixel( 93 + x,13 + y,208,34,34 );
gfx.PutPixel( 94 + x,13 + y,208,34,34 );
gfx.PutPixel( 95 + x,13 + y,208,34,34 );
gfx.PutPixel( 96 + x,13 + y,208,34,34 );
gfx.PutPixel( 97 + x,13 + y,208,34,34 );
gfx.PutPixel( 98 + x,13 + y,208,34,34 );
gfx.PutPixel( 99 + x,13 + y,208,34,34 );
gfx.PutPixel( 100 + x,13 + y,208,34,34 );
gfx.PutPixel( 101 + x,13 + y,208,34,34 );
gfx.PutPixel( 102 + x,13 + y,208,34,34 );
gfx.PutPixel( 103 + x,13 + y,208,34,34 );
gfx.PutPixel( 104 + x,13 + y,208,34,34 );
gfx.PutPixel( 105 + x,13 + y,208,34,34 );
gfx.PutPixel( 106 + x,13 + y,208,34,34 );
gfx.PutPixel( 107 + x,13 + y,208,34,34 );
gfx.PutPixel( 108 + x,13 + y,208,34,34 );
gfx.PutPixel( 109 + x,13 + y,208,34,34 );
gfx.PutPixel( 110 + x,13 + y,208,34,34 );
gfx.PutPixel( 111 + x,13 + y,208,34,34 );
gfx.PutPixel( 112 + x,13 + y,208,34,34 );
gfx.PutPixel( 113 + x,13 + y,208,34,34 );
gfx.PutPixel( 114 + x,13 + y,208,34,34 );
gfx.PutPixel( 115 + x,13 + y,208,34,34 );
gfx.PutPixel( 116 + x,13 + y,208,34,34 );
gfx.PutPixel( 117 + x,13 + y,208,34,34 );
gfx.PutPixel( 118 + x,13 + y,208,34,34 );
gfx.PutPixel( 119 + x,13 + y,208,34,34 );
gfx.PutPixel( 120 + x,13 + y,208,34,34 );
gfx.PutPixel( 121 + x,13 + y,208,34,34 );
gfx.PutPixel( 122 + x,13 + y,208,34,34 );
gfx.PutPixel( 123 + x,13 + y,208,34,34 );
gfx.PutPixel( 124 + x,13 + y,208,34,34 );
gfx.PutPixel( 125 + x,13 + y,208,34,34 );
gfx.PutPixel( 126 + x,13 + y,208,34,34 );
gfx.PutPixel( 127 + x,13 + y,208,34,34 );
gfx.PutPixel( 128 + x,13 + y,208,34,34 );
gfx.PutPixel( 129 + x,13 + y,208,34,34 );
gfx.PutPixel( 130 + x,13 + y,208,34,34 );
gfx.PutPixel( 131 + x,13 + y,208,34,34 );
gfx.PutPixel( 132 + x,13 + y,208,34,34 );
gfx.PutPixel( 133 + x,13 + y,208,34,34 );
gfx.PutPixel( 134 + x,13 + y,208,34,34 );
gfx.PutPixel( 135 + x,13 + y,208,34,34 );
gfx.PutPixel( 136 + x,13 + y,208,34,34 );
gfx.PutPixel( 137 + x,13 + y,208,34,34 );
gfx.PutPixel( 138 + x,13 + y,208,34,34 );
gfx.PutPixel( 139 + x,13 + y,208,34,34 );
gfx.PutPixel( 140 + x,13 + y,208,34,34 );
gfx.PutPixel( 141 + x,13 + y,208,34,34 );
gfx.PutPixel( 142 + x,13 + y,208,34,34 );
gfx.PutPixel( 143 + x,13 + y,208,34,34 );
gfx.PutPixel( 144 + x,13 + y,208,34,34 );
gfx.PutPixel( 145 + x,13 + y,208,34,34 );
gfx.PutPixel( 146 + x,13 + y,208,34,34 );
gfx.PutPixel( 147 + x,13 + y,208,34,34 );
gfx.PutPixel( 148 + x,13 + y,208,34,34 );
gfx.PutPixel( 149 + x,13 + y,208,34,34 );
gfx.PutPixel( 0 + x,14 + y,208,34,34 );
gfx.PutPixel( 1 + x,14 + y,208,34,34 );
gfx.PutPixel( 2 + x,14 + y,208,34,34 );
gfx.PutPixel( 3 + x,14 + y,208,34,34 );
gfx.PutPixel( 4 + x,14 + y,208,34,34 );
gfx.PutPixel( 5 + x,14 + y,208,34,34 );
gfx.PutPixel( 6 + x,14 + y,208,34,34 );
gfx.PutPixel( 7 + x,14 + y,208,34,34 );
gfx.PutPixel( 8 + x,14 + y,208,34,34 );
gfx.PutPixel( 9 + x,14 + y,208,34,34 );
gfx.PutPixel( 10 + x,14 + y,208,34,34 );
gfx.PutPixel( 11 + x,14 + y,208,34,34 );
gfx.PutPixel( 12 + x,14 + y,208,34,34 );
gfx.PutPixel( 13 + x,14 + y,208,34,34 );
gfx.PutPixel( 14 + x,14 + y,208,34,34 );
gfx.PutPixel( 15 + x,14 + y,208,34,34 );
gfx.PutPixel( 16 + x,14 + y,208,34,34 );
gfx.PutPixel( 17 + x,14 + y,208,34,34 );
gfx.PutPixel( 18 + x,14 + y,208,34,34 );
gfx.PutPixel( 19 + x,14 + y,208,34,34 );
gfx.PutPixel( 20 + x,14 + y,208,34,34 );
gfx.PutPixel( 21 + x,14 + y,208,34,34 );
gfx.PutPixel( 22 + x,14 + y,208,34,34 );
gfx.PutPixel( 23 + x,14 + y,208,34,34 );
gfx.PutPixel( 24 + x,14 + y,208,34,34 );
gfx.PutPixel( 25 + x,14 + y,208,34,34 );
gfx.PutPixel( 26 + x,14 + y,208,34,34 );
gfx.PutPixel( 27 + x,14 + y,208,34,34 );
gfx.PutPixel( 28 + x,14 + y,208,34,34 );
gfx.PutPixel( 29 + x,14 + y,208,34,34 );
gfx.PutPixel( 30 + x,14 + y,208,34,34 );
gfx.PutPixel( 31 + x,14 + y,208,34,34 );
gfx.PutPixel( 32 + x,14 + y,208,34,34 );
gfx.PutPixel( 33 + x,14 + y,208,34,34 );
gfx.PutPixel( 34 + x,14 + y,208,34,34 );
gfx.PutPixel( 35 + x,14 + y,208,34,34 );
gfx.PutPixel( 36 + x,14 + y,208,34,34 );
gfx.PutPixel( 37 + x,14 + y,208,34,34 );
gfx.PutPixel( 38 + x,14 + y,208,34,34 );
gfx.PutPixel( 39 + x,14 + y,208,34,34 );
gfx.PutPixel( 40 + x,14 + y,208,34,34 );
gfx.PutPixel( 41 + x,14 + y,208,34,34 );
gfx.PutPixel( 42 + x,14 + y,208,34,34 );
gfx.PutPixel( 43 + x,14 + y,208,34,34 );
gfx.PutPixel( 44 + x,14 + y,208,34,34 );
gfx.PutPixel( 45 + x,14 + y,208,34,34 );
gfx.PutPixel( 46 + x,14 + y,208,34,34 );
gfx.PutPixel( 47 + x,14 + y,208,34,34 );
gfx.PutPixel( 48 + x,14 + y,208,34,34 );
gfx.PutPixel( 49 + x,14 + y,208,34,34 );
gfx.PutPixel( 50 + x,14 + y,208,34,34 );
gfx.PutPixel( 51 + x,14 + y,208,34,34 );
gfx.PutPixel( 52 + x,14 + y,208,34,34 );
gfx.PutPixel( 53 + x,14 + y,208,34,34 );
gfx.PutPixel( 54 + x,14 + y,208,34,34 );
gfx.PutPixel( 55 + x,14 + y,208,34,34 );
gfx.PutPixel( 56 + x,14 + y,208,34,34 );
gfx.PutPixel( 57 + x,14 + y,208,34,34 );
gfx.PutPixel( 58 + x,14 + y,208,34,34 );
gfx.PutPixel( 59 + x,14 + y,208,34,34 );
gfx.PutPixel( 60 + x,14 + y,208,34,34 );
gfx.PutPixel( 61 + x,14 + y,208,34,34 );
gfx.PutPixel( 62 + x,14 + y,208,31,31 );
gfx.PutPixel( 63 + x,14 + y,207,18,18 );
gfx.PutPixel( 64 + x,14 + y,214,126,126 );
gfx.PutPixel( 65 + x,14 + y,215,142,142 );
gfx.PutPixel( 66 + x,14 + y,215,130,130 );
gfx.PutPixel( 67 + x,14 + y,213,114,114 );
gfx.PutPixel( 68 + x,14 + y,210,69,69 );
gfx.PutPixel( 69 + x,14 + y,214,124,124 );
gfx.PutPixel( 70 + x,14 + y,215,139,139 );
gfx.PutPixel( 71 + x,14 + y,215,129,129 );
gfx.PutPixel( 72 + x,14 + y,218,171,171 );
gfx.PutPixel( 73 + x,14 + y,209,45,45 );
gfx.PutPixel( 74 + x,14 + y,219,188,188 );
gfx.PutPixel( 75 + x,14 + y,215,126,126 );
gfx.PutPixel( 76 + x,14 + y,211,77,77 );
gfx.PutPixel( 77 + x,14 + y,217,166,166 );
gfx.PutPixel( 78 + x,14 + y,214,127,127 );
gfx.PutPixel( 79 + x,14 + y,216,143,143 );
gfx.PutPixel( 80 + x,14 + y,214,121,121 );
gfx.PutPixel( 81 + x,14 + y,210,63,63 );
gfx.PutPixel( 82 + x,14 + y,217,164,164 );
gfx.PutPixel( 83 + x,14 + y,214,123,123 );
gfx.PutPixel( 84 + x,14 + y,216,146,146 );
gfx.PutPixel( 85 + x,14 + y,210,66,66 );
gfx.PutPixel( 86 + x,14 + y,207,19,19 );
gfx.PutPixel( 87 + x,14 + y,208,33,33 );
gfx.PutPixel( 88 + x,14 + y,208,34,34 );
gfx.PutPixel( 89 + x,14 + y,208,34,34 );
gfx.PutPixel( 90 + x,14 + y,208,34,34 );
gfx.PutPixel( 91 + x,14 + y,208,34,34 );
gfx.PutPixel( 92 + x,14 + y,208,34,34 );
gfx.PutPixel( 93 + x,14 + y,208,34,34 );
gfx.PutPixel( 94 + x,14 + y,208,34,34 );
gfx.PutPixel( 95 + x,14 + y,208,34,34 );
gfx.PutPixel( 96 + x,14 + y,208,34,34 );
gfx.PutPixel( 97 + x,14 + y,208,34,34 );
gfx.PutPixel( 98 + x,14 + y,208,34,34 );
gfx.PutPixel( 99 + x,14 + y,208,34,34 );
gfx.PutPixel( 100 + x,14 + y,208,34,34 );
gfx.PutPixel( 101 + x,14 + y,208,34,34 );
gfx.PutPixel( 102 + x,14 + y,208,34,34 );
gfx.PutPixel( 103 + x,14 + y,208,34,34 );
gfx.PutPixel( 104 + x,14 + y,208,34,34 );
gfx.PutPixel( 105 + x,14 + y,208,34,34 );
gfx.PutPixel( 106 + x,14 + y,208,34,34 );
gfx.PutPixel( 107 + x,14 + y,208,34,34 );
gfx.PutPixel( 108 + x,14 + y,208,34,34 );
gfx.PutPixel( 109 + x,14 + y,208,34,34 );
gfx.PutPixel( 110 + x,14 + y,208,34,34 );
gfx.PutPixel( 111 + x,14 + y,208,34,34 );
gfx.PutPixel( 112 + x,14 + y,208,34,34 );
gfx.PutPixel( 113 + x,14 + y,208,34,34 );
gfx.PutPixel( 114 + x,14 + y,208,34,34 );
gfx.PutPixel( 115 + x,14 + y,208,34,34 );
gfx.PutPixel( 116 + x,14 + y,208,34,34 );
gfx.PutPixel( 117 + x,14 + y,208,34,34 );
gfx.PutPixel( 118 + x,14 + y,208,34,34 );
gfx.PutPixel( 119 + x,14 + y,208,34,34 );
gfx.PutPixel( 120 + x,14 + y,208,34,34 );
gfx.PutPixel( 121 + x,14 + y,208,34,34 );
gfx.PutPixel( 122 + x,14 + y,208,34,34 );
gfx.PutPixel( 123 + x,14 + y,208,34,34 );
gfx.PutPixel( 124 + x,14 + y,208,34,34 );
gfx.PutPixel( 125 + x,14 + y,208,34,34 );
gfx.PutPixel( 126 + x,14 + y,208,34,34 );
gfx.PutPixel( 127 + x,14 + y,208,34,34 );
gfx.PutPixel( 128 + x,14 + y,208,34,34 );
gfx.PutPixel( 129 + x,14 + y,208,34,34 );
gfx.PutPixel( 130 + x,14 + y,208,34,34 );
gfx.PutPixel( 131 + x,14 + y,208,34,34 );
gfx.PutPixel( 132 + x,14 + y,208,34,34 );
gfx.PutPixel( 133 + x,14 + y,208,34,34 );
gfx.PutPixel( 134 + x,14 + y,208,34,34 );
gfx.PutPixel( 135 + x,14 + y,208,34,34 );
gfx.PutPixel( 136 + x,14 + y,208,34,34 );
gfx.PutPixel( 137 + x,14 + y,208,34,34 );
gfx.PutPixel( 138 + x,14 + y,208,34,34 );
gfx.PutPixel( 139 + x,14 + y,208,34,34 );
gfx.PutPixel( 140 + x,14 + y,208,34,34 );
gfx.PutPixel( 141 + x,14 + y,208,34,34 );
gfx.PutPixel( 142 + x,14 + y,208,34,34 );
gfx.PutPixel( 143 + x,14 + y,208,34,34 );
gfx.PutPixel( 144 + x,14 + y,208,34,34 );
gfx.PutPixel( 145 + x,14 + y,208,34,34 );
gfx.PutPixel( 146 + x,14 + y,208,34,34 );
gfx.PutPixel( 147 + x,14 + y,208,34,34 );
gfx.PutPixel( 148 + x,14 + y,208,34,34 );
gfx.PutPixel( 149 + x,14 + y,208,34,34 );
gfx.PutPixel( 0 + x,15 + y,208,34,34 );
gfx.PutPixel( 1 + x,15 + y,208,34,34 );
gfx.PutPixel( 2 + x,15 + y,208,34,34 );
gfx.PutPixel( 3 + x,15 + y,208,34,34 );
gfx.PutPixel( 4 + x,15 + y,208,34,34 );
gfx.PutPixel( 5 + x,15 + y,208,34,34 );
gfx.PutPixel( 6 + x,15 + y,208,34,34 );
gfx.PutPixel( 7 + x,15 + y,208,34,34 );
gfx.PutPixel( 8 + x,15 + y,208,34,34 );
gfx.PutPixel( 9 + x,15 + y,208,34,34 );
gfx.PutPixel( 10 + x,15 + y,208,34,34 );
gfx.PutPixel( 11 + x,15 + y,208,34,34 );
gfx.PutPixel( 12 + x,15 + y,208,34,34 );
gfx.PutPixel( 13 + x,15 + y,208,34,34 );
gfx.PutPixel( 14 + x,15 + y,208,34,34 );
gfx.PutPixel( 15 + x,15 + y,208,34,34 );
gfx.PutPixel( 16 + x,15 + y,208,34,34 );
gfx.PutPixel( 17 + x,15 + y,208,34,34 );
gfx.PutPixel( 18 + x,15 + y,208,34,34 );
gfx.PutPixel( 19 + x,15 + y,208,34,34 );
gfx.PutPixel( 20 + x,15 + y,208,34,34 );
gfx.PutPixel( 21 + x,15 + y,208,34,34 );
gfx.PutPixel( 22 + x,15 + y,208,34,34 );
gfx.PutPixel( 23 + x,15 + y,208,34,34 );
gfx.PutPixel( 24 + x,15 + y,208,34,34 );
gfx.PutPixel( 25 + x,15 + y,208,34,34 );
gfx.PutPixel( 26 + x,15 + y,208,34,34 );
gfx.PutPixel( 27 + x,15 + y,208,34,34 );
gfx.PutPixel( 28 + x,15 + y,208,34,34 );
gfx.PutPixel( 29 + x,15 + y,208,34,34 );
gfx.PutPixel( 30 + x,15 + y,208,34,34 );
gfx.PutPixel( 31 + x,15 + y,208,34,34 );
gfx.PutPixel( 32 + x,15 + y,208,34,34 );
gfx.PutPixel( 33 + x,15 + y,208,34,34 );
gfx.PutPixel( 34 + x,15 + y,208,34,34 );
gfx.PutPixel( 35 + x,15 + y,208,34,34 );
gfx.PutPixel( 36 + x,15 + y,208,34,34 );
gfx.PutPixel( 37 + x,15 + y,208,34,34 );
gfx.PutPixel( 38 + x,15 + y,208,34,34 );
gfx.PutPixel( 39 + x,15 + y,208,34,34 );
gfx.PutPixel( 40 + x,15 + y,208,34,34 );
gfx.PutPixel( 41 + x,15 + y,208,34,34 );
gfx.PutPixel( 42 + x,15 + y,208,34,34 );
gfx.PutPixel( 43 + x,15 + y,208,34,34 );
gfx.PutPixel( 44 + x,15 + y,208,34,34 );
gfx.PutPixel( 45 + x,15 + y,208,34,34 );
gfx.PutPixel( 46 + x,15 + y,208,34,34 );
gfx.PutPixel( 47 + x,15 + y,208,34,34 );
gfx.PutPixel( 48 + x,15 + y,208,34,34 );
gfx.PutPixel( 49 + x,15 + y,208,34,34 );
gfx.PutPixel( 50 + x,15 + y,208,34,34 );
gfx.PutPixel( 51 + x,15 + y,208,34,34 );
gfx.PutPixel( 52 + x,15 + y,208,34,34 );
gfx.PutPixel( 53 + x,15 + y,208,34,34 );
gfx.PutPixel( 54 + x,15 + y,208,34,34 );
gfx.PutPixel( 55 + x,15 + y,208,34,34 );
gfx.PutPixel( 56 + x,15 + y,208,34,34 );
gfx.PutPixel( 57 + x,15 + y,208,34,34 );
gfx.PutPixel( 58 + x,15 + y,208,34,34 );
gfx.PutPixel( 59 + x,15 + y,208,34,34 );
gfx.PutPixel( 60 + x,15 + y,208,34,34 );
gfx.PutPixel( 61 + x,15 + y,207,21,21 );
gfx.PutPixel( 62 + x,15 + y,210,64,64 );
gfx.PutPixel( 63 + x,15 + y,215,134,134 );
gfx.PutPixel( 64 + x,15 + y,213,95,95 );
gfx.PutPixel( 65 + x,15 + y,214,118,118 );
gfx.PutPixel( 66 + x,15 + y,212,87,87 );
gfx.PutPixel( 67 + x,15 + y,216,144,144 );
gfx.PutPixel( 68 + x,15 + y,215,133,133 );
gfx.PutPixel( 69 + x,15 + y,212,82,82 );
gfx.PutPixel( 70 + x,15 + y,209,43,43 );
gfx.PutPixel( 71 + x,15 + y,207,17,17 );
gfx.PutPixel( 72 + x,15 + y,214,128,128 );
gfx.PutPixel( 73 + x,15 + y,212,84,84 );
gfx.PutPixel( 74 + x,15 + y,214,122,122 );
gfx.PutPixel( 75 + x,15 + y,211,76,76 );
gfx.PutPixel( 76 + x,15 + y,215,126,126 );
gfx.PutPixel( 77 + x,15 + y,211,71,71 );
gfx.PutPixel( 78 + x,15 + y,207,23,23 );
gfx.PutPixel( 79 + x,15 + y,209,56,56 );
gfx.PutPixel( 80 + x,15 + y,213,101,101 );
gfx.PutPixel( 81 + x,15 + y,216,145,145 );
gfx.PutPixel( 82 + x,15 + y,214,128,128 );
gfx.PutPixel( 83 + x,15 + y,211,77,77 );
gfx.PutPixel( 84 + x,15 + y,216,150,150 );
gfx.PutPixel( 85 + x,15 + y,212,95,95 );
gfx.PutPixel( 86 + x,15 + y,214,116,116 );
gfx.PutPixel( 87 + x,15 + y,208,30,30 );
gfx.PutPixel( 88 + x,15 + y,208,28,28 );
gfx.PutPixel( 89 + x,15 + y,208,35,35 );
gfx.PutPixel( 90 + x,15 + y,208,34,34 );
gfx.PutPixel( 91 + x,15 + y,208,34,34 );
gfx.PutPixel( 92 + x,15 + y,208,34,34 );
gfx.PutPixel( 93 + x,15 + y,208,34,34 );
gfx.PutPixel( 94 + x,15 + y,208,34,34 );
gfx.PutPixel( 95 + x,15 + y,208,34,34 );
gfx.PutPixel( 96 + x,15 + y,208,34,34 );
gfx.PutPixel( 97 + x,15 + y,208,34,34 );
gfx.PutPixel( 98 + x,15 + y,208,34,34 );
gfx.PutPixel( 99 + x,15 + y,208,34,34 );
gfx.PutPixel( 100 + x,15 + y,208,34,34 );
gfx.PutPixel( 101 + x,15 + y,208,34,34 );
gfx.PutPixel( 102 + x,15 + y,208,34,34 );
gfx.PutPixel( 103 + x,15 + y,208,34,34 );
gfx.PutPixel( 104 + x,15 + y,208,34,34 );
gfx.PutPixel( 105 + x,15 + y,208,34,34 );
gfx.PutPixel( 106 + x,15 + y,208,34,34 );
gfx.PutPixel( 107 + x,15 + y,208,34,34 );
gfx.PutPixel( 108 + x,15 + y,208,34,34 );
gfx.PutPixel( 109 + x,15 + y,208,34,34 );
gfx.PutPixel( 110 + x,15 + y,208,34,34 );
gfx.PutPixel( 111 + x,15 + y,208,34,34 );
gfx.PutPixel( 112 + x,15 + y,208,34,34 );
gfx.PutPixel( 113 + x,15 + y,208,34,34 );
gfx.PutPixel( 114 + x,15 + y,208,34,34 );
gfx.PutPixel( 115 + x,15 + y,208,34,34 );
gfx.PutPixel( 116 + x,15 + y,208,34,34 );
gfx.PutPixel( 117 + x,15 + y,208,34,34 );
gfx.PutPixel( 118 + x,15 + y,208,34,34 );
gfx.PutPixel( 119 + x,15 + y,208,34,34 );
gfx.PutPixel( 120 + x,15 + y,208,34,34 );
gfx.PutPixel( 121 + x,15 + y,208,34,34 );
gfx.PutPixel( 122 + x,15 + y,208,34,34 );
gfx.PutPixel( 123 + x,15 + y,208,34,34 );
gfx.PutPixel( 124 + x,15 + y,208,34,34 );
gfx.PutPixel( 125 + x,15 + y,208,34,34 );
gfx.PutPixel( 126 + x,15 + y,208,34,34 );
gfx.PutPixel( 127 + x,15 + y,208,34,34 );
gfx.PutPixel( 128 + x,15 + y,208,34,34 );
gfx.PutPixel( 129 + x,15 + y,208,34,34 );
gfx.PutPixel( 130 + x,15 + y,208,34,34 );
gfx.PutPixel( 131 + x,15 + y,208,34,34 );
gfx.PutPixel( 132 + x,15 + y,208,34,34 );
gfx.PutPixel( 133 + x,15 + y,208,34,34 );
gfx.PutPixel( 134 + x,15 + y,208,34,34 );
gfx.PutPixel( 135 + x,15 + y,208,34,34 );
gfx.PutPixel( 136 + x,15 + y,208,34,34 );
gfx.PutPixel( 137 + x,15 + y,208,34,34 );
gfx.PutPixel( 138 + x,15 + y,208,34,34 );
gfx.PutPixel( 139 + x,15 + y,208,34,34 );
gfx.PutPixel( 140 + x,15 + y,208,34,34 );
gfx.PutPixel( 141 + x,15 + y,208,34,34 );
gfx.PutPixel( 142 + x,15 + y,208,34,34 );
gfx.PutPixel( 143 + x,15 + y,208,34,34 );
gfx.PutPixel( 144 + x,15 + y,208,34,34 );
gfx.PutPixel( 145 + x,15 + y,208,34,34 );
gfx.PutPixel( 146 + x,15 + y,208,34,34 );
gfx.PutPixel( 147 + x,15 + y,208,34,34 );
gfx.PutPixel( 148 + x,15 + y,208,34,34 );
gfx.PutPixel( 149 + x,15 + y,208,34,34 );
gfx.PutPixel( 0 + x,16 + y,208,34,34 );
gfx.PutPixel( 1 + x,16 + y,208,34,34 );
gfx.PutPixel( 2 + x,16 + y,208,34,34 );
gfx.PutPixel( 3 + x,16 + y,208,34,34 );
gfx.PutPixel( 4 + x,16 + y,208,34,34 );
gfx.PutPixel( 5 + x,16 + y,208,34,34 );
gfx.PutPixel( 6 + x,16 + y,208,34,34 );
gfx.PutPixel( 7 + x,16 + y,208,34,34 );
gfx.PutPixel( 8 + x,16 + y,208,34,34 );
gfx.PutPixel( 9 + x,16 + y,208,34,34 );
gfx.PutPixel( 10 + x,16 + y,208,34,34 );
gfx.PutPixel( 11 + x,16 + y,208,34,34 );
gfx.PutPixel( 12 + x,16 + y,208,34,34 );
gfx.PutPixel( 13 + x,16 + y,208,34,34 );
gfx.PutPixel( 14 + x,16 + y,208,34,34 );
gfx.PutPixel( 15 + x,16 + y,208,34,34 );
gfx.PutPixel( 16 + x,16 + y,208,34,34 );
gfx.PutPixel( 17 + x,16 + y,208,34,34 );
gfx.PutPixel( 18 + x,16 + y,208,34,34 );
gfx.PutPixel( 19 + x,16 + y,208,34,34 );
gfx.PutPixel( 20 + x,16 + y,208,34,34 );
gfx.PutPixel( 21 + x,16 + y,208,34,34 );
gfx.PutPixel( 22 + x,16 + y,208,34,34 );
gfx.PutPixel( 23 + x,16 + y,208,34,34 );
gfx.PutPixel( 24 + x,16 + y,208,34,34 );
gfx.PutPixel( 25 + x,16 + y,208,34,34 );
gfx.PutPixel( 26 + x,16 + y,208,34,34 );
gfx.PutPixel( 27 + x,16 + y,208,34,34 );
gfx.PutPixel( 28 + x,16 + y,208,34,34 );
gfx.PutPixel( 29 + x,16 + y,208,34,34 );
gfx.PutPixel( 30 + x,16 + y,208,34,34 );
gfx.PutPixel( 31 + x,16 + y,208,34,34 );
gfx.PutPixel( 32 + x,16 + y,208,34,34 );
gfx.PutPixel( 33 + x,16 + y,208,34,34 );
gfx.PutPixel( 34 + x,16 + y,208,34,34 );
gfx.PutPixel( 35 + x,16 + y,208,34,34 );
gfx.PutPixel( 36 + x,16 + y,208,34,34 );
gfx.PutPixel( 37 + x,16 + y,208,34,34 );
gfx.PutPixel( 38 + x,16 + y,208,34,34 );
gfx.PutPixel( 39 + x,16 + y,208,34,34 );
gfx.PutPixel( 40 + x,16 + y,208,34,34 );
gfx.PutPixel( 41 + x,16 + y,208,34,34 );
gfx.PutPixel( 42 + x,16 + y,208,34,34 );
gfx.PutPixel( 43 + x,16 + y,208,34,34 );
gfx.PutPixel( 44 + x,16 + y,208,34,34 );
gfx.PutPixel( 45 + x,16 + y,208,34,34 );
gfx.PutPixel( 46 + x,16 + y,208,34,34 );
gfx.PutPixel( 47 + x,16 + y,208,34,34 );
gfx.PutPixel( 48 + x,16 + y,208,34,34 );
gfx.PutPixel( 49 + x,16 + y,208,34,34 );
gfx.PutPixel( 50 + x,16 + y,208,34,34 );
gfx.PutPixel( 51 + x,16 + y,208,34,34 );
gfx.PutPixel( 52 + x,16 + y,208,34,34 );
gfx.PutPixel( 53 + x,16 + y,208,34,34 );
gfx.PutPixel( 54 + x,16 + y,208,34,34 );
gfx.PutPixel( 55 + x,16 + y,208,34,34 );
gfx.PutPixel( 56 + x,16 + y,208,34,34 );
gfx.PutPixel( 57 + x,16 + y,208,34,34 );
gfx.PutPixel( 58 + x,16 + y,208,34,34 );
gfx.PutPixel( 59 + x,16 + y,208,34,34 );
gfx.PutPixel( 60 + x,16 + y,207,24,24 );
gfx.PutPixel( 61 + x,16 + y,213,103,103 );
gfx.PutPixel( 62 + x,16 + y,213,106,106 );
gfx.PutPixel( 63 + x,16 + y,214,119,119 );
gfx.PutPixel( 64 + x,16 + y,212,89,89 );
gfx.PutPixel( 65 + x,16 + y,216,146,146 );
gfx.PutPixel( 66 + x,16 + y,214,120,120 );
gfx.PutPixel( 67 + x,16 + y,209,51,51 );
gfx.PutPixel( 68 + x,16 + y,207,25,25 );
gfx.PutPixel( 69 + x,16 + y,207,27,27 );
gfx.PutPixel( 70 + x,16 + y,208,32,32 );
gfx.PutPixel( 71 + x,16 + y,207,26,26 );
gfx.PutPixel( 72 + x,16 + y,211,84,84 );
gfx.PutPixel( 73 + x,16 + y,214,121,121 );
gfx.PutPixel( 74 + x,16 + y,216,140,140 );
gfx.PutPixel( 75 + x,16 + y,213,103,103 );
gfx.PutPixel( 76 + x,16 + y,215,135,135 );
gfx.PutPixel( 77 + x,16 + y,208,39,39 );
gfx.PutPixel( 78 + x,16 + y,208,32,32 );
gfx.PutPixel( 79 + x,16 + y,208,30,30 );
gfx.PutPixel( 80 + x,16 + y,207,24,24 );
gfx.PutPixel( 81 + x,16 + y,208,32,32 );
gfx.PutPixel( 82 + x,16 + y,211,73,73 );
gfx.PutPixel( 83 + x,16 + y,215,131,131 );
gfx.PutPixel( 84 + x,16 + y,214,116,116 );
gfx.PutPixel( 85 + x,16 + y,211,84,84 );
gfx.PutPixel( 86 + x,16 + y,215,137,137 );
gfx.PutPixel( 87 + x,16 + y,212,91,91 );
gfx.PutPixel( 88 + x,16 + y,211,71,71 );
gfx.PutPixel( 89 + x,16 + y,208,26,26 );
gfx.PutPixel( 90 + x,16 + y,208,34,34 );
gfx.PutPixel( 91 + x,16 + y,208,34,34 );
gfx.PutPixel( 92 + x,16 + y,208,34,34 );
gfx.PutPixel( 93 + x,16 + y,208,34,34 );
gfx.PutPixel( 94 + x,16 + y,208,34,34 );
gfx.PutPixel( 95 + x,16 + y,208,34,34 );
gfx.PutPixel( 96 + x,16 + y,208,34,34 );
gfx.PutPixel( 97 + x,16 + y,208,34,34 );
gfx.PutPixel( 98 + x,16 + y,208,34,34 );
gfx.PutPixel( 99 + x,16 + y,208,34,34 );
gfx.PutPixel( 100 + x,16 + y,208,34,34 );
gfx.PutPixel( 101 + x,16 + y,208,34,34 );
gfx.PutPixel( 102 + x,16 + y,208,34,34 );
gfx.PutPixel( 103 + x,16 + y,208,34,34 );
gfx.PutPixel( 104 + x,16 + y,208,34,34 );
gfx.PutPixel( 105 + x,16 + y,208,34,34 );
gfx.PutPixel( 106 + x,16 + y,208,34,34 );
gfx.PutPixel( 107 + x,16 + y,208,34,34 );
gfx.PutPixel( 108 + x,16 + y,208,34,34 );
gfx.PutPixel( 109 + x,16 + y,208,34,34 );
gfx.PutPixel( 110 + x,16 + y,208,34,34 );
gfx.PutPixel( 111 + x,16 + y,208,34,34 );
gfx.PutPixel( 112 + x,16 + y,208,34,34 );
gfx.PutPixel( 113 + x,16 + y,208,34,34 );
gfx.PutPixel( 114 + x,16 + y,208,34,34 );
gfx.PutPixel( 115 + x,16 + y,208,34,34 );
gfx.PutPixel( 116 + x,16 + y,208,34,34 );
gfx.PutPixel( 117 + x,16 + y,208,34,34 );
gfx.PutPixel( 118 + x,16 + y,208,34,34 );
gfx.PutPixel( 119 + x,16 + y,208,34,34 );
gfx.PutPixel( 120 + x,16 + y,208,34,34 );
gfx.PutPixel( 121 + x,16 + y,208,34,34 );
gfx.PutPixel( 122 + x,16 + y,208,34,34 );
gfx.PutPixel( 123 + x,16 + y,208,34,34 );
gfx.PutPixel( 124 + x,16 + y,208,34,34 );
gfx.PutPixel( 125 + x,16 + y,208,34,34 );
gfx.PutPixel( 126 + x,16 + y,208,34,34 );
gfx.PutPixel( 127 + x,16 + y,208,34,34 );
gfx.PutPixel( 128 + x,16 + y,208,34,34 );
gfx.PutPixel( 129 + x,16 + y,208,34,34 );
gfx.PutPixel( 130 + x,16 + y,208,34,34 );
gfx.PutPixel( 131 + x,16 + y,208,34,34 );
gfx.PutPixel( 132 + x,16 + y,208,34,34 );
gfx.PutPixel( 133 + x,16 + y,208,34,34 );
gfx.PutPixel( 134 + x,16 + y,208,34,34 );
gfx.PutPixel( 135 + x,16 + y,208,34,34 );
gfx.PutPixel( 136 + x,16 + y,208,34,34 );
gfx.PutPixel( 137 + x,16 + y,208,34,34 );
gfx.PutPixel( 138 + x,16 + y,208,34,34 );
gfx.PutPixel( 139 + x,16 + y,208,34,34 );
gfx.PutPixel( 140 + x,16 + y,208,34,34 );
gfx.PutPixel( 141 + x,16 + y,208,34,34 );
gfx.PutPixel( 142 + x,16 + y,208,34,34 );
gfx.PutPixel( 143 + x,16 + y,208,34,34 );
gfx.PutPixel( 144 + x,16 + y,208,34,34 );
gfx.PutPixel( 145 + x,16 + y,208,34,34 );
gfx.PutPixel( 146 + x,16 + y,208,34,34 );
gfx.PutPixel( 147 + x,16 + y,208,34,34 );
gfx.PutPixel( 148 + x,16 + y,208,34,34 );
gfx.PutPixel( 149 + x,16 + y,208,34,34 );
gfx.PutPixel( 0 + x,17 + y,208,34,34 );
gfx.PutPixel( 1 + x,17 + y,208,34,34 );
gfx.PutPixel( 2 + x,17 + y,208,34,34 );
gfx.PutPixel( 3 + x,17 + y,208,34,34 );
gfx.PutPixel( 4 + x,17 + y,208,34,34 );
gfx.PutPixel( 5 + x,17 + y,208,34,34 );
gfx.PutPixel( 6 + x,17 + y,208,34,34 );
gfx.PutPixel( 7 + x,17 + y,208,34,34 );
gfx.PutPixel( 8 + x,17 + y,208,34,34 );
gfx.PutPixel( 9 + x,17 + y,208,34,34 );
gfx.PutPixel( 10 + x,17 + y,208,34,34 );
gfx.PutPixel( 11 + x,17 + y,208,34,34 );
gfx.PutPixel( 12 + x,17 + y,208,34,34 );
gfx.PutPixel( 13 + x,17 + y,208,34,34 );
gfx.PutPixel( 14 + x,17 + y,208,34,34 );
gfx.PutPixel( 15 + x,17 + y,208,34,34 );
gfx.PutPixel( 16 + x,17 + y,208,34,34 );
gfx.PutPixel( 17 + x,17 + y,208,34,34 );
gfx.PutPixel( 18 + x,17 + y,208,34,34 );
gfx.PutPixel( 19 + x,17 + y,208,34,34 );
gfx.PutPixel( 20 + x,17 + y,208,34,34 );
gfx.PutPixel( 21 + x,17 + y,208,34,34 );
gfx.PutPixel( 22 + x,17 + y,208,34,34 );
gfx.PutPixel( 23 + x,17 + y,208,34,34 );
gfx.PutPixel( 24 + x,17 + y,208,34,34 );
gfx.PutPixel( 25 + x,17 + y,208,34,34 );
gfx.PutPixel( 26 + x,17 + y,208,34,34 );
gfx.PutPixel( 27 + x,17 + y,208,34,34 );
gfx.PutPixel( 28 + x,17 + y,208,34,34 );
gfx.PutPixel( 29 + x,17 + y,208,34,34 );
gfx.PutPixel( 30 + x,17 + y,208,34,34 );
gfx.PutPixel( 31 + x,17 + y,208,34,34 );
gfx.PutPixel( 32 + x,17 + y,208,34,34 );
gfx.PutPixel( 33 + x,17 + y,208,34,34 );
gfx.PutPixel( 34 + x,17 + y,208,34,34 );
gfx.PutPixel( 35 + x,17 + y,208,34,34 );
gfx.PutPixel( 36 + x,17 + y,208,34,34 );
gfx.PutPixel( 37 + x,17 + y,208,34,34 );
gfx.PutPixel( 38 + x,17 + y,208,34,34 );
gfx.PutPixel( 39 + x,17 + y,208,34,34 );
gfx.PutPixel( 40 + x,17 + y,208,34,34 );
gfx.PutPixel( 41 + x,17 + y,208,34,34 );
gfx.PutPixel( 42 + x,17 + y,208,34,34 );
gfx.PutPixel( 43 + x,17 + y,208,34,34 );
gfx.PutPixel( 44 + x,17 + y,208,34,34 );
gfx.PutPixel( 45 + x,17 + y,208,34,34 );
gfx.PutPixel( 46 + x,17 + y,208,34,34 );
gfx.PutPixel( 47 + x,17 + y,208,34,34 );
gfx.PutPixel( 48 + x,17 + y,208,34,34 );
gfx.PutPixel( 49 + x,17 + y,208,34,34 );
gfx.PutPixel( 50 + x,17 + y,208,34,34 );
gfx.PutPixel( 51 + x,17 + y,208,34,34 );
gfx.PutPixel( 52 + x,17 + y,208,34,34 );
gfx.PutPixel( 53 + x,17 + y,208,34,34 );
gfx.PutPixel( 54 + x,17 + y,208,34,34 );
gfx.PutPixel( 55 + x,17 + y,208,34,34 );
gfx.PutPixel( 56 + x,17 + y,208,34,34 );
gfx.PutPixel( 57 + x,17 + y,208,34,34 );
gfx.PutPixel( 58 + x,17 + y,208,34,34 );
gfx.PutPixel( 59 + x,17 + y,208,34,34 );
gfx.PutPixel( 60 + x,17 + y,210,66,66 );
gfx.PutPixel( 61 + x,17 + y,214,125,125 );
gfx.PutPixel( 62 + x,17 + y,213,104,104 );
gfx.PutPixel( 63 + x,17 + y,215,128,128 );
gfx.PutPixel( 64 + x,17 + y,215,129,129 );
gfx.PutPixel( 65 + x,17 + y,211,77,77 );
gfx.PutPixel( 66 + x,17 + y,217,160,160 );
gfx.PutPixel( 67 + x,17 + y,209,53,53 );
gfx.PutPixel( 68 + x,17 + y,208,29,29 );
gfx.PutPixel( 69 + x,17 + y,208,34,34 );
gfx.PutPixel( 70 + x,17 + y,208,34,34 );
gfx.PutPixel( 71 + x,17 + y,208,31,31 );
gfx.PutPixel( 72 + x,17 + y,209,52,52 );
gfx.PutPixel( 73 + x,17 + y,213,111,111 );
gfx.PutPixel( 74 + x,17 + y,213,112,112 );
gfx.PutPixel( 75 + x,17 + y,213,102,102 );
gfx.PutPixel( 76 + x,17 + y,213,111,111 );
gfx.PutPixel( 77 + x,17 + y,208,28,28 );
gfx.PutPixel( 78 + x,17 + y,208,34,34 );
gfx.PutPixel( 79 + x,17 + y,208,34,34 );
gfx.PutPixel( 80 + x,17 + y,208,34,34 );
gfx.PutPixel( 81 + x,17 + y,208,28,28 );
gfx.PutPixel( 82 + x,17 + y,209,56,56 );
gfx.PutPixel( 83 + x,17 + y,215,128,128 );
gfx.PutPixel( 84 + x,17 + y,212,81,81 );
gfx.PutPixel( 85 + x,17 + y,215,141,141 );
gfx.PutPixel( 86 + x,17 + y,212,85,85 );
gfx.PutPixel( 87 + x,17 + y,214,123,123 );
gfx.PutPixel( 88 + x,17 + y,214,117,117 );
gfx.PutPixel( 89 + x,17 + y,209,46,46 );
gfx.PutPixel( 90 + x,17 + y,208,32,32 );
gfx.PutPixel( 91 + x,17 + y,208,34,34 );
gfx.PutPixel( 92 + x,17 + y,208,34,34 );
gfx.PutPixel( 93 + x,17 + y,208,34,34 );
gfx.PutPixel( 94 + x,17 + y,208,34,34 );
gfx.PutPixel( 95 + x,17 + y,208,34,34 );
gfx.PutPixel( 96 + x,17 + y,208,34,34 );
gfx.PutPixel( 97 + x,17 + y,208,34,34 );
gfx.PutPixel( 98 + x,17 + y,208,34,34 );
gfx.PutPixel( 99 + x,17 + y,208,34,34 );
gfx.PutPixel( 100 + x,17 + y,208,34,34 );
gfx.PutPixel( 101 + x,17 + y,208,34,34 );
gfx.PutPixel( 102 + x,17 + y,208,34,34 );
gfx.PutPixel( 103 + x,17 + y,208,34,34 );
gfx.PutPixel( 104 + x,17 + y,208,34,34 );
gfx.PutPixel( 105 + x,17 + y,208,34,34 );
gfx.PutPixel( 106 + x,17 + y,208,34,34 );
gfx.PutPixel( 107 + x,17 + y,208,34,34 );
gfx.PutPixel( 108 + x,17 + y,208,34,34 );
gfx.PutPixel( 109 + x,17 + y,208,34,34 );
gfx.PutPixel( 110 + x,17 + y,208,34,34 );
gfx.PutPixel( 111 + x,17 + y,208,34,34 );
gfx.PutPixel( 112 + x,17 + y,208,34,34 );
gfx.PutPixel( 113 + x,17 + y,208,34,34 );
gfx.PutPixel( 114 + x,17 + y,208,34,34 );
gfx.PutPixel( 115 + x,17 + y,208,34,34 );
gfx.PutPixel( 116 + x,17 + y,208,34,34 );
gfx.PutPixel( 117 + x,17 + y,208,34,34 );
gfx.PutPixel( 118 + x,17 + y,208,34,34 );
gfx.PutPixel( 119 + x,17 + y,208,34,34 );
gfx.PutPixel( 120 + x,17 + y,208,34,34 );
gfx.PutPixel( 121 + x,17 + y,208,34,34 );
gfx.PutPixel( 122 + x,17 + y,208,34,34 );
gfx.PutPixel( 123 + x,17 + y,208,34,34 );
gfx.PutPixel( 124 + x,17 + y,208,34,34 );
gfx.PutPixel( 125 + x,17 + y,208,34,34 );
gfx.PutPixel( 126 + x,17 + y,208,34,34 );
gfx.PutPixel( 127 + x,17 + y,208,34,34 );
gfx.PutPixel( 128 + x,17 + y,208,34,34 );
gfx.PutPixel( 129 + x,17 + y,208,34,34 );
gfx.PutPixel( 130 + x,17 + y,208,34,34 );
gfx.PutPixel( 131 + x,17 + y,208,34,34 );
gfx.PutPixel( 132 + x,17 + y,208,34,34 );
gfx.PutPixel( 133 + x,17 + y,208,34,34 );
gfx.PutPixel( 134 + x,17 + y,208,34,34 );
gfx.PutPixel( 135 + x,17 + y,208,34,34 );
gfx.PutPixel( 136 + x,17 + y,208,34,34 );
gfx.PutPixel( 137 + x,17 + y,208,34,34 );
gfx.PutPixel( 138 + x,17 + y,208,34,34 );
gfx.PutPixel( 139 + x,17 + y,208,34,34 );
gfx.PutPixel( 140 + x,17 + y,208,34,34 );
gfx.PutPixel( 141 + x,17 + y,208,34,34 );
gfx.PutPixel( 142 + x,17 + y,208,34,34 );
gfx.PutPixel( 143 + x,17 + y,208,34,34 );
gfx.PutPixel( 144 + x,17 + y,208,34,34 );
gfx.PutPixel( 145 + x,17 + y,208,34,34 );
gfx.PutPixel( 146 + x,17 + y,208,34,34 );
gfx.PutPixel( 147 + x,17 + y,208,34,34 );
gfx.PutPixel( 148 + x,17 + y,208,34,34 );
gfx.PutPixel( 149 + x,17 + y,208,34,34 );
gfx.PutPixel( 0 + x,18 + y,208,34,34 );
gfx.PutPixel( 1 + x,18 + y,208,34,34 );
gfx.PutPixel( 2 + x,18 + y,208,34,34 );
gfx.PutPixel( 3 + x,18 + y,208,34,34 );
gfx.PutPixel( 4 + x,18 + y,208,34,34 );
gfx.PutPixel( 5 + x,18 + y,208,34,34 );
gfx.PutPixel( 6 + x,18 + y,208,34,34 );
gfx.PutPixel( 7 + x,18 + y,208,34,34 );
gfx.PutPixel( 8 + x,18 + y,208,34,34 );
gfx.PutPixel( 9 + x,18 + y,208,34,34 );
gfx.PutPixel( 10 + x,18 + y,208,34,34 );
gfx.PutPixel( 11 + x,18 + y,208,34,34 );
gfx.PutPixel( 12 + x,18 + y,208,34,34 );
gfx.PutPixel( 13 + x,18 + y,208,34,34 );
gfx.PutPixel( 14 + x,18 + y,208,34,34 );
gfx.PutPixel( 15 + x,18 + y,208,34,34 );
gfx.PutPixel( 16 + x,18 + y,208,34,34 );
gfx.PutPixel( 17 + x,18 + y,208,34,34 );
gfx.PutPixel( 18 + x,18 + y,208,34,34 );
gfx.PutPixel( 19 + x,18 + y,208,34,34 );
gfx.PutPixel( 20 + x,18 + y,208,34,34 );
gfx.PutPixel( 21 + x,18 + y,208,34,34 );
gfx.PutPixel( 22 + x,18 + y,208,34,34 );
gfx.PutPixel( 23 + x,18 + y,208,34,34 );
gfx.PutPixel( 24 + x,18 + y,208,34,34 );
gfx.PutPixel( 25 + x,18 + y,208,34,34 );
gfx.PutPixel( 26 + x,18 + y,208,34,34 );
gfx.PutPixel( 27 + x,18 + y,208,34,34 );
gfx.PutPixel( 28 + x,18 + y,208,34,34 );
gfx.PutPixel( 29 + x,18 + y,208,34,34 );
gfx.PutPixel( 30 + x,18 + y,208,34,34 );
gfx.PutPixel( 31 + x,18 + y,208,34,34 );
gfx.PutPixel( 32 + x,18 + y,208,34,34 );
gfx.PutPixel( 33 + x,18 + y,208,34,34 );
gfx.PutPixel( 34 + x,18 + y,208,34,34 );
gfx.PutPixel( 35 + x,18 + y,208,34,34 );
gfx.PutPixel( 36 + x,18 + y,208,34,34 );
gfx.PutPixel( 37 + x,18 + y,208,34,34 );
gfx.PutPixel( 38 + x,18 + y,208,34,34 );
gfx.PutPixel( 39 + x,18 + y,208,34,34 );
gfx.PutPixel( 40 + x,18 + y,208,34,34 );
gfx.PutPixel( 41 + x,18 + y,208,34,34 );
gfx.PutPixel( 42 + x,18 + y,208,34,34 );
gfx.PutPixel( 43 + x,18 + y,208,34,34 );
gfx.PutPixel( 44 + x,18 + y,208,34,34 );
gfx.PutPixel( 45 + x,18 + y,208,34,34 );
gfx.PutPixel( 46 + x,18 + y,208,34,34 );
gfx.PutPixel( 47 + x,18 + y,208,34,34 );
gfx.PutPixel( 48 + x,18 + y,208,34,34 );
gfx.PutPixel( 49 + x,18 + y,208,34,34 );
gfx.PutPixel( 50 + x,18 + y,208,34,34 );
gfx.PutPixel( 51 + x,18 + y,208,34,34 );
gfx.PutPixel( 52 + x,18 + y,208,34,34 );
gfx.PutPixel( 53 + x,18 + y,208,34,34 );
gfx.PutPixel( 54 + x,18 + y,208,34,34 );
gfx.PutPixel( 55 + x,18 + y,208,34,34 );
gfx.PutPixel( 56 + x,18 + y,208,34,34 );
gfx.PutPixel( 57 + x,18 + y,208,34,34 );
gfx.PutPixel( 58 + x,18 + y,208,31,31 );
gfx.PutPixel( 59 + x,18 + y,208,29,29 );
gfx.PutPixel( 60 + x,18 + y,215,133,133 );
gfx.PutPixel( 61 + x,18 + y,213,103,103 );
gfx.PutPixel( 62 + x,18 + y,216,148,148 );
gfx.PutPixel( 63 + x,18 + y,211,81,81 );
gfx.PutPixel( 64 + x,18 + y,207,13,13 );
gfx.PutPixel( 65 + x,18 + y,214,115,115 );
gfx.PutPixel( 66 + x,18 + y,223,248,248 );
gfx.PutPixel( 67 + x,18 + y,216,155,155 );
gfx.PutPixel( 68 + x,18 + y,207,27,27 );
gfx.PutPixel( 69 + x,18 + y,208,32,32 );
gfx.PutPixel( 70 + x,18 + y,208,34,34 );
gfx.PutPixel( 71 + x,18 + y,208,33,33 );
gfx.PutPixel( 72 + x,18 + y,208,38,38 );
gfx.PutPixel( 73 + x,18 + y,213,113,113 );
gfx.PutPixel( 74 + x,18 + y,215,144,144 );
gfx.PutPixel( 75 + x,18 + y,215,140,140 );
gfx.PutPixel( 76 + x,18 + y,211,76,76 );
gfx.PutPixel( 77 + x,18 + y,207,28,28 );
gfx.PutPixel( 78 + x,18 + y,208,34,34 );
gfx.PutPixel( 79 + x,18 + y,208,33,33 );
gfx.PutPixel( 80 + x,18 + y,208,32,32 );
gfx.PutPixel( 81 + x,18 + y,208,32,32 );
gfx.PutPixel( 82 + x,18 + y,218,173,173 );
gfx.PutPixel( 83 + x,18 + y,222,236,236 );
gfx.PutPixel( 84 + x,18 + y,210,66,66 );
gfx.PutPixel( 85 + x,18 + y,207,28,28 );
gfx.PutPixel( 86 + x,18 + y,213,116,116 );
gfx.PutPixel( 87 + x,18 + y,214,125,125 );
gfx.PutPixel( 88 + x,18 + y,213,99,99 );
gfx.PutPixel( 89 + x,18 + y,215,129,129 );
gfx.PutPixel( 90 + x,18 + y,208,22,22 );
gfx.PutPixel( 91 + x,18 + y,208,32,32 );
gfx.PutPixel( 92 + x,18 + y,208,34,34 );
gfx.PutPixel( 93 + x,18 + y,208,34,34 );
gfx.PutPixel( 94 + x,18 + y,208,34,34 );
gfx.PutPixel( 95 + x,18 + y,208,34,34 );
gfx.PutPixel( 96 + x,18 + y,208,34,34 );
gfx.PutPixel( 97 + x,18 + y,208,34,34 );
gfx.PutPixel( 98 + x,18 + y,208,34,34 );
gfx.PutPixel( 99 + x,18 + y,208,34,34 );
gfx.PutPixel( 100 + x,18 + y,208,34,34 );
gfx.PutPixel( 101 + x,18 + y,208,34,34 );
gfx.PutPixel( 102 + x,18 + y,208,34,34 );
gfx.PutPixel( 103 + x,18 + y,208,34,34 );
gfx.PutPixel( 104 + x,18 + y,208,34,34 );
gfx.PutPixel( 105 + x,18 + y,208,34,34 );
gfx.PutPixel( 106 + x,18 + y,208,34,34 );
gfx.PutPixel( 107 + x,18 + y,208,34,34 );
gfx.PutPixel( 108 + x,18 + y,208,34,34 );
gfx.PutPixel( 109 + x,18 + y,208,34,34 );
gfx.PutPixel( 110 + x,18 + y,208,34,34 );
gfx.PutPixel( 111 + x,18 + y,208,34,34 );
gfx.PutPixel( 112 + x,18 + y,208,34,34 );
gfx.PutPixel( 113 + x,18 + y,208,34,34 );
gfx.PutPixel( 114 + x,18 + y,208,34,34 );
gfx.PutPixel( 115 + x,18 + y,208,34,34 );
gfx.PutPixel( 116 + x,18 + y,208,34,34 );
gfx.PutPixel( 117 + x,18 + y,208,34,34 );
gfx.PutPixel( 118 + x,18 + y,208,34,34 );
gfx.PutPixel( 119 + x,18 + y,208,34,34 );
gfx.PutPixel( 120 + x,18 + y,208,34,34 );
gfx.PutPixel( 121 + x,18 + y,208,34,34 );
gfx.PutPixel( 122 + x,18 + y,208,34,34 );
gfx.PutPixel( 123 + x,18 + y,208,34,34 );
gfx.PutPixel( 124 + x,18 + y,208,34,34 );
gfx.PutPixel( 125 + x,18 + y,208,34,34 );
gfx.PutPixel( 126 + x,18 + y,208,34,34 );
gfx.PutPixel( 127 + x,18 + y,208,34,34 );
gfx.PutPixel( 128 + x,18 + y,208,34,34 );
gfx.PutPixel( 129 + x,18 + y,208,34,34 );
gfx.PutPixel( 130 + x,18 + y,208,34,34 );
gfx.PutPixel( 131 + x,18 + y,208,34,34 );
gfx.PutPixel( 132 + x,18 + y,208,34,34 );
gfx.PutPixel( 133 + x,18 + y,208,34,34 );
gfx.PutPixel( 134 + x,18 + y,208,34,34 );
gfx.PutPixel( 135 + x,18 + y,208,34,34 );
gfx.PutPixel( 136 + x,18 + y,208,34,34 );
gfx.PutPixel( 137 + x,18 + y,208,34,34 );
gfx.PutPixel( 138 + x,18 + y,208,34,34 );
gfx.PutPixel( 139 + x,18 + y,208,34,34 );
gfx.PutPixel( 140 + x,18 + y,208,34,34 );
gfx.PutPixel( 141 + x,18 + y,208,34,34 );
gfx.PutPixel( 142 + x,18 + y,208,34,34 );
gfx.PutPixel( 143 + x,18 + y,208,34,34 );
gfx.PutPixel( 144 + x,18 + y,208,34,34 );
gfx.PutPixel( 145 + x,18 + y,208,34,34 );
gfx.PutPixel( 146 + x,18 + y,208,34,34 );
gfx.PutPixel( 147 + x,18 + y,208,34,34 );
gfx.PutPixel( 148 + x,18 + y,208,34,34 );
gfx.PutPixel( 149 + x,18 + y,208,34,34 );
gfx.PutPixel( 0 + x,19 + y,208,34,34 );
gfx.PutPixel( 1 + x,19 + y,208,34,34 );
gfx.PutPixel( 2 + x,19 + y,208,34,34 );
gfx.PutPixel( 3 + x,19 + y,208,34,34 );
gfx.PutPixel( 4 + x,19 + y,208,34,34 );
gfx.PutPixel( 5 + x,19 + y,208,34,34 );
gfx.PutPixel( 6 + x,19 + y,208,34,34 );
gfx.PutPixel( 7 + x,19 + y,208,34,34 );
gfx.PutPixel( 8 + x,19 + y,208,34,34 );
gfx.PutPixel( 9 + x,19 + y,208,34,34 );
gfx.PutPixel( 10 + x,19 + y,208,34,34 );
gfx.PutPixel( 11 + x,19 + y,208,34,34 );
gfx.PutPixel( 12 + x,19 + y,208,34,34 );
gfx.PutPixel( 13 + x,19 + y,208,34,34 );
gfx.PutPixel( 14 + x,19 + y,208,34,34 );
gfx.PutPixel( 15 + x,19 + y,208,34,34 );
gfx.PutPixel( 16 + x,19 + y,208,34,34 );
gfx.PutPixel( 17 + x,19 + y,208,34,34 );
gfx.PutPixel( 18 + x,19 + y,208,34,34 );
gfx.PutPixel( 19 + x,19 + y,208,34,34 );
gfx.PutPixel( 20 + x,19 + y,208,34,34 );
gfx.PutPixel( 21 + x,19 + y,208,34,34 );
gfx.PutPixel( 22 + x,19 + y,208,34,34 );
gfx.PutPixel( 23 + x,19 + y,208,34,34 );
gfx.PutPixel( 24 + x,19 + y,208,34,34 );
gfx.PutPixel( 25 + x,19 + y,208,34,34 );
gfx.PutPixel( 26 + x,19 + y,208,34,34 );
gfx.PutPixel( 27 + x,19 + y,208,34,34 );
gfx.PutPixel( 28 + x,19 + y,208,34,34 );
gfx.PutPixel( 29 + x,19 + y,208,34,34 );
gfx.PutPixel( 30 + x,19 + y,208,34,34 );
gfx.PutPixel( 31 + x,19 + y,208,34,34 );
gfx.PutPixel( 32 + x,19 + y,208,34,34 );
gfx.PutPixel( 33 + x,19 + y,208,34,34 );
gfx.PutPixel( 34 + x,19 + y,208,34,34 );
gfx.PutPixel( 35 + x,19 + y,208,34,34 );
gfx.PutPixel( 36 + x,19 + y,208,34,34 );
gfx.PutPixel( 37 + x,19 + y,208,34,34 );
gfx.PutPixel( 38 + x,19 + y,208,34,34 );
gfx.PutPixel( 39 + x,19 + y,208,34,34 );
gfx.PutPixel( 40 + x,19 + y,208,34,34 );
gfx.PutPixel( 41 + x,19 + y,208,34,34 );
gfx.PutPixel( 42 + x,19 + y,208,34,34 );
gfx.PutPixel( 43 + x,19 + y,208,34,34 );
gfx.PutPixel( 44 + x,19 + y,208,34,34 );
gfx.PutPixel( 45 + x,19 + y,208,34,34 );
gfx.PutPixel( 46 + x,19 + y,208,34,34 );
gfx.PutPixel( 47 + x,19 + y,208,34,34 );
gfx.PutPixel( 48 + x,19 + y,208,34,34 );
gfx.PutPixel( 49 + x,19 + y,208,34,34 );
gfx.PutPixel( 50 + x,19 + y,208,34,34 );
gfx.PutPixel( 51 + x,19 + y,208,34,34 );
gfx.PutPixel( 52 + x,19 + y,208,34,34 );
gfx.PutPixel( 53 + x,19 + y,208,34,34 );
gfx.PutPixel( 54 + x,19 + y,208,34,34 );
gfx.PutPixel( 55 + x,19 + y,208,34,34 );
gfx.PutPixel( 56 + x,19 + y,208,34,34 );
gfx.PutPixel( 57 + x,19 + y,208,31,31 );
gfx.PutPixel( 58 + x,19 + y,208,37,37 );
gfx.PutPixel( 59 + x,19 + y,210,64,64 );
gfx.PutPixel( 60 + x,19 + y,208,38,38 );
gfx.PutPixel( 61 + x,19 + y,213,101,101 );
gfx.PutPixel( 62 + x,19 + y,209,53,53 );
gfx.PutPixel( 63 + x,19 + y,207,21,21 );
gfx.PutPixel( 64 + x,19 + y,206,15,15 );
gfx.PutPixel( 65 + x,19 + y,215,136,136 );
gfx.PutPixel( 66 + x,19 + y,222,239,239 );
gfx.PutPixel( 67 + x,19 + y,219,197,197 );
gfx.PutPixel( 68 + x,19 + y,208,33,33 );
gfx.PutPixel( 69 + x,19 + y,208,29,29 );
gfx.PutPixel( 70 + x,19 + y,207,27,27 );
gfx.PutPixel( 71 + x,19 + y,208,32,32 );
gfx.PutPixel( 72 + x,19 + y,207,19,19 );
gfx.PutPixel( 73 + x,19 + y,216,158,158 );
gfx.PutPixel( 74 + x,19 + y,222,238,238 );
gfx.PutPixel( 75 + x,19 + y,221,227,227 );
gfx.PutPixel( 76 + x,19 + y,211,68,68 );
gfx.PutPixel( 77 + x,19 + y,207,23,23 );
gfx.PutPixel( 78 + x,19 + y,208,29,29 );
gfx.PutPixel( 79 + x,19 + y,208,29,29 );
gfx.PutPixel( 80 + x,19 + y,208,22,22 );
gfx.PutPixel( 81 + x,19 + y,210,61,61 );
gfx.PutPixel( 82 + x,19 + y,221,222,222 );
gfx.PutPixel( 83 + x,19 + y,222,232,232 );
gfx.PutPixel( 84 + x,19 + y,212,91,91 );
gfx.PutPixel( 85 + x,19 + y,207,19,19 );
gfx.PutPixel( 86 + x,19 + y,207,23,23 );
gfx.PutPixel( 87 + x,19 + y,211,84,84 );
gfx.PutPixel( 88 + x,19 + y,213,100,100 );
gfx.PutPixel( 89 + x,19 + y,209,39,39 );
gfx.PutPixel( 90 + x,19 + y,210,57,57 );
gfx.PutPixel( 91 + x,19 + y,208,36,36 );
gfx.PutPixel( 92 + x,19 + y,208,32,32 );
gfx.PutPixel( 93 + x,19 + y,208,34,34 );
gfx.PutPixel( 94 + x,19 + y,208,34,34 );
gfx.PutPixel( 95 + x,19 + y,208,34,34 );
gfx.PutPixel( 96 + x,19 + y,208,34,34 );
gfx.PutPixel( 97 + x,19 + y,208,34,34 );
gfx.PutPixel( 98 + x,19 + y,208,34,34 );
gfx.PutPixel( 99 + x,19 + y,208,34,34 );
gfx.PutPixel( 100 + x,19 + y,208,34,34 );
gfx.PutPixel( 101 + x,19 + y,208,34,34 );
gfx.PutPixel( 102 + x,19 + y,208,34,34 );
gfx.PutPixel( 103 + x,19 + y,208,34,34 );
gfx.PutPixel( 104 + x,19 + y,208,34,34 );
gfx.PutPixel( 105 + x,19 + y,208,34,34 );
gfx.PutPixel( 106 + x,19 + y,208,34,34 );
gfx.PutPixel( 107 + x,19 + y,208,34,34 );
gfx.PutPixel( 108 + x,19 + y,208,34,34 );
gfx.PutPixel( 109 + x,19 + y,208,34,34 );
gfx.PutPixel( 110 + x,19 + y,208,34,34 );
gfx.PutPixel( 111 + x,19 + y,208,34,34 );
gfx.PutPixel( 112 + x,19 + y,208,34,34 );
gfx.PutPixel( 113 + x,19 + y,208,34,34 );
gfx.PutPixel( 114 + x,19 + y,208,34,34 );
gfx.PutPixel( 115 + x,19 + y,208,34,34 );
gfx.PutPixel( 116 + x,19 + y,208,34,34 );
gfx.PutPixel( 117 + x,19 + y,208,34,34 );
gfx.PutPixel( 118 + x,19 + y,208,34,34 );
gfx.PutPixel( 119 + x,19 + y,208,34,34 );
gfx.PutPixel( 120 + x,19 + y,208,34,34 );
gfx.PutPixel( 121 + x,19 + y,208,34,34 );
gfx.PutPixel( 122 + x,19 + y,208,34,34 );
gfx.PutPixel( 123 + x,19 + y,208,34,34 );
gfx.PutPixel( 124 + x,19 + y,208,34,34 );
gfx.PutPixel( 125 + x,19 + y,208,34,34 );
gfx.PutPixel( 126 + x,19 + y,208,34,34 );
gfx.PutPixel( 127 + x,19 + y,208,34,34 );
gfx.PutPixel( 128 + x,19 + y,208,34,34 );
gfx.PutPixel( 129 + x,19 + y,208,34,34 );
gfx.PutPixel( 130 + x,19 + y,208,34,34 );
gfx.PutPixel( 131 + x,19 + y,208,34,34 );
gfx.PutPixel( 132 + x,19 + y,208,34,34 );
gfx.PutPixel( 133 + x,19 + y,208,34,34 );
gfx.PutPixel( 134 + x,19 + y,208,34,34 );
gfx.PutPixel( 135 + x,19 + y,208,34,34 );
gfx.PutPixel( 136 + x,19 + y,208,34,34 );
gfx.PutPixel( 137 + x,19 + y,208,34,34 );
gfx.PutPixel( 138 + x,19 + y,208,34,34 );
gfx.PutPixel( 139 + x,19 + y,208,34,34 );
gfx.PutPixel( 140 + x,19 + y,208,34,34 );
gfx.PutPixel( 141 + x,19 + y,208,34,34 );
gfx.PutPixel( 142 + x,19 + y,208,34,34 );
gfx.PutPixel( 143 + x,19 + y,208,34,34 );
gfx.PutPixel( 144 + x,19 + y,208,34,34 );
gfx.PutPixel( 145 + x,19 + y,208,34,34 );
gfx.PutPixel( 146 + x,19 + y,208,34,34 );
gfx.PutPixel( 147 + x,19 + y,208,34,34 );
gfx.PutPixel( 148 + x,19 + y,208,34,34 );
gfx.PutPixel( 149 + x,19 + y,208,34,34 );
gfx.PutPixel( 0 + x,20 + y,208,34,34 );
gfx.PutPixel( 1 + x,20 + y,208,34,34 );
gfx.PutPixel( 2 + x,20 + y,208,34,34 );
gfx.PutPixel( 3 + x,20 + y,208,34,34 );
gfx.PutPixel( 4 + x,20 + y,208,34,34 );
gfx.PutPixel( 5 + x,20 + y,208,34,34 );
gfx.PutPixel( 6 + x,20 + y,208,34,34 );
gfx.PutPixel( 7 + x,20 + y,208,34,34 );
gfx.PutPixel( 8 + x,20 + y,208,34,34 );
gfx.PutPixel( 9 + x,20 + y,208,34,34 );
gfx.PutPixel( 10 + x,20 + y,208,34,34 );
gfx.PutPixel( 11 + x,20 + y,208,34,34 );
gfx.PutPixel( 12 + x,20 + y,208,34,34 );
gfx.PutPixel( 13 + x,20 + y,208,34,34 );
gfx.PutPixel( 14 + x,20 + y,208,34,34 );
gfx.PutPixel( 15 + x,20 + y,208,34,34 );
gfx.PutPixel( 16 + x,20 + y,208,34,34 );
gfx.PutPixel( 17 + x,20 + y,208,34,34 );
gfx.PutPixel( 18 + x,20 + y,208,34,34 );
gfx.PutPixel( 19 + x,20 + y,208,34,34 );
gfx.PutPixel( 20 + x,20 + y,208,34,34 );
gfx.PutPixel( 21 + x,20 + y,208,34,34 );
gfx.PutPixel( 22 + x,20 + y,208,34,34 );
gfx.PutPixel( 23 + x,20 + y,208,34,34 );
gfx.PutPixel( 24 + x,20 + y,208,34,34 );
gfx.PutPixel( 25 + x,20 + y,208,34,34 );
gfx.PutPixel( 26 + x,20 + y,208,34,34 );
gfx.PutPixel( 27 + x,20 + y,208,34,34 );
gfx.PutPixel( 28 + x,20 + y,208,34,34 );
gfx.PutPixel( 29 + x,20 + y,208,34,34 );
gfx.PutPixel( 30 + x,20 + y,208,34,34 );
gfx.PutPixel( 31 + x,20 + y,208,34,34 );
gfx.PutPixel( 32 + x,20 + y,208,34,34 );
gfx.PutPixel( 33 + x,20 + y,208,34,34 );
gfx.PutPixel( 34 + x,20 + y,208,34,34 );
gfx.PutPixel( 35 + x,20 + y,208,34,34 );
gfx.PutPixel( 36 + x,20 + y,208,34,34 );
gfx.PutPixel( 37 + x,20 + y,208,34,34 );
gfx.PutPixel( 38 + x,20 + y,208,34,34 );
gfx.PutPixel( 39 + x,20 + y,208,34,34 );
gfx.PutPixel( 40 + x,20 + y,208,34,34 );
gfx.PutPixel( 41 + x,20 + y,208,34,34 );
gfx.PutPixel( 42 + x,20 + y,208,34,34 );
gfx.PutPixel( 43 + x,20 + y,208,34,34 );
gfx.PutPixel( 44 + x,20 + y,208,34,34 );
gfx.PutPixel( 45 + x,20 + y,208,34,34 );
gfx.PutPixel( 46 + x,20 + y,208,34,34 );
gfx.PutPixel( 47 + x,20 + y,208,34,34 );
gfx.PutPixel( 48 + x,20 + y,208,34,34 );
gfx.PutPixel( 49 + x,20 + y,208,34,34 );
gfx.PutPixel( 50 + x,20 + y,208,34,34 );
gfx.PutPixel( 51 + x,20 + y,208,34,34 );
gfx.PutPixel( 52 + x,20 + y,208,34,34 );
gfx.PutPixel( 53 + x,20 + y,208,34,34 );
gfx.PutPixel( 54 + x,20 + y,208,34,34 );
gfx.PutPixel( 55 + x,20 + y,208,34,34 );
gfx.PutPixel( 56 + x,20 + y,207,26,26 );
gfx.PutPixel( 57 + x,20 + y,212,85,85 );
gfx.PutPixel( 58 + x,20 + y,220,202,202 );
gfx.PutPixel( 59 + x,20 + y,219,188,188 );
gfx.PutPixel( 60 + x,20 + y,208,35,35 );
gfx.PutPixel( 61 + x,20 + y,207,24,24 );
gfx.PutPixel( 62 + x,20 + y,207,25,25 );
gfx.PutPixel( 63 + x,20 + y,209,45,45 );
gfx.PutPixel( 64 + x,20 + y,210,69,69 );
gfx.PutPixel( 65 + x,20 + y,214,123,123 );
gfx.PutPixel( 66 + x,20 + y,222,231,231 );
gfx.PutPixel( 67 + x,20 + y,219,188,188 );
gfx.PutPixel( 68 + x,20 + y,214,121,121 );
gfx.PutPixel( 69 + x,20 + y,218,186,186 );
gfx.PutPixel( 70 + x,20 + y,214,124,124 );
gfx.PutPixel( 71 + x,20 + y,209,44,44 );
gfx.PutPixel( 72 + x,20 + y,213,102,102 );
gfx.PutPixel( 73 + x,20 + y,212,85,85 );
gfx.PutPixel( 74 + x,20 + y,222,235,235 );
gfx.PutPixel( 75 + x,20 + y,218,177,177 );
gfx.PutPixel( 76 + x,20 + y,211,72,72 );
gfx.PutPixel( 77 + x,20 + y,212,89,89 );
gfx.PutPixel( 78 + x,20 + y,210,62,62 );
gfx.PutPixel( 79 + x,20 + y,218,176,176 );
gfx.PutPixel( 80 + x,20 + y,217,162,162 );
gfx.PutPixel( 81 + x,20 + y,213,107,107 );
gfx.PutPixel( 82 + x,20 + y,221,221,221 );
gfx.PutPixel( 83 + x,20 + y,220,213,213 );
gfx.PutPixel( 84 + x,20 + y,210,68,68 );
gfx.PutPixel( 85 + x,20 + y,209,42,42 );
gfx.PutPixel( 86 + x,20 + y,208,28,28 );
gfx.PutPixel( 87 + x,20 + y,208,27,27 );
gfx.PutPixel( 88 + x,20 + y,207,22,22 );
gfx.PutPixel( 89 + x,20 + y,209,54,54 );
gfx.PutPixel( 90 + x,20 + y,220,207,207 );
gfx.PutPixel( 91 + x,20 + y,219,188,188 );
gfx.PutPixel( 92 + x,20 + y,210,58,58 );
gfx.PutPixel( 93 + x,20 + y,208,29,29 );
gfx.PutPixel( 94 + x,20 + y,208,34,34 );
gfx.PutPixel( 95 + x,20 + y,208,34,34 );
gfx.PutPixel( 96 + x,20 + y,208,34,34 );
gfx.PutPixel( 97 + x,20 + y,208,34,34 );
gfx.PutPixel( 98 + x,20 + y,208,34,34 );
gfx.PutPixel( 99 + x,20 + y,208,34,34 );
gfx.PutPixel( 100 + x,20 + y,208,34,34 );
gfx.PutPixel( 101 + x,20 + y,208,34,34 );
gfx.PutPixel( 102 + x,20 + y,208,34,34 );
gfx.PutPixel( 103 + x,20 + y,208,34,34 );
gfx.PutPixel( 104 + x,20 + y,208,34,34 );
gfx.PutPixel( 105 + x,20 + y,208,34,34 );
gfx.PutPixel( 106 + x,20 + y,208,34,34 );
gfx.PutPixel( 107 + x,20 + y,208,34,34 );
gfx.PutPixel( 108 + x,20 + y,208,34,34 );
gfx.PutPixel( 109 + x,20 + y,208,34,34 );
gfx.PutPixel( 110 + x,20 + y,208,34,34 );
gfx.PutPixel( 111 + x,20 + y,208,34,34 );
gfx.PutPixel( 112 + x,20 + y,208,34,34 );
gfx.PutPixel( 113 + x,20 + y,208,34,34 );
gfx.PutPixel( 114 + x,20 + y,208,34,34 );
gfx.PutPixel( 115 + x,20 + y,208,34,34 );
gfx.PutPixel( 116 + x,20 + y,208,34,34 );
gfx.PutPixel( 117 + x,20 + y,208,34,34 );
gfx.PutPixel( 118 + x,20 + y,208,34,34 );
gfx.PutPixel( 119 + x,20 + y,208,34,34 );
gfx.PutPixel( 120 + x,20 + y,208,34,34 );
gfx.PutPixel( 121 + x,20 + y,208,34,34 );
gfx.PutPixel( 122 + x,20 + y,208,34,34 );
gfx.PutPixel( 123 + x,20 + y,208,34,34 );
gfx.PutPixel( 124 + x,20 + y,208,34,34 );
gfx.PutPixel( 125 + x,20 + y,208,34,34 );
gfx.PutPixel( 126 + x,20 + y,208,34,34 );
gfx.PutPixel( 127 + x,20 + y,208,34,34 );
gfx.PutPixel( 128 + x,20 + y,208,34,34 );
gfx.PutPixel( 129 + x,20 + y,208,34,34 );
gfx.PutPixel( 130 + x,20 + y,208,34,34 );
gfx.PutPixel( 131 + x,20 + y,208,34,34 );
gfx.PutPixel( 132 + x,20 + y,208,34,34 );
gfx.PutPixel( 133 + x,20 + y,208,34,34 );
gfx.PutPixel( 134 + x,20 + y,208,34,34 );
gfx.PutPixel( 135 + x,20 + y,208,34,34 );
gfx.PutPixel( 136 + x,20 + y,208,34,34 );
gfx.PutPixel( 137 + x,20 + y,208,34,34 );
gfx.PutPixel( 138 + x,20 + y,208,34,34 );
gfx.PutPixel( 139 + x,20 + y,208,34,34 );
gfx.PutPixel( 140 + x,20 + y,208,34,34 );
gfx.PutPixel( 141 + x,20 + y,208,34,34 );
gfx.PutPixel( 142 + x,20 + y,208,34,34 );
gfx.PutPixel( 143 + x,20 + y,208,34,34 );
gfx.PutPixel( 144 + x,20 + y,208,34,34 );
gfx.PutPixel( 145 + x,20 + y,208,34,34 );
gfx.PutPixel( 146 + x,20 + y,208,34,34 );
gfx.PutPixel( 147 + x,20 + y,208,34,34 );
gfx.PutPixel( 148 + x,20 + y,208,34,34 );
gfx.PutPixel( 149 + x,20 + y,208,34,34 );
gfx.PutPixel( 0 + x,21 + y,208,34,34 );
gfx.PutPixel( 1 + x,21 + y,208,34,34 );
gfx.PutPixel( 2 + x,21 + y,208,34,34 );
gfx.PutPixel( 3 + x,21 + y,208,34,34 );
gfx.PutPixel( 4 + x,21 + y,208,34,34 );
gfx.PutPixel( 5 + x,21 + y,208,34,34 );
gfx.PutPixel( 6 + x,21 + y,208,34,34 );
gfx.PutPixel( 7 + x,21 + y,208,34,34 );
gfx.PutPixel( 8 + x,21 + y,208,34,34 );
gfx.PutPixel( 9 + x,21 + y,208,34,34 );
gfx.PutPixel( 10 + x,21 + y,208,34,34 );
gfx.PutPixel( 11 + x,21 + y,208,34,34 );
gfx.PutPixel( 12 + x,21 + y,208,34,34 );
gfx.PutPixel( 13 + x,21 + y,208,34,34 );
gfx.PutPixel( 14 + x,21 + y,208,34,34 );
gfx.PutPixel( 15 + x,21 + y,208,34,34 );
gfx.PutPixel( 16 + x,21 + y,208,34,34 );
gfx.PutPixel( 17 + x,21 + y,208,34,34 );
gfx.PutPixel( 18 + x,21 + y,208,34,34 );
gfx.PutPixel( 19 + x,21 + y,208,34,34 );
gfx.PutPixel( 20 + x,21 + y,208,34,34 );
gfx.PutPixel( 21 + x,21 + y,208,34,34 );
gfx.PutPixel( 22 + x,21 + y,208,34,34 );
gfx.PutPixel( 23 + x,21 + y,208,34,34 );
gfx.PutPixel( 24 + x,21 + y,208,34,34 );
gfx.PutPixel( 25 + x,21 + y,208,34,34 );
gfx.PutPixel( 26 + x,21 + y,208,34,34 );
gfx.PutPixel( 27 + x,21 + y,208,34,34 );
gfx.PutPixel( 28 + x,21 + y,208,34,34 );
gfx.PutPixel( 29 + x,21 + y,208,34,34 );
gfx.PutPixel( 30 + x,21 + y,208,34,34 );
gfx.PutPixel( 31 + x,21 + y,208,34,34 );
gfx.PutPixel( 32 + x,21 + y,208,34,34 );
gfx.PutPixel( 33 + x,21 + y,208,34,34 );
gfx.PutPixel( 34 + x,21 + y,208,34,34 );
gfx.PutPixel( 35 + x,21 + y,208,34,34 );
gfx.PutPixel( 36 + x,21 + y,208,34,34 );
gfx.PutPixel( 37 + x,21 + y,208,34,34 );
gfx.PutPixel( 38 + x,21 + y,208,34,34 );
gfx.PutPixel( 39 + x,21 + y,208,34,34 );
gfx.PutPixel( 40 + x,21 + y,208,34,34 );
gfx.PutPixel( 41 + x,21 + y,208,34,34 );
gfx.PutPixel( 42 + x,21 + y,208,34,34 );
gfx.PutPixel( 43 + x,21 + y,208,34,34 );
gfx.PutPixel( 44 + x,21 + y,208,34,34 );
gfx.PutPixel( 45 + x,21 + y,208,34,34 );
gfx.PutPixel( 46 + x,21 + y,208,34,34 );
gfx.PutPixel( 47 + x,21 + y,208,34,34 );
gfx.PutPixel( 48 + x,21 + y,208,34,34 );
gfx.PutPixel( 49 + x,21 + y,208,34,34 );
gfx.PutPixel( 50 + x,21 + y,208,34,34 );
gfx.PutPixel( 51 + x,21 + y,208,34,34 );
gfx.PutPixel( 52 + x,21 + y,208,34,34 );
gfx.PutPixel( 53 + x,21 + y,208,34,34 );
gfx.PutPixel( 54 + x,21 + y,208,34,34 );
gfx.PutPixel( 55 + x,21 + y,208,34,34 );
gfx.PutPixel( 56 + x,21 + y,208,27,27 );
gfx.PutPixel( 57 + x,21 + y,211,69,69 );
gfx.PutPixel( 58 + x,21 + y,222,234,234 );
gfx.PutPixel( 59 + x,21 + y,214,121,121 );
gfx.PutPixel( 60 + x,21 + y,212,85,85 );
gfx.PutPixel( 61 + x,21 + y,210,56,56 );
gfx.PutPixel( 62 + x,21 + y,210,59,59 );
gfx.PutPixel( 63 + x,21 + y,219,196,196 );
gfx.PutPixel( 64 + x,21 + y,221,228,228 );
gfx.PutPixel( 65 + x,21 + y,220,212,212 );
gfx.PutPixel( 66 + x,21 + y,221,219,219 );
gfx.PutPixel( 67 + x,21 + y,221,216,216 );
gfx.PutPixel( 68 + x,21 + y,222,235,235 );
gfx.PutPixel( 69 + x,21 + y,222,240,240 );
gfx.PutPixel( 70 + x,21 + y,222,230,230 );
gfx.PutPixel( 71 + x,21 + y,213,100,100 );
gfx.PutPixel( 72 + x,21 + y,219,197,197 );
gfx.PutPixel( 73 + x,21 + y,219,199,199 );
gfx.PutPixel( 74 + x,21 + y,217,169,169 );
gfx.PutPixel( 75 + x,21 + y,217,170,170 );
gfx.PutPixel( 76 + x,21 + y,221,222,222 );
gfx.PutPixel( 77 + x,21 + y,214,127,127 );
gfx.PutPixel( 78 + x,21 + y,216,156,156 );
gfx.PutPixel( 79 + x,21 + y,223,242,242 );
gfx.PutPixel( 80 + x,21 + y,222,238,238 );
gfx.PutPixel( 81 + x,21 + y,221,216,216 );
gfx.PutPixel( 82 + x,21 + y,221,221,221 );
gfx.PutPixel( 83 + x,21 + y,219,197,197 );
gfx.PutPixel( 84 + x,21 + y,218,184,184 );
gfx.PutPixel( 85 + x,21 + y,220,212,212 );
gfx.PutPixel( 86 + x,21 + y,214,124,124 );
gfx.PutPixel( 87 + x,21 + y,207,26,26 );
gfx.PutPixel( 88 + x,21 + y,214,119,119 );
gfx.PutPixel( 89 + x,21 + y,210,71,71 );
gfx.PutPixel( 90 + x,21 + y,220,202,202 );
gfx.PutPixel( 91 + x,21 + y,219,204,204 );
gfx.PutPixel( 92 + x,21 + y,209,41,41 );
gfx.PutPixel( 93 + x,21 + y,208,31,31 );
gfx.PutPixel( 94 + x,21 + y,208,34,34 );
gfx.PutPixel( 95 + x,21 + y,208,34,34 );
gfx.PutPixel( 96 + x,21 + y,208,34,34 );
gfx.PutPixel( 97 + x,21 + y,208,34,34 );
gfx.PutPixel( 98 + x,21 + y,208,34,34 );
gfx.PutPixel( 99 + x,21 + y,208,34,34 );
gfx.PutPixel( 100 + x,21 + y,208,34,34 );
gfx.PutPixel( 101 + x,21 + y,208,34,34 );
gfx.PutPixel( 102 + x,21 + y,208,34,34 );
gfx.PutPixel( 103 + x,21 + y,208,34,34 );
gfx.PutPixel( 104 + x,21 + y,208,34,34 );
gfx.PutPixel( 105 + x,21 + y,208,34,34 );
gfx.PutPixel( 106 + x,21 + y,208,34,34 );
gfx.PutPixel( 107 + x,21 + y,208,34,34 );
gfx.PutPixel( 108 + x,21 + y,208,34,34 );
gfx.PutPixel( 109 + x,21 + y,208,34,34 );
gfx.PutPixel( 110 + x,21 + y,208,34,34 );
gfx.PutPixel( 111 + x,21 + y,208,34,34 );
gfx.PutPixel( 112 + x,21 + y,208,34,34 );
gfx.PutPixel( 113 + x,21 + y,208,34,34 );
gfx.PutPixel( 114 + x,21 + y,208,34,34 );
gfx.PutPixel( 115 + x,21 + y,208,34,34 );
gfx.PutPixel( 116 + x,21 + y,208,34,34 );
gfx.PutPixel( 117 + x,21 + y,208,34,34 );
gfx.PutPixel( 118 + x,21 + y,208,34,34 );
gfx.PutPixel( 119 + x,21 + y,208,34,34 );
gfx.PutPixel( 120 + x,21 + y,208,34,34 );
gfx.PutPixel( 121 + x,21 + y,208,34,34 );
gfx.PutPixel( 122 + x,21 + y,208,34,34 );
gfx.PutPixel( 123 + x,21 + y,208,34,34 );
gfx.PutPixel( 124 + x,21 + y,208,34,34 );
gfx.PutPixel( 125 + x,21 + y,208,34,34 );
gfx.PutPixel( 126 + x,21 + y,208,34,34 );
gfx.PutPixel( 127 + x,21 + y,208,34,34 );
gfx.PutPixel( 128 + x,21 + y,208,34,34 );
gfx.PutPixel( 129 + x,21 + y,208,34,34 );
gfx.PutPixel( 130 + x,21 + y,208,34,34 );
gfx.PutPixel( 131 + x,21 + y,208,34,34 );
gfx.PutPixel( 132 + x,21 + y,208,34,34 );
gfx.PutPixel( 133 + x,21 + y,208,34,34 );
gfx.PutPixel( 134 + x,21 + y,208,34,34 );
gfx.PutPixel( 135 + x,21 + y,208,34,34 );
gfx.PutPixel( 136 + x,21 + y,208,34,34 );
gfx.PutPixel( 137 + x,21 + y,208,34,34 );
gfx.PutPixel( 138 + x,21 + y,208,34,34 );
gfx.PutPixel( 139 + x,21 + y,208,34,34 );
gfx.PutPixel( 140 + x,21 + y,208,34,34 );
gfx.PutPixel( 141 + x,21 + y,208,34,34 );
gfx.PutPixel( 142 + x,21 + y,208,34,34 );
gfx.PutPixel( 143 + x,21 + y,208,34,34 );
gfx.PutPixel( 144 + x,21 + y,208,34,34 );
gfx.PutPixel( 145 + x,21 + y,208,34,34 );
gfx.PutPixel( 146 + x,21 + y,208,34,34 );
gfx.PutPixel( 147 + x,21 + y,208,34,34 );
gfx.PutPixel( 148 + x,21 + y,208,34,34 );
gfx.PutPixel( 149 + x,21 + y,208,34,34 );
gfx.PutPixel( 0 + x,22 + y,208,34,34 );
gfx.PutPixel( 1 + x,22 + y,208,34,34 );
gfx.PutPixel( 2 + x,22 + y,208,34,34 );
gfx.PutPixel( 3 + x,22 + y,208,34,34 );
gfx.PutPixel( 4 + x,22 + y,208,34,34 );
gfx.PutPixel( 5 + x,22 + y,208,34,34 );
gfx.PutPixel( 6 + x,22 + y,208,34,34 );
gfx.PutPixel( 7 + x,22 + y,208,34,34 );
gfx.PutPixel( 8 + x,22 + y,208,34,34 );
gfx.PutPixel( 9 + x,22 + y,208,34,34 );
gfx.PutPixel( 10 + x,22 + y,208,34,34 );
gfx.PutPixel( 11 + x,22 + y,208,34,34 );
gfx.PutPixel( 12 + x,22 + y,208,34,34 );
gfx.PutPixel( 13 + x,22 + y,208,34,34 );
gfx.PutPixel( 14 + x,22 + y,208,34,34 );
gfx.PutPixel( 15 + x,22 + y,208,34,34 );
gfx.PutPixel( 16 + x,22 + y,208,34,34 );
gfx.PutPixel( 17 + x,22 + y,208,34,34 );
gfx.PutPixel( 18 + x,22 + y,208,34,34 );
gfx.PutPixel( 19 + x,22 + y,208,34,34 );
gfx.PutPixel( 20 + x,22 + y,208,34,34 );
gfx.PutPixel( 21 + x,22 + y,208,34,34 );
gfx.PutPixel( 22 + x,22 + y,208,34,34 );
gfx.PutPixel( 23 + x,22 + y,208,34,34 );
gfx.PutPixel( 24 + x,22 + y,208,34,34 );
gfx.PutPixel( 25 + x,22 + y,208,34,34 );
gfx.PutPixel( 26 + x,22 + y,208,34,34 );
gfx.PutPixel( 27 + x,22 + y,208,34,34 );
gfx.PutPixel( 28 + x,22 + y,208,34,34 );
gfx.PutPixel( 29 + x,22 + y,208,34,34 );
gfx.PutPixel( 30 + x,22 + y,208,34,34 );
gfx.PutPixel( 31 + x,22 + y,208,34,34 );
gfx.PutPixel( 32 + x,22 + y,208,34,34 );
gfx.PutPixel( 33 + x,22 + y,208,34,34 );
gfx.PutPixel( 34 + x,22 + y,208,34,34 );
gfx.PutPixel( 35 + x,22 + y,208,34,34 );
gfx.PutPixel( 36 + x,22 + y,208,34,34 );
gfx.PutPixel( 37 + x,22 + y,208,34,34 );
gfx.PutPixel( 38 + x,22 + y,208,34,34 );
gfx.PutPixel( 39 + x,22 + y,208,34,34 );
gfx.PutPixel( 40 + x,22 + y,208,34,34 );
gfx.PutPixel( 41 + x,22 + y,208,34,34 );
gfx.PutPixel( 42 + x,22 + y,208,34,34 );
gfx.PutPixel( 43 + x,22 + y,208,34,34 );
gfx.PutPixel( 44 + x,22 + y,208,34,34 );
gfx.PutPixel( 45 + x,22 + y,208,34,34 );
gfx.PutPixel( 46 + x,22 + y,208,34,34 );
gfx.PutPixel( 47 + x,22 + y,208,34,34 );
gfx.PutPixel( 48 + x,22 + y,208,34,34 );
gfx.PutPixel( 49 + x,22 + y,208,34,34 );
gfx.PutPixel( 50 + x,22 + y,208,34,34 );
gfx.PutPixel( 51 + x,22 + y,208,34,34 );
gfx.PutPixel( 52 + x,22 + y,208,34,34 );
gfx.PutPixel( 53 + x,22 + y,208,34,34 );
gfx.PutPixel( 54 + x,22 + y,208,34,34 );
gfx.PutPixel( 55 + x,22 + y,208,34,34 );
gfx.PutPixel( 56 + x,22 + y,208,32,32 );
gfx.PutPixel( 57 + x,22 + y,209,39,39 );
gfx.PutPixel( 58 + x,22 + y,218,179,179 );
gfx.PutPixel( 59 + x,22 + y,218,173,173 );
gfx.PutPixel( 60 + x,22 + y,221,224,224 );
gfx.PutPixel( 61 + x,22 + y,211,84,84 );
gfx.PutPixel( 62 + x,22 + y,216,148,148 );
gfx.PutPixel( 63 + x,22 + y,222,240,240 );
gfx.PutPixel( 64 + x,22 + y,221,225,225 );
gfx.PutPixel( 65 + x,22 + y,221,227,227 );
gfx.PutPixel( 66 + x,22 + y,221,225,225 );
gfx.PutPixel( 67 + x,22 + y,221,222,222 );
gfx.PutPixel( 68 + x,22 + y,216,157,157 );
gfx.PutPixel( 69 + x,22 + y,217,162,162 );
gfx.PutPixel( 70 + x,22 + y,222,236,236 );
gfx.PutPixel( 71 + x,22 + y,214,117,117 );
gfx.PutPixel( 72 + x,22 + y,219,190,190 );
gfx.PutPixel( 73 + x,22 + y,223,242,242 );
gfx.PutPixel( 74 + x,22 + y,215,137,137 );
gfx.PutPixel( 75 + x,22 + y,218,178,178 );
gfx.PutPixel( 76 + x,22 + y,223,248,248 );
gfx.PutPixel( 77 + x,22 + y,214,123,123 );
gfx.PutPixel( 78 + x,22 + y,218,177,177 );
gfx.PutPixel( 79 + x,22 + y,220,215,215 );
gfx.PutPixel( 80 + x,22 + y,218,182,182 );
gfx.PutPixel( 81 + x,22 + y,221,224,224 );
gfx.PutPixel( 82 + x,22 + y,221,221,221 );
gfx.PutPixel( 83 + x,22 + y,222,229,229 );
gfx.PutPixel( 84 + x,22 + y,222,237,237 );
gfx.PutPixel( 85 + x,22 + y,222,230,230 );
gfx.PutPixel( 86 + x,22 + y,221,223,223 );
gfx.PutPixel( 87 + x,22 + y,211,73,73 );
gfx.PutPixel( 88 + x,22 + y,219,196,196 );
gfx.PutPixel( 89 + x,22 + y,219,196,196 );
gfx.PutPixel( 90 + x,22 + y,220,207,207 );
gfx.PutPixel( 91 + x,22 + y,215,135,135 );
gfx.PutPixel( 92 + x,22 + y,207,23,23 );
gfx.PutPixel( 93 + x,22 + y,208,34,34 );
gfx.PutPixel( 94 + x,22 + y,208,34,34 );
gfx.PutPixel( 95 + x,22 + y,208,34,34 );
gfx.PutPixel( 96 + x,22 + y,208,34,34 );
gfx.PutPixel( 97 + x,22 + y,208,34,34 );
gfx.PutPixel( 98 + x,22 + y,208,34,34 );
gfx.PutPixel( 99 + x,22 + y,208,34,34 );
gfx.PutPixel( 100 + x,22 + y,208,34,34 );
gfx.PutPixel( 101 + x,22 + y,208,34,34 );
gfx.PutPixel( 102 + x,22 + y,208,34,34 );
gfx.PutPixel( 103 + x,22 + y,208,34,34 );
gfx.PutPixel( 104 + x,22 + y,208,34,34 );
gfx.PutPixel( 105 + x,22 + y,208,34,34 );
gfx.PutPixel( 106 + x,22 + y,208,34,34 );
gfx.PutPixel( 107 + x,22 + y,208,34,34 );
gfx.PutPixel( 108 + x,22 + y,208,34,34 );
gfx.PutPixel( 109 + x,22 + y,208,34,34 );
gfx.PutPixel( 110 + x,22 + y,208,34,34 );
gfx.PutPixel( 111 + x,22 + y,208,34,34 );
gfx.PutPixel( 112 + x,22 + y,208,34,34 );
gfx.PutPixel( 113 + x,22 + y,208,34,34 );
gfx.PutPixel( 114 + x,22 + y,208,34,34 );
gfx.PutPixel( 115 + x,22 + y,208,34,34 );
gfx.PutPixel( 116 + x,22 + y,208,34,34 );
gfx.PutPixel( 117 + x,22 + y,208,34,34 );
gfx.PutPixel( 118 + x,22 + y,208,34,34 );
gfx.PutPixel( 119 + x,22 + y,208,34,34 );
gfx.PutPixel( 120 + x,22 + y,208,34,34 );
gfx.PutPixel( 121 + x,22 + y,208,34,34 );
gfx.PutPixel( 122 + x,22 + y,208,34,34 );
gfx.PutPixel( 123 + x,22 + y,208,34,34 );
gfx.PutPixel( 124 + x,22 + y,208,34,34 );
gfx.PutPixel( 125 + x,22 + y,208,34,34 );
gfx.PutPixel( 126 + x,22 + y,208,34,34 );
gfx.PutPixel( 127 + x,22 + y,208,34,34 );
gfx.PutPixel( 128 + x,22 + y,208,34,34 );
gfx.PutPixel( 129 + x,22 + y,208,34,34 );
gfx.PutPixel( 130 + x,22 + y,208,34,34 );
gfx.PutPixel( 131 + x,22 + y,208,34,34 );
gfx.PutPixel( 132 + x,22 + y,208,34,34 );
gfx.PutPixel( 133 + x,22 + y,208,34,34 );
gfx.PutPixel( 134 + x,22 + y,208,34,34 );
gfx.PutPixel( 135 + x,22 + y,208,34,34 );
gfx.PutPixel( 136 + x,22 + y,208,34,34 );
gfx.PutPixel( 137 + x,22 + y,208,34,34 );
gfx.PutPixel( 138 + x,22 + y,208,34,34 );
gfx.PutPixel( 139 + x,22 + y,208,34,34 );
gfx.PutPixel( 140 + x,22 + y,208,34,34 );
gfx.PutPixel( 141 + x,22 + y,208,34,34 );
gfx.PutPixel( 142 + x,22 + y,208,34,34 );
gfx.PutPixel( 143 + x,22 + y,208,34,34 );
gfx.PutPixel( 144 + x,22 + y,208,34,34 );
gfx.PutPixel( 145 + x,22 + y,208,34,34 );
gfx.PutPixel( 146 + x,22 + y,208,34,34 );
gfx.PutPixel( 147 + x,22 + y,208,34,34 );
gfx.PutPixel( 148 + x,22 + y,208,34,34 );
gfx.PutPixel( 149 + x,22 + y,208,34,34 );
gfx.PutPixel( 0 + x,23 + y,208,34,34 );
gfx.PutPixel( 1 + x,23 + y,208,34,34 );
gfx.PutPixel( 2 + x,23 + y,208,34,34 );
gfx.PutPixel( 3 + x,23 + y,208,34,34 );
gfx.PutPixel( 4 + x,23 + y,208,34,34 );
gfx.PutPixel( 5 + x,23 + y,208,34,34 );
gfx.PutPixel( 6 + x,23 + y,208,34,34 );
gfx.PutPixel( 7 + x,23 + y,208,34,34 );
gfx.PutPixel( 8 + x,23 + y,208,34,34 );
gfx.PutPixel( 9 + x,23 + y,208,34,34 );
gfx.PutPixel( 10 + x,23 + y,208,34,34 );
gfx.PutPixel( 11 + x,23 + y,208,34,34 );
gfx.PutPixel( 12 + x,23 + y,208,34,34 );
gfx.PutPixel( 13 + x,23 + y,208,34,34 );
gfx.PutPixel( 14 + x,23 + y,208,34,34 );
gfx.PutPixel( 15 + x,23 + y,208,34,34 );
gfx.PutPixel( 16 + x,23 + y,208,34,34 );
gfx.PutPixel( 17 + x,23 + y,208,34,34 );
gfx.PutPixel( 18 + x,23 + y,208,34,34 );
gfx.PutPixel( 19 + x,23 + y,208,34,34 );
gfx.PutPixel( 20 + x,23 + y,208,34,34 );
gfx.PutPixel( 21 + x,23 + y,208,34,34 );
gfx.PutPixel( 22 + x,23 + y,208,34,34 );
gfx.PutPixel( 23 + x,23 + y,208,34,34 );
gfx.PutPixel( 24 + x,23 + y,208,34,34 );
gfx.PutPixel( 25 + x,23 + y,208,34,34 );
gfx.PutPixel( 26 + x,23 + y,208,34,34 );
gfx.PutPixel( 27 + x,23 + y,208,34,34 );
gfx.PutPixel( 28 + x,23 + y,208,34,34 );
gfx.PutPixel( 29 + x,23 + y,208,34,34 );
gfx.PutPixel( 30 + x,23 + y,208,34,34 );
gfx.PutPixel( 31 + x,23 + y,208,34,34 );
gfx.PutPixel( 32 + x,23 + y,208,34,34 );
gfx.PutPixel( 33 + x,23 + y,208,34,34 );
gfx.PutPixel( 34 + x,23 + y,208,34,34 );
gfx.PutPixel( 35 + x,23 + y,208,34,34 );
gfx.PutPixel( 36 + x,23 + y,208,34,34 );
gfx.PutPixel( 37 + x,23 + y,208,34,34 );
gfx.PutPixel( 38 + x,23 + y,208,34,34 );
gfx.PutPixel( 39 + x,23 + y,208,34,34 );
gfx.PutPixel( 40 + x,23 + y,208,34,34 );
gfx.PutPixel( 41 + x,23 + y,208,34,34 );
gfx.PutPixel( 42 + x,23 + y,208,34,34 );
gfx.PutPixel( 43 + x,23 + y,208,34,34 );
gfx.PutPixel( 44 + x,23 + y,208,34,34 );
gfx.PutPixel( 45 + x,23 + y,208,34,34 );
gfx.PutPixel( 46 + x,23 + y,208,34,34 );
gfx.PutPixel( 47 + x,23 + y,208,34,34 );
gfx.PutPixel( 48 + x,23 + y,208,34,34 );
gfx.PutPixel( 49 + x,23 + y,208,34,34 );
gfx.PutPixel( 50 + x,23 + y,208,34,34 );
gfx.PutPixel( 51 + x,23 + y,208,34,34 );
gfx.PutPixel( 52 + x,23 + y,208,34,34 );
gfx.PutPixel( 53 + x,23 + y,208,34,34 );
gfx.PutPixel( 54 + x,23 + y,208,34,34 );
gfx.PutPixel( 55 + x,23 + y,208,34,34 );
gfx.PutPixel( 56 + x,23 + y,208,30,30 );
gfx.PutPixel( 57 + x,23 + y,210,57,57 );
gfx.PutPixel( 58 + x,23 + y,214,121,121 );
gfx.PutPixel( 59 + x,23 + y,217,165,165 );
gfx.PutPixel( 60 + x,23 + y,223,249,249 );
gfx.PutPixel( 61 + x,23 + y,214,129,129 );
gfx.PutPixel( 62 + x,23 + y,218,175,175 );
gfx.PutPixel( 63 + x,23 + y,220,206,206 );
gfx.PutPixel( 64 + x,23 + y,211,80,80 );
gfx.PutPixel( 65 + x,23 + y,212,89,89 );
gfx.PutPixel( 66 + x,23 + y,220,215,215 );
gfx.PutPixel( 67 + x,23 + y,218,178,178 );
gfx.PutPixel( 68 + x,23 + y,207,22,22 );
gfx.PutPixel( 69 + x,23 + y,208,32,32 );
gfx.PutPixel( 70 + x,23 + y,216,150,150 );
gfx.PutPixel( 71 + x,23 + y,210,62,62 );
gfx.PutPixel( 72 + x,23 + y,215,138,138 );
gfx.PutPixel( 73 + x,23 + y,212,91,91 );
gfx.PutPixel( 74 + x,23 + y,219,197,197 );
gfx.PutPixel( 75 + x,23 + y,216,158,158 );
gfx.PutPixel( 76 + x,23 + y,214,119,119 );
gfx.PutPixel( 77 + x,23 + y,212,95,95 );
gfx.PutPixel( 78 + x,23 + y,213,103,103 );
gfx.PutPixel( 79 + x,23 + y,212,87,87 );
gfx.PutPixel( 80 + x,23 + y,207,22,22 );
gfx.PutPixel( 81 + x,23 + y,217,164,164 );
gfx.PutPixel( 82 + x,23 + y,222,236,236 );
gfx.PutPixel( 83 + x,23 + y,218,171,171 );
gfx.PutPixel( 84 + x,23 + y,213,102,102 );
gfx.PutPixel( 85 + x,23 + y,219,200,200 );
gfx.PutPixel( 86 + x,23 + y,221,219,219 );
gfx.PutPixel( 87 + x,23 + y,213,106,106 );
gfx.PutPixel( 88 + x,23 + y,221,227,227 );
gfx.PutPixel( 89 + x,23 + y,221,221,221 );
gfx.PutPixel( 90 + x,23 + y,214,122,122 );
gfx.PutPixel( 91 + x,23 + y,213,101,101 );
gfx.PutPixel( 92 + x,23 + y,207,25,25 );
gfx.PutPixel( 93 + x,23 + y,208,34,34 );
gfx.PutPixel( 94 + x,23 + y,208,34,34 );
gfx.PutPixel( 95 + x,23 + y,208,34,34 );
gfx.PutPixel( 96 + x,23 + y,208,34,34 );
gfx.PutPixel( 97 + x,23 + y,208,34,34 );
gfx.PutPixel( 98 + x,23 + y,208,34,34 );
gfx.PutPixel( 99 + x,23 + y,208,34,34 );
gfx.PutPixel( 100 + x,23 + y,208,34,34 );
gfx.PutPixel( 101 + x,23 + y,208,34,34 );
gfx.PutPixel( 102 + x,23 + y,208,34,34 );
gfx.PutPixel( 103 + x,23 + y,208,34,34 );
gfx.PutPixel( 104 + x,23 + y,208,34,34 );
gfx.PutPixel( 105 + x,23 + y,208,34,34 );
gfx.PutPixel( 106 + x,23 + y,208,34,34 );
gfx.PutPixel( 107 + x,23 + y,208,34,34 );
gfx.PutPixel( 108 + x,23 + y,208,34,34 );
gfx.PutPixel( 109 + x,23 + y,208,34,34 );
gfx.PutPixel( 110 + x,23 + y,208,34,34 );
gfx.PutPixel( 111 + x,23 + y,208,34,34 );
gfx.PutPixel( 112 + x,23 + y,208,34,34 );
gfx.PutPixel( 113 + x,23 + y,208,34,34 );
gfx.PutPixel( 114 + x,23 + y,208,34,34 );
gfx.PutPixel( 115 + x,23 + y,208,34,34 );
gfx.PutPixel( 116 + x,23 + y,208,34,34 );
gfx.PutPixel( 117 + x,23 + y,208,34,34 );
gfx.PutPixel( 118 + x,23 + y,208,34,34 );
gfx.PutPixel( 119 + x,23 + y,208,34,34 );
gfx.PutPixel( 120 + x,23 + y,208,34,34 );
gfx.PutPixel( 121 + x,23 + y,208,34,34 );
gfx.PutPixel( 122 + x,23 + y,208,34,34 );
gfx.PutPixel( 123 + x,23 + y,208,34,34 );
gfx.PutPixel( 124 + x,23 + y,208,34,34 );
gfx.PutPixel( 125 + x,23 + y,208,34,34 );
gfx.PutPixel( 126 + x,23 + y,208,34,34 );
gfx.PutPixel( 127 + x,23 + y,208,34,34 );
gfx.PutPixel( 128 + x,23 + y,208,34,34 );
gfx.PutPixel( 129 + x,23 + y,208,34,34 );
gfx.PutPixel( 130 + x,23 + y,208,34,34 );
gfx.PutPixel( 131 + x,23 + y,208,34,34 );
gfx.PutPixel( 132 + x,23 + y,208,34,34 );
gfx.PutPixel( 133 + x,23 + y,208,34,34 );
gfx.PutPixel( 134 + x,23 + y,208,34,34 );
gfx.PutPixel( 135 + x,23 + y,208,34,34 );
gfx.PutPixel( 136 + x,23 + y,208,34,34 );
gfx.PutPixel( 137 + x,23 + y,208,34,34 );
gfx.PutPixel( 138 + x,23 + y,208,34,34 );
gfx.PutPixel( 139 + x,23 + y,208,34,34 );
gfx.PutPixel( 140 + x,23 + y,208,34,34 );
gfx.PutPixel( 141 + x,23 + y,208,34,34 );
gfx.PutPixel( 142 + x,23 + y,208,34,34 );
gfx.PutPixel( 143 + x,23 + y,208,34,34 );
gfx.PutPixel( 144 + x,23 + y,208,34,34 );
gfx.PutPixel( 145 + x,23 + y,208,34,34 );
gfx.PutPixel( 146 + x,23 + y,208,34,34 );
gfx.PutPixel( 147 + x,23 + y,208,34,34 );
gfx.PutPixel( 148 + x,23 + y,208,34,34 );
gfx.PutPixel( 149 + x,23 + y,208,34,34 );
gfx.PutPixel( 0 + x,24 + y,208,34,34 );
gfx.PutPixel( 1 + x,24 + y,208,34,34 );
gfx.PutPixel( 2 + x,24 + y,208,34,34 );
gfx.PutPixel( 3 + x,24 + y,208,34,34 );
gfx.PutPixel( 4 + x,24 + y,208,34,34 );
gfx.PutPixel( 5 + x,24 + y,208,34,34 );
gfx.PutPixel( 6 + x,24 + y,208,34,34 );
gfx.PutPixel( 7 + x,24 + y,208,34,34 );
gfx.PutPixel( 8 + x,24 + y,208,34,34 );
gfx.PutPixel( 9 + x,24 + y,208,34,34 );
gfx.PutPixel( 10 + x,24 + y,208,34,34 );
gfx.PutPixel( 11 + x,24 + y,208,34,34 );
gfx.PutPixel( 12 + x,24 + y,208,34,34 );
gfx.PutPixel( 13 + x,24 + y,208,34,34 );
gfx.PutPixel( 14 + x,24 + y,208,34,34 );
gfx.PutPixel( 15 + x,24 + y,208,34,34 );
gfx.PutPixel( 16 + x,24 + y,208,34,34 );
gfx.PutPixel( 17 + x,24 + y,208,34,34 );
gfx.PutPixel( 18 + x,24 + y,208,34,34 );
gfx.PutPixel( 19 + x,24 + y,208,34,34 );
gfx.PutPixel( 20 + x,24 + y,208,34,34 );
gfx.PutPixel( 21 + x,24 + y,208,34,34 );
gfx.PutPixel( 22 + x,24 + y,208,34,34 );
gfx.PutPixel( 23 + x,24 + y,208,34,34 );
gfx.PutPixel( 24 + x,24 + y,208,34,34 );
gfx.PutPixel( 25 + x,24 + y,208,34,34 );
gfx.PutPixel( 26 + x,24 + y,208,34,34 );
gfx.PutPixel( 27 + x,24 + y,208,34,34 );
gfx.PutPixel( 28 + x,24 + y,208,34,34 );
gfx.PutPixel( 29 + x,24 + y,208,34,34 );
gfx.PutPixel( 30 + x,24 + y,208,34,34 );
gfx.PutPixel( 31 + x,24 + y,208,34,34 );
gfx.PutPixel( 32 + x,24 + y,208,34,34 );
gfx.PutPixel( 33 + x,24 + y,208,34,34 );
gfx.PutPixel( 34 + x,24 + y,208,34,34 );
gfx.PutPixel( 35 + x,24 + y,208,34,34 );
gfx.PutPixel( 36 + x,24 + y,208,34,34 );
gfx.PutPixel( 37 + x,24 + y,208,34,34 );
gfx.PutPixel( 38 + x,24 + y,208,34,34 );
gfx.PutPixel( 39 + x,24 + y,208,34,34 );
gfx.PutPixel( 40 + x,24 + y,208,34,34 );
gfx.PutPixel( 41 + x,24 + y,208,34,34 );
gfx.PutPixel( 42 + x,24 + y,208,34,34 );
gfx.PutPixel( 43 + x,24 + y,208,34,34 );
gfx.PutPixel( 44 + x,24 + y,208,34,34 );
gfx.PutPixel( 45 + x,24 + y,208,34,34 );
gfx.PutPixel( 46 + x,24 + y,208,34,34 );
gfx.PutPixel( 47 + x,24 + y,208,34,34 );
gfx.PutPixel( 48 + x,24 + y,208,34,34 );
gfx.PutPixel( 49 + x,24 + y,208,34,34 );
gfx.PutPixel( 50 + x,24 + y,208,34,34 );
gfx.PutPixel( 51 + x,24 + y,208,34,34 );
gfx.PutPixel( 52 + x,24 + y,208,34,34 );
gfx.PutPixel( 53 + x,24 + y,208,34,34 );
gfx.PutPixel( 54 + x,24 + y,208,34,34 );
gfx.PutPixel( 55 + x,24 + y,208,34,34 );
gfx.PutPixel( 56 + x,24 + y,208,33,33 );
gfx.PutPixel( 57 + x,24 + y,208,32,32 );
gfx.PutPixel( 58 + x,24 + y,214,119,119 );
gfx.PutPixel( 59 + x,24 + y,217,172,172 );
gfx.PutPixel( 60 + x,24 + y,214,117,117 );
gfx.PutPixel( 61 + x,24 + y,213,110,110 );
gfx.PutPixel( 62 + x,24 + y,216,142,142 );
gfx.PutPixel( 63 + x,24 + y,216,151,151 );
gfx.PutPixel( 64 + x,24 + y,206,15,15 );
gfx.PutPixel( 65 + x,24 + y,206,16,16 );
gfx.PutPixel( 66 + x,24 + y,216,148,148 );
gfx.PutPixel( 67 + x,24 + y,218,185,185 );
gfx.PutPixel( 68 + x,24 + y,208,24,24 );
gfx.PutPixel( 69 + x,24 + y,208,29,29 );
gfx.PutPixel( 70 + x,24 + y,208,34,34 );
gfx.PutPixel( 71 + x,24 + y,208,32,32 );
gfx.PutPixel( 72 + x,24 + y,207,21,21 );
gfx.PutPixel( 73 + x,24 + y,208,36,36 );
gfx.PutPixel( 74 + x,24 + y,220,213,213 );
gfx.PutPixel( 75 + x,24 + y,217,160,160 );
gfx.PutPixel( 76 + x,24 + y,206,12,12 );
gfx.PutPixel( 77 + x,24 + y,208,33,33 );
gfx.PutPixel( 78 + x,24 + y,208,30,30 );
gfx.PutPixel( 79 + x,24 + y,208,28,28 );
gfx.PutPixel( 80 + x,24 + y,207,17,17 );
gfx.PutPixel( 81 + x,24 + y,216,150,150 );
gfx.PutPixel( 82 + x,24 + y,222,231,231 );
gfx.PutPixel( 83 + x,24 + y,211,68,68 );
gfx.PutPixel( 84 + x,24 + y,206,8,8 );
gfx.PutPixel( 85 + x,24 + y,217,162,162 );
gfx.PutPixel( 86 + x,24 + y,216,145,145 );
gfx.PutPixel( 87 + x,24 + y,212,95,95 );
gfx.PutPixel( 88 + x,24 + y,215,135,135 );
gfx.PutPixel( 89 + x,24 + y,216,143,143 );
gfx.PutPixel( 90 + x,24 + y,217,163,163 );
gfx.PutPixel( 91 + x,24 + y,211,69,69 );
gfx.PutPixel( 92 + x,24 + y,208,28,28 );
gfx.PutPixel( 93 + x,24 + y,208,34,34 );
gfx.PutPixel( 94 + x,24 + y,208,34,34 );
gfx.PutPixel( 95 + x,24 + y,208,34,34 );
gfx.PutPixel( 96 + x,24 + y,208,34,34 );
gfx.PutPixel( 97 + x,24 + y,208,34,34 );
gfx.PutPixel( 98 + x,24 + y,208,34,34 );
gfx.PutPixel( 99 + x,24 + y,208,34,34 );
gfx.PutPixel( 100 + x,24 + y,208,34,34 );
gfx.PutPixel( 101 + x,24 + y,208,34,34 );
gfx.PutPixel( 102 + x,24 + y,208,34,34 );
gfx.PutPixel( 103 + x,24 + y,208,34,34 );
gfx.PutPixel( 104 + x,24 + y,208,34,34 );
gfx.PutPixel( 105 + x,24 + y,208,34,34 );
gfx.PutPixel( 106 + x,24 + y,208,34,34 );
gfx.PutPixel( 107 + x,24 + y,208,34,34 );
gfx.PutPixel( 108 + x,24 + y,208,34,34 );
gfx.PutPixel( 109 + x,24 + y,208,34,34 );
gfx.PutPixel( 110 + x,24 + y,208,34,34 );
gfx.PutPixel( 111 + x,24 + y,208,34,34 );
gfx.PutPixel( 112 + x,24 + y,208,34,34 );
gfx.PutPixel( 113 + x,24 + y,208,34,34 );
gfx.PutPixel( 114 + x,24 + y,208,34,34 );
gfx.PutPixel( 115 + x,24 + y,208,34,34 );
gfx.PutPixel( 116 + x,24 + y,208,34,34 );
gfx.PutPixel( 117 + x,24 + y,208,34,34 );
gfx.PutPixel( 118 + x,24 + y,208,34,34 );
gfx.PutPixel( 119 + x,24 + y,208,34,34 );
gfx.PutPixel( 120 + x,24 + y,208,34,34 );
gfx.PutPixel( 121 + x,24 + y,208,34,34 );
gfx.PutPixel( 122 + x,24 + y,208,34,34 );
gfx.PutPixel( 123 + x,24 + y,208,34,34 );
gfx.PutPixel( 124 + x,24 + y,208,34,34 );
gfx.PutPixel( 125 + x,24 + y,208,34,34 );
gfx.PutPixel( 126 + x,24 + y,208,34,34 );
gfx.PutPixel( 127 + x,24 + y,208,34,34 );
gfx.PutPixel( 128 + x,24 + y,208,34,34 );
gfx.PutPixel( 129 + x,24 + y,208,34,34 );
gfx.PutPixel( 130 + x,24 + y,208,34,34 );
gfx.PutPixel( 131 + x,24 + y,208,34,34 );
gfx.PutPixel( 132 + x,24 + y,208,34,34 );
gfx.PutPixel( 133 + x,24 + y,208,34,34 );
gfx.PutPixel( 134 + x,24 + y,208,34,34 );
gfx.PutPixel( 135 + x,24 + y,208,34,34 );
gfx.PutPixel( 136 + x,24 + y,208,34,34 );
gfx.PutPixel( 137 + x,24 + y,208,34,34 );
gfx.PutPixel( 138 + x,24 + y,208,34,34 );
gfx.PutPixel( 139 + x,24 + y,208,34,34 );
gfx.PutPixel( 140 + x,24 + y,208,34,34 );
gfx.PutPixel( 141 + x,24 + y,208,34,34 );
gfx.PutPixel( 142 + x,24 + y,208,34,34 );
gfx.PutPixel( 143 + x,24 + y,208,34,34 );
gfx.PutPixel( 144 + x,24 + y,208,34,34 );
gfx.PutPixel( 145 + x,24 + y,208,34,34 );
gfx.PutPixel( 146 + x,24 + y,208,34,34 );
gfx.PutPixel( 147 + x,24 + y,208,34,34 );
gfx.PutPixel( 148 + x,24 + y,208,34,34 );
gfx.PutPixel( 149 + x,24 + y,208,34,34 );
gfx.PutPixel( 0 + x,25 + y,208,34,34 );
gfx.PutPixel( 1 + x,25 + y,208,34,34 );
gfx.PutPixel( 2 + x,25 + y,208,34,34 );
gfx.PutPixel( 3 + x,25 + y,208,34,34 );
gfx.PutPixel( 4 + x,25 + y,208,34,34 );
gfx.PutPixel( 5 + x,25 + y,208,34,34 );
gfx.PutPixel( 6 + x,25 + y,208,34,34 );
gfx.PutPixel( 7 + x,25 + y,208,34,34 );
gfx.PutPixel( 8 + x,25 + y,208,34,34 );
gfx.PutPixel( 9 + x,25 + y,208,34,34 );
gfx.PutPixel( 10 + x,25 + y,208,34,34 );
gfx.PutPixel( 11 + x,25 + y,208,34,34 );
gfx.PutPixel( 12 + x,25 + y,208,34,34 );
gfx.PutPixel( 13 + x,25 + y,208,34,34 );
gfx.PutPixel( 14 + x,25 + y,208,34,34 );
gfx.PutPixel( 15 + x,25 + y,208,34,34 );
gfx.PutPixel( 16 + x,25 + y,208,34,34 );
gfx.PutPixel( 17 + x,25 + y,208,34,34 );
gfx.PutPixel( 18 + x,25 + y,208,34,34 );
gfx.PutPixel( 19 + x,25 + y,208,34,34 );
gfx.PutPixel( 20 + x,25 + y,208,34,34 );
gfx.PutPixel( 21 + x,25 + y,208,34,34 );
gfx.PutPixel( 22 + x,25 + y,208,34,34 );
gfx.PutPixel( 23 + x,25 + y,208,34,34 );
gfx.PutPixel( 24 + x,25 + y,208,34,34 );
gfx.PutPixel( 25 + x,25 + y,208,34,34 );
gfx.PutPixel( 26 + x,25 + y,208,34,34 );
gfx.PutPixel( 27 + x,25 + y,208,34,34 );
gfx.PutPixel( 28 + x,25 + y,208,34,34 );
gfx.PutPixel( 29 + x,25 + y,208,34,34 );
gfx.PutPixel( 30 + x,25 + y,208,34,34 );
gfx.PutPixel( 31 + x,25 + y,208,34,34 );
gfx.PutPixel( 32 + x,25 + y,208,34,34 );
gfx.PutPixel( 33 + x,25 + y,208,34,34 );
gfx.PutPixel( 34 + x,25 + y,208,34,34 );
gfx.PutPixel( 35 + x,25 + y,208,34,34 );
gfx.PutPixel( 36 + x,25 + y,208,34,34 );
gfx.PutPixel( 37 + x,25 + y,208,34,34 );
gfx.PutPixel( 38 + x,25 + y,208,34,34 );
gfx.PutPixel( 39 + x,25 + y,208,34,34 );
gfx.PutPixel( 40 + x,25 + y,208,34,34 );
gfx.PutPixel( 41 + x,25 + y,208,34,34 );
gfx.PutPixel( 42 + x,25 + y,208,34,34 );
gfx.PutPixel( 43 + x,25 + y,208,34,34 );
gfx.PutPixel( 44 + x,25 + y,208,34,34 );
gfx.PutPixel( 45 + x,25 + y,208,34,34 );
gfx.PutPixel( 46 + x,25 + y,208,34,34 );
gfx.PutPixel( 47 + x,25 + y,208,34,34 );
gfx.PutPixel( 48 + x,25 + y,208,34,34 );
gfx.PutPixel( 49 + x,25 + y,208,34,34 );
gfx.PutPixel( 50 + x,25 + y,208,34,34 );
gfx.PutPixel( 51 + x,25 + y,208,34,34 );
gfx.PutPixel( 52 + x,25 + y,208,34,34 );
gfx.PutPixel( 53 + x,25 + y,208,34,34 );
gfx.PutPixel( 54 + x,25 + y,208,34,34 );
gfx.PutPixel( 55 + x,25 + y,208,34,34 );
gfx.PutPixel( 56 + x,25 + y,208,34,34 );
gfx.PutPixel( 57 + x,25 + y,208,30,30 );
gfx.PutPixel( 58 + x,25 + y,209,42,42 );
gfx.PutPixel( 59 + x,25 + y,220,204,204 );
gfx.PutPixel( 60 + x,25 + y,212,92,92 );
gfx.PutPixel( 61 + x,25 + y,206,15,15 );
gfx.PutPixel( 62 + x,25 + y,209,49,49 );
gfx.PutPixel( 63 + x,25 + y,211,76,76 );
gfx.PutPixel( 64 + x,25 + y,208,30,30 );
gfx.PutPixel( 65 + x,25 + y,207,19,19 );
gfx.PutPixel( 66 + x,25 + y,216,148,148 );
gfx.PutPixel( 67 + x,25 + y,222,235,235 );
gfx.PutPixel( 68 + x,25 + y,215,128,128 );
gfx.PutPixel( 69 + x,25 + y,208,36,36 );
gfx.PutPixel( 70 + x,25 + y,207,23,23 );
gfx.PutPixel( 71 + x,25 + y,207,28,28 );
gfx.PutPixel( 72 + x,25 + y,209,49,49 );
gfx.PutPixel( 73 + x,25 + y,217,160,160 );
gfx.PutPixel( 74 + x,25 + y,222,234,234 );
gfx.PutPixel( 75 + x,25 + y,221,218,218 );
gfx.PutPixel( 76 + x,25 + y,212,85,85 );
gfx.PutPixel( 77 + x,25 + y,208,23,23 );
gfx.PutPixel( 78 + x,25 + y,207,23,23 );
gfx.PutPixel( 79 + x,25 + y,208,26,26 );
gfx.PutPixel( 80 + x,25 + y,212,90,90 );
gfx.PutPixel( 81 + x,25 + y,221,216,216 );
gfx.PutPixel( 82 + x,25 + y,221,217,217 );
gfx.PutPixel( 83 + x,25 + y,209,54,54 );
gfx.PutPixel( 84 + x,25 + y,208,29,29 );
gfx.PutPixel( 85 + x,25 + y,212,90,90 );
gfx.PutPixel( 86 + x,25 + y,208,39,39 );
gfx.PutPixel( 87 + x,25 + y,208,32,32 );
gfx.PutPixel( 88 + x,25 + y,207,22,22 );
gfx.PutPixel( 89 + x,25 + y,219,189,189 );
gfx.PutPixel( 90 + x,25 + y,214,126,126 );
gfx.PutPixel( 91 + x,25 + y,207,22,22 );
gfx.PutPixel( 92 + x,25 + y,208,34,34 );
gfx.PutPixel( 93 + x,25 + y,208,34,34 );
gfx.PutPixel( 94 + x,25 + y,208,34,34 );
gfx.PutPixel( 95 + x,25 + y,208,34,34 );
gfx.PutPixel( 96 + x,25 + y,208,34,34 );
gfx.PutPixel( 97 + x,25 + y,208,34,34 );
gfx.PutPixel( 98 + x,25 + y,208,34,34 );
gfx.PutPixel( 99 + x,25 + y,208,34,34 );
gfx.PutPixel( 100 + x,25 + y,208,34,34 );
gfx.PutPixel( 101 + x,25 + y,208,34,34 );
gfx.PutPixel( 102 + x,25 + y,208,34,34 );
gfx.PutPixel( 103 + x,25 + y,208,34,34 );
gfx.PutPixel( 104 + x,25 + y,208,34,34 );
gfx.PutPixel( 105 + x,25 + y,208,34,34 );
gfx.PutPixel( 106 + x,25 + y,208,34,34 );
gfx.PutPixel( 107 + x,25 + y,208,34,34 );
gfx.PutPixel( 108 + x,25 + y,208,34,34 );
gfx.PutPixel( 109 + x,25 + y,208,34,34 );
gfx.PutPixel( 110 + x,25 + y,208,34,34 );
gfx.PutPixel( 111 + x,25 + y,208,34,34 );
gfx.PutPixel( 112 + x,25 + y,208,34,34 );
gfx.PutPixel( 113 + x,25 + y,208,34,34 );
gfx.PutPixel( 114 + x,25 + y,208,34,34 );
gfx.PutPixel( 115 + x,25 + y,208,34,34 );
gfx.PutPixel( 116 + x,25 + y,208,34,34 );
gfx.PutPixel( 117 + x,25 + y,208,34,34 );
gfx.PutPixel( 118 + x,25 + y,208,34,34 );
gfx.PutPixel( 119 + x,25 + y,208,34,34 );
gfx.PutPixel( 120 + x,25 + y,208,34,34 );
gfx.PutPixel( 121 + x,25 + y,208,34,34 );
gfx.PutPixel( 122 + x,25 + y,208,34,34 );
gfx.PutPixel( 123 + x,25 + y,208,34,34 );
gfx.PutPixel( 124 + x,25 + y,208,34,34 );
gfx.PutPixel( 125 + x,25 + y,208,34,34 );
gfx.PutPixel( 126 + x,25 + y,208,34,34 );
gfx.PutPixel( 127 + x,25 + y,208,34,34 );
gfx.PutPixel( 128 + x,25 + y,208,34,34 );
gfx.PutPixel( 129 + x,25 + y,208,34,34 );
gfx.PutPixel( 130 + x,25 + y,208,34,34 );
gfx.PutPixel( 131 + x,25 + y,208,34,34 );
gfx.PutPixel( 132 + x,25 + y,208,34,34 );
gfx.PutPixel( 133 + x,25 + y,208,34,34 );
gfx.PutPixel( 134 + x,25 + y,208,34,34 );
gfx.PutPixel( 135 + x,25 + y,208,34,34 );
gfx.PutPixel( 136 + x,25 + y,208,34,34 );
gfx.PutPixel( 137 + x,25 + y,208,34,34 );
gfx.PutPixel( 138 + x,25 + y,208,34,34 );
gfx.PutPixel( 139 + x,25 + y,208,34,34 );
gfx.PutPixel( 140 + x,25 + y,208,34,34 );
gfx.PutPixel( 141 + x,25 + y,208,34,34 );
gfx.PutPixel( 142 + x,25 + y,208,34,34 );
gfx.PutPixel( 143 + x,25 + y,208,34,34 );
gfx.PutPixel( 144 + x,25 + y,208,34,34 );
gfx.PutPixel( 145 + x,25 + y,208,34,34 );
gfx.PutPixel( 146 + x,25 + y,208,34,34 );
gfx.PutPixel( 147 + x,25 + y,208,34,34 );
gfx.PutPixel( 148 + x,25 + y,208,34,34 );
gfx.PutPixel( 149 + x,25 + y,208,34,34 );
gfx.PutPixel( 0 + x,26 + y,208,34,34 );
gfx.PutPixel( 1 + x,26 + y,208,34,34 );
gfx.PutPixel( 2 + x,26 + y,208,34,34 );
gfx.PutPixel( 3 + x,26 + y,208,34,34 );
gfx.PutPixel( 4 + x,26 + y,208,34,34 );
gfx.PutPixel( 5 + x,26 + y,208,34,34 );
gfx.PutPixel( 6 + x,26 + y,208,34,34 );
gfx.PutPixel( 7 + x,26 + y,208,34,34 );
gfx.PutPixel( 8 + x,26 + y,208,34,34 );
gfx.PutPixel( 9 + x,26 + y,208,34,34 );
gfx.PutPixel( 10 + x,26 + y,208,34,34 );
gfx.PutPixel( 11 + x,26 + y,208,34,34 );
gfx.PutPixel( 12 + x,26 + y,208,34,34 );
gfx.PutPixel( 13 + x,26 + y,208,34,34 );
gfx.PutPixel( 14 + x,26 + y,208,34,34 );
gfx.PutPixel( 15 + x,26 + y,208,34,34 );
gfx.PutPixel( 16 + x,26 + y,208,34,34 );
gfx.PutPixel( 17 + x,26 + y,208,34,34 );
gfx.PutPixel( 18 + x,26 + y,208,34,34 );
gfx.PutPixel( 19 + x,26 + y,208,34,34 );
gfx.PutPixel( 20 + x,26 + y,208,34,34 );
gfx.PutPixel( 21 + x,26 + y,208,34,34 );
gfx.PutPixel( 22 + x,26 + y,208,34,34 );
gfx.PutPixel( 23 + x,26 + y,208,34,34 );
gfx.PutPixel( 24 + x,26 + y,208,34,34 );
gfx.PutPixel( 25 + x,26 + y,208,34,34 );
gfx.PutPixel( 26 + x,26 + y,208,34,34 );
gfx.PutPixel( 27 + x,26 + y,208,34,34 );
gfx.PutPixel( 28 + x,26 + y,208,34,34 );
gfx.PutPixel( 29 + x,26 + y,208,34,34 );
gfx.PutPixel( 30 + x,26 + y,208,34,34 );
gfx.PutPixel( 31 + x,26 + y,208,34,34 );
gfx.PutPixel( 32 + x,26 + y,208,34,34 );
gfx.PutPixel( 33 + x,26 + y,208,34,34 );
gfx.PutPixel( 34 + x,26 + y,208,34,34 );
gfx.PutPixel( 35 + x,26 + y,208,34,34 );
gfx.PutPixel( 36 + x,26 + y,208,34,34 );
gfx.PutPixel( 37 + x,26 + y,208,34,34 );
gfx.PutPixel( 38 + x,26 + y,208,34,34 );
gfx.PutPixel( 39 + x,26 + y,208,34,34 );
gfx.PutPixel( 40 + x,26 + y,208,34,34 );
gfx.PutPixel( 41 + x,26 + y,208,34,34 );
gfx.PutPixel( 42 + x,26 + y,208,34,34 );
gfx.PutPixel( 43 + x,26 + y,208,34,34 );
gfx.PutPixel( 44 + x,26 + y,208,34,34 );
gfx.PutPixel( 45 + x,26 + y,208,34,34 );
gfx.PutPixel( 46 + x,26 + y,208,34,34 );
gfx.PutPixel( 47 + x,26 + y,208,34,34 );
gfx.PutPixel( 48 + x,26 + y,208,34,34 );
gfx.PutPixel( 49 + x,26 + y,208,34,34 );
gfx.PutPixel( 50 + x,26 + y,208,34,34 );
gfx.PutPixel( 51 + x,26 + y,208,34,34 );
gfx.PutPixel( 52 + x,26 + y,208,34,34 );
gfx.PutPixel( 53 + x,26 + y,208,34,34 );
gfx.PutPixel( 54 + x,26 + y,208,34,34 );
gfx.PutPixel( 55 + x,26 + y,208,34,34 );
gfx.PutPixel( 56 + x,26 + y,208,34,34 );
gfx.PutPixel( 57 + x,26 + y,208,34,34 );
gfx.PutPixel( 58 + x,26 + y,207,23,23 );
gfx.PutPixel( 59 + x,26 + y,216,146,146 );
gfx.PutPixel( 60 + x,26 + y,221,215,215 );
gfx.PutPixel( 61 + x,26 + y,210,68,68 );
gfx.PutPixel( 62 + x,26 + y,207,18,18 );
gfx.PutPixel( 63 + x,26 + y,207,16,16 );
gfx.PutPixel( 64 + x,26 + y,208,23,23 );
gfx.PutPixel( 65 + x,26 + y,212,86,86 );
gfx.PutPixel( 66 + x,26 + y,221,221,221 );
gfx.PutPixel( 67 + x,26 + y,222,234,234 );
gfx.PutPixel( 68 + x,26 + y,222,238,238 );
gfx.PutPixel( 69 + x,26 + y,220,199,199 );
gfx.PutPixel( 70 + x,26 + y,217,160,160 );
gfx.PutPixel( 71 + x,26 + y,218,172,172 );
gfx.PutPixel( 72 + x,26 + y,220,209,209 );
gfx.PutPixel( 73 + x,26 + y,222,232,232 );
gfx.PutPixel( 74 + x,26 + y,220,205,205 );
gfx.PutPixel( 75 + x,26 + y,221,220,220 );
gfx.PutPixel( 76 + x,26 + y,221,219,219 );
gfx.PutPixel( 77 + x,26 + y,217,167,167 );
gfx.PutPixel( 78 + x,26 + y,216,146,146 );
gfx.PutPixel( 79 + x,26 + y,218,174,174 );
gfx.PutPixel( 80 + x,26 + y,222,231,231 );
gfx.PutPixel( 81 + x,26 + y,222,234,234 );
gfx.PutPixel( 82 + x,26 + y,222,237,237 );
gfx.PutPixel( 83 + x,26 + y,214,129,129 );
gfx.PutPixel( 84 + x,26 + y,207,25,25 );
gfx.PutPixel( 85 + x,26 + y,207,16,16 );
gfx.PutPixel( 86 + x,26 + y,207,21,21 );
gfx.PutPixel( 87 + x,26 + y,207,19,19 );
gfx.PutPixel( 88 + x,26 + y,213,117,117 );
gfx.PutPixel( 89 + x,26 + y,220,209,209 );
gfx.PutPixel( 90 + x,26 + y,209,44,44 );
gfx.PutPixel( 91 + x,26 + y,208,30,30 );
gfx.PutPixel( 92 + x,26 + y,208,34,34 );
gfx.PutPixel( 93 + x,26 + y,208,34,34 );
gfx.PutPixel( 94 + x,26 + y,208,34,34 );
gfx.PutPixel( 95 + x,26 + y,208,34,34 );
gfx.PutPixel( 96 + x,26 + y,208,34,34 );
gfx.PutPixel( 97 + x,26 + y,208,34,34 );
gfx.PutPixel( 98 + x,26 + y,208,34,34 );
gfx.PutPixel( 99 + x,26 + y,208,34,34 );
gfx.PutPixel( 100 + x,26 + y,208,34,34 );
gfx.PutPixel( 101 + x,26 + y,208,34,34 );
gfx.PutPixel( 102 + x,26 + y,208,34,34 );
gfx.PutPixel( 103 + x,26 + y,208,34,34 );
gfx.PutPixel( 104 + x,26 + y,208,34,34 );
gfx.PutPixel( 105 + x,26 + y,208,34,34 );
gfx.PutPixel( 106 + x,26 + y,208,34,34 );
gfx.PutPixel( 107 + x,26 + y,208,34,34 );
gfx.PutPixel( 108 + x,26 + y,208,34,34 );
gfx.PutPixel( 109 + x,26 + y,208,34,34 );
gfx.PutPixel( 110 + x,26 + y,208,34,34 );
gfx.PutPixel( 111 + x,26 + y,208,34,34 );
gfx.PutPixel( 112 + x,26 + y,208,34,34 );
gfx.PutPixel( 113 + x,26 + y,208,34,34 );
gfx.PutPixel( 114 + x,26 + y,208,34,34 );
gfx.PutPixel( 115 + x,26 + y,208,34,34 );
gfx.PutPixel( 116 + x,26 + y,208,34,34 );
gfx.PutPixel( 117 + x,26 + y,208,34,34 );
gfx.PutPixel( 118 + x,26 + y,208,34,34 );
gfx.PutPixel( 119 + x,26 + y,208,34,34 );
gfx.PutPixel( 120 + x,26 + y,208,34,34 );
gfx.PutPixel( 121 + x,26 + y,208,34,34 );
gfx.PutPixel( 122 + x,26 + y,208,34,34 );
gfx.PutPixel( 123 + x,26 + y,208,34,34 );
gfx.PutPixel( 124 + x,26 + y,208,34,34 );
gfx.PutPixel( 125 + x,26 + y,208,34,34 );
gfx.PutPixel( 126 + x,26 + y,208,34,34 );
gfx.PutPixel( 127 + x,26 + y,208,34,34 );
gfx.PutPixel( 128 + x,26 + y,208,34,34 );
gfx.PutPixel( 129 + x,26 + y,208,34,34 );
gfx.PutPixel( 130 + x,26 + y,208,34,34 );
gfx.PutPixel( 131 + x,26 + y,208,34,34 );
gfx.PutPixel( 132 + x,26 + y,208,34,34 );
gfx.PutPixel( 133 + x,26 + y,208,34,34 );
gfx.PutPixel( 134 + x,26 + y,208,34,34 );
gfx.PutPixel( 135 + x,26 + y,208,34,34 );
gfx.PutPixel( 136 + x,26 + y,208,34,34 );
gfx.PutPixel( 137 + x,26 + y,208,34,34 );
gfx.PutPixel( 138 + x,26 + y,208,34,34 );
gfx.PutPixel( 139 + x,26 + y,208,34,34 );
gfx.PutPixel( 140 + x,26 + y,208,34,34 );
gfx.PutPixel( 141 + x,26 + y,208,34,34 );
gfx.PutPixel( 142 + x,26 + y,208,34,34 );
gfx.PutPixel( 143 + x,26 + y,208,34,34 );
gfx.PutPixel( 144 + x,26 + y,208,34,34 );
gfx.PutPixel( 145 + x,26 + y,208,34,34 );
gfx.PutPixel( 146 + x,26 + y,208,34,34 );
gfx.PutPixel( 147 + x,26 + y,208,34,34 );
gfx.PutPixel( 148 + x,26 + y,208,34,34 );
gfx.PutPixel( 149 + x,26 + y,208,34,34 );
gfx.PutPixel( 0 + x,27 + y,208,34,34 );
gfx.PutPixel( 1 + x,27 + y,208,34,34 );
gfx.PutPixel( 2 + x,27 + y,208,34,34 );
gfx.PutPixel( 3 + x,27 + y,208,34,34 );
gfx.PutPixel( 4 + x,27 + y,208,34,34 );
gfx.PutPixel( 5 + x,27 + y,208,34,34 );
gfx.PutPixel( 6 + x,27 + y,208,34,34 );
gfx.PutPixel( 7 + x,27 + y,208,34,34 );
gfx.PutPixel( 8 + x,27 + y,208,34,34 );
gfx.PutPixel( 9 + x,27 + y,208,34,34 );
gfx.PutPixel( 10 + x,27 + y,208,34,34 );
gfx.PutPixel( 11 + x,27 + y,208,34,34 );
gfx.PutPixel( 12 + x,27 + y,208,34,34 );
gfx.PutPixel( 13 + x,27 + y,208,34,34 );
gfx.PutPixel( 14 + x,27 + y,208,34,34 );
gfx.PutPixel( 15 + x,27 + y,208,34,34 );
gfx.PutPixel( 16 + x,27 + y,208,34,34 );
gfx.PutPixel( 17 + x,27 + y,208,34,34 );
gfx.PutPixel( 18 + x,27 + y,208,34,34 );
gfx.PutPixel( 19 + x,27 + y,208,34,34 );
gfx.PutPixel( 20 + x,27 + y,208,34,34 );
gfx.PutPixel( 21 + x,27 + y,208,34,34 );
gfx.PutPixel( 22 + x,27 + y,208,34,34 );
gfx.PutPixel( 23 + x,27 + y,208,34,34 );
gfx.PutPixel( 24 + x,27 + y,208,34,34 );
gfx.PutPixel( 25 + x,27 + y,208,34,34 );
gfx.PutPixel( 26 + x,27 + y,208,34,34 );
gfx.PutPixel( 27 + x,27 + y,208,34,34 );
gfx.PutPixel( 28 + x,27 + y,208,34,34 );
gfx.PutPixel( 29 + x,27 + y,208,34,34 );
gfx.PutPixel( 30 + x,27 + y,208,34,34 );
gfx.PutPixel( 31 + x,27 + y,208,34,34 );
gfx.PutPixel( 32 + x,27 + y,208,34,34 );
gfx.PutPixel( 33 + x,27 + y,208,34,34 );
gfx.PutPixel( 34 + x,27 + y,208,34,34 );
gfx.PutPixel( 35 + x,27 + y,208,34,34 );
gfx.PutPixel( 36 + x,27 + y,208,34,34 );
gfx.PutPixel( 37 + x,27 + y,208,34,34 );
gfx.PutPixel( 38 + x,27 + y,208,34,34 );
gfx.PutPixel( 39 + x,27 + y,208,34,34 );
gfx.PutPixel( 40 + x,27 + y,208,34,34 );
gfx.PutPixel( 41 + x,27 + y,208,34,34 );
gfx.PutPixel( 42 + x,27 + y,208,34,34 );
gfx.PutPixel( 43 + x,27 + y,208,34,34 );
gfx.PutPixel( 44 + x,27 + y,208,34,34 );
gfx.PutPixel( 45 + x,27 + y,208,34,34 );
gfx.PutPixel( 46 + x,27 + y,208,34,34 );
gfx.PutPixel( 47 + x,27 + y,208,34,34 );
gfx.PutPixel( 48 + x,27 + y,208,34,34 );
gfx.PutPixel( 49 + x,27 + y,208,34,34 );
gfx.PutPixel( 50 + x,27 + y,208,34,34 );
gfx.PutPixel( 51 + x,27 + y,208,34,34 );
gfx.PutPixel( 52 + x,27 + y,208,34,34 );
gfx.PutPixel( 53 + x,27 + y,208,34,34 );
gfx.PutPixel( 54 + x,27 + y,208,34,34 );
gfx.PutPixel( 55 + x,27 + y,208,34,34 );
gfx.PutPixel( 56 + x,27 + y,208,34,34 );
gfx.PutPixel( 57 + x,27 + y,208,34,34 );
gfx.PutPixel( 58 + x,27 + y,207,25,25 );
gfx.PutPixel( 59 + x,27 + y,211,83,83 );
gfx.PutPixel( 60 + x,27 + y,222,231,231 );
gfx.PutPixel( 61 + x,27 + y,220,214,214 );
gfx.PutPixel( 62 + x,27 + y,216,151,151 );
gfx.PutPixel( 63 + x,27 + y,215,133,133 );
gfx.PutPixel( 64 + x,27 + y,217,160,160 );
gfx.PutPixel( 65 + x,27 + y,221,224,224 );
gfx.PutPixel( 66 + x,27 + y,218,183,183 );
gfx.PutPixel( 67 + x,27 + y,213,101,101 );
gfx.PutPixel( 68 + x,27 + y,213,103,103 );
gfx.PutPixel( 69 + x,27 + y,219,199,199 );
gfx.PutPixel( 70 + x,27 + y,222,231,231 );
gfx.PutPixel( 71 + x,27 + y,213,104,104 );
gfx.PutPixel( 72 + x,27 + y,219,188,188 );
gfx.PutPixel( 73 + x,27 + y,221,224,224 );
gfx.PutPixel( 74 + x,27 + y,210,70,70 );
gfx.PutPixel( 75 + x,27 + y,215,130,130 );
gfx.PutPixel( 76 + x,27 + y,222,237,237 );
gfx.PutPixel( 77 + x,27 + y,214,120,120 );
gfx.PutPixel( 78 + x,27 + y,217,170,170 );
gfx.PutPixel( 79 + x,27 + y,222,235,235 );
gfx.PutPixel( 80 + x,27 + y,216,141,141 );
gfx.PutPixel( 81 + x,27 + y,212,93,93 );
gfx.PutPixel( 82 + x,27 + y,215,141,141 );
gfx.PutPixel( 83 + x,27 + y,221,222,222 );
gfx.PutPixel( 84 + x,27 + y,218,174,174 );
gfx.PutPixel( 85 + x,27 + y,214,121,121 );
gfx.PutPixel( 86 + x,27 + y,213,109,109 );
gfx.PutPixel( 87 + x,27 + y,216,152,152 );
gfx.PutPixel( 88 + x,27 + y,222,231,231 );
gfx.PutPixel( 89 + x,27 + y,215,131,131 );
gfx.PutPixel( 90 + x,27 + y,207,23,23 );
gfx.PutPixel( 91 + x,27 + y,208,34,34 );
gfx.PutPixel( 92 + x,27 + y,208,34,34 );
gfx.PutPixel( 93 + x,27 + y,208,34,34 );
gfx.PutPixel( 94 + x,27 + y,208,34,34 );
gfx.PutPixel( 95 + x,27 + y,208,34,34 );
gfx.PutPixel( 96 + x,27 + y,208,34,34 );
gfx.PutPixel( 97 + x,27 + y,208,34,34 );
gfx.PutPixel( 98 + x,27 + y,208,34,34 );
gfx.PutPixel( 99 + x,27 + y,208,34,34 );
gfx.PutPixel( 100 + x,27 + y,208,34,34 );
gfx.PutPixel( 101 + x,27 + y,208,34,34 );
gfx.PutPixel( 102 + x,27 + y,208,34,34 );
gfx.PutPixel( 103 + x,27 + y,208,34,34 );
gfx.PutPixel( 104 + x,27 + y,208,34,34 );
gfx.PutPixel( 105 + x,27 + y,208,34,34 );
gfx.PutPixel( 106 + x,27 + y,208,34,34 );
gfx.PutPixel( 107 + x,27 + y,208,34,34 );
gfx.PutPixel( 108 + x,27 + y,208,34,34 );
gfx.PutPixel( 109 + x,27 + y,208,34,34 );
gfx.PutPixel( 110 + x,27 + y,208,34,34 );
gfx.PutPixel( 111 + x,27 + y,208,34,34 );
gfx.PutPixel( 112 + x,27 + y,208,34,34 );
gfx.PutPixel( 113 + x,27 + y,208,34,34 );
gfx.PutPixel( 114 + x,27 + y,208,34,34 );
gfx.PutPixel( 115 + x,27 + y,208,34,34 );
gfx.PutPixel( 116 + x,27 + y,208,34,34 );
gfx.PutPixel( 117 + x,27 + y,208,34,34 );
gfx.PutPixel( 118 + x,27 + y,208,34,34 );
gfx.PutPixel( 119 + x,27 + y,208,34,34 );
gfx.PutPixel( 120 + x,27 + y,208,34,34 );
gfx.PutPixel( 121 + x,27 + y,208,34,34 );
gfx.PutPixel( 122 + x,27 + y,208,34,34 );
gfx.PutPixel( 123 + x,27 + y,208,34,34 );
gfx.PutPixel( 124 + x,27 + y,208,34,34 );
gfx.PutPixel( 125 + x,27 + y,208,34,34 );
gfx.PutPixel( 126 + x,27 + y,208,34,34 );
gfx.PutPixel( 127 + x,27 + y,208,34,34 );
gfx.PutPixel( 128 + x,27 + y,208,34,34 );
gfx.PutPixel( 129 + x,27 + y,208,34,34 );
gfx.PutPixel( 130 + x,27 + y,208,34,34 );
gfx.PutPixel( 131 + x,27 + y,208,34,34 );
gfx.PutPixel( 132 + x,27 + y,208,34,34 );
gfx.PutPixel( 133 + x,27 + y,208,34,34 );
gfx.PutPixel( 134 + x,27 + y,208,34,34 );
gfx.PutPixel( 135 + x,27 + y,208,34,34 );
gfx.PutPixel( 136 + x,27 + y,208,34,34 );
gfx.PutPixel( 137 + x,27 + y,208,34,34 );
gfx.PutPixel( 138 + x,27 + y,208,34,34 );
gfx.PutPixel( 139 + x,27 + y,208,34,34 );
gfx.PutPixel( 140 + x,27 + y,208,34,34 );
gfx.PutPixel( 141 + x,27 + y,208,34,34 );
gfx.PutPixel( 142 + x,27 + y,208,34,34 );
gfx.PutPixel( 143 + x,27 + y,208,34,34 );
gfx.PutPixel( 144 + x,27 + y,208,34,34 );
gfx.PutPixel( 145 + x,27 + y,208,34,34 );
gfx.PutPixel( 146 + x,27 + y,208,34,34 );
gfx.PutPixel( 147 + x,27 + y,208,34,34 );
gfx.PutPixel( 148 + x,27 + y,208,34,34 );
gfx.PutPixel( 149 + x,27 + y,208,34,34 );
gfx.PutPixel( 0 + x,28 + y,208,34,34 );
gfx.PutPixel( 1 + x,28 + y,208,34,34 );
gfx.PutPixel( 2 + x,28 + y,208,34,34 );
gfx.PutPixel( 3 + x,28 + y,208,34,34 );
gfx.PutPixel( 4 + x,28 + y,208,34,34 );
gfx.PutPixel( 5 + x,28 + y,208,34,34 );
gfx.PutPixel( 6 + x,28 + y,208,34,34 );
gfx.PutPixel( 7 + x,28 + y,208,34,34 );
gfx.PutPixel( 8 + x,28 + y,208,34,34 );
gfx.PutPixel( 9 + x,28 + y,208,34,34 );
gfx.PutPixel( 10 + x,28 + y,208,34,34 );
gfx.PutPixel( 11 + x,28 + y,208,34,34 );
gfx.PutPixel( 12 + x,28 + y,208,34,34 );
gfx.PutPixel( 13 + x,28 + y,208,34,34 );
gfx.PutPixel( 14 + x,28 + y,208,34,34 );
gfx.PutPixel( 15 + x,28 + y,208,34,34 );
gfx.PutPixel( 16 + x,28 + y,208,34,34 );
gfx.PutPixel( 17 + x,28 + y,208,34,34 );
gfx.PutPixel( 18 + x,28 + y,208,34,34 );
gfx.PutPixel( 19 + x,28 + y,208,34,34 );
gfx.PutPixel( 20 + x,28 + y,208,34,34 );
gfx.PutPixel( 21 + x,28 + y,208,34,34 );
gfx.PutPixel( 22 + x,28 + y,208,34,34 );
gfx.PutPixel( 23 + x,28 + y,208,34,34 );
gfx.PutPixel( 24 + x,28 + y,208,34,34 );
gfx.PutPixel( 25 + x,28 + y,208,34,34 );
gfx.PutPixel( 26 + x,28 + y,208,34,34 );
gfx.PutPixel( 27 + x,28 + y,208,34,34 );
gfx.PutPixel( 28 + x,28 + y,208,34,34 );
gfx.PutPixel( 29 + x,28 + y,208,34,34 );
gfx.PutPixel( 30 + x,28 + y,208,34,34 );
gfx.PutPixel( 31 + x,28 + y,208,34,34 );
gfx.PutPixel( 32 + x,28 + y,208,34,34 );
gfx.PutPixel( 33 + x,28 + y,208,34,34 );
gfx.PutPixel( 34 + x,28 + y,208,34,34 );
gfx.PutPixel( 35 + x,28 + y,208,34,34 );
gfx.PutPixel( 36 + x,28 + y,208,34,34 );
gfx.PutPixel( 37 + x,28 + y,208,34,34 );
gfx.PutPixel( 38 + x,28 + y,208,34,34 );
gfx.PutPixel( 39 + x,28 + y,208,34,34 );
gfx.PutPixel( 40 + x,28 + y,208,34,34 );
gfx.PutPixel( 41 + x,28 + y,208,34,34 );
gfx.PutPixel( 42 + x,28 + y,208,34,34 );
gfx.PutPixel( 43 + x,28 + y,208,34,34 );
gfx.PutPixel( 44 + x,28 + y,208,34,34 );
gfx.PutPixel( 45 + x,28 + y,208,34,34 );
gfx.PutPixel( 46 + x,28 + y,208,34,34 );
gfx.PutPixel( 47 + x,28 + y,208,34,34 );
gfx.PutPixel( 48 + x,28 + y,208,34,34 );
gfx.PutPixel( 49 + x,28 + y,208,34,34 );
gfx.PutPixel( 50 + x,28 + y,208,34,34 );
gfx.PutPixel( 51 + x,28 + y,208,34,34 );
gfx.PutPixel( 52 + x,28 + y,208,34,34 );
gfx.PutPixel( 53 + x,28 + y,208,34,34 );
gfx.PutPixel( 54 + x,28 + y,208,34,34 );
gfx.PutPixel( 55 + x,28 + y,208,34,34 );
gfx.PutPixel( 56 + x,28 + y,208,34,34 );
gfx.PutPixel( 57 + x,28 + y,208,34,34 );
gfx.PutPixel( 58 + x,28 + y,208,27,27 );
gfx.PutPixel( 59 + x,28 + y,210,66,66 );
gfx.PutPixel( 60 + x,28 + y,221,225,225 );
gfx.PutPixel( 61 + x,28 + y,222,231,231 );
gfx.PutPixel( 62 + x,28 + y,221,212,212 );
gfx.PutPixel( 63 + x,28 + y,217,163,163 );
gfx.PutPixel( 64 + x,28 + y,222,233,233 );
gfx.PutPixel( 65 + x,28 + y,220,204,204 );
gfx.PutPixel( 66 + x,28 + y,208,41,41 );
gfx.PutPixel( 67 + x,28 + y,207,19,19 );
gfx.PutPixel( 68 + x,28 + y,206,10,10 );
gfx.PutPixel( 69 + x,28 + y,212,89,89 );
gfx.PutPixel( 70 + x,28 + y,222,231,231 );
gfx.PutPixel( 71 + x,28 + y,216,147,147 );
gfx.PutPixel( 72 + x,28 + y,219,196,196 );
gfx.PutPixel( 73 + x,28 + y,221,218,218 );
gfx.PutPixel( 74 + x,28 + y,209,50,50 );
gfx.PutPixel( 75 + x,28 + y,213,108,108 );
gfx.PutPixel( 76 + x,28 + y,222,232,232 );
gfx.PutPixel( 77 + x,28 + y,216,144,144 );
gfx.PutPixel( 78 + x,28 + y,219,195,195 );
gfx.PutPixel( 79 + x,28 + y,218,177,177 );
gfx.PutPixel( 80 + x,28 + y,207,16,16 );
gfx.PutPixel( 81 + x,28 + y,207,21,21 );
gfx.PutPixel( 82 + x,28 + y,207,14,14 );
gfx.PutPixel( 83 + x,28 + y,215,131,131 );
gfx.PutPixel( 84 + x,28 + y,222,242,242 );
gfx.PutPixel( 85 + x,28 + y,216,152,152 );
gfx.PutPixel( 86 + x,28 + y,219,193,193 );
gfx.PutPixel( 87 + x,28 + y,222,237,237 );
gfx.PutPixel( 88 + x,28 + y,222,238,238 );
gfx.PutPixel( 89 + x,28 + y,212,92,92 );
gfx.PutPixel( 90 + x,28 + y,207,24,24 );
gfx.PutPixel( 91 + x,28 + y,208,34,34 );
gfx.PutPixel( 92 + x,28 + y,208,34,34 );
gfx.PutPixel( 93 + x,28 + y,208,34,34 );
gfx.PutPixel( 94 + x,28 + y,208,34,34 );
gfx.PutPixel( 95 + x,28 + y,208,34,34 );
gfx.PutPixel( 96 + x,28 + y,208,34,34 );
gfx.PutPixel( 97 + x,28 + y,208,34,34 );
gfx.PutPixel( 98 + x,28 + y,208,34,34 );
gfx.PutPixel( 99 + x,28 + y,208,34,34 );
gfx.PutPixel( 100 + x,28 + y,208,34,34 );
gfx.PutPixel( 101 + x,28 + y,208,34,34 );
gfx.PutPixel( 102 + x,28 + y,208,34,34 );
gfx.PutPixel( 103 + x,28 + y,208,34,34 );
gfx.PutPixel( 104 + x,28 + y,208,34,34 );
gfx.PutPixel( 105 + x,28 + y,208,34,34 );
gfx.PutPixel( 106 + x,28 + y,208,34,34 );
gfx.PutPixel( 107 + x,28 + y,208,34,34 );
gfx.PutPixel( 108 + x,28 + y,208,34,34 );
gfx.PutPixel( 109 + x,28 + y,208,34,34 );
gfx.PutPixel( 110 + x,28 + y,208,34,34 );
gfx.PutPixel( 111 + x,28 + y,208,34,34 );
gfx.PutPixel( 112 + x,28 + y,208,34,34 );
gfx.PutPixel( 113 + x,28 + y,208,34,34 );
gfx.PutPixel( 114 + x,28 + y,208,34,34 );
gfx.PutPixel( 115 + x,28 + y,208,34,34 );
gfx.PutPixel( 116 + x,28 + y,208,34,34 );
gfx.PutPixel( 117 + x,28 + y,208,34,34 );
gfx.PutPixel( 118 + x,28 + y,208,34,34 );
gfx.PutPixel( 119 + x,28 + y,208,34,34 );
gfx.PutPixel( 120 + x,28 + y,208,34,34 );
gfx.PutPixel( 121 + x,28 + y,208,34,34 );
gfx.PutPixel( 122 + x,28 + y,208,34,34 );
gfx.PutPixel( 123 + x,28 + y,208,34,34 );
gfx.PutPixel( 124 + x,28 + y,208,34,34 );
gfx.PutPixel( 125 + x,28 + y,208,34,34 );
gfx.PutPixel( 126 + x,28 + y,208,34,34 );
gfx.PutPixel( 127 + x,28 + y,208,34,34 );
gfx.PutPixel( 128 + x,28 + y,208,34,34 );
gfx.PutPixel( 129 + x,28 + y,208,34,34 );
gfx.PutPixel( 130 + x,28 + y,208,34,34 );
gfx.PutPixel( 131 + x,28 + y,208,34,34 );
gfx.PutPixel( 132 + x,28 + y,208,34,34 );
gfx.PutPixel( 133 + x,28 + y,208,34,34 );
gfx.PutPixel( 134 + x,28 + y,208,34,34 );
gfx.PutPixel( 135 + x,28 + y,208,34,34 );
gfx.PutPixel( 136 + x,28 + y,208,34,34 );
gfx.PutPixel( 137 + x,28 + y,208,34,34 );
gfx.PutPixel( 138 + x,28 + y,208,34,34 );
gfx.PutPixel( 139 + x,28 + y,208,34,34 );
gfx.PutPixel( 140 + x,28 + y,208,34,34 );
gfx.PutPixel( 141 + x,28 + y,208,34,34 );
gfx.PutPixel( 142 + x,28 + y,208,34,34 );
gfx.PutPixel( 143 + x,28 + y,208,34,34 );
gfx.PutPixel( 144 + x,28 + y,208,34,34 );
gfx.PutPixel( 145 + x,28 + y,208,34,34 );
gfx.PutPixel( 146 + x,28 + y,208,34,34 );
gfx.PutPixel( 147 + x,28 + y,208,34,34 );
gfx.PutPixel( 148 + x,28 + y,208,34,34 );
gfx.PutPixel( 149 + x,28 + y,208,34,34 );
gfx.PutPixel( 0 + x,29 + y,208,34,34 );
gfx.PutPixel( 1 + x,29 + y,208,34,34 );
gfx.PutPixel( 2 + x,29 + y,208,34,34 );
gfx.PutPixel( 3 + x,29 + y,208,34,34 );
gfx.PutPixel( 4 + x,29 + y,208,34,34 );
gfx.PutPixel( 5 + x,29 + y,208,34,34 );
gfx.PutPixel( 6 + x,29 + y,208,34,34 );
gfx.PutPixel( 7 + x,29 + y,208,34,34 );
gfx.PutPixel( 8 + x,29 + y,208,34,34 );
gfx.PutPixel( 9 + x,29 + y,208,34,34 );
gfx.PutPixel( 10 + x,29 + y,208,34,34 );
gfx.PutPixel( 11 + x,29 + y,208,34,34 );
gfx.PutPixel( 12 + x,29 + y,208,34,34 );
gfx.PutPixel( 13 + x,29 + y,208,34,34 );
gfx.PutPixel( 14 + x,29 + y,208,34,34 );
gfx.PutPixel( 15 + x,29 + y,208,34,34 );
gfx.PutPixel( 16 + x,29 + y,208,34,34 );
gfx.PutPixel( 17 + x,29 + y,208,34,34 );
gfx.PutPixel( 18 + x,29 + y,208,34,34 );
gfx.PutPixel( 19 + x,29 + y,208,34,34 );
gfx.PutPixel( 20 + x,29 + y,208,34,34 );
gfx.PutPixel( 21 + x,29 + y,208,34,34 );
gfx.PutPixel( 22 + x,29 + y,208,34,34 );
gfx.PutPixel( 23 + x,29 + y,208,34,34 );
gfx.PutPixel( 24 + x,29 + y,208,34,34 );
gfx.PutPixel( 25 + x,29 + y,208,34,34 );
gfx.PutPixel( 26 + x,29 + y,208,34,34 );
gfx.PutPixel( 27 + x,29 + y,208,34,34 );
gfx.PutPixel( 28 + x,29 + y,208,34,34 );
gfx.PutPixel( 29 + x,29 + y,208,34,34 );
gfx.PutPixel( 30 + x,29 + y,208,34,34 );
gfx.PutPixel( 31 + x,29 + y,208,34,34 );
gfx.PutPixel( 32 + x,29 + y,208,34,34 );
gfx.PutPixel( 33 + x,29 + y,208,34,34 );
gfx.PutPixel( 34 + x,29 + y,208,34,34 );
gfx.PutPixel( 35 + x,29 + y,208,34,34 );
gfx.PutPixel( 36 + x,29 + y,208,34,34 );
gfx.PutPixel( 37 + x,29 + y,208,34,34 );
gfx.PutPixel( 38 + x,29 + y,208,34,34 );
gfx.PutPixel( 39 + x,29 + y,208,34,34 );
gfx.PutPixel( 40 + x,29 + y,208,34,34 );
gfx.PutPixel( 41 + x,29 + y,208,34,34 );
gfx.PutPixel( 42 + x,29 + y,208,34,34 );
gfx.PutPixel( 43 + x,29 + y,208,34,34 );
gfx.PutPixel( 44 + x,29 + y,208,34,34 );
gfx.PutPixel( 45 + x,29 + y,208,34,34 );
gfx.PutPixel( 46 + x,29 + y,208,34,34 );
gfx.PutPixel( 47 + x,29 + y,208,34,34 );
gfx.PutPixel( 48 + x,29 + y,208,34,34 );
gfx.PutPixel( 49 + x,29 + y,208,34,34 );
gfx.PutPixel( 50 + x,29 + y,208,34,34 );
gfx.PutPixel( 51 + x,29 + y,208,34,34 );
gfx.PutPixel( 52 + x,29 + y,208,34,34 );
gfx.PutPixel( 53 + x,29 + y,208,34,34 );
gfx.PutPixel( 54 + x,29 + y,208,34,34 );
gfx.PutPixel( 55 + x,29 + y,208,34,34 );
gfx.PutPixel( 56 + x,29 + y,208,34,34 );
gfx.PutPixel( 57 + x,29 + y,208,34,34 );
gfx.PutPixel( 58 + x,29 + y,207,25,25 );
gfx.PutPixel( 59 + x,29 + y,212,87,87 );
gfx.PutPixel( 60 + x,29 + y,218,176,176 );
gfx.PutPixel( 61 + x,29 + y,221,213,213 );
gfx.PutPixel( 62 + x,29 + y,219,194,194 );
gfx.PutPixel( 63 + x,29 + y,213,104,104 );
gfx.PutPixel( 64 + x,29 + y,221,220,220 );
gfx.PutPixel( 65 + x,29 + y,220,210,210 );
gfx.PutPixel( 66 + x,29 + y,210,66,66 );
gfx.PutPixel( 67 + x,29 + y,208,25,25 );
gfx.PutPixel( 68 + x,29 + y,208,41,41 );
gfx.PutPixel( 69 + x,29 + y,217,155,155 );
gfx.PutPixel( 70 + x,29 + y,222,238,238 );
gfx.PutPixel( 71 + x,29 + y,213,108,108 );
gfx.PutPixel( 72 + x,29 + y,216,151,151 );
gfx.PutPixel( 73 + x,29 + y,223,243,243 );
gfx.PutPixel( 74 + x,29 + y,219,191,191 );
gfx.PutPixel( 75 + x,29 + y,220,213,213 );
gfx.PutPixel( 76 + x,29 + y,221,222,222 );
gfx.PutPixel( 77 + x,29 + y,211,83,83 );
gfx.PutPixel( 78 + x,29 + y,219,193,193 );
gfx.PutPixel( 79 + x,29 + y,221,215,215 );
gfx.PutPixel( 80 + x,29 + y,211,77,77 );
gfx.PutPixel( 81 + x,29 + y,208,27,27 );
gfx.PutPixel( 82 + x,29 + y,207,29,29 );
gfx.PutPixel( 83 + x,29 + y,216,147,147 );
gfx.PutPixel( 84 + x,29 + y,222,232,232 );
gfx.PutPixel( 85 + x,29 + y,214,123,123 );
gfx.PutPixel( 86 + x,29 + y,218,177,177 );
gfx.PutPixel( 87 + x,29 + y,221,223,223 );
gfx.PutPixel( 88 + x,29 + y,217,158,158 );
gfx.PutPixel( 89 + x,29 + y,214,123,123 );
gfx.PutPixel( 90 + x,29 + y,208,26,26 );
gfx.PutPixel( 91 + x,29 + y,208,34,34 );
gfx.PutPixel( 92 + x,29 + y,208,34,34 );
gfx.PutPixel( 93 + x,29 + y,208,34,34 );
gfx.PutPixel( 94 + x,29 + y,208,34,34 );
gfx.PutPixel( 95 + x,29 + y,208,34,34 );
gfx.PutPixel( 96 + x,29 + y,208,34,34 );
gfx.PutPixel( 97 + x,29 + y,208,34,34 );
gfx.PutPixel( 98 + x,29 + y,208,34,34 );
gfx.PutPixel( 99 + x,29 + y,208,34,34 );
gfx.PutPixel( 100 + x,29 + y,208,34,34 );
gfx.PutPixel( 101 + x,29 + y,208,34,34 );
gfx.PutPixel( 102 + x,29 + y,208,34,34 );
gfx.PutPixel( 103 + x,29 + y,208,34,34 );
gfx.PutPixel( 104 + x,29 + y,208,34,34 );
gfx.PutPixel( 105 + x,29 + y,208,34,34 );
gfx.PutPixel( 106 + x,29 + y,208,34,34 );
gfx.PutPixel( 107 + x,29 + y,208,34,34 );
gfx.PutPixel( 108 + x,29 + y,208,34,34 );
gfx.PutPixel( 109 + x,29 + y,208,34,34 );
gfx.PutPixel( 110 + x,29 + y,208,34,34 );
gfx.PutPixel( 111 + x,29 + y,208,34,34 );
gfx.PutPixel( 112 + x,29 + y,208,34,34 );
gfx.PutPixel( 113 + x,29 + y,208,34,34 );
gfx.PutPixel( 114 + x,29 + y,208,34,34 );
gfx.PutPixel( 115 + x,29 + y,208,34,34 );
gfx.PutPixel( 116 + x,29 + y,208,34,34 );
gfx.PutPixel( 117 + x,29 + y,208,34,34 );
gfx.PutPixel( 118 + x,29 + y,208,34,34 );
gfx.PutPixel( 119 + x,29 + y,208,34,34 );
gfx.PutPixel( 120 + x,29 + y,208,34,34 );
gfx.PutPixel( 121 + x,29 + y,208,34,34 );
gfx.PutPixel( 122 + x,29 + y,208,34,34 );
gfx.PutPixel( 123 + x,29 + y,208,34,34 );
gfx.PutPixel( 124 + x,29 + y,208,34,34 );
gfx.PutPixel( 125 + x,29 + y,208,34,34 );
gfx.PutPixel( 126 + x,29 + y,208,34,34 );
gfx.PutPixel( 127 + x,29 + y,208,34,34 );
gfx.PutPixel( 128 + x,29 + y,208,34,34 );
gfx.PutPixel( 129 + x,29 + y,208,34,34 );
gfx.PutPixel( 130 + x,29 + y,208,34,34 );
gfx.PutPixel( 131 + x,29 + y,208,34,34 );
gfx.PutPixel( 132 + x,29 + y,208,34,34 );
gfx.PutPixel( 133 + x,29 + y,208,34,34 );
gfx.PutPixel( 134 + x,29 + y,208,34,34 );
gfx.PutPixel( 135 + x,29 + y,208,34,34 );
gfx.PutPixel( 136 + x,29 + y,208,34,34 );
gfx.PutPixel( 137 + x,29 + y,208,34,34 );
gfx.PutPixel( 138 + x,29 + y,208,34,34 );
gfx.PutPixel( 139 + x,29 + y,208,34,34 );
gfx.PutPixel( 140 + x,29 + y,208,34,34 );
gfx.PutPixel( 141 + x,29 + y,208,34,34 );
gfx.PutPixel( 142 + x,29 + y,208,34,34 );
gfx.PutPixel( 143 + x,29 + y,208,34,34 );
gfx.PutPixel( 144 + x,29 + y,208,34,34 );
gfx.PutPixel( 145 + x,29 + y,208,34,34 );
gfx.PutPixel( 146 + x,29 + y,208,34,34 );
gfx.PutPixel( 147 + x,29 + y,208,34,34 );
gfx.PutPixel( 148 + x,29 + y,208,34,34 );
gfx.PutPixel( 149 + x,29 + y,208,34,34 );
gfx.PutPixel( 0 + x,30 + y,208,34,34 );
gfx.PutPixel( 1 + x,30 + y,208,34,34 );
gfx.PutPixel( 2 + x,30 + y,208,34,34 );
gfx.PutPixel( 3 + x,30 + y,208,34,34 );
gfx.PutPixel( 4 + x,30 + y,208,34,34 );
gfx.PutPixel( 5 + x,30 + y,208,34,34 );
gfx.PutPixel( 6 + x,30 + y,208,34,34 );
gfx.PutPixel( 7 + x,30 + y,208,34,34 );
gfx.PutPixel( 8 + x,30 + y,208,34,34 );
gfx.PutPixel( 9 + x,30 + y,208,34,34 );
gfx.PutPixel( 10 + x,30 + y,208,34,34 );
gfx.PutPixel( 11 + x,30 + y,208,34,34 );
gfx.PutPixel( 12 + x,30 + y,208,34,34 );
gfx.PutPixel( 13 + x,30 + y,208,34,34 );
gfx.PutPixel( 14 + x,30 + y,208,34,34 );
gfx.PutPixel( 15 + x,30 + y,208,34,34 );
gfx.PutPixel( 16 + x,30 + y,208,34,34 );
gfx.PutPixel( 17 + x,30 + y,208,34,34 );
gfx.PutPixel( 18 + x,30 + y,208,34,34 );
gfx.PutPixel( 19 + x,30 + y,208,34,34 );
gfx.PutPixel( 20 + x,30 + y,208,34,34 );
gfx.PutPixel( 21 + x,30 + y,208,34,34 );
gfx.PutPixel( 22 + x,30 + y,208,34,34 );
gfx.PutPixel( 23 + x,30 + y,208,34,34 );
gfx.PutPixel( 24 + x,30 + y,208,34,34 );
gfx.PutPixel( 25 + x,30 + y,208,34,34 );
gfx.PutPixel( 26 + x,30 + y,208,34,34 );
gfx.PutPixel( 27 + x,30 + y,208,34,34 );
gfx.PutPixel( 28 + x,30 + y,208,34,34 );
gfx.PutPixel( 29 + x,30 + y,208,34,34 );
gfx.PutPixel( 30 + x,30 + y,208,34,34 );
gfx.PutPixel( 31 + x,30 + y,208,34,34 );
gfx.PutPixel( 32 + x,30 + y,208,34,34 );
gfx.PutPixel( 33 + x,30 + y,208,34,34 );
gfx.PutPixel( 34 + x,30 + y,208,34,34 );
gfx.PutPixel( 35 + x,30 + y,208,34,34 );
gfx.PutPixel( 36 + x,30 + y,208,34,34 );
gfx.PutPixel( 37 + x,30 + y,208,34,34 );
gfx.PutPixel( 38 + x,30 + y,208,34,34 );
gfx.PutPixel( 39 + x,30 + y,208,34,34 );
gfx.PutPixel( 40 + x,30 + y,208,34,34 );
gfx.PutPixel( 41 + x,30 + y,208,34,34 );
gfx.PutPixel( 42 + x,30 + y,208,34,34 );
gfx.PutPixel( 43 + x,30 + y,208,34,34 );
gfx.PutPixel( 44 + x,30 + y,208,34,34 );
gfx.PutPixel( 45 + x,30 + y,208,34,34 );
gfx.PutPixel( 46 + x,30 + y,208,34,34 );
gfx.PutPixel( 47 + x,30 + y,208,34,34 );
gfx.PutPixel( 48 + x,30 + y,208,34,34 );
gfx.PutPixel( 49 + x,30 + y,208,34,34 );
gfx.PutPixel( 50 + x,30 + y,208,34,34 );
gfx.PutPixel( 51 + x,30 + y,208,34,34 );
gfx.PutPixel( 52 + x,30 + y,208,34,34 );
gfx.PutPixel( 53 + x,30 + y,208,34,34 );
gfx.PutPixel( 54 + x,30 + y,208,34,34 );
gfx.PutPixel( 55 + x,30 + y,208,34,34 );
gfx.PutPixel( 56 + x,30 + y,208,34,34 );
gfx.PutPixel( 57 + x,30 + y,208,34,34 );
gfx.PutPixel( 58 + x,30 + y,207,25,25 );
gfx.PutPixel( 59 + x,30 + y,213,105,105 );
gfx.PutPixel( 60 + x,30 + y,213,102,102 );
gfx.PutPixel( 61 + x,30 + y,215,129,129 );
gfx.PutPixel( 62 + x,30 + y,222,242,242 );
gfx.PutPixel( 63 + x,30 + y,215,127,127 );
gfx.PutPixel( 64 + x,30 + y,215,134,134 );
gfx.PutPixel( 65 + x,30 + y,223,239,239 );
gfx.PutPixel( 66 + x,30 + y,221,219,219 );
gfx.PutPixel( 67 + x,30 + y,219,184,184 );
gfx.PutPixel( 68 + x,30 + y,220,202,202 );
gfx.PutPixel( 69 + x,30 + y,221,218,218 );
gfx.PutPixel( 70 + x,30 + y,219,199,199 );
gfx.PutPixel( 71 + x,30 + y,217,167,167 );
gfx.PutPixel( 72 + x,30 + y,217,163,163 );
gfx.PutPixel( 73 + x,30 + y,217,169,169 );
gfx.PutPixel( 74 + x,30 + y,218,171,171 );
gfx.PutPixel( 75 + x,30 + y,217,168,168 );
gfx.PutPixel( 76 + x,30 + y,217,168,168 );
gfx.PutPixel( 77 + x,30 + y,217,157,157 );
gfx.PutPixel( 78 + x,30 + y,218,181,181 );
gfx.PutPixel( 79 + x,30 + y,220,204,204 );
gfx.PutPixel( 80 + x,30 + y,220,209,209 );
gfx.PutPixel( 81 + x,30 + y,218,181,181 );
gfx.PutPixel( 82 + x,30 + y,219,197,197 );
gfx.PutPixel( 83 + x,30 + y,222,240,240 );
gfx.PutPixel( 84 + x,30 + y,218,175,175 );
gfx.PutPixel( 85 + x,30 + y,212,92,92 );
gfx.PutPixel( 86 + x,30 + y,221,227,227 );
gfx.PutPixel( 87 + x,30 + y,219,199,199 );
gfx.PutPixel( 88 + x,30 + y,211,75,75 );
gfx.PutPixel( 89 + x,30 + y,215,136,136 );
gfx.PutPixel( 90 + x,30 + y,208,29,29 );
gfx.PutPixel( 91 + x,30 + y,208,34,34 );
gfx.PutPixel( 92 + x,30 + y,208,34,34 );
gfx.PutPixel( 93 + x,30 + y,208,34,34 );
gfx.PutPixel( 94 + x,30 + y,208,34,34 );
gfx.PutPixel( 95 + x,30 + y,208,34,34 );
gfx.PutPixel( 96 + x,30 + y,208,34,34 );
gfx.PutPixel( 97 + x,30 + y,208,34,34 );
gfx.PutPixel( 98 + x,30 + y,208,34,34 );
gfx.PutPixel( 99 + x,30 + y,208,34,34 );
gfx.PutPixel( 100 + x,30 + y,208,34,34 );
gfx.PutPixel( 101 + x,30 + y,208,34,34 );
gfx.PutPixel( 102 + x,30 + y,208,34,34 );
gfx.PutPixel( 103 + x,30 + y,208,34,34 );
gfx.PutPixel( 104 + x,30 + y,208,34,34 );
gfx.PutPixel( 105 + x,30 + y,208,34,34 );
gfx.PutPixel( 106 + x,30 + y,208,34,34 );
gfx.PutPixel( 107 + x,30 + y,208,34,34 );
gfx.PutPixel( 108 + x,30 + y,208,34,34 );
gfx.PutPixel( 109 + x,30 + y,208,34,34 );
gfx.PutPixel( 110 + x,30 + y,208,34,34 );
gfx.PutPixel( 111 + x,30 + y,208,34,34 );
gfx.PutPixel( 112 + x,30 + y,208,34,34 );
gfx.PutPixel( 113 + x,30 + y,208,34,34 );
gfx.PutPixel( 114 + x,30 + y,208,34,34 );
gfx.PutPixel( 115 + x,30 + y,208,34,34 );
gfx.PutPixel( 116 + x,30 + y,208,34,34 );
gfx.PutPixel( 117 + x,30 + y,208,34,34 );
gfx.PutPixel( 118 + x,30 + y,208,34,34 );
gfx.PutPixel( 119 + x,30 + y,208,34,34 );
gfx.PutPixel( 120 + x,30 + y,208,34,34 );
gfx.PutPixel( 121 + x,30 + y,208,34,34 );
gfx.PutPixel( 122 + x,30 + y,208,34,34 );
gfx.PutPixel( 123 + x,30 + y,208,34,34 );
gfx.PutPixel( 124 + x,30 + y,208,34,34 );
gfx.PutPixel( 125 + x,30 + y,208,34,34 );
gfx.PutPixel( 126 + x,30 + y,208,34,34 );
gfx.PutPixel( 127 + x,30 + y,208,34,34 );
gfx.PutPixel( 128 + x,30 + y,208,34,34 );
gfx.PutPixel( 129 + x,30 + y,208,34,34 );
gfx.PutPixel( 130 + x,30 + y,208,34,34 );
gfx.PutPixel( 131 + x,30 + y,208,34,34 );
gfx.PutPixel( 132 + x,30 + y,208,34,34 );
gfx.PutPixel( 133 + x,30 + y,208,34,34 );
gfx.PutPixel( 134 + x,30 + y,208,34,34 );
gfx.PutPixel( 135 + x,30 + y,208,34,34 );
gfx.PutPixel( 136 + x,30 + y,208,34,34 );
gfx.PutPixel( 137 + x,30 + y,208,34,34 );
gfx.PutPixel( 138 + x,30 + y,208,34,34 );
gfx.PutPixel( 139 + x,30 + y,208,34,34 );
gfx.PutPixel( 140 + x,30 + y,208,34,34 );
gfx.PutPixel( 141 + x,30 + y,208,34,34 );
gfx.PutPixel( 142 + x,30 + y,208,34,34 );
gfx.PutPixel( 143 + x,30 + y,208,34,34 );
gfx.PutPixel( 144 + x,30 + y,208,34,34 );
gfx.PutPixel( 145 + x,30 + y,208,34,34 );
gfx.PutPixel( 146 + x,30 + y,208,34,34 );
gfx.PutPixel( 147 + x,30 + y,208,34,34 );
gfx.PutPixel( 148 + x,30 + y,208,34,34 );
gfx.PutPixel( 149 + x,30 + y,208,34,34 );
gfx.PutPixel( 0 + x,31 + y,208,34,34 );
gfx.PutPixel( 1 + x,31 + y,208,34,34 );
gfx.PutPixel( 2 + x,31 + y,208,34,34 );
gfx.PutPixel( 3 + x,31 + y,208,34,34 );
gfx.PutPixel( 4 + x,31 + y,208,34,34 );
gfx.PutPixel( 5 + x,31 + y,208,34,34 );
gfx.PutPixel( 6 + x,31 + y,208,34,34 );
gfx.PutPixel( 7 + x,31 + y,208,34,34 );
gfx.PutPixel( 8 + x,31 + y,208,34,34 );
gfx.PutPixel( 9 + x,31 + y,208,34,34 );
gfx.PutPixel( 10 + x,31 + y,208,34,34 );
gfx.PutPixel( 11 + x,31 + y,208,34,34 );
gfx.PutPixel( 12 + x,31 + y,208,34,34 );
gfx.PutPixel( 13 + x,31 + y,208,34,34 );
gfx.PutPixel( 14 + x,31 + y,208,34,34 );
gfx.PutPixel( 15 + x,31 + y,208,34,34 );
gfx.PutPixel( 16 + x,31 + y,208,34,34 );
gfx.PutPixel( 17 + x,31 + y,208,34,34 );
gfx.PutPixel( 18 + x,31 + y,208,34,34 );
gfx.PutPixel( 19 + x,31 + y,208,34,34 );
gfx.PutPixel( 20 + x,31 + y,208,34,34 );
gfx.PutPixel( 21 + x,31 + y,208,34,34 );
gfx.PutPixel( 22 + x,31 + y,208,34,34 );
gfx.PutPixel( 23 + x,31 + y,208,34,34 );
gfx.PutPixel( 24 + x,31 + y,208,34,34 );
gfx.PutPixel( 25 + x,31 + y,208,34,34 );
gfx.PutPixel( 26 + x,31 + y,208,34,34 );
gfx.PutPixel( 27 + x,31 + y,208,34,34 );
gfx.PutPixel( 28 + x,31 + y,208,34,34 );
gfx.PutPixel( 29 + x,31 + y,208,34,34 );
gfx.PutPixel( 30 + x,31 + y,208,34,34 );
gfx.PutPixel( 31 + x,31 + y,208,34,34 );
gfx.PutPixel( 32 + x,31 + y,208,34,34 );
gfx.PutPixel( 33 + x,31 + y,208,34,34 );
gfx.PutPixel( 34 + x,31 + y,208,34,34 );
gfx.PutPixel( 35 + x,31 + y,208,34,34 );
gfx.PutPixel( 36 + x,31 + y,208,34,34 );
gfx.PutPixel( 37 + x,31 + y,208,34,34 );
gfx.PutPixel( 38 + x,31 + y,208,34,34 );
gfx.PutPixel( 39 + x,31 + y,208,34,34 );
gfx.PutPixel( 40 + x,31 + y,208,34,34 );
gfx.PutPixel( 41 + x,31 + y,208,34,34 );
gfx.PutPixel( 42 + x,31 + y,208,34,34 );
gfx.PutPixel( 43 + x,31 + y,208,34,34 );
gfx.PutPixel( 44 + x,31 + y,208,34,34 );
gfx.PutPixel( 45 + x,31 + y,208,34,34 );
gfx.PutPixel( 46 + x,31 + y,208,34,34 );
gfx.PutPixel( 47 + x,31 + y,208,34,34 );
gfx.PutPixel( 48 + x,31 + y,208,34,34 );
gfx.PutPixel( 49 + x,31 + y,208,34,34 );
gfx.PutPixel( 50 + x,31 + y,208,34,34 );
gfx.PutPixel( 51 + x,31 + y,208,34,34 );
gfx.PutPixel( 52 + x,31 + y,208,34,34 );
gfx.PutPixel( 53 + x,31 + y,208,34,34 );
gfx.PutPixel( 54 + x,31 + y,208,34,34 );
gfx.PutPixel( 55 + x,31 + y,208,34,34 );
gfx.PutPixel( 56 + x,31 + y,208,34,34 );
gfx.PutPixel( 57 + x,31 + y,208,34,34 );
gfx.PutPixel( 58 + x,31 + y,208,31,31 );
gfx.PutPixel( 59 + x,31 + y,209,45,45 );
gfx.PutPixel( 60 + x,31 + y,215,136,136 );
gfx.PutPixel( 61 + x,31 + y,219,190,190 );
gfx.PutPixel( 62 + x,31 + y,222,235,235 );
gfx.PutPixel( 63 + x,31 + y,219,196,196 );
gfx.PutPixel( 64 + x,31 + y,218,185,185 );
gfx.PutPixel( 65 + x,31 + y,219,188,188 );
gfx.PutPixel( 66 + x,31 + y,216,151,151 );
gfx.PutPixel( 67 + x,31 + y,215,126,126 );
gfx.PutPixel( 68 + x,31 + y,213,106,106 );
gfx.PutPixel( 69 + x,31 + y,212,97,97 );
gfx.PutPixel( 70 + x,31 + y,212,100,100 );
gfx.PutPixel( 71 + x,31 + y,213,112,112 );
gfx.PutPixel( 72 + x,31 + y,214,119,119 );
gfx.PutPixel( 73 + x,31 + y,214,123,123 );
gfx.PutPixel( 74 + x,31 + y,214,126,126 );
gfx.PutPixel( 75 + x,31 + y,214,126,126 );
gfx.PutPixel( 76 + x,31 + y,214,124,124 );
gfx.PutPixel( 77 + x,31 + y,214,121,121 );
gfx.PutPixel( 78 + x,31 + y,213,111,111 );
gfx.PutPixel( 79 + x,31 + y,213,104,104 );
gfx.PutPixel( 80 + x,31 + y,213,103,103 );
gfx.PutPixel( 81 + x,31 + y,214,115,115 );
gfx.PutPixel( 82 + x,31 + y,215,131,131 );
gfx.PutPixel( 83 + x,31 + y,216,159,159 );
gfx.PutPixel( 84 + x,31 + y,218,180,180 );
gfx.PutPixel( 85 + x,31 + y,218,182,182 );
gfx.PutPixel( 86 + x,31 + y,222,231,231 );
gfx.PutPixel( 87 + x,31 + y,222,229,229 );
gfx.PutPixel( 88 + x,31 + y,219,188,188 );
gfx.PutPixel( 89 + x,31 + y,210,66,66 );
gfx.PutPixel( 90 + x,31 + y,208,29,29 );
gfx.PutPixel( 91 + x,31 + y,208,34,34 );
gfx.PutPixel( 92 + x,31 + y,208,34,34 );
gfx.PutPixel( 93 + x,31 + y,208,34,34 );
gfx.PutPixel( 94 + x,31 + y,208,34,34 );
gfx.PutPixel( 95 + x,31 + y,208,34,34 );
gfx.PutPixel( 96 + x,31 + y,208,34,34 );
gfx.PutPixel( 97 + x,31 + y,208,34,34 );
gfx.PutPixel( 98 + x,31 + y,208,34,34 );
gfx.PutPixel( 99 + x,31 + y,208,34,34 );
gfx.PutPixel( 100 + x,31 + y,208,34,34 );
gfx.PutPixel( 101 + x,31 + y,208,34,34 );
gfx.PutPixel( 102 + x,31 + y,208,34,34 );
gfx.PutPixel( 103 + x,31 + y,208,34,34 );
gfx.PutPixel( 104 + x,31 + y,208,34,34 );
gfx.PutPixel( 105 + x,31 + y,208,34,34 );
gfx.PutPixel( 106 + x,31 + y,208,34,34 );
gfx.PutPixel( 107 + x,31 + y,208,34,34 );
gfx.PutPixel( 108 + x,31 + y,208,34,34 );
gfx.PutPixel( 109 + x,31 + y,208,34,34 );
gfx.PutPixel( 110 + x,31 + y,208,34,34 );
gfx.PutPixel( 111 + x,31 + y,208,34,34 );
gfx.PutPixel( 112 + x,31 + y,208,34,34 );
gfx.PutPixel( 113 + x,31 + y,208,34,34 );
gfx.PutPixel( 114 + x,31 + y,208,34,34 );
gfx.PutPixel( 115 + x,31 + y,208,34,34 );
gfx.PutPixel( 116 + x,31 + y,208,34,34 );
gfx.PutPixel( 117 + x,31 + y,208,34,34 );
gfx.PutPixel( 118 + x,31 + y,208,34,34 );
gfx.PutPixel( 119 + x,31 + y,208,34,34 );
gfx.PutPixel( 120 + x,31 + y,208,34,34 );
gfx.PutPixel( 121 + x,31 + y,208,34,34 );
gfx.PutPixel( 122 + x,31 + y,208,34,34 );
gfx.PutPixel( 123 + x,31 + y,208,34,34 );
gfx.PutPixel( 124 + x,31 + y,208,34,34 );
gfx.PutPixel( 125 + x,31 + y,208,34,34 );
gfx.PutPixel( 126 + x,31 + y,208,34,34 );
gfx.PutPixel( 127 + x,31 + y,208,34,34 );
gfx.PutPixel( 128 + x,31 + y,208,34,34 );
gfx.PutPixel( 129 + x,31 + y,208,34,34 );
gfx.PutPixel( 130 + x,31 + y,208,34,34 );
gfx.PutPixel( 131 + x,31 + y,208,34,34 );
gfx.PutPixel( 132 + x,31 + y,208,34,34 );
gfx.PutPixel( 133 + x,31 + y,208,34,34 );
gfx.PutPixel( 134 + x,31 + y,208,34,34 );
gfx.PutPixel( 135 + x,31 + y,208,34,34 );
gfx.PutPixel( 136 + x,31 + y,208,34,34 );
gfx.PutPixel( 137 + x,31 + y,208,34,34 );
gfx.PutPixel( 138 + x,31 + y,208,34,34 );
gfx.PutPixel( 139 + x,31 + y,208,34,34 );
gfx.PutPixel( 140 + x,31 + y,208,34,34 );
gfx.PutPixel( 141 + x,31 + y,208,34,34 );
gfx.PutPixel( 142 + x,31 + y,208,34,34 );
gfx.PutPixel( 143 + x,31 + y,208,34,34 );
gfx.PutPixel( 144 + x,31 + y,208,34,34 );
gfx.PutPixel( 145 + x,31 + y,208,34,34 );
gfx.PutPixel( 146 + x,31 + y,208,34,34 );
gfx.PutPixel( 147 + x,31 + y,208,34,34 );
gfx.PutPixel( 148 + x,31 + y,208,34,34 );
gfx.PutPixel( 149 + x,31 + y,208,34,34 );
gfx.PutPixel( 0 + x,32 + y,208,34,34 );
gfx.PutPixel( 1 + x,32 + y,208,34,34 );
gfx.PutPixel( 2 + x,32 + y,208,34,34 );
gfx.PutPixel( 3 + x,32 + y,208,34,34 );
gfx.PutPixel( 4 + x,32 + y,208,34,34 );
gfx.PutPixel( 5 + x,32 + y,208,34,34 );
gfx.PutPixel( 6 + x,32 + y,208,34,34 );
gfx.PutPixel( 7 + x,32 + y,208,34,34 );
gfx.PutPixel( 8 + x,32 + y,208,34,34 );
gfx.PutPixel( 9 + x,32 + y,208,34,34 );
gfx.PutPixel( 10 + x,32 + y,208,34,34 );
gfx.PutPixel( 11 + x,32 + y,208,34,34 );
gfx.PutPixel( 12 + x,32 + y,208,34,34 );
gfx.PutPixel( 13 + x,32 + y,208,34,34 );
gfx.PutPixel( 14 + x,32 + y,208,34,34 );
gfx.PutPixel( 15 + x,32 + y,208,34,34 );
gfx.PutPixel( 16 + x,32 + y,208,34,34 );
gfx.PutPixel( 17 + x,32 + y,208,34,34 );
gfx.PutPixel( 18 + x,32 + y,208,34,34 );
gfx.PutPixel( 19 + x,32 + y,208,34,34 );
gfx.PutPixel( 20 + x,32 + y,208,34,34 );
gfx.PutPixel( 21 + x,32 + y,208,34,34 );
gfx.PutPixel( 22 + x,32 + y,208,34,34 );
gfx.PutPixel( 23 + x,32 + y,208,34,34 );
gfx.PutPixel( 24 + x,32 + y,208,34,34 );
gfx.PutPixel( 25 + x,32 + y,208,34,34 );
gfx.PutPixel( 26 + x,32 + y,208,34,34 );
gfx.PutPixel( 27 + x,32 + y,208,34,34 );
gfx.PutPixel( 28 + x,32 + y,208,34,34 );
gfx.PutPixel( 29 + x,32 + y,208,34,34 );
gfx.PutPixel( 30 + x,32 + y,208,34,34 );
gfx.PutPixel( 31 + x,32 + y,208,34,34 );
gfx.PutPixel( 32 + x,32 + y,208,34,34 );
gfx.PutPixel( 33 + x,32 + y,208,34,34 );
gfx.PutPixel( 34 + x,32 + y,208,34,34 );
gfx.PutPixel( 35 + x,32 + y,208,34,34 );
gfx.PutPixel( 36 + x,32 + y,208,34,34 );
gfx.PutPixel( 37 + x,32 + y,208,34,34 );
gfx.PutPixel( 38 + x,32 + y,208,34,34 );
gfx.PutPixel( 39 + x,32 + y,208,34,34 );
gfx.PutPixel( 40 + x,32 + y,208,34,34 );
gfx.PutPixel( 41 + x,32 + y,208,34,34 );
gfx.PutPixel( 42 + x,32 + y,208,34,34 );
gfx.PutPixel( 43 + x,32 + y,208,34,34 );
gfx.PutPixel( 44 + x,32 + y,208,34,34 );
gfx.PutPixel( 45 + x,32 + y,208,34,34 );
gfx.PutPixel( 46 + x,32 + y,208,34,34 );
gfx.PutPixel( 47 + x,32 + y,208,34,34 );
gfx.PutPixel( 48 + x,32 + y,208,34,34 );
gfx.PutPixel( 49 + x,32 + y,208,34,34 );
gfx.PutPixel( 50 + x,32 + y,208,34,34 );
gfx.PutPixel( 51 + x,32 + y,208,34,34 );
gfx.PutPixel( 52 + x,32 + y,208,34,34 );
gfx.PutPixel( 53 + x,32 + y,208,34,34 );
gfx.PutPixel( 54 + x,32 + y,208,34,34 );
gfx.PutPixel( 55 + x,32 + y,208,34,34 );
gfx.PutPixel( 56 + x,32 + y,208,34,34 );
gfx.PutPixel( 57 + x,32 + y,208,34,34 );
gfx.PutPixel( 58 + x,32 + y,208,34,34 );
gfx.PutPixel( 59 + x,32 + y,208,29,29 );
gfx.PutPixel( 60 + x,32 + y,208,34,34 );
gfx.PutPixel( 61 + x,32 + y,215,143,143 );
gfx.PutPixel( 62 + x,32 + y,220,202,202 );
gfx.PutPixel( 63 + x,32 + y,215,138,138 );
gfx.PutPixel( 64 + x,32 + y,213,101,101 );
gfx.PutPixel( 65 + x,32 + y,213,106,106 );
gfx.PutPixel( 66 + x,32 + y,215,137,137 );
gfx.PutPixel( 67 + x,32 + y,218,169,169 );
gfx.PutPixel( 68 + x,32 + y,219,196,196 );
gfx.PutPixel( 69 + x,32 + y,220,213,213 );
gfx.PutPixel( 70 + x,32 + y,221,223,223 );
gfx.PutPixel( 71 + x,32 + y,221,228,228 );
gfx.PutPixel( 72 + x,32 + y,222,230,230 );
gfx.PutPixel( 73 + x,32 + y,222,231,231 );
gfx.PutPixel( 74 + x,32 + y,222,231,231 );
gfx.PutPixel( 75 + x,32 + y,222,231,231 );
gfx.PutPixel( 76 + x,32 + y,222,231,231 );
gfx.PutPixel( 77 + x,32 + y,222,230,230 );
gfx.PutPixel( 78 + x,32 + y,221,228,228 );
gfx.PutPixel( 79 + x,32 + y,221,224,224 );
gfx.PutPixel( 80 + x,32 + y,220,213,213 );
gfx.PutPixel( 81 + x,32 + y,219,196,196 );
gfx.PutPixel( 82 + x,32 + y,217,169,169 );
gfx.PutPixel( 83 + x,32 + y,215,137,137 );
gfx.PutPixel( 84 + x,32 + y,213,112,112 );
gfx.PutPixel( 85 + x,32 + y,213,112,112 );
gfx.PutPixel( 86 + x,32 + y,216,151,151 );
gfx.PutPixel( 87 + x,32 + y,221,208,208 );
gfx.PutPixel( 88 + x,32 + y,212,95,95 );
gfx.PutPixel( 89 + x,32 + y,207,23,23 );
gfx.PutPixel( 90 + x,32 + y,208,34,34 );
gfx.PutPixel( 91 + x,32 + y,208,34,34 );
gfx.PutPixel( 92 + x,32 + y,208,34,34 );
gfx.PutPixel( 93 + x,32 + y,208,34,34 );
gfx.PutPixel( 94 + x,32 + y,208,34,34 );
gfx.PutPixel( 95 + x,32 + y,208,34,34 );
gfx.PutPixel( 96 + x,32 + y,208,34,34 );
gfx.PutPixel( 97 + x,32 + y,208,34,34 );
gfx.PutPixel( 98 + x,32 + y,208,34,34 );
gfx.PutPixel( 99 + x,32 + y,208,34,34 );
gfx.PutPixel( 100 + x,32 + y,208,34,34 );
gfx.PutPixel( 101 + x,32 + y,208,34,34 );
gfx.PutPixel( 102 + x,32 + y,208,34,34 );
gfx.PutPixel( 103 + x,32 + y,208,34,34 );
gfx.PutPixel( 104 + x,32 + y,208,34,34 );
gfx.PutPixel( 105 + x,32 + y,208,34,34 );
gfx.PutPixel( 106 + x,32 + y,208,34,34 );
gfx.PutPixel( 107 + x,32 + y,208,34,34 );
gfx.PutPixel( 108 + x,32 + y,208,34,34 );
gfx.PutPixel( 109 + x,32 + y,208,34,34 );
gfx.PutPixel( 110 + x,32 + y,208,34,34 );
gfx.PutPixel( 111 + x,32 + y,208,34,34 );
gfx.PutPixel( 112 + x,32 + y,208,34,34 );
gfx.PutPixel( 113 + x,32 + y,208,34,34 );
gfx.PutPixel( 114 + x,32 + y,208,34,34 );
gfx.PutPixel( 115 + x,32 + y,208,34,34 );
gfx.PutPixel( 116 + x,32 + y,208,34,34 );
gfx.PutPixel( 117 + x,32 + y,208,34,34 );
gfx.PutPixel( 118 + x,32 + y,208,34,34 );
gfx.PutPixel( 119 + x,32 + y,208,34,34 );
gfx.PutPixel( 120 + x,32 + y,208,34,34 );
gfx.PutPixel( 121 + x,32 + y,208,34,34 );
gfx.PutPixel( 122 + x,32 + y,208,34,34 );
gfx.PutPixel( 123 + x,32 + y,208,34,34 );
gfx.PutPixel( 124 + x,32 + y,208,34,34 );
gfx.PutPixel( 125 + x,32 + y,208,34,34 );
gfx.PutPixel( 126 + x,32 + y,208,34,34 );
gfx.PutPixel( 127 + x,32 + y,208,34,34 );
gfx.PutPixel( 128 + x,32 + y,208,34,34 );
gfx.PutPixel( 129 + x,32 + y,208,34,34 );
gfx.PutPixel( 130 + x,32 + y,208,34,34 );
gfx.PutPixel( 131 + x,32 + y,208,34,34 );
gfx.PutPixel( 132 + x,32 + y,208,34,34 );
gfx.PutPixel( 133 + x,32 + y,208,34,34 );
gfx.PutPixel( 134 + x,32 + y,208,34,34 );
gfx.PutPixel( 135 + x,32 + y,208,34,34 );
gfx.PutPixel( 136 + x,32 + y,208,34,34 );
gfx.PutPixel( 137 + x,32 + y,208,34,34 );
gfx.PutPixel( 138 + x,32 + y,208,34,34 );
gfx.PutPixel( 139 + x,32 + y,208,34,34 );
gfx.PutPixel( 140 + x,32 + y,208,34,34 );
gfx.PutPixel( 141 + x,32 + y,208,34,34 );
gfx.PutPixel( 142 + x,32 + y,208,34,34 );
gfx.PutPixel( 143 + x,32 + y,208,34,34 );
gfx.PutPixel( 144 + x,32 + y,208,34,34 );
gfx.PutPixel( 145 + x,32 + y,208,34,34 );
gfx.PutPixel( 146 + x,32 + y,208,34,34 );
gfx.PutPixel( 147 + x,32 + y,208,34,34 );
gfx.PutPixel( 148 + x,32 + y,208,34,34 );
gfx.PutPixel( 149 + x,32 + y,208,34,34 );
gfx.PutPixel( 0 + x,33 + y,208,34,34 );
gfx.PutPixel( 1 + x,33 + y,208,34,34 );
gfx.PutPixel( 2 + x,33 + y,208,34,34 );
gfx.PutPixel( 3 + x,33 + y,208,34,34 );
gfx.PutPixel( 4 + x,33 + y,208,34,34 );
gfx.PutPixel( 5 + x,33 + y,208,34,34 );
gfx.PutPixel( 6 + x,33 + y,208,34,34 );
gfx.PutPixel( 7 + x,33 + y,208,34,34 );
gfx.PutPixel( 8 + x,33 + y,208,34,34 );
gfx.PutPixel( 9 + x,33 + y,208,34,34 );
gfx.PutPixel( 10 + x,33 + y,208,34,34 );
gfx.PutPixel( 11 + x,33 + y,208,34,34 );
gfx.PutPixel( 12 + x,33 + y,208,34,34 );
gfx.PutPixel( 13 + x,33 + y,208,34,34 );
gfx.PutPixel( 14 + x,33 + y,208,34,34 );
gfx.PutPixel( 15 + x,33 + y,208,34,34 );
gfx.PutPixel( 16 + x,33 + y,208,34,34 );
gfx.PutPixel( 17 + x,33 + y,208,34,34 );
gfx.PutPixel( 18 + x,33 + y,208,34,34 );
gfx.PutPixel( 19 + x,33 + y,208,34,34 );
gfx.PutPixel( 20 + x,33 + y,208,34,34 );
gfx.PutPixel( 21 + x,33 + y,208,34,34 );
gfx.PutPixel( 22 + x,33 + y,208,34,34 );
gfx.PutPixel( 23 + x,33 + y,208,34,34 );
gfx.PutPixel( 24 + x,33 + y,208,34,34 );
gfx.PutPixel( 25 + x,33 + y,208,34,34 );
gfx.PutPixel( 26 + x,33 + y,208,34,34 );
gfx.PutPixel( 27 + x,33 + y,208,34,34 );
gfx.PutPixel( 28 + x,33 + y,208,34,34 );
gfx.PutPixel( 29 + x,33 + y,208,34,34 );
gfx.PutPixel( 30 + x,33 + y,208,34,34 );
gfx.PutPixel( 31 + x,33 + y,208,34,34 );
gfx.PutPixel( 32 + x,33 + y,208,34,34 );
gfx.PutPixel( 33 + x,33 + y,208,34,34 );
gfx.PutPixel( 34 + x,33 + y,208,34,34 );
gfx.PutPixel( 35 + x,33 + y,208,34,34 );
gfx.PutPixel( 36 + x,33 + y,208,34,34 );
gfx.PutPixel( 37 + x,33 + y,208,34,34 );
gfx.PutPixel( 38 + x,33 + y,208,34,34 );
gfx.PutPixel( 39 + x,33 + y,208,34,34 );
gfx.PutPixel( 40 + x,33 + y,208,34,34 );
gfx.PutPixel( 41 + x,33 + y,208,34,34 );
gfx.PutPixel( 42 + x,33 + y,208,34,34 );
gfx.PutPixel( 43 + x,33 + y,208,34,34 );
gfx.PutPixel( 44 + x,33 + y,208,34,34 );
gfx.PutPixel( 45 + x,33 + y,208,34,34 );
gfx.PutPixel( 46 + x,33 + y,208,34,34 );
gfx.PutPixel( 47 + x,33 + y,208,34,34 );
gfx.PutPixel( 48 + x,33 + y,208,34,34 );
gfx.PutPixel( 49 + x,33 + y,208,34,34 );
gfx.PutPixel( 50 + x,33 + y,208,34,34 );
gfx.PutPixel( 51 + x,33 + y,208,34,34 );
gfx.PutPixel( 52 + x,33 + y,208,34,34 );
gfx.PutPixel( 53 + x,33 + y,208,34,34 );
gfx.PutPixel( 54 + x,33 + y,208,34,34 );
gfx.PutPixel( 55 + x,33 + y,208,34,34 );
gfx.PutPixel( 56 + x,33 + y,208,34,34 );
gfx.PutPixel( 57 + x,33 + y,208,34,34 );
gfx.PutPixel( 58 + x,33 + y,208,34,34 );
gfx.PutPixel( 59 + x,33 + y,208,34,34 );
gfx.PutPixel( 60 + x,33 + y,208,31,31 );
gfx.PutPixel( 61 + x,33 + y,208,30,30 );
gfx.PutPixel( 62 + x,33 + y,209,46,46 );
gfx.PutPixel( 63 + x,33 + y,215,130,130 );
gfx.PutPixel( 64 + x,33 + y,220,214,214 );
gfx.PutPixel( 65 + x,33 + y,222,239,239 );
gfx.PutPixel( 66 + x,33 + y,222,238,238 );
gfx.PutPixel( 67 + x,33 + y,222,231,231 );
gfx.PutPixel( 68 + x,33 + y,221,226,226 );
gfx.PutPixel( 69 + x,33 + y,221,223,223 );
gfx.PutPixel( 70 + x,33 + y,221,222,222 );
gfx.PutPixel( 71 + x,33 + y,221,221,221 );
gfx.PutPixel( 72 + x,33 + y,221,221,221 );
gfx.PutPixel( 73 + x,33 + y,221,221,221 );
gfx.PutPixel( 74 + x,33 + y,221,221,221 );
gfx.PutPixel( 75 + x,33 + y,221,221,221 );
gfx.PutPixel( 76 + x,33 + y,221,221,221 );
gfx.PutPixel( 77 + x,33 + y,221,221,221 );
gfx.PutPixel( 78 + x,33 + y,221,221,221 );
gfx.PutPixel( 79 + x,33 + y,221,222,222 );
gfx.PutPixel( 80 + x,33 + y,221,223,223 );
gfx.PutPixel( 81 + x,33 + y,221,225,225 );
gfx.PutPixel( 82 + x,33 + y,222,230,230 );
gfx.PutPixel( 83 + x,33 + y,222,236,236 );
gfx.PutPixel( 84 + x,33 + y,222,237,237 );
gfx.PutPixel( 85 + x,33 + y,221,210,210 );
gfx.PutPixel( 86 + x,33 + y,213,110,110 );
gfx.PutPixel( 87 + x,33 + y,209,41,41 );
gfx.PutPixel( 88 + x,33 + y,208,31,31 );
gfx.PutPixel( 89 + x,33 + y,208,34,34 );
gfx.PutPixel( 90 + x,33 + y,208,34,34 );
gfx.PutPixel( 91 + x,33 + y,208,34,34 );
gfx.PutPixel( 92 + x,33 + y,208,34,34 );
gfx.PutPixel( 93 + x,33 + y,208,34,34 );
gfx.PutPixel( 94 + x,33 + y,208,34,34 );
gfx.PutPixel( 95 + x,33 + y,208,34,34 );
gfx.PutPixel( 96 + x,33 + y,208,34,34 );
gfx.PutPixel( 97 + x,33 + y,208,34,34 );
gfx.PutPixel( 98 + x,33 + y,208,34,34 );
gfx.PutPixel( 99 + x,33 + y,208,34,34 );
gfx.PutPixel( 100 + x,33 + y,208,34,34 );
gfx.PutPixel( 101 + x,33 + y,208,34,34 );
gfx.PutPixel( 102 + x,33 + y,208,34,34 );
gfx.PutPixel( 103 + x,33 + y,208,34,34 );
gfx.PutPixel( 104 + x,33 + y,208,34,34 );
gfx.PutPixel( 105 + x,33 + y,208,34,34 );
gfx.PutPixel( 106 + x,33 + y,208,34,34 );
gfx.PutPixel( 107 + x,33 + y,208,34,34 );
gfx.PutPixel( 108 + x,33 + y,208,34,34 );
gfx.PutPixel( 109 + x,33 + y,208,34,34 );
gfx.PutPixel( 110 + x,33 + y,208,34,34 );
gfx.PutPixel( 111 + x,33 + y,208,34,34 );
gfx.PutPixel( 112 + x,33 + y,208,34,34 );
gfx.PutPixel( 113 + x,33 + y,208,34,34 );
gfx.PutPixel( 114 + x,33 + y,208,34,34 );
gfx.PutPixel( 115 + x,33 + y,208,34,34 );
gfx.PutPixel( 116 + x,33 + y,208,34,34 );
gfx.PutPixel( 117 + x,33 + y,208,34,34 );
gfx.PutPixel( 118 + x,33 + y,208,34,34 );
gfx.PutPixel( 119 + x,33 + y,208,34,34 );
gfx.PutPixel( 120 + x,33 + y,208,34,34 );
gfx.PutPixel( 121 + x,33 + y,208,34,34 );
gfx.PutPixel( 122 + x,33 + y,208,34,34 );
gfx.PutPixel( 123 + x,33 + y,208,34,34 );
gfx.PutPixel( 124 + x,33 + y,208,34,34 );
gfx.PutPixel( 125 + x,33 + y,208,34,34 );
gfx.PutPixel( 126 + x,33 + y,208,34,34 );
gfx.PutPixel( 127 + x,33 + y,208,34,34 );
gfx.PutPixel( 128 + x,33 + y,208,34,34 );
gfx.PutPixel( 129 + x,33 + y,208,34,34 );
gfx.PutPixel( 130 + x,33 + y,208,34,34 );
gfx.PutPixel( 131 + x,33 + y,208,34,34 );
gfx.PutPixel( 132 + x,33 + y,208,34,34 );
gfx.PutPixel( 133 + x,33 + y,208,34,34 );
gfx.PutPixel( 134 + x,33 + y,208,34,34 );
gfx.PutPixel( 135 + x,33 + y,208,34,34 );
gfx.PutPixel( 136 + x,33 + y,208,34,34 );
gfx.PutPixel( 137 + x,33 + y,208,34,34 );
gfx.PutPixel( 138 + x,33 + y,208,34,34 );
gfx.PutPixel( 139 + x,33 + y,208,34,34 );
gfx.PutPixel( 140 + x,33 + y,208,34,34 );
gfx.PutPixel( 141 + x,33 + y,208,34,34 );
gfx.PutPixel( 142 + x,33 + y,208,34,34 );
gfx.PutPixel( 143 + x,33 + y,208,34,34 );
gfx.PutPixel( 144 + x,33 + y,208,34,34 );
gfx.PutPixel( 145 + x,33 + y,208,34,34 );
gfx.PutPixel( 146 + x,33 + y,208,34,34 );
gfx.PutPixel( 147 + x,33 + y,208,34,34 );
gfx.PutPixel( 148 + x,33 + y,208,34,34 );
gfx.PutPixel( 149 + x,33 + y,208,34,34 );
gfx.PutPixel( 0 + x,34 + y,208,34,34 );
gfx.PutPixel( 1 + x,34 + y,208,34,34 );
gfx.PutPixel( 2 + x,34 + y,208,34,34 );
gfx.PutPixel( 3 + x,34 + y,208,34,34 );
gfx.PutPixel( 4 + x,34 + y,208,34,34 );
gfx.PutPixel( 5 + x,34 + y,208,34,34 );
gfx.PutPixel( 6 + x,34 + y,208,34,34 );
gfx.PutPixel( 7 + x,34 + y,208,34,34 );
gfx.PutPixel( 8 + x,34 + y,208,34,34 );
gfx.PutPixel( 9 + x,34 + y,208,34,34 );
gfx.PutPixel( 10 + x,34 + y,208,34,34 );
gfx.PutPixel( 11 + x,34 + y,208,34,34 );
gfx.PutPixel( 12 + x,34 + y,208,34,34 );
gfx.PutPixel( 13 + x,34 + y,208,34,34 );
gfx.PutPixel( 14 + x,34 + y,208,34,34 );
gfx.PutPixel( 15 + x,34 + y,208,34,34 );
gfx.PutPixel( 16 + x,34 + y,208,34,34 );
gfx.PutPixel( 17 + x,34 + y,208,34,34 );
gfx.PutPixel( 18 + x,34 + y,208,34,34 );
gfx.PutPixel( 19 + x,34 + y,208,34,34 );
gfx.PutPixel( 20 + x,34 + y,208,34,34 );
gfx.PutPixel( 21 + x,34 + y,208,34,34 );
gfx.PutPixel( 22 + x,34 + y,208,34,34 );
gfx.PutPixel( 23 + x,34 + y,208,34,34 );
gfx.PutPixel( 24 + x,34 + y,208,34,34 );
gfx.PutPixel( 25 + x,34 + y,208,34,34 );
gfx.PutPixel( 26 + x,34 + y,208,34,34 );
gfx.PutPixel( 27 + x,34 + y,208,34,34 );
gfx.PutPixel( 28 + x,34 + y,208,34,34 );
gfx.PutPixel( 29 + x,34 + y,208,34,34 );
gfx.PutPixel( 30 + x,34 + y,208,34,34 );
gfx.PutPixel( 31 + x,34 + y,208,34,34 );
gfx.PutPixel( 32 + x,34 + y,208,34,34 );
gfx.PutPixel( 33 + x,34 + y,208,34,34 );
gfx.PutPixel( 34 + x,34 + y,208,34,34 );
gfx.PutPixel( 35 + x,34 + y,208,34,34 );
gfx.PutPixel( 36 + x,34 + y,208,34,34 );
gfx.PutPixel( 37 + x,34 + y,208,34,34 );
gfx.PutPixel( 38 + x,34 + y,208,34,34 );
gfx.PutPixel( 39 + x,34 + y,208,34,34 );
gfx.PutPixel( 40 + x,34 + y,208,34,34 );
gfx.PutPixel( 41 + x,34 + y,208,34,34 );
gfx.PutPixel( 42 + x,34 + y,208,34,34 );
gfx.PutPixel( 43 + x,34 + y,208,34,34 );
gfx.PutPixel( 44 + x,34 + y,208,34,34 );
gfx.PutPixel( 45 + x,34 + y,208,34,34 );
gfx.PutPixel( 46 + x,34 + y,208,34,34 );
gfx.PutPixel( 47 + x,34 + y,208,34,34 );
gfx.PutPixel( 48 + x,34 + y,208,34,34 );
gfx.PutPixel( 49 + x,34 + y,208,34,34 );
gfx.PutPixel( 50 + x,34 + y,208,34,34 );
gfx.PutPixel( 51 + x,34 + y,208,34,34 );
gfx.PutPixel( 52 + x,34 + y,208,34,34 );
gfx.PutPixel( 53 + x,34 + y,208,34,34 );
gfx.PutPixel( 54 + x,34 + y,208,34,34 );
gfx.PutPixel( 55 + x,34 + y,208,34,34 );
gfx.PutPixel( 56 + x,34 + y,208,34,34 );
gfx.PutPixel( 57 + x,34 + y,208,34,34 );
gfx.PutPixel( 58 + x,34 + y,208,34,34 );
gfx.PutPixel( 59 + x,34 + y,208,34,34 );
gfx.PutPixel( 60 + x,34 + y,208,34,34 );
gfx.PutPixel( 61 + x,34 + y,208,33,33 );
gfx.PutPixel( 62 + x,34 + y,208,31,31 );
gfx.PutPixel( 63 + x,34 + y,210,56,56 );
gfx.PutPixel( 64 + x,34 + y,212,96,96 );
gfx.PutPixel( 65 + x,34 + y,216,144,144 );
gfx.PutPixel( 66 + x,34 + y,218,184,184 );
gfx.PutPixel( 67 + x,34 + y,220,210,210 );
gfx.PutPixel( 68 + x,34 + y,221,224,224 );
gfx.PutPixel( 69 + x,34 + y,222,230,230 );
gfx.PutPixel( 70 + x,34 + y,222,231,231 );
gfx.PutPixel( 71 + x,34 + y,222,232,232 );
gfx.PutPixel( 72 + x,34 + y,222,232,232 );
gfx.PutPixel( 73 + x,34 + y,222,231,231 );
gfx.PutPixel( 74 + x,34 + y,222,231,231 );
gfx.PutPixel( 75 + x,34 + y,222,230,230 );
gfx.PutPixel( 76 + x,34 + y,222,231,231 );
gfx.PutPixel( 77 + x,34 + y,222,231,231 );
gfx.PutPixel( 78 + x,34 + y,222,231,231 );
gfx.PutPixel( 79 + x,34 + y,222,232,232 );
gfx.PutPixel( 80 + x,34 + y,222,231,231 );
gfx.PutPixel( 81 + x,34 + y,222,229,229 );
gfx.PutPixel( 82 + x,34 + y,221,219,219 );
gfx.PutPixel( 83 + x,34 + y,219,197,197 );
gfx.PutPixel( 84 + x,34 + y,216,156,156 );
gfx.PutPixel( 85 + x,34 + y,213,102,102 );
gfx.PutPixel( 86 + x,34 + y,209,53,53 );
gfx.PutPixel( 87 + x,34 + y,208,29,29 );
gfx.PutPixel( 88 + x,34 + y,208,33,33 );
gfx.PutPixel( 89 + x,34 + y,208,34,34 );
gfx.PutPixel( 90 + x,34 + y,208,34,34 );
gfx.PutPixel( 91 + x,34 + y,208,34,34 );
gfx.PutPixel( 92 + x,34 + y,208,34,34 );
gfx.PutPixel( 93 + x,34 + y,208,34,34 );
gfx.PutPixel( 94 + x,34 + y,208,34,34 );
gfx.PutPixel( 95 + x,34 + y,208,34,34 );
gfx.PutPixel( 96 + x,34 + y,208,34,34 );
gfx.PutPixel( 97 + x,34 + y,208,34,34 );
gfx.PutPixel( 98 + x,34 + y,208,34,34 );
gfx.PutPixel( 99 + x,34 + y,208,34,34 );
gfx.PutPixel( 100 + x,34 + y,208,34,34 );
gfx.PutPixel( 101 + x,34 + y,208,34,34 );
gfx.PutPixel( 102 + x,34 + y,208,34,34 );
gfx.PutPixel( 103 + x,34 + y,208,34,34 );
gfx.PutPixel( 104 + x,34 + y,208,34,34 );
gfx.PutPixel( 105 + x,34 + y,208,34,34 );
gfx.PutPixel( 106 + x,34 + y,208,34,34 );
gfx.PutPixel( 107 + x,34 + y,208,34,34 );
gfx.PutPixel( 108 + x,34 + y,208,34,34 );
gfx.PutPixel( 109 + x,34 + y,208,34,34 );
gfx.PutPixel( 110 + x,34 + y,208,34,34 );
gfx.PutPixel( 111 + x,34 + y,208,34,34 );
gfx.PutPixel( 112 + x,34 + y,208,34,34 );
gfx.PutPixel( 113 + x,34 + y,208,34,34 );
gfx.PutPixel( 114 + x,34 + y,208,34,34 );
gfx.PutPixel( 115 + x,34 + y,208,34,34 );
gfx.PutPixel( 116 + x,34 + y,208,34,34 );
gfx.PutPixel( 117 + x,34 + y,208,34,34 );
gfx.PutPixel( 118 + x,34 + y,208,34,34 );
gfx.PutPixel( 119 + x,34 + y,208,34,34 );
gfx.PutPixel( 120 + x,34 + y,208,34,34 );
gfx.PutPixel( 121 + x,34 + y,208,34,34 );
gfx.PutPixel( 122 + x,34 + y,208,34,34 );
gfx.PutPixel( 123 + x,34 + y,208,34,34 );
gfx.PutPixel( 124 + x,34 + y,208,34,34 );
gfx.PutPixel( 125 + x,34 + y,208,34,34 );
gfx.PutPixel( 126 + x,34 + y,208,34,34 );
gfx.PutPixel( 127 + x,34 + y,208,34,34 );
gfx.PutPixel( 128 + x,34 + y,208,34,34 );
gfx.PutPixel( 129 + x,34 + y,208,34,34 );
gfx.PutPixel( 130 + x,34 + y,208,34,34 );
gfx.PutPixel( 131 + x,34 + y,208,34,34 );
gfx.PutPixel( 132 + x,34 + y,208,34,34 );
gfx.PutPixel( 133 + x,34 + y,208,34,34 );
gfx.PutPixel( 134 + x,34 + y,208,34,34 );
gfx.PutPixel( 135 + x,34 + y,208,34,34 );
gfx.PutPixel( 136 + x,34 + y,208,34,34 );
gfx.PutPixel( 137 + x,34 + y,208,34,34 );
gfx.PutPixel( 138 + x,34 + y,208,34,34 );
gfx.PutPixel( 139 + x,34 + y,208,34,34 );
gfx.PutPixel( 140 + x,34 + y,208,34,34 );
gfx.PutPixel( 141 + x,34 + y,208,34,34 );
gfx.PutPixel( 142 + x,34 + y,208,34,34 );
gfx.PutPixel( 143 + x,34 + y,208,34,34 );
gfx.PutPixel( 144 + x,34 + y,208,34,34 );
gfx.PutPixel( 145 + x,34 + y,208,34,34 );
gfx.PutPixel( 146 + x,34 + y,208,34,34 );
gfx.PutPixel( 147 + x,34 + y,208,34,34 );
gfx.PutPixel( 148 + x,34 + y,208,34,34 );
gfx.PutPixel( 149 + x,34 + y,208,34,34 );
gfx.PutPixel( 0 + x,35 + y,208,34,34 );
gfx.PutPixel( 1 + x,35 + y,208,34,34 );
gfx.PutPixel( 2 + x,35 + y,208,34,34 );
gfx.PutPixel( 3 + x,35 + y,208,34,34 );
gfx.PutPixel( 4 + x,35 + y,208,34,34 );
gfx.PutPixel( 5 + x,35 + y,208,34,34 );
gfx.PutPixel( 6 + x,35 + y,208,34,34 );
gfx.PutPixel( 7 + x,35 + y,208,34,34 );
gfx.PutPixel( 8 + x,35 + y,208,34,34 );
gfx.PutPixel( 9 + x,35 + y,208,34,34 );
gfx.PutPixel( 10 + x,35 + y,208,34,34 );
gfx.PutPixel( 11 + x,35 + y,208,34,34 );
gfx.PutPixel( 12 + x,35 + y,208,34,34 );
gfx.PutPixel( 13 + x,35 + y,208,34,34 );
gfx.PutPixel( 14 + x,35 + y,208,34,34 );
gfx.PutPixel( 15 + x,35 + y,208,34,34 );
gfx.PutPixel( 16 + x,35 + y,208,34,34 );
gfx.PutPixel( 17 + x,35 + y,208,34,34 );
gfx.PutPixel( 18 + x,35 + y,208,34,34 );
gfx.PutPixel( 19 + x,35 + y,208,34,34 );
gfx.PutPixel( 20 + x,35 + y,208,34,34 );
gfx.PutPixel( 21 + x,35 + y,208,34,34 );
gfx.PutPixel( 22 + x,35 + y,208,34,34 );
gfx.PutPixel( 23 + x,35 + y,208,34,34 );
gfx.PutPixel( 24 + x,35 + y,208,34,34 );
gfx.PutPixel( 25 + x,35 + y,208,34,34 );
gfx.PutPixel( 26 + x,35 + y,208,34,34 );
gfx.PutPixel( 27 + x,35 + y,208,34,34 );
gfx.PutPixel( 28 + x,35 + y,208,34,34 );
gfx.PutPixel( 29 + x,35 + y,208,34,34 );
gfx.PutPixel( 30 + x,35 + y,208,34,34 );
gfx.PutPixel( 31 + x,35 + y,208,34,34 );
gfx.PutPixel( 32 + x,35 + y,208,34,34 );
gfx.PutPixel( 33 + x,35 + y,208,34,34 );
gfx.PutPixel( 34 + x,35 + y,208,34,34 );
gfx.PutPixel( 35 + x,35 + y,208,34,34 );
gfx.PutPixel( 36 + x,35 + y,208,34,34 );
gfx.PutPixel( 37 + x,35 + y,208,34,34 );
gfx.PutPixel( 38 + x,35 + y,208,34,34 );
gfx.PutPixel( 39 + x,35 + y,208,34,34 );
gfx.PutPixel( 40 + x,35 + y,208,34,34 );
gfx.PutPixel( 41 + x,35 + y,208,34,34 );
gfx.PutPixel( 42 + x,35 + y,208,34,34 );
gfx.PutPixel( 43 + x,35 + y,208,34,34 );
gfx.PutPixel( 44 + x,35 + y,208,34,34 );
gfx.PutPixel( 45 + x,35 + y,208,34,34 );
gfx.PutPixel( 46 + x,35 + y,208,34,34 );
gfx.PutPixel( 47 + x,35 + y,208,34,34 );
gfx.PutPixel( 48 + x,35 + y,208,34,34 );
gfx.PutPixel( 49 + x,35 + y,208,34,34 );
gfx.PutPixel( 50 + x,35 + y,208,34,34 );
gfx.PutPixel( 51 + x,35 + y,208,34,34 );
gfx.PutPixel( 52 + x,35 + y,208,34,34 );
gfx.PutPixel( 53 + x,35 + y,208,34,34 );
gfx.PutPixel( 54 + x,35 + y,208,34,34 );
gfx.PutPixel( 55 + x,35 + y,208,34,34 );
gfx.PutPixel( 56 + x,35 + y,208,34,34 );
gfx.PutPixel( 57 + x,35 + y,208,34,34 );
gfx.PutPixel( 58 + x,35 + y,208,34,34 );
gfx.PutPixel( 59 + x,35 + y,208,34,34 );
gfx.PutPixel( 60 + x,35 + y,208,34,34 );
gfx.PutPixel( 61 + x,35 + y,208,34,34 );
gfx.PutPixel( 62 + x,35 + y,208,34,34 );
gfx.PutPixel( 63 + x,35 + y,208,30,30 );
gfx.PutPixel( 64 + x,35 + y,207,24,24 );
gfx.PutPixel( 65 + x,35 + y,207,24,24 );
gfx.PutPixel( 66 + x,35 + y,208,34,34 );
gfx.PutPixel( 67 + x,35 + y,209,54,54 );
gfx.PutPixel( 68 + x,35 + y,211,77,77 );
gfx.PutPixel( 69 + x,35 + y,213,99,99 );
gfx.PutPixel( 70 + x,35 + y,214,118,118 );
gfx.PutPixel( 71 + x,35 + y,215,133,133 );
gfx.PutPixel( 72 + x,35 + y,216,145,145 );
gfx.PutPixel( 73 + x,35 + y,216,152,152 );
gfx.PutPixel( 74 + x,35 + y,217,157,157 );
gfx.PutPixel( 75 + x,35 + y,217,159,159 );
gfx.PutPixel( 76 + x,35 + y,217,158,158 );
gfx.PutPixel( 77 + x,35 + y,216,153,153 );
gfx.PutPixel( 78 + x,35 + y,216,146,146 );
gfx.PutPixel( 79 + x,35 + y,215,133,133 );
gfx.PutPixel( 80 + x,35 + y,214,116,116 );
gfx.PutPixel( 81 + x,35 + y,212,95,95 );
gfx.PutPixel( 82 + x,35 + y,210,67,67 );
gfx.PutPixel( 83 + x,35 + y,208,41,41 );
gfx.PutPixel( 84 + x,35 + y,207,25,25 );
gfx.PutPixel( 85 + x,35 + y,207,24,24 );
gfx.PutPixel( 86 + x,35 + y,208,31,31 );
gfx.PutPixel( 87 + x,35 + y,208,34,34 );
gfx.PutPixel( 88 + x,35 + y,208,34,34 );
gfx.PutPixel( 89 + x,35 + y,208,34,34 );
gfx.PutPixel( 90 + x,35 + y,208,34,34 );
gfx.PutPixel( 91 + x,35 + y,208,34,34 );
gfx.PutPixel( 92 + x,35 + y,208,34,34 );
gfx.PutPixel( 93 + x,35 + y,208,34,34 );
gfx.PutPixel( 94 + x,35 + y,208,34,34 );
gfx.PutPixel( 95 + x,35 + y,208,34,34 );
gfx.PutPixel( 96 + x,35 + y,208,34,34 );
gfx.PutPixel( 97 + x,35 + y,208,34,34 );
gfx.PutPixel( 98 + x,35 + y,208,34,34 );
gfx.PutPixel( 99 + x,35 + y,208,34,34 );
gfx.PutPixel( 100 + x,35 + y,208,34,34 );
gfx.PutPixel( 101 + x,35 + y,208,34,34 );
gfx.PutPixel( 102 + x,35 + y,208,34,34 );
gfx.PutPixel( 103 + x,35 + y,208,34,34 );
gfx.PutPixel( 104 + x,35 + y,208,34,34 );
gfx.PutPixel( 105 + x,35 + y,208,34,34 );
gfx.PutPixel( 106 + x,35 + y,208,34,34 );
gfx.PutPixel( 107 + x,35 + y,208,34,34 );
gfx.PutPixel( 108 + x,35 + y,208,34,34 );
gfx.PutPixel( 109 + x,35 + y,208,34,34 );
gfx.PutPixel( 110 + x,35 + y,208,34,34 );
gfx.PutPixel( 111 + x,35 + y,208,34,34 );
gfx.PutPixel( 112 + x,35 + y,208,34,34 );
gfx.PutPixel( 113 + x,35 + y,208,34,34 );
gfx.PutPixel( 114 + x,35 + y,208,34,34 );
gfx.PutPixel( 115 + x,35 + y,208,34,34 );
gfx.PutPixel( 116 + x,35 + y,208,34,34 );
gfx.PutPixel( 117 + x,35 + y,208,34,34 );
gfx.PutPixel( 118 + x,35 + y,208,34,34 );
gfx.PutPixel( 119 + x,35 + y,208,34,34 );
gfx.PutPixel( 120 + x,35 + y,208,34,34 );
gfx.PutPixel( 121 + x,35 + y,208,34,34 );
gfx.PutPixel( 122 + x,35 + y,208,34,34 );
gfx.PutPixel( 123 + x,35 + y,208,34,34 );
gfx.PutPixel( 124 + x,35 + y,208,34,34 );
gfx.PutPixel( 125 + x,35 + y,208,34,34 );
gfx.PutPixel( 126 + x,35 + y,208,34,34 );
gfx.PutPixel( 127 + x,35 + y,208,34,34 );
gfx.PutPixel( 128 + x,35 + y,208,34,34 );
gfx.PutPixel( 129 + x,35 + y,208,34,34 );
gfx.PutPixel( 130 + x,35 + y,208,34,34 );
gfx.PutPixel( 131 + x,35 + y,208,34,34 );
gfx.PutPixel( 132 + x,35 + y,208,34,34 );
gfx.PutPixel( 133 + x,35 + y,208,34,34 );
gfx.PutPixel( 134 + x,35 + y,208,34,34 );
gfx.PutPixel( 135 + x,35 + y,208,34,34 );
gfx.PutPixel( 136 + x,35 + y,208,34,34 );
gfx.PutPixel( 137 + x,35 + y,208,34,34 );
gfx.PutPixel( 138 + x,35 + y,208,34,34 );
gfx.PutPixel( 139 + x,35 + y,208,34,34 );
gfx.PutPixel( 140 + x,35 + y,208,34,34 );
gfx.PutPixel( 141 + x,35 + y,208,34,34 );
gfx.PutPixel( 142 + x,35 + y,208,34,34 );
gfx.PutPixel( 143 + x,35 + y,208,34,34 );
gfx.PutPixel( 144 + x,35 + y,208,34,34 );
gfx.PutPixel( 145 + x,35 + y,208,34,34 );
gfx.PutPixel( 146 + x,35 + y,208,34,34 );
gfx.PutPixel( 147 + x,35 + y,208,34,34 );
gfx.PutPixel( 148 + x,35 + y,208,34,34 );
gfx.PutPixel( 149 + x,35 + y,208,34,34 );
gfx.PutPixel( 0 + x,36 + y,208,34,34 );
gfx.PutPixel( 1 + x,36 + y,208,34,34 );
gfx.PutPixel( 2 + x,36 + y,208,34,34 );
gfx.PutPixel( 3 + x,36 + y,208,34,34 );
gfx.PutPixel( 4 + x,36 + y,208,34,34 );
gfx.PutPixel( 5 + x,36 + y,208,34,34 );
gfx.PutPixel( 6 + x,36 + y,208,34,34 );
gfx.PutPixel( 7 + x,36 + y,208,34,34 );
gfx.PutPixel( 8 + x,36 + y,208,34,34 );
gfx.PutPixel( 9 + x,36 + y,208,34,34 );
gfx.PutPixel( 10 + x,36 + y,208,34,34 );
gfx.PutPixel( 11 + x,36 + y,208,34,34 );
gfx.PutPixel( 12 + x,36 + y,208,34,34 );
gfx.PutPixel( 13 + x,36 + y,208,34,34 );
gfx.PutPixel( 14 + x,36 + y,208,34,34 );
gfx.PutPixel( 15 + x,36 + y,208,34,34 );
gfx.PutPixel( 16 + x,36 + y,208,34,34 );
gfx.PutPixel( 17 + x,36 + y,208,34,34 );
gfx.PutPixel( 18 + x,36 + y,208,34,34 );
gfx.PutPixel( 19 + x,36 + y,208,34,34 );
gfx.PutPixel( 20 + x,36 + y,208,34,34 );
gfx.PutPixel( 21 + x,36 + y,208,34,34 );
gfx.PutPixel( 22 + x,36 + y,208,34,34 );
gfx.PutPixel( 23 + x,36 + y,208,34,34 );
gfx.PutPixel( 24 + x,36 + y,208,34,34 );
gfx.PutPixel( 25 + x,36 + y,208,34,34 );
gfx.PutPixel( 26 + x,36 + y,208,34,34 );
gfx.PutPixel( 27 + x,36 + y,208,34,34 );
gfx.PutPixel( 28 + x,36 + y,208,34,34 );
gfx.PutPixel( 29 + x,36 + y,208,34,34 );
gfx.PutPixel( 30 + x,36 + y,208,34,34 );
gfx.PutPixel( 31 + x,36 + y,208,34,34 );
gfx.PutPixel( 32 + x,36 + y,208,34,34 );
gfx.PutPixel( 33 + x,36 + y,208,34,34 );
gfx.PutPixel( 34 + x,36 + y,208,34,34 );
gfx.PutPixel( 35 + x,36 + y,208,34,34 );
gfx.PutPixel( 36 + x,36 + y,208,34,34 );
gfx.PutPixel( 37 + x,36 + y,208,34,34 );
gfx.PutPixel( 38 + x,36 + y,208,34,34 );
gfx.PutPixel( 39 + x,36 + y,208,34,34 );
gfx.PutPixel( 40 + x,36 + y,208,34,34 );
gfx.PutPixel( 41 + x,36 + y,208,34,34 );
gfx.PutPixel( 42 + x,36 + y,208,34,34 );
gfx.PutPixel( 43 + x,36 + y,208,34,34 );
gfx.PutPixel( 44 + x,36 + y,208,34,34 );
gfx.PutPixel( 45 + x,36 + y,208,34,34 );
gfx.PutPixel( 46 + x,36 + y,208,34,34 );
gfx.PutPixel( 47 + x,36 + y,208,34,34 );
gfx.PutPixel( 48 + x,36 + y,208,34,34 );
gfx.PutPixel( 49 + x,36 + y,208,34,34 );
gfx.PutPixel( 50 + x,36 + y,208,34,34 );
gfx.PutPixel( 51 + x,36 + y,208,34,34 );
gfx.PutPixel( 52 + x,36 + y,208,34,34 );
gfx.PutPixel( 53 + x,36 + y,208,34,34 );
gfx.PutPixel( 54 + x,36 + y,208,34,34 );
gfx.PutPixel( 55 + x,36 + y,208,34,34 );
gfx.PutPixel( 56 + x,36 + y,208,34,34 );
gfx.PutPixel( 57 + x,36 + y,208,34,34 );
gfx.PutPixel( 58 + x,36 + y,208,34,34 );
gfx.PutPixel( 59 + x,36 + y,208,34,34 );
gfx.PutPixel( 60 + x,36 + y,208,34,34 );
gfx.PutPixel( 61 + x,36 + y,208,34,34 );
gfx.PutPixel( 62 + x,36 + y,208,34,34 );
gfx.PutPixel( 63 + x,36 + y,208,34,34 );
gfx.PutPixel( 64 + x,36 + y,208,34,34 );
gfx.PutPixel( 65 + x,36 + y,208,34,34 );
gfx.PutPixel( 66 + x,36 + y,208,33,33 );
gfx.PutPixel( 67 + x,36 + y,208,30,30 );
gfx.PutPixel( 68 + x,36 + y,207,26,26 );
gfx.PutPixel( 69 + x,36 + y,207,24,24 );
gfx.PutPixel( 70 + x,36 + y,207,23,23 );
gfx.PutPixel( 71 + x,36 + y,207,23,23 );
gfx.PutPixel( 72 + x,36 + y,207,24,24 );
gfx.PutPixel( 73 + x,36 + y,207,25,25 );
gfx.PutPixel( 74 + x,36 + y,208,26,26 );
gfx.PutPixel( 75 + x,36 + y,208,26,26 );
gfx.PutPixel( 76 + x,36 + y,208,26,26 );
gfx.PutPixel( 77 + x,36 + y,207,25,25 );
gfx.PutPixel( 78 + x,36 + y,207,25,25 );
gfx.PutPixel( 79 + x,36 + y,207,23,23 );
gfx.PutPixel( 80 + x,36 + y,207,23,23 );
gfx.PutPixel( 81 + x,36 + y,207,25,25 );
gfx.PutPixel( 82 + x,36 + y,208,28,28 );
gfx.PutPixel( 83 + x,36 + y,208,31,31 );
gfx.PutPixel( 84 + x,36 + y,208,34,34 );
gfx.PutPixel( 85 + x,36 + y,208,34,34 );
gfx.PutPixel( 86 + x,36 + y,208,34,34 );
gfx.PutPixel( 87 + x,36 + y,208,34,34 );
gfx.PutPixel( 88 + x,36 + y,208,34,34 );
gfx.PutPixel( 89 + x,36 + y,208,34,34 );
gfx.PutPixel( 90 + x,36 + y,208,34,34 );
gfx.PutPixel( 91 + x,36 + y,208,34,34 );
gfx.PutPixel( 92 + x,36 + y,208,34,34 );
gfx.PutPixel( 93 + x,36 + y,208,34,34 );
gfx.PutPixel( 94 + x,36 + y,208,34,34 );
gfx.PutPixel( 95 + x,36 + y,208,34,34 );
gfx.PutPixel( 96 + x,36 + y,208,34,34 );
gfx.PutPixel( 97 + x,36 + y,208,34,34 );
gfx.PutPixel( 98 + x,36 + y,208,34,34 );
gfx.PutPixel( 99 + x,36 + y,208,34,34 );
gfx.PutPixel( 100 + x,36 + y,208,34,34 );
gfx.PutPixel( 101 + x,36 + y,208,34,34 );
gfx.PutPixel( 102 + x,36 + y,208,34,34 );
gfx.PutPixel( 103 + x,36 + y,208,34,34 );
gfx.PutPixel( 104 + x,36 + y,208,34,34 );
gfx.PutPixel( 105 + x,36 + y,208,34,34 );
gfx.PutPixel( 106 + x,36 + y,208,34,34 );
gfx.PutPixel( 107 + x,36 + y,208,34,34 );
gfx.PutPixel( 108 + x,36 + y,208,34,34 );
gfx.PutPixel( 109 + x,36 + y,208,34,34 );
gfx.PutPixel( 110 + x,36 + y,208,34,34 );
gfx.PutPixel( 111 + x,36 + y,208,34,34 );
gfx.PutPixel( 112 + x,36 + y,208,34,34 );
gfx.PutPixel( 113 + x,36 + y,208,34,34 );
gfx.PutPixel( 114 + x,36 + y,208,34,34 );
gfx.PutPixel( 115 + x,36 + y,208,34,34 );
gfx.PutPixel( 116 + x,36 + y,208,34,34 );
gfx.PutPixel( 117 + x,36 + y,208,34,34 );
gfx.PutPixel( 118 + x,36 + y,208,34,34 );
gfx.PutPixel( 119 + x,36 + y,208,34,34 );
gfx.PutPixel( 120 + x,36 + y,208,34,34 );
gfx.PutPixel( 121 + x,36 + y,208,34,34 );
gfx.PutPixel( 122 + x,36 + y,208,34,34 );
gfx.PutPixel( 123 + x,36 + y,208,34,34 );
gfx.PutPixel( 124 + x,36 + y,208,34,34 );
gfx.PutPixel( 125 + x,36 + y,208,34,34 );
gfx.PutPixel( 126 + x,36 + y,208,34,34 );
gfx.PutPixel( 127 + x,36 + y,208,34,34 );
gfx.PutPixel( 128 + x,36 + y,208,34,34 );
gfx.PutPixel( 129 + x,36 + y,208,34,34 );
gfx.PutPixel( 130 + x,36 + y,208,34,34 );
gfx.PutPixel( 131 + x,36 + y,208,34,34 );
gfx.PutPixel( 132 + x,36 + y,208,34,34 );
gfx.PutPixel( 133 + x,36 + y,208,34,34 );
gfx.PutPixel( 134 + x,36 + y,208,34,34 );
gfx.PutPixel( 135 + x,36 + y,208,34,34 );
gfx.PutPixel( 136 + x,36 + y,208,34,34 );
gfx.PutPixel( 137 + x,36 + y,208,34,34 );
gfx.PutPixel( 138 + x,36 + y,208,34,34 );
gfx.PutPixel( 139 + x,36 + y,208,34,34 );
gfx.PutPixel( 140 + x,36 + y,208,34,34 );
gfx.PutPixel( 141 + x,36 + y,208,34,34 );
gfx.PutPixel( 142 + x,36 + y,208,34,34 );
gfx.PutPixel( 143 + x,36 + y,208,34,34 );
gfx.PutPixel( 144 + x,36 + y,208,34,34 );
gfx.PutPixel( 145 + x,36 + y,208,34,34 );
gfx.PutPixel( 146 + x,36 + y,208,34,34 );
gfx.PutPixel( 147 + x,36 + y,208,34,34 );
gfx.PutPixel( 148 + x,36 + y,208,34,34 );
gfx.PutPixel( 149 + x,36 + y,208,34,34 );
gfx.PutPixel( 0 + x,37 + y,208,34,34 );
gfx.PutPixel( 1 + x,37 + y,208,34,34 );
gfx.PutPixel( 2 + x,37 + y,208,34,34 );
gfx.PutPixel( 3 + x,37 + y,208,34,34 );
gfx.PutPixel( 4 + x,37 + y,208,34,34 );
gfx.PutPixel( 5 + x,37 + y,208,34,34 );
gfx.PutPixel( 6 + x,37 + y,208,34,34 );
gfx.PutPixel( 7 + x,37 + y,208,34,34 );
gfx.PutPixel( 8 + x,37 + y,208,34,34 );
gfx.PutPixel( 9 + x,37 + y,208,34,34 );
gfx.PutPixel( 10 + x,37 + y,208,34,34 );
gfx.PutPixel( 11 + x,37 + y,208,34,34 );
gfx.PutPixel( 12 + x,37 + y,208,34,34 );
gfx.PutPixel( 13 + x,37 + y,208,34,34 );
gfx.PutPixel( 14 + x,37 + y,208,34,34 );
gfx.PutPixel( 15 + x,37 + y,208,34,34 );
gfx.PutPixel( 16 + x,37 + y,208,34,34 );
gfx.PutPixel( 17 + x,37 + y,208,34,34 );
gfx.PutPixel( 18 + x,37 + y,208,34,34 );
gfx.PutPixel( 19 + x,37 + y,208,34,34 );
gfx.PutPixel( 20 + x,37 + y,208,34,34 );
gfx.PutPixel( 21 + x,37 + y,208,34,34 );
gfx.PutPixel( 22 + x,37 + y,208,34,34 );
gfx.PutPixel( 23 + x,37 + y,208,34,34 );
gfx.PutPixel( 24 + x,37 + y,208,34,34 );
gfx.PutPixel( 25 + x,37 + y,208,34,34 );
gfx.PutPixel( 26 + x,37 + y,208,34,34 );
gfx.PutPixel( 27 + x,37 + y,208,34,34 );
gfx.PutPixel( 28 + x,37 + y,208,34,34 );
gfx.PutPixel( 29 + x,37 + y,208,34,34 );
gfx.PutPixel( 30 + x,37 + y,208,34,34 );
gfx.PutPixel( 31 + x,37 + y,208,34,34 );
gfx.PutPixel( 32 + x,37 + y,208,34,34 );
gfx.PutPixel( 33 + x,37 + y,208,34,34 );
gfx.PutPixel( 34 + x,37 + y,208,34,34 );
gfx.PutPixel( 35 + x,37 + y,208,34,34 );
gfx.PutPixel( 36 + x,37 + y,208,34,34 );
gfx.PutPixel( 37 + x,37 + y,208,34,34 );
gfx.PutPixel( 38 + x,37 + y,208,34,34 );
gfx.PutPixel( 39 + x,37 + y,208,34,34 );
gfx.PutPixel( 40 + x,37 + y,208,34,34 );
gfx.PutPixel( 41 + x,37 + y,208,34,34 );
gfx.PutPixel( 42 + x,37 + y,208,34,34 );
gfx.PutPixel( 43 + x,37 + y,208,34,34 );
gfx.PutPixel( 44 + x,37 + y,208,34,34 );
gfx.PutPixel( 45 + x,37 + y,208,34,34 );
gfx.PutPixel( 46 + x,37 + y,208,34,34 );
gfx.PutPixel( 47 + x,37 + y,208,34,34 );
gfx.PutPixel( 48 + x,37 + y,208,34,34 );
gfx.PutPixel( 49 + x,37 + y,208,34,34 );
gfx.PutPixel( 50 + x,37 + y,208,34,34 );
gfx.PutPixel( 51 + x,37 + y,208,34,34 );
gfx.PutPixel( 52 + x,37 + y,208,34,34 );
gfx.PutPixel( 53 + x,37 + y,208,34,34 );
gfx.PutPixel( 54 + x,37 + y,208,34,34 );
gfx.PutPixel( 55 + x,37 + y,208,34,34 );
gfx.PutPixel( 56 + x,37 + y,208,34,34 );
gfx.PutPixel( 57 + x,37 + y,208,34,34 );
gfx.PutPixel( 58 + x,37 + y,208,34,34 );
gfx.PutPixel( 59 + x,37 + y,208,34,34 );
gfx.PutPixel( 60 + x,37 + y,208,34,34 );
gfx.PutPixel( 61 + x,37 + y,208,34,34 );
gfx.PutPixel( 62 + x,37 + y,208,34,34 );
gfx.PutPixel( 63 + x,37 + y,208,34,34 );
gfx.PutPixel( 64 + x,37 + y,208,34,34 );
gfx.PutPixel( 65 + x,37 + y,208,34,34 );
gfx.PutPixel( 66 + x,37 + y,208,34,34 );
gfx.PutPixel( 67 + x,37 + y,208,34,34 );
gfx.PutPixel( 68 + x,37 + y,208,34,34 );
gfx.PutPixel( 69 + x,37 + y,208,34,34 );
gfx.PutPixel( 70 + x,37 + y,208,34,34 );
gfx.PutPixel( 71 + x,37 + y,208,34,34 );
gfx.PutPixel( 72 + x,37 + y,208,34,34 );
gfx.PutPixel( 73 + x,37 + y,208,34,34 );
gfx.PutPixel( 74 + x,37 + y,208,34,34 );
gfx.PutPixel( 75 + x,37 + y,208,34,34 );
gfx.PutPixel( 76 + x,37 + y,208,34,34 );
gfx.PutPixel( 77 + x,37 + y,208,34,34 );
gfx.PutPixel( 78 + x,37 + y,208,34,34 );
gfx.PutPixel( 79 + x,37 + y,208,34,34 );
gfx.PutPixel( 80 + x,37 + y,208,34,34 );
gfx.PutPixel( 81 + x,37 + y,208,34,34 );
gfx.PutPixel( 82 + x,37 + y,208,34,34 );
gfx.PutPixel( 83 + x,37 + y,208,34,34 );
gfx.PutPixel( 84 + x,37 + y,208,34,34 );
gfx.PutPixel( 85 + x,37 + y,208,34,34 );
gfx.PutPixel( 86 + x,37 + y,208,34,34 );
gfx.PutPixel( 87 + x,37 + y,208,34,34 );
gfx.PutPixel( 88 + x,37 + y,208,34,34 );
gfx.PutPixel( 89 + x,37 + y,208,34,34 );
gfx.PutPixel( 90 + x,37 + y,208,34,34 );
gfx.PutPixel( 91 + x,37 + y,208,34,34 );
gfx.PutPixel( 92 + x,37 + y,208,34,34 );
gfx.PutPixel( 93 + x,37 + y,208,34,34 );
gfx.PutPixel( 94 + x,37 + y,208,34,34 );
gfx.PutPixel( 95 + x,37 + y,208,34,34 );
gfx.PutPixel( 96 + x,37 + y,208,34,34 );
gfx.PutPixel( 97 + x,37 + y,208,34,34 );
gfx.PutPixel( 98 + x,37 + y,208,34,34 );
gfx.PutPixel( 99 + x,37 + y,208,34,34 );
gfx.PutPixel( 100 + x,37 + y,208,34,34 );
gfx.PutPixel( 101 + x,37 + y,208,34,34 );
gfx.PutPixel( 102 + x,37 + y,208,34,34 );
gfx.PutPixel( 103 + x,37 + y,208,34,34 );
gfx.PutPixel( 104 + x,37 + y,208,34,34 );
gfx.PutPixel( 105 + x,37 + y,208,34,34 );
gfx.PutPixel( 106 + x,37 + y,208,34,34 );
gfx.PutPixel( 107 + x,37 + y,208,34,34 );
gfx.PutPixel( 108 + x,37 + y,208,34,34 );
gfx.PutPixel( 109 + x,37 + y,208,34,34 );
gfx.PutPixel( 110 + x,37 + y,208,34,34 );
gfx.PutPixel( 111 + x,37 + y,208,34,34 );
gfx.PutPixel( 112 + x,37 + y,208,34,34 );
gfx.PutPixel( 113 + x,37 + y,208,34,34 );
gfx.PutPixel( 114 + x,37 + y,208,34,34 );
gfx.PutPixel( 115 + x,37 + y,208,34,34 );
gfx.PutPixel( 116 + x,37 + y,208,34,34 );
gfx.PutPixel( 117 + x,37 + y,208,34,34 );
gfx.PutPixel( 118 + x,37 + y,208,34,34 );
gfx.PutPixel( 119 + x,37 + y,208,34,34 );
gfx.PutPixel( 120 + x,37 + y,208,34,34 );
gfx.PutPixel( 121 + x,37 + y,208,34,34 );
gfx.PutPixel( 122 + x,37 + y,208,34,34 );
gfx.PutPixel( 123 + x,37 + y,208,34,34 );
gfx.PutPixel( 124 + x,37 + y,208,34,34 );
gfx.PutPixel( 125 + x,37 + y,208,34,34 );
gfx.PutPixel( 126 + x,37 + y,208,34,34 );
gfx.PutPixel( 127 + x,37 + y,208,34,34 );
gfx.PutPixel( 128 + x,37 + y,208,34,34 );
gfx.PutPixel( 129 + x,37 + y,208,34,34 );
gfx.PutPixel( 130 + x,37 + y,208,34,34 );
gfx.PutPixel( 131 + x,37 + y,208,34,34 );
gfx.PutPixel( 132 + x,37 + y,208,34,34 );
gfx.PutPixel( 133 + x,37 + y,208,34,34 );
gfx.PutPixel( 134 + x,37 + y,208,34,34 );
gfx.PutPixel( 135 + x,37 + y,208,34,34 );
gfx.PutPixel( 136 + x,37 + y,208,34,34 );
gfx.PutPixel( 137 + x,37 + y,208,34,34 );
gfx.PutPixel( 138 + x,37 + y,208,34,34 );
gfx.PutPixel( 139 + x,37 + y,208,34,34 );
gfx.PutPixel( 140 + x,37 + y,208,34,34 );
gfx.PutPixel( 141 + x,37 + y,208,34,34 );
gfx.PutPixel( 142 + x,37 + y,208,34,34 );
gfx.PutPixel( 143 + x,37 + y,208,34,34 );
gfx.PutPixel( 144 + x,37 + y,208,34,34 );
gfx.PutPixel( 145 + x,37 + y,208,34,34 );
gfx.PutPixel( 146 + x,37 + y,208,34,34 );
gfx.PutPixel( 147 + x,37 + y,208,34,34 );
gfx.PutPixel( 148 + x,37 + y,208,34,34 );
gfx.PutPixel( 149 + x,37 + y,208,34,34 );
gfx.PutPixel( 0 + x,38 + y,208,34,34 );
gfx.PutPixel( 1 + x,38 + y,208,34,34 );
gfx.PutPixel( 2 + x,38 + y,208,34,34 );
gfx.PutPixel( 3 + x,38 + y,208,34,34 );
gfx.PutPixel( 4 + x,38 + y,208,34,34 );
gfx.PutPixel( 5 + x,38 + y,208,34,34 );
gfx.PutPixel( 6 + x,38 + y,208,34,34 );
gfx.PutPixel( 7 + x,38 + y,208,34,34 );
gfx.PutPixel( 8 + x,38 + y,208,34,34 );
gfx.PutPixel( 9 + x,38 + y,208,34,34 );
gfx.PutPixel( 10 + x,38 + y,208,34,34 );
gfx.PutPixel( 11 + x,38 + y,208,34,34 );
gfx.PutPixel( 12 + x,38 + y,208,34,34 );
gfx.PutPixel( 13 + x,38 + y,208,34,34 );
gfx.PutPixel( 14 + x,38 + y,208,34,34 );
gfx.PutPixel( 15 + x,38 + y,208,34,34 );
gfx.PutPixel( 16 + x,38 + y,208,34,34 );
gfx.PutPixel( 17 + x,38 + y,208,34,34 );
gfx.PutPixel( 18 + x,38 + y,208,34,34 );
gfx.PutPixel( 19 + x,38 + y,208,34,34 );
gfx.PutPixel( 20 + x,38 + y,208,34,34 );
gfx.PutPixel( 21 + x,38 + y,208,34,34 );
gfx.PutPixel( 22 + x,38 + y,208,34,34 );
gfx.PutPixel( 23 + x,38 + y,208,34,34 );
gfx.PutPixel( 24 + x,38 + y,208,34,34 );
gfx.PutPixel( 25 + x,38 + y,208,34,34 );
gfx.PutPixel( 26 + x,38 + y,208,34,34 );
gfx.PutPixel( 27 + x,38 + y,208,34,34 );
gfx.PutPixel( 28 + x,38 + y,208,34,34 );
gfx.PutPixel( 29 + x,38 + y,208,34,34 );
gfx.PutPixel( 30 + x,38 + y,208,34,34 );
gfx.PutPixel( 31 + x,38 + y,208,34,34 );
gfx.PutPixel( 32 + x,38 + y,208,34,34 );
gfx.PutPixel( 33 + x,38 + y,208,34,34 );
gfx.PutPixel( 34 + x,38 + y,208,34,34 );
gfx.PutPixel( 35 + x,38 + y,208,34,34 );
gfx.PutPixel( 36 + x,38 + y,208,34,34 );
gfx.PutPixel( 37 + x,38 + y,208,34,34 );
gfx.PutPixel( 38 + x,38 + y,208,34,34 );
gfx.PutPixel( 39 + x,38 + y,208,34,34 );
gfx.PutPixel( 40 + x,38 + y,208,34,34 );
gfx.PutPixel( 41 + x,38 + y,208,34,34 );
gfx.PutPixel( 42 + x,38 + y,208,34,34 );
gfx.PutPixel( 43 + x,38 + y,208,34,34 );
gfx.PutPixel( 44 + x,38 + y,208,34,34 );
gfx.PutPixel( 45 + x,38 + y,208,34,34 );
gfx.PutPixel( 46 + x,38 + y,208,34,34 );
gfx.PutPixel( 47 + x,38 + y,208,34,34 );
gfx.PutPixel( 48 + x,38 + y,208,34,34 );
gfx.PutPixel( 49 + x,38 + y,208,34,34 );
gfx.PutPixel( 50 + x,38 + y,208,34,34 );
gfx.PutPixel( 51 + x,38 + y,208,34,34 );
gfx.PutPixel( 52 + x,38 + y,208,34,34 );
gfx.PutPixel( 53 + x,38 + y,208,34,34 );
gfx.PutPixel( 54 + x,38 + y,208,34,34 );
gfx.PutPixel( 55 + x,38 + y,208,34,34 );
gfx.PutPixel( 56 + x,38 + y,208,34,34 );
gfx.PutPixel( 57 + x,38 + y,208,34,34 );
gfx.PutPixel( 58 + x,38 + y,208,34,34 );
gfx.PutPixel( 59 + x,38 + y,208,34,34 );
gfx.PutPixel( 60 + x,38 + y,208,34,34 );
gfx.PutPixel( 61 + x,38 + y,208,34,34 );
gfx.PutPixel( 62 + x,38 + y,208,34,34 );
gfx.PutPixel( 63 + x,38 + y,208,34,34 );
gfx.PutPixel( 64 + x,38 + y,208,34,34 );
gfx.PutPixel( 65 + x,38 + y,208,34,34 );
gfx.PutPixel( 66 + x,38 + y,208,34,34 );
gfx.PutPixel( 67 + x,38 + y,208,34,34 );
gfx.PutPixel( 68 + x,38 + y,208,34,34 );
gfx.PutPixel( 69 + x,38 + y,208,34,34 );
gfx.PutPixel( 70 + x,38 + y,208,34,34 );
gfx.PutPixel( 71 + x,38 + y,208,34,34 );
gfx.PutPixel( 72 + x,38 + y,208,34,34 );
gfx.PutPixel( 73 + x,38 + y,208,34,34 );
gfx.PutPixel( 74 + x,38 + y,208,34,34 );
gfx.PutPixel( 75 + x,38 + y,208,34,34 );
gfx.PutPixel( 76 + x,38 + y,208,34,34 );
gfx.PutPixel( 77 + x,38 + y,208,34,34 );
gfx.PutPixel( 78 + x,38 + y,208,34,34 );
gfx.PutPixel( 79 + x,38 + y,208,34,34 );
gfx.PutPixel( 80 + x,38 + y,208,34,34 );
gfx.PutPixel( 81 + x,38 + y,208,34,34 );
gfx.PutPixel( 82 + x,38 + y,208,34,34 );
gfx.PutPixel( 83 + x,38 + y,208,34,34 );
gfx.PutPixel( 84 + x,38 + y,208,34,34 );
gfx.PutPixel( 85 + x,38 + y,208,34,34 );
gfx.PutPixel( 86 + x,38 + y,208,34,34 );
gfx.PutPixel( 87 + x,38 + y,208,34,34 );
gfx.PutPixel( 88 + x,38 + y,208,34,34 );
gfx.PutPixel( 89 + x,38 + y,208,34,34 );
gfx.PutPixel( 90 + x,38 + y,208,34,34 );
gfx.PutPixel( 91 + x,38 + y,208,34,34 );
gfx.PutPixel( 92 + x,38 + y,208,34,34 );
gfx.PutPixel( 93 + x,38 + y,208,34,34 );
gfx.PutPixel( 94 + x,38 + y,208,34,34 );
gfx.PutPixel( 95 + x,38 + y,208,34,34 );
gfx.PutPixel( 96 + x,38 + y,208,34,34 );
gfx.PutPixel( 97 + x,38 + y,208,34,34 );
gfx.PutPixel( 98 + x,38 + y,208,34,34 );
gfx.PutPixel( 99 + x,38 + y,208,34,34 );
gfx.PutPixel( 100 + x,38 + y,208,34,34 );
gfx.PutPixel( 101 + x,38 + y,208,34,34 );
gfx.PutPixel( 102 + x,38 + y,208,34,34 );
gfx.PutPixel( 103 + x,38 + y,208,34,34 );
gfx.PutPixel( 104 + x,38 + y,208,34,34 );
gfx.PutPixel( 105 + x,38 + y,208,34,34 );
gfx.PutPixel( 106 + x,38 + y,208,34,34 );
gfx.PutPixel( 107 + x,38 + y,208,34,34 );
gfx.PutPixel( 108 + x,38 + y,208,34,34 );
gfx.PutPixel( 109 + x,38 + y,208,34,34 );
gfx.PutPixel( 110 + x,38 + y,208,34,34 );
gfx.PutPixel( 111 + x,38 + y,208,34,34 );
gfx.PutPixel( 112 + x,38 + y,208,34,34 );
gfx.PutPixel( 113 + x,38 + y,208,34,34 );
gfx.PutPixel( 114 + x,38 + y,208,34,34 );
gfx.PutPixel( 115 + x,38 + y,208,34,34 );
gfx.PutPixel( 116 + x,38 + y,208,34,34 );
gfx.PutPixel( 117 + x,38 + y,208,34,34 );
gfx.PutPixel( 118 + x,38 + y,208,34,34 );
gfx.PutPixel( 119 + x,38 + y,208,34,34 );
gfx.PutPixel( 120 + x,38 + y,208,34,34 );
gfx.PutPixel( 121 + x,38 + y,208,34,34 );
gfx.PutPixel( 122 + x,38 + y,208,34,34 );
gfx.PutPixel( 123 + x,38 + y,208,34,34 );
gfx.PutPixel( 124 + x,38 + y,208,34,34 );
gfx.PutPixel( 125 + x,38 + y,208,34,34 );
gfx.PutPixel( 126 + x,38 + y,208,34,34 );
gfx.PutPixel( 127 + x,38 + y,208,34,34 );
gfx.PutPixel( 128 + x,38 + y,208,34,34 );
gfx.PutPixel( 129 + x,38 + y,208,34,34 );
gfx.PutPixel( 130 + x,38 + y,208,34,34 );
gfx.PutPixel( 131 + x,38 + y,208,34,34 );
gfx.PutPixel( 132 + x,38 + y,208,34,34 );
gfx.PutPixel( 133 + x,38 + y,208,34,34 );
gfx.PutPixel( 134 + x,38 + y,208,34,34 );
gfx.PutPixel( 135 + x,38 + y,208,34,34 );
gfx.PutPixel( 136 + x,38 + y,208,34,34 );
gfx.PutPixel( 137 + x,38 + y,208,34,34 );
gfx.PutPixel( 138 + x,38 + y,208,34,34 );
gfx.PutPixel( 139 + x,38 + y,208,34,34 );
gfx.PutPixel( 140 + x,38 + y,208,34,34 );
gfx.PutPixel( 141 + x,38 + y,208,34,34 );
gfx.PutPixel( 142 + x,38 + y,208,34,34 );
gfx.PutPixel( 143 + x,38 + y,208,34,34 );
gfx.PutPixel( 144 + x,38 + y,208,34,34 );
gfx.PutPixel( 145 + x,38 + y,208,34,34 );
gfx.PutPixel( 146 + x,38 + y,208,34,34 );
gfx.PutPixel( 147 + x,38 + y,208,34,34 );
gfx.PutPixel( 148 + x,38 + y,208,34,34 );
gfx.PutPixel( 149 + x,38 + y,208,34,34 );
gfx.PutPixel( 0 + x,39 + y,208,34,34 );
gfx.PutPixel( 1 + x,39 + y,208,34,34 );
gfx.PutPixel( 2 + x,39 + y,208,34,34 );
gfx.PutPixel( 3 + x,39 + y,208,34,34 );
gfx.PutPixel( 4 + x,39 + y,208,34,34 );
gfx.PutPixel( 5 + x,39 + y,208,34,34 );
gfx.PutPixel( 6 + x,39 + y,208,34,34 );
gfx.PutPixel( 7 + x,39 + y,208,34,34 );
gfx.PutPixel( 8 + x,39 + y,208,34,34 );
gfx.PutPixel( 9 + x,39 + y,208,34,34 );
gfx.PutPixel( 10 + x,39 + y,208,34,34 );
gfx.PutPixel( 11 + x,39 + y,208,34,34 );
gfx.PutPixel( 12 + x,39 + y,208,34,34 );
gfx.PutPixel( 13 + x,39 + y,208,34,34 );
gfx.PutPixel( 14 + x,39 + y,208,34,34 );
gfx.PutPixel( 15 + x,39 + y,208,34,34 );
gfx.PutPixel( 16 + x,39 + y,208,34,34 );
gfx.PutPixel( 17 + x,39 + y,208,34,34 );
gfx.PutPixel( 18 + x,39 + y,208,34,34 );
gfx.PutPixel( 19 + x,39 + y,208,34,34 );
gfx.PutPixel( 20 + x,39 + y,208,34,34 );
gfx.PutPixel( 21 + x,39 + y,208,34,34 );
gfx.PutPixel( 22 + x,39 + y,208,34,34 );
gfx.PutPixel( 23 + x,39 + y,208,34,34 );
gfx.PutPixel( 24 + x,39 + y,208,34,34 );
gfx.PutPixel( 25 + x,39 + y,208,34,34 );
gfx.PutPixel( 26 + x,39 + y,208,34,34 );
gfx.PutPixel( 27 + x,39 + y,208,34,34 );
gfx.PutPixel( 28 + x,39 + y,208,34,34 );
gfx.PutPixel( 29 + x,39 + y,208,34,34 );
gfx.PutPixel( 30 + x,39 + y,208,34,34 );
gfx.PutPixel( 31 + x,39 + y,208,34,34 );
gfx.PutPixel( 32 + x,39 + y,208,34,34 );
gfx.PutPixel( 33 + x,39 + y,208,34,34 );
gfx.PutPixel( 34 + x,39 + y,208,34,34 );
gfx.PutPixel( 35 + x,39 + y,208,34,34 );
gfx.PutPixel( 36 + x,39 + y,208,34,34 );
gfx.PutPixel( 37 + x,39 + y,208,34,34 );
gfx.PutPixel( 38 + x,39 + y,208,34,34 );
gfx.PutPixel( 39 + x,39 + y,208,34,34 );
gfx.PutPixel( 40 + x,39 + y,208,34,34 );
gfx.PutPixel( 41 + x,39 + y,208,34,34 );
gfx.PutPixel( 42 + x,39 + y,208,34,34 );
gfx.PutPixel( 43 + x,39 + y,208,34,34 );
gfx.PutPixel( 44 + x,39 + y,208,34,34 );
gfx.PutPixel( 45 + x,39 + y,208,34,34 );
gfx.PutPixel( 46 + x,39 + y,208,34,34 );
gfx.PutPixel( 47 + x,39 + y,208,34,34 );
gfx.PutPixel( 48 + x,39 + y,208,34,34 );
gfx.PutPixel( 49 + x,39 + y,208,34,34 );
gfx.PutPixel( 50 + x,39 + y,208,34,34 );
gfx.PutPixel( 51 + x,39 + y,208,34,34 );
gfx.PutPixel( 52 + x,39 + y,208,34,34 );
gfx.PutPixel( 53 + x,39 + y,208,34,34 );
gfx.PutPixel( 54 + x,39 + y,208,34,34 );
gfx.PutPixel( 55 + x,39 + y,208,34,34 );
gfx.PutPixel( 56 + x,39 + y,208,34,34 );
gfx.PutPixel( 57 + x,39 + y,208,34,34 );
gfx.PutPixel( 58 + x,39 + y,208,34,34 );
gfx.PutPixel( 59 + x,39 + y,208,34,34 );
gfx.PutPixel( 60 + x,39 + y,208,34,34 );
gfx.PutPixel( 61 + x,39 + y,208,34,34 );
gfx.PutPixel( 62 + x,39 + y,208,34,34 );
gfx.PutPixel( 63 + x,39 + y,208,34,34 );
gfx.PutPixel( 64 + x,39 + y,208,34,34 );
gfx.PutPixel( 65 + x,39 + y,208,34,34 );
gfx.PutPixel( 66 + x,39 + y,208,34,34 );
gfx.PutPixel( 67 + x,39 + y,208,34,34 );
gfx.PutPixel( 68 + x,39 + y,208,34,34 );
gfx.PutPixel( 69 + x,39 + y,208,34,34 );
gfx.PutPixel( 70 + x,39 + y,208,34,34 );
gfx.PutPixel( 71 + x,39 + y,208,34,34 );
gfx.PutPixel( 72 + x,39 + y,208,34,34 );
gfx.PutPixel( 73 + x,39 + y,208,34,34 );
gfx.PutPixel( 74 + x,39 + y,208,34,34 );
gfx.PutPixel( 75 + x,39 + y,208,34,34 );
gfx.PutPixel( 76 + x,39 + y,208,34,34 );
gfx.PutPixel( 77 + x,39 + y,208,34,34 );
gfx.PutPixel( 78 + x,39 + y,208,34,34 );
gfx.PutPixel( 79 + x,39 + y,208,34,34 );
gfx.PutPixel( 80 + x,39 + y,208,34,34 );
gfx.PutPixel( 81 + x,39 + y,208,34,34 );
gfx.PutPixel( 82 + x,39 + y,208,34,34 );
gfx.PutPixel( 83 + x,39 + y,208,34,34 );
gfx.PutPixel( 84 + x,39 + y,208,34,34 );
gfx.PutPixel( 85 + x,39 + y,208,34,34 );
gfx.PutPixel( 86 + x,39 + y,208,34,34 );
gfx.PutPixel( 87 + x,39 + y,208,34,34 );
gfx.PutPixel( 88 + x,39 + y,208,34,34 );
gfx.PutPixel( 89 + x,39 + y,208,34,34 );
gfx.PutPixel( 90 + x,39 + y,208,34,34 );
gfx.PutPixel( 91 + x,39 + y,208,34,34 );
gfx.PutPixel( 92 + x,39 + y,208,34,34 );
gfx.PutPixel( 93 + x,39 + y,208,34,34 );
gfx.PutPixel( 94 + x,39 + y,208,34,34 );
gfx.PutPixel( 95 + x,39 + y,208,34,34 );
gfx.PutPixel( 96 + x,39 + y,208,34,34 );
gfx.PutPixel( 97 + x,39 + y,208,34,34 );
gfx.PutPixel( 98 + x,39 + y,208,34,34 );
gfx.PutPixel( 99 + x,39 + y,208,34,34 );
gfx.PutPixel( 100 + x,39 + y,208,34,34 );
gfx.PutPixel( 101 + x,39 + y,208,34,34 );
gfx.PutPixel( 102 + x,39 + y,208,34,34 );
gfx.PutPixel( 103 + x,39 + y,208,34,34 );
gfx.PutPixel( 104 + x,39 + y,208,34,34 );
gfx.PutPixel( 105 + x,39 + y,208,34,34 );
gfx.PutPixel( 106 + x,39 + y,208,34,34 );
gfx.PutPixel( 107 + x,39 + y,208,34,34 );
gfx.PutPixel( 108 + x,39 + y,208,34,34 );
gfx.PutPixel( 109 + x,39 + y,208,34,34 );
gfx.PutPixel( 110 + x,39 + y,208,34,34 );
gfx.PutPixel( 111 + x,39 + y,208,34,34 );
gfx.PutPixel( 112 + x,39 + y,208,34,34 );
gfx.PutPixel( 113 + x,39 + y,208,34,34 );
gfx.PutPixel( 114 + x,39 + y,208,34,34 );
gfx.PutPixel( 115 + x,39 + y,208,34,34 );
gfx.PutPixel( 116 + x,39 + y,208,34,34 );
gfx.PutPixel( 117 + x,39 + y,208,34,34 );
gfx.PutPixel( 118 + x,39 + y,208,34,34 );
gfx.PutPixel( 119 + x,39 + y,208,34,34 );
gfx.PutPixel( 120 + x,39 + y,208,34,34 );
gfx.PutPixel( 121 + x,39 + y,208,34,34 );
gfx.PutPixel( 122 + x,39 + y,208,34,34 );
gfx.PutPixel( 123 + x,39 + y,208,34,34 );
gfx.PutPixel( 124 + x,39 + y,208,34,34 );
gfx.PutPixel( 125 + x,39 + y,208,34,34 );
gfx.PutPixel( 126 + x,39 + y,208,34,34 );
gfx.PutPixel( 127 + x,39 + y,208,34,34 );
gfx.PutPixel( 128 + x,39 + y,208,34,34 );
gfx.PutPixel( 129 + x,39 + y,208,34,34 );
gfx.PutPixel( 130 + x,39 + y,208,34,34 );
gfx.PutPixel( 131 + x,39 + y,208,34,34 );
gfx.PutPixel( 132 + x,39 + y,208,34,34 );
gfx.PutPixel( 133 + x,39 + y,208,34,34 );
gfx.PutPixel( 134 + x,39 + y,208,34,34 );
gfx.PutPixel( 135 + x,39 + y,208,34,34 );
gfx.PutPixel( 136 + x,39 + y,208,34,34 );
gfx.PutPixel( 137 + x,39 + y,208,34,34 );
gfx.PutPixel( 138 + x,39 + y,208,34,34 );
gfx.PutPixel( 139 + x,39 + y,208,34,34 );
gfx.PutPixel( 140 + x,39 + y,208,34,34 );
gfx.PutPixel( 141 + x,39 + y,208,34,34 );
gfx.PutPixel( 142 + x,39 + y,208,34,34 );
gfx.PutPixel( 143 + x,39 + y,208,34,34 );
gfx.PutPixel( 144 + x,39 + y,208,34,34 );
gfx.PutPixel( 145 + x,39 + y,208,34,34 );
gfx.PutPixel( 146 + x,39 + y,208,34,34 );
gfx.PutPixel( 147 + x,39 + y,208,34,34 );
gfx.PutPixel( 148 + x,39 + y,208,34,34 );
gfx.PutPixel( 149 + x,39 + y,208,34,34 );
gfx.PutPixel( 0 + x,40 + y,208,34,34 );
gfx.PutPixel( 1 + x,40 + y,208,34,34 );
gfx.PutPixel( 2 + x,40 + y,208,34,34 );
gfx.PutPixel( 3 + x,40 + y,208,34,34 );
gfx.PutPixel( 4 + x,40 + y,208,34,34 );
gfx.PutPixel( 5 + x,40 + y,208,34,34 );
gfx.PutPixel( 6 + x,40 + y,208,34,34 );
gfx.PutPixel( 7 + x,40 + y,208,34,34 );
gfx.PutPixel( 8 + x,40 + y,208,34,34 );
gfx.PutPixel( 9 + x,40 + y,208,34,34 );
gfx.PutPixel( 10 + x,40 + y,208,34,34 );
gfx.PutPixel( 11 + x,40 + y,208,34,34 );
gfx.PutPixel( 12 + x,40 + y,208,34,34 );
gfx.PutPixel( 13 + x,40 + y,208,34,34 );
gfx.PutPixel( 14 + x,40 + y,208,34,34 );
gfx.PutPixel( 15 + x,40 + y,208,34,34 );
gfx.PutPixel( 16 + x,40 + y,208,34,34 );
gfx.PutPixel( 17 + x,40 + y,208,34,34 );
gfx.PutPixel( 18 + x,40 + y,208,34,34 );
gfx.PutPixel( 19 + x,40 + y,208,34,34 );
gfx.PutPixel( 20 + x,40 + y,208,34,34 );
gfx.PutPixel( 21 + x,40 + y,208,34,34 );
gfx.PutPixel( 22 + x,40 + y,208,34,34 );
gfx.PutPixel( 23 + x,40 + y,208,34,34 );
gfx.PutPixel( 24 + x,40 + y,208,34,34 );
gfx.PutPixel( 25 + x,40 + y,208,34,34 );
gfx.PutPixel( 26 + x,40 + y,208,34,34 );
gfx.PutPixel( 27 + x,40 + y,208,34,34 );
gfx.PutPixel( 28 + x,40 + y,208,34,34 );
gfx.PutPixel( 29 + x,40 + y,208,34,34 );
gfx.PutPixel( 30 + x,40 + y,208,34,34 );
gfx.PutPixel( 31 + x,40 + y,208,34,34 );
gfx.PutPixel( 32 + x,40 + y,208,34,34 );
gfx.PutPixel( 33 + x,40 + y,208,34,34 );
gfx.PutPixel( 34 + x,40 + y,208,34,34 );
gfx.PutPixel( 35 + x,40 + y,208,34,34 );
gfx.PutPixel( 36 + x,40 + y,208,34,34 );
gfx.PutPixel( 37 + x,40 + y,208,34,34 );
gfx.PutPixel( 38 + x,40 + y,208,34,34 );
gfx.PutPixel( 39 + x,40 + y,208,34,34 );
gfx.PutPixel( 40 + x,40 + y,208,34,34 );
gfx.PutPixel( 41 + x,40 + y,208,34,34 );
gfx.PutPixel( 42 + x,40 + y,208,34,34 );
gfx.PutPixel( 43 + x,40 + y,208,34,34 );
gfx.PutPixel( 44 + x,40 + y,208,34,34 );
gfx.PutPixel( 45 + x,40 + y,208,34,34 );
gfx.PutPixel( 46 + x,40 + y,208,34,34 );
gfx.PutPixel( 47 + x,40 + y,208,34,34 );
gfx.PutPixel( 48 + x,40 + y,208,34,34 );
gfx.PutPixel( 49 + x,40 + y,208,34,34 );
gfx.PutPixel( 50 + x,40 + y,208,34,34 );
gfx.PutPixel( 51 + x,40 + y,208,34,34 );
gfx.PutPixel( 52 + x,40 + y,208,34,34 );
gfx.PutPixel( 53 + x,40 + y,208,34,34 );
gfx.PutPixel( 54 + x,40 + y,208,34,34 );
gfx.PutPixel( 55 + x,40 + y,208,34,34 );
gfx.PutPixel( 56 + x,40 + y,208,34,34 );
gfx.PutPixel( 57 + x,40 + y,208,34,34 );
gfx.PutPixel( 58 + x,40 + y,208,34,34 );
gfx.PutPixel( 59 + x,40 + y,208,34,34 );
gfx.PutPixel( 60 + x,40 + y,208,34,34 );
gfx.PutPixel( 61 + x,40 + y,208,34,34 );
gfx.PutPixel( 62 + x,40 + y,208,34,34 );
gfx.PutPixel( 63 + x,40 + y,208,34,34 );
gfx.PutPixel( 64 + x,40 + y,208,34,34 );
gfx.PutPixel( 65 + x,40 + y,208,34,34 );
gfx.PutPixel( 66 + x,40 + y,208,34,34 );
gfx.PutPixel( 67 + x,40 + y,208,34,34 );
gfx.PutPixel( 68 + x,40 + y,208,34,34 );
gfx.PutPixel( 69 + x,40 + y,208,34,34 );
gfx.PutPixel( 70 + x,40 + y,208,34,34 );
gfx.PutPixel( 71 + x,40 + y,208,34,34 );
gfx.PutPixel( 72 + x,40 + y,208,34,34 );
gfx.PutPixel( 73 + x,40 + y,208,34,34 );
gfx.PutPixel( 74 + x,40 + y,208,34,34 );
gfx.PutPixel( 75 + x,40 + y,208,34,34 );
gfx.PutPixel( 76 + x,40 + y,208,34,34 );
gfx.PutPixel( 77 + x,40 + y,208,34,34 );
gfx.PutPixel( 78 + x,40 + y,208,34,34 );
gfx.PutPixel( 79 + x,40 + y,208,34,34 );
gfx.PutPixel( 80 + x,40 + y,208,34,34 );
gfx.PutPixel( 81 + x,40 + y,208,34,34 );
gfx.PutPixel( 82 + x,40 + y,208,34,34 );
gfx.PutPixel( 83 + x,40 + y,208,34,34 );
gfx.PutPixel( 84 + x,40 + y,208,34,34 );
gfx.PutPixel( 85 + x,40 + y,208,34,34 );
gfx.PutPixel( 86 + x,40 + y,208,34,34 );
gfx.PutPixel( 87 + x,40 + y,208,34,34 );
gfx.PutPixel( 88 + x,40 + y,208,34,34 );
gfx.PutPixel( 89 + x,40 + y,208,34,34 );
gfx.PutPixel( 90 + x,40 + y,208,34,34 );
gfx.PutPixel( 91 + x,40 + y,208,34,34 );
gfx.PutPixel( 92 + x,40 + y,208,34,34 );
gfx.PutPixel( 93 + x,40 + y,208,34,34 );
gfx.PutPixel( 94 + x,40 + y,208,34,34 );
gfx.PutPixel( 95 + x,40 + y,208,34,34 );
gfx.PutPixel( 96 + x,40 + y,208,34,34 );
gfx.PutPixel( 97 + x,40 + y,208,34,34 );
gfx.PutPixel( 98 + x,40 + y,208,34,34 );
gfx.PutPixel( 99 + x,40 + y,208,34,34 );
gfx.PutPixel( 100 + x,40 + y,208,34,34 );
gfx.PutPixel( 101 + x,40 + y,208,34,34 );
gfx.PutPixel( 102 + x,40 + y,208,34,34 );
gfx.PutPixel( 103 + x,40 + y,208,34,34 );
gfx.PutPixel( 104 + x,40 + y,208,34,34 );
gfx.PutPixel( 105 + x,40 + y,208,34,34 );
gfx.PutPixel( 106 + x,40 + y,208,34,34 );
gfx.PutPixel( 107 + x,40 + y,208,34,34 );
gfx.PutPixel( 108 + x,40 + y,208,34,34 );
gfx.PutPixel( 109 + x,40 + y,208,34,34 );
gfx.PutPixel( 110 + x,40 + y,208,34,34 );
gfx.PutPixel( 111 + x,40 + y,208,34,34 );
gfx.PutPixel( 112 + x,40 + y,208,34,34 );
gfx.PutPixel( 113 + x,40 + y,208,34,34 );
gfx.PutPixel( 114 + x,40 + y,208,34,34 );
gfx.PutPixel( 115 + x,40 + y,208,34,34 );
gfx.PutPixel( 116 + x,40 + y,208,34,34 );
gfx.PutPixel( 117 + x,40 + y,208,34,34 );
gfx.PutPixel( 118 + x,40 + y,208,34,34 );
gfx.PutPixel( 119 + x,40 + y,208,34,34 );
gfx.PutPixel( 120 + x,40 + y,208,34,34 );
gfx.PutPixel( 121 + x,40 + y,208,34,34 );
gfx.PutPixel( 122 + x,40 + y,208,34,34 );
gfx.PutPixel( 123 + x,40 + y,208,34,34 );
gfx.PutPixel( 124 + x,40 + y,208,34,34 );
gfx.PutPixel( 125 + x,40 + y,208,34,34 );
gfx.PutPixel( 126 + x,40 + y,208,34,34 );
gfx.PutPixel( 127 + x,40 + y,208,34,34 );
gfx.PutPixel( 128 + x,40 + y,208,34,34 );
gfx.PutPixel( 129 + x,40 + y,208,34,34 );
gfx.PutPixel( 130 + x,40 + y,208,34,34 );
gfx.PutPixel( 131 + x,40 + y,208,34,34 );
gfx.PutPixel( 132 + x,40 + y,208,34,34 );
gfx.PutPixel( 133 + x,40 + y,208,34,34 );
gfx.PutPixel( 134 + x,40 + y,208,34,34 );
gfx.PutPixel( 135 + x,40 + y,208,34,34 );
gfx.PutPixel( 136 + x,40 + y,208,34,34 );
gfx.PutPixel( 137 + x,40 + y,208,34,34 );
gfx.PutPixel( 138 + x,40 + y,208,34,34 );
gfx.PutPixel( 139 + x,40 + y,208,34,34 );
gfx.PutPixel( 140 + x,40 + y,208,34,34 );
gfx.PutPixel( 141 + x,40 + y,208,34,34 );
gfx.PutPixel( 142 + x,40 + y,208,34,34 );
gfx.PutPixel( 143 + x,40 + y,208,34,34 );
gfx.PutPixel( 144 + x,40 + y,208,34,34 );
gfx.PutPixel( 145 + x,40 + y,208,34,34 );
gfx.PutPixel( 146 + x,40 + y,208,34,34 );
gfx.PutPixel( 147 + x,40 + y,208,34,34 );
gfx.PutPixel( 148 + x,40 + y,208,34,34 );
gfx.PutPixel( 149 + x,40 + y,208,34,34 );
gfx.PutPixel( 0 + x,41 + y,208,34,34 );
gfx.PutPixel( 1 + x,41 + y,208,34,34 );
gfx.PutPixel( 2 + x,41 + y,208,34,34 );
gfx.PutPixel( 3 + x,41 + y,208,34,34 );
gfx.PutPixel( 4 + x,41 + y,208,34,34 );
gfx.PutPixel( 5 + x,41 + y,208,34,34 );
gfx.PutPixel( 6 + x,41 + y,208,34,34 );
gfx.PutPixel( 7 + x,41 + y,208,34,34 );
gfx.PutPixel( 8 + x,41 + y,208,34,34 );
gfx.PutPixel( 9 + x,41 + y,208,34,34 );
gfx.PutPixel( 10 + x,41 + y,208,34,34 );
gfx.PutPixel( 11 + x,41 + y,208,34,34 );
gfx.PutPixel( 12 + x,41 + y,208,34,34 );
gfx.PutPixel( 13 + x,41 + y,208,34,34 );
gfx.PutPixel( 14 + x,41 + y,208,34,34 );
gfx.PutPixel( 15 + x,41 + y,208,34,34 );
gfx.PutPixel( 16 + x,41 + y,208,34,34 );
gfx.PutPixel( 17 + x,41 + y,208,34,34 );
gfx.PutPixel( 18 + x,41 + y,208,34,34 );
gfx.PutPixel( 19 + x,41 + y,208,34,34 );
gfx.PutPixel( 20 + x,41 + y,208,34,34 );
gfx.PutPixel( 21 + x,41 + y,208,34,34 );
gfx.PutPixel( 22 + x,41 + y,208,34,34 );
gfx.PutPixel( 23 + x,41 + y,208,34,34 );
gfx.PutPixel( 24 + x,41 + y,208,34,34 );
gfx.PutPixel( 25 + x,41 + y,208,34,34 );
gfx.PutPixel( 26 + x,41 + y,208,34,34 );
gfx.PutPixel( 27 + x,41 + y,208,34,34 );
gfx.PutPixel( 28 + x,41 + y,208,34,34 );
gfx.PutPixel( 29 + x,41 + y,208,34,34 );
gfx.PutPixel( 30 + x,41 + y,208,34,34 );
gfx.PutPixel( 31 + x,41 + y,208,34,34 );
gfx.PutPixel( 32 + x,41 + y,208,34,34 );
gfx.PutPixel( 33 + x,41 + y,208,34,34 );
gfx.PutPixel( 34 + x,41 + y,208,34,34 );
gfx.PutPixel( 35 + x,41 + y,208,34,34 );
gfx.PutPixel( 36 + x,41 + y,208,34,34 );
gfx.PutPixel( 37 + x,41 + y,208,34,34 );
gfx.PutPixel( 38 + x,41 + y,208,34,34 );
gfx.PutPixel( 39 + x,41 + y,208,34,34 );
gfx.PutPixel( 40 + x,41 + y,208,34,34 );
gfx.PutPixel( 41 + x,41 + y,208,34,34 );
gfx.PutPixel( 42 + x,41 + y,208,34,34 );
gfx.PutPixel( 43 + x,41 + y,208,34,34 );
gfx.PutPixel( 44 + x,41 + y,208,34,34 );
gfx.PutPixel( 45 + x,41 + y,208,34,34 );
gfx.PutPixel( 46 + x,41 + y,208,34,34 );
gfx.PutPixel( 47 + x,41 + y,208,34,34 );
gfx.PutPixel( 48 + x,41 + y,208,34,34 );
gfx.PutPixel( 49 + x,41 + y,208,34,34 );
gfx.PutPixel( 50 + x,41 + y,208,34,34 );
gfx.PutPixel( 51 + x,41 + y,208,34,34 );
gfx.PutPixel( 52 + x,41 + y,208,34,34 );
gfx.PutPixel( 53 + x,41 + y,208,34,34 );
gfx.PutPixel( 54 + x,41 + y,208,34,34 );
gfx.PutPixel( 55 + x,41 + y,208,34,34 );
gfx.PutPixel( 56 + x,41 + y,208,34,34 );
gfx.PutPixel( 57 + x,41 + y,208,34,34 );
gfx.PutPixel( 58 + x,41 + y,208,34,34 );
gfx.PutPixel( 59 + x,41 + y,208,34,34 );
gfx.PutPixel( 60 + x,41 + y,208,34,34 );
gfx.PutPixel( 61 + x,41 + y,208,34,34 );
gfx.PutPixel( 62 + x,41 + y,208,34,34 );
gfx.PutPixel( 63 + x,41 + y,208,34,34 );
gfx.PutPixel( 64 + x,41 + y,208,34,34 );
gfx.PutPixel( 65 + x,41 + y,208,34,34 );
gfx.PutPixel( 66 + x,41 + y,208,34,34 );
gfx.PutPixel( 67 + x,41 + y,208,34,34 );
gfx.PutPixel( 68 + x,41 + y,208,34,34 );
gfx.PutPixel( 69 + x,41 + y,208,34,34 );
gfx.PutPixel( 70 + x,41 + y,208,34,34 );
gfx.PutPixel( 71 + x,41 + y,208,34,34 );
gfx.PutPixel( 72 + x,41 + y,208,34,34 );
gfx.PutPixel( 73 + x,41 + y,208,34,34 );
gfx.PutPixel( 74 + x,41 + y,208,34,34 );
gfx.PutPixel( 75 + x,41 + y,208,34,34 );
gfx.PutPixel( 76 + x,41 + y,208,34,34 );
gfx.PutPixel( 77 + x,41 + y,208,34,34 );
gfx.PutPixel( 78 + x,41 + y,208,34,34 );
gfx.PutPixel( 79 + x,41 + y,208,34,34 );
gfx.PutPixel( 80 + x,41 + y,208,34,34 );
gfx.PutPixel( 81 + x,41 + y,208,34,34 );
gfx.PutPixel( 82 + x,41 + y,208,34,34 );
gfx.PutPixel( 83 + x,41 + y,208,34,34 );
gfx.PutPixel( 84 + x,41 + y,208,34,34 );
gfx.PutPixel( 85 + x,41 + y,208,34,34 );
gfx.PutPixel( 86 + x,41 + y,208,34,34 );
gfx.PutPixel( 87 + x,41 + y,208,34,34 );
gfx.PutPixel( 88 + x,41 + y,208,34,34 );
gfx.PutPixel( 89 + x,41 + y,208,34,34 );
gfx.PutPixel( 90 + x,41 + y,208,34,34 );
gfx.PutPixel( 91 + x,41 + y,208,34,34 );
gfx.PutPixel( 92 + x,41 + y,208,34,34 );
gfx.PutPixel( 93 + x,41 + y,208,34,34 );
gfx.PutPixel( 94 + x,41 + y,208,34,34 );
gfx.PutPixel( 95 + x,41 + y,208,34,34 );
gfx.PutPixel( 96 + x,41 + y,208,34,34 );
gfx.PutPixel( 97 + x,41 + y,208,34,34 );
gfx.PutPixel( 98 + x,41 + y,208,34,34 );
gfx.PutPixel( 99 + x,41 + y,208,34,34 );
gfx.PutPixel( 100 + x,41 + y,208,34,34 );
gfx.PutPixel( 101 + x,41 + y,208,34,34 );
gfx.PutPixel( 102 + x,41 + y,208,34,34 );
gfx.PutPixel( 103 + x,41 + y,208,34,34 );
gfx.PutPixel( 104 + x,41 + y,208,34,34 );
gfx.PutPixel( 105 + x,41 + y,208,34,34 );
gfx.PutPixel( 106 + x,41 + y,208,34,34 );
gfx.PutPixel( 107 + x,41 + y,208,34,34 );
gfx.PutPixel( 108 + x,41 + y,208,34,34 );
gfx.PutPixel( 109 + x,41 + y,208,34,34 );
gfx.PutPixel( 110 + x,41 + y,208,34,34 );
gfx.PutPixel( 111 + x,41 + y,208,34,34 );
gfx.PutPixel( 112 + x,41 + y,208,34,34 );
gfx.PutPixel( 113 + x,41 + y,208,34,34 );
gfx.PutPixel( 114 + x,41 + y,208,34,34 );
gfx.PutPixel( 115 + x,41 + y,208,34,34 );
gfx.PutPixel( 116 + x,41 + y,208,34,34 );
gfx.PutPixel( 117 + x,41 + y,208,34,34 );
gfx.PutPixel( 118 + x,41 + y,208,34,34 );
gfx.PutPixel( 119 + x,41 + y,208,34,34 );
gfx.PutPixel( 120 + x,41 + y,208,34,34 );
gfx.PutPixel( 121 + x,41 + y,208,34,34 );
gfx.PutPixel( 122 + x,41 + y,208,34,34 );
gfx.PutPixel( 123 + x,41 + y,208,34,34 );
gfx.PutPixel( 124 + x,41 + y,208,34,34 );
gfx.PutPixel( 125 + x,41 + y,208,34,34 );
gfx.PutPixel( 126 + x,41 + y,208,34,34 );
gfx.PutPixel( 127 + x,41 + y,208,34,34 );
gfx.PutPixel( 128 + x,41 + y,208,34,34 );
gfx.PutPixel( 129 + x,41 + y,208,34,34 );
gfx.PutPixel( 130 + x,41 + y,208,34,34 );
gfx.PutPixel( 131 + x,41 + y,208,34,34 );
gfx.PutPixel( 132 + x,41 + y,208,34,34 );
gfx.PutPixel( 133 + x,41 + y,208,34,34 );
gfx.PutPixel( 134 + x,41 + y,208,34,34 );
gfx.PutPixel( 135 + x,41 + y,208,34,34 );
gfx.PutPixel( 136 + x,41 + y,208,34,34 );
gfx.PutPixel( 137 + x,41 + y,208,34,34 );
gfx.PutPixel( 138 + x,41 + y,208,34,34 );
gfx.PutPixel( 139 + x,41 + y,208,34,34 );
gfx.PutPixel( 140 + x,41 + y,208,34,34 );
gfx.PutPixel( 141 + x,41 + y,208,34,34 );
gfx.PutPixel( 142 + x,41 + y,208,34,34 );
gfx.PutPixel( 143 + x,41 + y,208,34,34 );
gfx.PutPixel( 144 + x,41 + y,208,34,34 );
gfx.PutPixel( 145 + x,41 + y,208,34,34 );
gfx.PutPixel( 146 + x,41 + y,208,34,34 );
gfx.PutPixel( 147 + x,41 + y,208,34,34 );
gfx.PutPixel( 148 + x,41 + y,208,34,34 );
gfx.PutPixel( 149 + x,41 + y,208,34,34 );
gfx.PutPixel( 0 + x,42 + y,208,34,34 );
gfx.PutPixel( 1 + x,42 + y,208,34,34 );
gfx.PutPixel( 2 + x,42 + y,208,34,34 );
gfx.PutPixel( 3 + x,42 + y,208,34,34 );
gfx.PutPixel( 4 + x,42 + y,208,34,34 );
gfx.PutPixel( 5 + x,42 + y,208,34,34 );
gfx.PutPixel( 6 + x,42 + y,208,34,34 );
gfx.PutPixel( 7 + x,42 + y,208,34,34 );
gfx.PutPixel( 8 + x,42 + y,208,34,34 );
gfx.PutPixel( 9 + x,42 + y,208,34,34 );
gfx.PutPixel( 10 + x,42 + y,208,34,34 );
gfx.PutPixel( 11 + x,42 + y,208,34,34 );
gfx.PutPixel( 12 + x,42 + y,208,34,34 );
gfx.PutPixel( 13 + x,42 + y,208,34,34 );
gfx.PutPixel( 14 + x,42 + y,208,34,34 );
gfx.PutPixel( 15 + x,42 + y,208,34,34 );
gfx.PutPixel( 16 + x,42 + y,208,34,34 );
gfx.PutPixel( 17 + x,42 + y,208,34,34 );
gfx.PutPixel( 18 + x,42 + y,208,34,34 );
gfx.PutPixel( 19 + x,42 + y,208,34,34 );
gfx.PutPixel( 20 + x,42 + y,208,34,34 );
gfx.PutPixel( 21 + x,42 + y,208,34,34 );
gfx.PutPixel( 22 + x,42 + y,208,34,34 );
gfx.PutPixel( 23 + x,42 + y,208,34,34 );
gfx.PutPixel( 24 + x,42 + y,208,34,34 );
gfx.PutPixel( 25 + x,42 + y,208,34,34 );
gfx.PutPixel( 26 + x,42 + y,208,34,34 );
gfx.PutPixel( 27 + x,42 + y,208,34,34 );
gfx.PutPixel( 28 + x,42 + y,208,34,34 );
gfx.PutPixel( 29 + x,42 + y,208,34,34 );
gfx.PutPixel( 30 + x,42 + y,208,34,34 );
gfx.PutPixel( 31 + x,42 + y,208,34,34 );
gfx.PutPixel( 32 + x,42 + y,208,34,34 );
gfx.PutPixel( 33 + x,42 + y,208,34,34 );
gfx.PutPixel( 34 + x,42 + y,208,34,34 );
gfx.PutPixel( 35 + x,42 + y,208,34,34 );
gfx.PutPixel( 36 + x,42 + y,208,34,34 );
gfx.PutPixel( 37 + x,42 + y,208,34,34 );
gfx.PutPixel( 38 + x,42 + y,208,34,34 );
gfx.PutPixel( 39 + x,42 + y,208,34,34 );
gfx.PutPixel( 40 + x,42 + y,208,34,34 );
gfx.PutPixel( 41 + x,42 + y,208,34,34 );
gfx.PutPixel( 42 + x,42 + y,208,34,34 );
gfx.PutPixel( 43 + x,42 + y,208,34,34 );
gfx.PutPixel( 44 + x,42 + y,208,34,34 );
gfx.PutPixel( 45 + x,42 + y,208,34,34 );
gfx.PutPixel( 46 + x,42 + y,208,34,34 );
gfx.PutPixel( 47 + x,42 + y,208,34,34 );
gfx.PutPixel( 48 + x,42 + y,208,34,34 );
gfx.PutPixel( 49 + x,42 + y,208,34,34 );
gfx.PutPixel( 50 + x,42 + y,208,34,34 );
gfx.PutPixel( 51 + x,42 + y,208,34,34 );
gfx.PutPixel( 52 + x,42 + y,208,34,34 );
gfx.PutPixel( 53 + x,42 + y,208,34,34 );
gfx.PutPixel( 54 + x,42 + y,208,34,34 );
gfx.PutPixel( 55 + x,42 + y,208,34,34 );
gfx.PutPixel( 56 + x,42 + y,208,34,34 );
gfx.PutPixel( 57 + x,42 + y,208,34,34 );
gfx.PutPixel( 58 + x,42 + y,208,34,34 );
gfx.PutPixel( 59 + x,42 + y,208,34,34 );
gfx.PutPixel( 60 + x,42 + y,208,34,34 );
gfx.PutPixel( 61 + x,42 + y,208,34,34 );
gfx.PutPixel( 62 + x,42 + y,208,34,34 );
gfx.PutPixel( 63 + x,42 + y,208,34,34 );
gfx.PutPixel( 64 + x,42 + y,208,34,34 );
gfx.PutPixel( 65 + x,42 + y,208,34,34 );
gfx.PutPixel( 66 + x,42 + y,208,34,34 );
gfx.PutPixel( 67 + x,42 + y,208,34,34 );
gfx.PutPixel( 68 + x,42 + y,208,34,34 );
gfx.PutPixel( 69 + x,42 + y,208,34,34 );
gfx.PutPixel( 70 + x,42 + y,208,34,34 );
gfx.PutPixel( 71 + x,42 + y,208,34,34 );
gfx.PutPixel( 72 + x,42 + y,208,34,34 );
gfx.PutPixel( 73 + x,42 + y,208,34,34 );
gfx.PutPixel( 74 + x,42 + y,208,34,34 );
gfx.PutPixel( 75 + x,42 + y,208,34,34 );
gfx.PutPixel( 76 + x,42 + y,208,34,34 );
gfx.PutPixel( 77 + x,42 + y,208,34,34 );
gfx.PutPixel( 78 + x,42 + y,208,34,34 );
gfx.PutPixel( 79 + x,42 + y,208,34,34 );
gfx.PutPixel( 80 + x,42 + y,208,34,34 );
gfx.PutPixel( 81 + x,42 + y,208,34,34 );
gfx.PutPixel( 82 + x,42 + y,208,34,34 );
gfx.PutPixel( 83 + x,42 + y,208,34,34 );
gfx.PutPixel( 84 + x,42 + y,208,34,34 );
gfx.PutPixel( 85 + x,42 + y,208,34,34 );
gfx.PutPixel( 86 + x,42 + y,208,34,34 );
gfx.PutPixel( 87 + x,42 + y,208,34,34 );
gfx.PutPixel( 88 + x,42 + y,208,34,34 );
gfx.PutPixel( 89 + x,42 + y,208,34,34 );
gfx.PutPixel( 90 + x,42 + y,208,34,34 );
gfx.PutPixel( 91 + x,42 + y,208,34,34 );
gfx.PutPixel( 92 + x,42 + y,208,34,34 );
gfx.PutPixel( 93 + x,42 + y,208,34,34 );
gfx.PutPixel( 94 + x,42 + y,208,34,34 );
gfx.PutPixel( 95 + x,42 + y,208,34,34 );
gfx.PutPixel( 96 + x,42 + y,208,34,34 );
gfx.PutPixel( 97 + x,42 + y,208,34,34 );
gfx.PutPixel( 98 + x,42 + y,208,34,34 );
gfx.PutPixel( 99 + x,42 + y,208,34,34 );
gfx.PutPixel( 100 + x,42 + y,208,34,34 );
gfx.PutPixel( 101 + x,42 + y,208,34,34 );
gfx.PutPixel( 102 + x,42 + y,208,34,34 );
gfx.PutPixel( 103 + x,42 + y,208,34,34 );
gfx.PutPixel( 104 + x,42 + y,208,34,34 );
gfx.PutPixel( 105 + x,42 + y,208,34,34 );
gfx.PutPixel( 106 + x,42 + y,208,34,34 );
gfx.PutPixel( 107 + x,42 + y,208,34,34 );
gfx.PutPixel( 108 + x,42 + y,208,34,34 );
gfx.PutPixel( 109 + x,42 + y,208,34,34 );
gfx.PutPixel( 110 + x,42 + y,208,34,34 );
gfx.PutPixel( 111 + x,42 + y,208,34,34 );
gfx.PutPixel( 112 + x,42 + y,208,34,34 );
gfx.PutPixel( 113 + x,42 + y,208,34,34 );
gfx.PutPixel( 114 + x,42 + y,208,34,34 );
gfx.PutPixel( 115 + x,42 + y,208,34,34 );
gfx.PutPixel( 116 + x,42 + y,208,34,34 );
gfx.PutPixel( 117 + x,42 + y,208,34,34 );
gfx.PutPixel( 118 + x,42 + y,208,34,34 );
gfx.PutPixel( 119 + x,42 + y,208,34,34 );
gfx.PutPixel( 120 + x,42 + y,208,34,34 );
gfx.PutPixel( 121 + x,42 + y,208,34,34 );
gfx.PutPixel( 122 + x,42 + y,208,34,34 );
gfx.PutPixel( 123 + x,42 + y,208,34,34 );
gfx.PutPixel( 124 + x,42 + y,208,34,34 );
gfx.PutPixel( 125 + x,42 + y,208,34,34 );
gfx.PutPixel( 126 + x,42 + y,208,34,34 );
gfx.PutPixel( 127 + x,42 + y,208,34,34 );
gfx.PutPixel( 128 + x,42 + y,208,34,34 );
gfx.PutPixel( 129 + x,42 + y,208,34,34 );
gfx.PutPixel( 130 + x,42 + y,208,34,34 );
gfx.PutPixel( 131 + x,42 + y,208,34,34 );
gfx.PutPixel( 132 + x,42 + y,208,34,34 );
gfx.PutPixel( 133 + x,42 + y,208,34,34 );
gfx.PutPixel( 134 + x,42 + y,208,34,34 );
gfx.PutPixel( 135 + x,42 + y,208,34,34 );
gfx.PutPixel( 136 + x,42 + y,208,34,34 );
gfx.PutPixel( 137 + x,42 + y,208,34,34 );
gfx.PutPixel( 138 + x,42 + y,208,34,34 );
gfx.PutPixel( 139 + x,42 + y,208,34,34 );
gfx.PutPixel( 140 + x,42 + y,208,34,34 );
gfx.PutPixel( 141 + x,42 + y,208,34,34 );
gfx.PutPixel( 142 + x,42 + y,208,34,34 );
gfx.PutPixel( 143 + x,42 + y,208,34,34 );
gfx.PutPixel( 144 + x,42 + y,208,34,34 );
gfx.PutPixel( 145 + x,42 + y,208,34,34 );
gfx.PutPixel( 146 + x,42 + y,208,34,34 );
gfx.PutPixel( 147 + x,42 + y,208,34,34 );
gfx.PutPixel( 148 + x,42 + y,208,34,34 );
gfx.PutPixel( 149 + x,42 + y,208,34,34 );
gfx.PutPixel( 0 + x,43 + y,208,34,34 );
gfx.PutPixel( 1 + x,43 + y,208,34,34 );
gfx.PutPixel( 2 + x,43 + y,208,34,34 );
gfx.PutPixel( 3 + x,43 + y,208,34,34 );
gfx.PutPixel( 4 + x,43 + y,208,34,34 );
gfx.PutPixel( 5 + x,43 + y,208,34,34 );
gfx.PutPixel( 6 + x,43 + y,208,34,34 );
gfx.PutPixel( 7 + x,43 + y,208,34,34 );
gfx.PutPixel( 8 + x,43 + y,208,34,34 );
gfx.PutPixel( 9 + x,43 + y,208,34,34 );
gfx.PutPixel( 10 + x,43 + y,208,34,34 );
gfx.PutPixel( 11 + x,43 + y,208,34,34 );
gfx.PutPixel( 12 + x,43 + y,208,34,34 );
gfx.PutPixel( 13 + x,43 + y,208,34,34 );
gfx.PutPixel( 14 + x,43 + y,208,34,34 );
gfx.PutPixel( 15 + x,43 + y,208,34,34 );
gfx.PutPixel( 16 + x,43 + y,208,34,34 );
gfx.PutPixel( 17 + x,43 + y,208,34,34 );
gfx.PutPixel( 18 + x,43 + y,208,34,34 );
gfx.PutPixel( 19 + x,43 + y,208,34,34 );
gfx.PutPixel( 20 + x,43 + y,208,34,34 );
gfx.PutPixel( 21 + x,43 + y,208,34,34 );
gfx.PutPixel( 22 + x,43 + y,208,34,34 );
gfx.PutPixel( 23 + x,43 + y,208,34,34 );
gfx.PutPixel( 24 + x,43 + y,208,34,34 );
gfx.PutPixel( 25 + x,43 + y,208,34,34 );
gfx.PutPixel( 26 + x,43 + y,208,34,34 );
gfx.PutPixel( 27 + x,43 + y,208,34,34 );
gfx.PutPixel( 28 + x,43 + y,208,34,34 );
gfx.PutPixel( 29 + x,43 + y,208,34,34 );
gfx.PutPixel( 30 + x,43 + y,208,34,34 );
gfx.PutPixel( 31 + x,43 + y,208,34,34 );
gfx.PutPixel( 32 + x,43 + y,208,34,34 );
gfx.PutPixel( 33 + x,43 + y,208,34,34 );
gfx.PutPixel( 34 + x,43 + y,208,34,34 );
gfx.PutPixel( 35 + x,43 + y,208,34,34 );
gfx.PutPixel( 36 + x,43 + y,208,34,34 );
gfx.PutPixel( 37 + x,43 + y,208,34,34 );
gfx.PutPixel( 38 + x,43 + y,208,34,34 );
gfx.PutPixel( 39 + x,43 + y,208,34,34 );
gfx.PutPixel( 40 + x,43 + y,208,34,34 );
gfx.PutPixel( 41 + x,43 + y,208,34,34 );
gfx.PutPixel( 42 + x,43 + y,208,34,34 );
gfx.PutPixel( 43 + x,43 + y,208,34,34 );
gfx.PutPixel( 44 + x,43 + y,208,34,34 );
gfx.PutPixel( 45 + x,43 + y,208,34,34 );
gfx.PutPixel( 46 + x,43 + y,208,34,34 );
gfx.PutPixel( 47 + x,43 + y,208,34,34 );
gfx.PutPixel( 48 + x,43 + y,208,34,34 );
gfx.PutPixel( 49 + x,43 + y,208,34,34 );
gfx.PutPixel( 50 + x,43 + y,208,34,34 );
gfx.PutPixel( 51 + x,43 + y,208,34,34 );
gfx.PutPixel( 52 + x,43 + y,208,34,34 );
gfx.PutPixel( 53 + x,43 + y,208,34,34 );
gfx.PutPixel( 54 + x,43 + y,208,34,34 );
gfx.PutPixel( 55 + x,43 + y,208,34,34 );
gfx.PutPixel( 56 + x,43 + y,208,34,34 );
gfx.PutPixel( 57 + x,43 + y,208,34,34 );
gfx.PutPixel( 58 + x,43 + y,208,34,34 );
gfx.PutPixel( 59 + x,43 + y,208,34,34 );
gfx.PutPixel( 60 + x,43 + y,208,34,34 );
gfx.PutPixel( 61 + x,43 + y,208,34,34 );
gfx.PutPixel( 62 + x,43 + y,208,34,34 );
gfx.PutPixel( 63 + x,43 + y,208,34,34 );
gfx.PutPixel( 64 + x,43 + y,208,34,34 );
gfx.PutPixel( 65 + x,43 + y,208,34,34 );
gfx.PutPixel( 66 + x,43 + y,208,34,34 );
gfx.PutPixel( 67 + x,43 + y,208,34,34 );
gfx.PutPixel( 68 + x,43 + y,208,34,34 );
gfx.PutPixel( 69 + x,43 + y,208,34,34 );
gfx.PutPixel( 70 + x,43 + y,208,34,34 );
gfx.PutPixel( 71 + x,43 + y,208,34,34 );
gfx.PutPixel( 72 + x,43 + y,208,34,34 );
gfx.PutPixel( 73 + x,43 + y,208,34,34 );
gfx.PutPixel( 74 + x,43 + y,208,34,34 );
gfx.PutPixel( 75 + x,43 + y,208,34,34 );
gfx.PutPixel( 76 + x,43 + y,208,34,34 );
gfx.PutPixel( 77 + x,43 + y,208,34,34 );
gfx.PutPixel( 78 + x,43 + y,208,34,34 );
gfx.PutPixel( 79 + x,43 + y,208,34,34 );
gfx.PutPixel( 80 + x,43 + y,208,34,34 );
gfx.PutPixel( 81 + x,43 + y,208,34,34 );
gfx.PutPixel( 82 + x,43 + y,208,34,34 );
gfx.PutPixel( 83 + x,43 + y,208,34,34 );
gfx.PutPixel( 84 + x,43 + y,208,34,34 );
gfx.PutPixel( 85 + x,43 + y,208,34,34 );
gfx.PutPixel( 86 + x,43 + y,208,34,34 );
gfx.PutPixel( 87 + x,43 + y,208,34,34 );
gfx.PutPixel( 88 + x,43 + y,208,34,34 );
gfx.PutPixel( 89 + x,43 + y,208,34,34 );
gfx.PutPixel( 90 + x,43 + y,208,34,34 );
gfx.PutPixel( 91 + x,43 + y,208,34,34 );
gfx.PutPixel( 92 + x,43 + y,208,34,34 );
gfx.PutPixel( 93 + x,43 + y,208,34,34 );
gfx.PutPixel( 94 + x,43 + y,208,34,34 );
gfx.PutPixel( 95 + x,43 + y,208,34,34 );
gfx.PutPixel( 96 + x,43 + y,208,34,34 );
gfx.PutPixel( 97 + x,43 + y,208,34,34 );
gfx.PutPixel( 98 + x,43 + y,208,34,34 );
gfx.PutPixel( 99 + x,43 + y,208,34,34 );
gfx.PutPixel( 100 + x,43 + y,208,34,34 );
gfx.PutPixel( 101 + x,43 + y,208,34,34 );
gfx.PutPixel( 102 + x,43 + y,208,34,34 );
gfx.PutPixel( 103 + x,43 + y,208,34,34 );
gfx.PutPixel( 104 + x,43 + y,208,34,34 );
gfx.PutPixel( 105 + x,43 + y,208,34,34 );
gfx.PutPixel( 106 + x,43 + y,208,34,34 );
gfx.PutPixel( 107 + x,43 + y,208,34,34 );
gfx.PutPixel( 108 + x,43 + y,208,34,34 );
gfx.PutPixel( 109 + x,43 + y,208,34,34 );
gfx.PutPixel( 110 + x,43 + y,208,34,34 );
gfx.PutPixel( 111 + x,43 + y,208,34,34 );
gfx.PutPixel( 112 + x,43 + y,208,34,34 );
gfx.PutPixel( 113 + x,43 + y,208,34,34 );
gfx.PutPixel( 114 + x,43 + y,208,34,34 );
gfx.PutPixel( 115 + x,43 + y,208,34,34 );
gfx.PutPixel( 116 + x,43 + y,208,34,34 );
gfx.PutPixel( 117 + x,43 + y,208,34,34 );
gfx.PutPixel( 118 + x,43 + y,208,34,34 );
gfx.PutPixel( 119 + x,43 + y,208,34,34 );
gfx.PutPixel( 120 + x,43 + y,208,34,34 );
gfx.PutPixel( 121 + x,43 + y,208,34,34 );
gfx.PutPixel( 122 + x,43 + y,208,34,34 );
gfx.PutPixel( 123 + x,43 + y,208,34,34 );
gfx.PutPixel( 124 + x,43 + y,208,34,34 );
gfx.PutPixel( 125 + x,43 + y,208,34,34 );
gfx.PutPixel( 126 + x,43 + y,208,34,34 );
gfx.PutPixel( 127 + x,43 + y,208,34,34 );
gfx.PutPixel( 128 + x,43 + y,208,34,34 );
gfx.PutPixel( 129 + x,43 + y,208,34,34 );
gfx.PutPixel( 130 + x,43 + y,208,34,34 );
gfx.PutPixel( 131 + x,43 + y,208,34,34 );
gfx.PutPixel( 132 + x,43 + y,208,34,34 );
gfx.PutPixel( 133 + x,43 + y,208,34,34 );
gfx.PutPixel( 134 + x,43 + y,208,34,34 );
gfx.PutPixel( 135 + x,43 + y,208,34,34 );
gfx.PutPixel( 136 + x,43 + y,208,34,34 );
gfx.PutPixel( 137 + x,43 + y,208,34,34 );
gfx.PutPixel( 138 + x,43 + y,208,34,34 );
gfx.PutPixel( 139 + x,43 + y,208,34,34 );
gfx.PutPixel( 140 + x,43 + y,208,34,34 );
gfx.PutPixel( 141 + x,43 + y,208,34,34 );
gfx.PutPixel( 142 + x,43 + y,208,34,34 );
gfx.PutPixel( 143 + x,43 + y,208,34,34 );
gfx.PutPixel( 144 + x,43 + y,208,34,34 );
gfx.PutPixel( 145 + x,43 + y,208,34,34 );
gfx.PutPixel( 146 + x,43 + y,208,34,34 );
gfx.PutPixel( 147 + x,43 + y,208,34,34 );
gfx.PutPixel( 148 + x,43 + y,208,34,34 );
gfx.PutPixel( 149 + x,43 + y,208,34,34 );
gfx.PutPixel( 0 + x,44 + y,208,34,34 );
gfx.PutPixel( 1 + x,44 + y,208,34,34 );
gfx.PutPixel( 2 + x,44 + y,208,34,34 );
gfx.PutPixel( 3 + x,44 + y,208,34,34 );
gfx.PutPixel( 4 + x,44 + y,208,34,34 );
gfx.PutPixel( 5 + x,44 + y,208,34,34 );
gfx.PutPixel( 6 + x,44 + y,208,34,34 );
gfx.PutPixel( 7 + x,44 + y,208,34,34 );
gfx.PutPixel( 8 + x,44 + y,208,34,34 );
gfx.PutPixel( 9 + x,44 + y,208,34,34 );
gfx.PutPixel( 10 + x,44 + y,208,34,34 );
gfx.PutPixel( 11 + x,44 + y,208,34,34 );
gfx.PutPixel( 12 + x,44 + y,208,34,34 );
gfx.PutPixel( 13 + x,44 + y,208,34,34 );
gfx.PutPixel( 14 + x,44 + y,208,34,34 );
gfx.PutPixel( 15 + x,44 + y,208,34,34 );
gfx.PutPixel( 16 + x,44 + y,208,34,34 );
gfx.PutPixel( 17 + x,44 + y,208,34,34 );
gfx.PutPixel( 18 + x,44 + y,208,34,34 );
gfx.PutPixel( 19 + x,44 + y,208,34,34 );
gfx.PutPixel( 20 + x,44 + y,208,34,34 );
gfx.PutPixel( 21 + x,44 + y,208,34,34 );
gfx.PutPixel( 22 + x,44 + y,208,34,34 );
gfx.PutPixel( 23 + x,44 + y,208,34,34 );
gfx.PutPixel( 24 + x,44 + y,208,34,34 );
gfx.PutPixel( 25 + x,44 + y,208,34,34 );
gfx.PutPixel( 26 + x,44 + y,208,34,34 );
gfx.PutPixel( 27 + x,44 + y,208,34,34 );
gfx.PutPixel( 28 + x,44 + y,208,34,34 );
gfx.PutPixel( 29 + x,44 + y,208,34,34 );
gfx.PutPixel( 30 + x,44 + y,208,34,34 );
gfx.PutPixel( 31 + x,44 + y,208,34,34 );
gfx.PutPixel( 32 + x,44 + y,208,34,34 );
gfx.PutPixel( 33 + x,44 + y,208,34,34 );
gfx.PutPixel( 34 + x,44 + y,208,34,34 );
gfx.PutPixel( 35 + x,44 + y,208,34,34 );
gfx.PutPixel( 36 + x,44 + y,208,34,34 );
gfx.PutPixel( 37 + x,44 + y,208,34,34 );
gfx.PutPixel( 38 + x,44 + y,208,34,34 );
gfx.PutPixel( 39 + x,44 + y,208,34,34 );
gfx.PutPixel( 40 + x,44 + y,208,34,34 );
gfx.PutPixel( 41 + x,44 + y,208,34,34 );
gfx.PutPixel( 42 + x,44 + y,208,34,34 );
gfx.PutPixel( 43 + x,44 + y,208,34,34 );
gfx.PutPixel( 44 + x,44 + y,208,34,34 );
gfx.PutPixel( 45 + x,44 + y,208,34,34 );
gfx.PutPixel( 46 + x,44 + y,208,34,34 );
gfx.PutPixel( 47 + x,44 + y,208,34,34 );
gfx.PutPixel( 48 + x,44 + y,208,34,34 );
gfx.PutPixel( 49 + x,44 + y,208,34,34 );
gfx.PutPixel( 50 + x,44 + y,208,34,34 );
gfx.PutPixel( 51 + x,44 + y,208,34,34 );
gfx.PutPixel( 52 + x,44 + y,208,34,34 );
gfx.PutPixel( 53 + x,44 + y,208,34,34 );
gfx.PutPixel( 54 + x,44 + y,208,34,34 );
gfx.PutPixel( 55 + x,44 + y,208,34,34 );
gfx.PutPixel( 56 + x,44 + y,208,34,34 );
gfx.PutPixel( 57 + x,44 + y,208,34,34 );
gfx.PutPixel( 58 + x,44 + y,208,34,34 );
gfx.PutPixel( 59 + x,44 + y,208,34,34 );
gfx.PutPixel( 60 + x,44 + y,208,34,34 );
gfx.PutPixel( 61 + x,44 + y,208,34,34 );
gfx.PutPixel( 62 + x,44 + y,208,34,34 );
gfx.PutPixel( 63 + x,44 + y,208,34,34 );
gfx.PutPixel( 64 + x,44 + y,208,34,34 );
gfx.PutPixel( 65 + x,44 + y,208,34,34 );
gfx.PutPixel( 66 + x,44 + y,208,34,34 );
gfx.PutPixel( 67 + x,44 + y,208,34,34 );
gfx.PutPixel( 68 + x,44 + y,208,34,34 );
gfx.PutPixel( 69 + x,44 + y,208,34,34 );
gfx.PutPixel( 70 + x,44 + y,208,34,34 );
gfx.PutPixel( 71 + x,44 + y,208,34,34 );
gfx.PutPixel( 72 + x,44 + y,208,34,34 );
gfx.PutPixel( 73 + x,44 + y,208,34,34 );
gfx.PutPixel( 74 + x,44 + y,208,34,34 );
gfx.PutPixel( 75 + x,44 + y,208,34,34 );
gfx.PutPixel( 76 + x,44 + y,208,34,34 );
gfx.PutPixel( 77 + x,44 + y,208,34,34 );
gfx.PutPixel( 78 + x,44 + y,208,34,34 );
gfx.PutPixel( 79 + x,44 + y,208,34,34 );
gfx.PutPixel( 80 + x,44 + y,208,34,34 );
gfx.PutPixel( 81 + x,44 + y,208,34,34 );
gfx.PutPixel( 82 + x,44 + y,208,34,34 );
gfx.PutPixel( 83 + x,44 + y,208,34,34 );
gfx.PutPixel( 84 + x,44 + y,208,34,34 );
gfx.PutPixel( 85 + x,44 + y,208,34,34 );
gfx.PutPixel( 86 + x,44 + y,208,34,34 );
gfx.PutPixel( 87 + x,44 + y,208,34,34 );
gfx.PutPixel( 88 + x,44 + y,208,34,34 );
gfx.PutPixel( 89 + x,44 + y,208,34,34 );
gfx.PutPixel( 90 + x,44 + y,208,34,34 );
gfx.PutPixel( 91 + x,44 + y,208,34,34 );
gfx.PutPixel( 92 + x,44 + y,208,34,34 );
gfx.PutPixel( 93 + x,44 + y,208,34,34 );
gfx.PutPixel( 94 + x,44 + y,208,34,34 );
gfx.PutPixel( 95 + x,44 + y,208,34,34 );
gfx.PutPixel( 96 + x,44 + y,208,34,34 );
gfx.PutPixel( 97 + x,44 + y,208,34,34 );
gfx.PutPixel( 98 + x,44 + y,208,34,34 );
gfx.PutPixel( 99 + x,44 + y,208,34,34 );
gfx.PutPixel( 100 + x,44 + y,208,34,34 );
gfx.PutPixel( 101 + x,44 + y,208,34,34 );
gfx.PutPixel( 102 + x,44 + y,208,34,34 );
gfx.PutPixel( 103 + x,44 + y,208,34,34 );
gfx.PutPixel( 104 + x,44 + y,208,34,34 );
gfx.PutPixel( 105 + x,44 + y,208,34,34 );
gfx.PutPixel( 106 + x,44 + y,208,34,34 );
gfx.PutPixel( 107 + x,44 + y,208,34,34 );
gfx.PutPixel( 108 + x,44 + y,208,34,34 );
gfx.PutPixel( 109 + x,44 + y,208,34,34 );
gfx.PutPixel( 110 + x,44 + y,208,34,34 );
gfx.PutPixel( 111 + x,44 + y,208,34,34 );
gfx.PutPixel( 112 + x,44 + y,208,34,34 );
gfx.PutPixel( 113 + x,44 + y,208,34,34 );
gfx.PutPixel( 114 + x,44 + y,208,34,34 );
gfx.PutPixel( 115 + x,44 + y,208,34,34 );
gfx.PutPixel( 116 + x,44 + y,208,34,34 );
gfx.PutPixel( 117 + x,44 + y,208,34,34 );
gfx.PutPixel( 118 + x,44 + y,208,34,34 );
gfx.PutPixel( 119 + x,44 + y,208,34,34 );
gfx.PutPixel( 120 + x,44 + y,208,34,34 );
gfx.PutPixel( 121 + x,44 + y,208,34,34 );
gfx.PutPixel( 122 + x,44 + y,208,34,34 );
gfx.PutPixel( 123 + x,44 + y,208,34,34 );
gfx.PutPixel( 124 + x,44 + y,208,34,34 );
gfx.PutPixel( 125 + x,44 + y,208,34,34 );
gfx.PutPixel( 126 + x,44 + y,208,34,34 );
gfx.PutPixel( 127 + x,44 + y,208,34,34 );
gfx.PutPixel( 128 + x,44 + y,208,34,34 );
gfx.PutPixel( 129 + x,44 + y,208,34,34 );
gfx.PutPixel( 130 + x,44 + y,208,34,34 );
gfx.PutPixel( 131 + x,44 + y,208,34,34 );
gfx.PutPixel( 132 + x,44 + y,208,34,34 );
gfx.PutPixel( 133 + x,44 + y,208,34,34 );
gfx.PutPixel( 134 + x,44 + y,208,34,34 );
gfx.PutPixel( 135 + x,44 + y,208,34,34 );
gfx.PutPixel( 136 + x,44 + y,208,34,34 );
gfx.PutPixel( 137 + x,44 + y,208,34,34 );
gfx.PutPixel( 138 + x,44 + y,208,34,34 );
gfx.PutPixel( 139 + x,44 + y,208,34,34 );
gfx.PutPixel( 140 + x,44 + y,208,34,34 );
gfx.PutPixel( 141 + x,44 + y,208,34,34 );
gfx.PutPixel( 142 + x,44 + y,208,34,34 );
gfx.PutPixel( 143 + x,44 + y,208,34,34 );
gfx.PutPixel( 144 + x,44 + y,208,34,34 );
gfx.PutPixel( 145 + x,44 + y,208,34,34 );
gfx.PutPixel( 146 + x,44 + y,208,34,34 );
gfx.PutPixel( 147 + x,44 + y,208,34,34 );
gfx.PutPixel( 148 + x,44 + y,208,34,34 );
gfx.PutPixel( 149 + x,44 + y,208,34,34 );
gfx.PutPixel( 0 + x,45 + y,208,34,34 );
gfx.PutPixel( 1 + x,45 + y,208,34,34 );
gfx.PutPixel( 2 + x,45 + y,208,34,34 );
gfx.PutPixel( 3 + x,45 + y,208,34,34 );
gfx.PutPixel( 4 + x,45 + y,208,34,34 );
gfx.PutPixel( 5 + x,45 + y,208,34,34 );
gfx.PutPixel( 6 + x,45 + y,208,34,34 );
gfx.PutPixel( 7 + x,45 + y,208,34,34 );
gfx.PutPixel( 8 + x,45 + y,208,34,34 );
gfx.PutPixel( 9 + x,45 + y,208,34,34 );
gfx.PutPixel( 10 + x,45 + y,208,34,34 );
gfx.PutPixel( 11 + x,45 + y,208,34,34 );
gfx.PutPixel( 12 + x,45 + y,208,34,34 );
gfx.PutPixel( 13 + x,45 + y,208,34,34 );
gfx.PutPixel( 14 + x,45 + y,208,34,34 );
gfx.PutPixel( 15 + x,45 + y,208,34,34 );
gfx.PutPixel( 16 + x,45 + y,208,34,34 );
gfx.PutPixel( 17 + x,45 + y,208,34,34 );
gfx.PutPixel( 18 + x,45 + y,208,34,34 );
gfx.PutPixel( 19 + x,45 + y,208,34,34 );
gfx.PutPixel( 20 + x,45 + y,208,34,34 );
gfx.PutPixel( 21 + x,45 + y,208,34,34 );
gfx.PutPixel( 22 + x,45 + y,208,34,34 );
gfx.PutPixel( 23 + x,45 + y,208,34,34 );
gfx.PutPixel( 24 + x,45 + y,208,34,34 );
gfx.PutPixel( 25 + x,45 + y,208,34,34 );
gfx.PutPixel( 26 + x,45 + y,208,34,34 );
gfx.PutPixel( 27 + x,45 + y,208,34,34 );
gfx.PutPixel( 28 + x,45 + y,208,34,34 );
gfx.PutPixel( 29 + x,45 + y,208,34,34 );
gfx.PutPixel( 30 + x,45 + y,208,34,34 );
gfx.PutPixel( 31 + x,45 + y,208,34,34 );
gfx.PutPixel( 32 + x,45 + y,208,34,34 );
gfx.PutPixel( 33 + x,45 + y,208,34,34 );
gfx.PutPixel( 34 + x,45 + y,208,34,34 );
gfx.PutPixel( 35 + x,45 + y,208,34,34 );
gfx.PutPixel( 36 + x,45 + y,208,34,34 );
gfx.PutPixel( 37 + x,45 + y,208,34,34 );
gfx.PutPixel( 38 + x,45 + y,208,34,34 );
gfx.PutPixel( 39 + x,45 + y,208,34,34 );
gfx.PutPixel( 40 + x,45 + y,208,34,34 );
gfx.PutPixel( 41 + x,45 + y,208,34,34 );
gfx.PutPixel( 42 + x,45 + y,208,34,34 );
gfx.PutPixel( 43 + x,45 + y,208,34,34 );
gfx.PutPixel( 44 + x,45 + y,208,34,34 );
gfx.PutPixel( 45 + x,45 + y,208,34,34 );
gfx.PutPixel( 46 + x,45 + y,208,34,34 );
gfx.PutPixel( 47 + x,45 + y,208,34,34 );
gfx.PutPixel( 48 + x,45 + y,208,34,34 );
gfx.PutPixel( 49 + x,45 + y,208,34,34 );
gfx.PutPixel( 50 + x,45 + y,208,34,34 );
gfx.PutPixel( 51 + x,45 + y,208,34,34 );
gfx.PutPixel( 52 + x,45 + y,208,34,34 );
gfx.PutPixel( 53 + x,45 + y,208,34,34 );
gfx.PutPixel( 54 + x,45 + y,208,34,34 );
gfx.PutPixel( 55 + x,45 + y,208,34,34 );
gfx.PutPixel( 56 + x,45 + y,208,34,34 );
gfx.PutPixel( 57 + x,45 + y,208,34,34 );
gfx.PutPixel( 58 + x,45 + y,208,34,34 );
gfx.PutPixel( 59 + x,45 + y,208,34,34 );
gfx.PutPixel( 60 + x,45 + y,208,34,34 );
gfx.PutPixel( 61 + x,45 + y,208,34,34 );
gfx.PutPixel( 62 + x,45 + y,208,34,34 );
gfx.PutPixel( 63 + x,45 + y,208,34,34 );
gfx.PutPixel( 64 + x,45 + y,208,34,34 );
gfx.PutPixel( 65 + x,45 + y,208,34,34 );
gfx.PutPixel( 66 + x,45 + y,208,34,34 );
gfx.PutPixel( 67 + x,45 + y,208,34,34 );
gfx.PutPixel( 68 + x,45 + y,208,34,34 );
gfx.PutPixel( 69 + x,45 + y,208,34,34 );
gfx.PutPixel( 70 + x,45 + y,208,34,34 );
gfx.PutPixel( 71 + x,45 + y,208,34,34 );
gfx.PutPixel( 72 + x,45 + y,208,34,34 );
gfx.PutPixel( 73 + x,45 + y,208,34,34 );
gfx.PutPixel( 74 + x,45 + y,208,34,34 );
gfx.PutPixel( 75 + x,45 + y,208,34,34 );
gfx.PutPixel( 76 + x,45 + y,208,34,34 );
gfx.PutPixel( 77 + x,45 + y,208,34,34 );
gfx.PutPixel( 78 + x,45 + y,208,34,34 );
gfx.PutPixel( 79 + x,45 + y,208,34,34 );
gfx.PutPixel( 80 + x,45 + y,208,34,34 );
gfx.PutPixel( 81 + x,45 + y,208,34,34 );
gfx.PutPixel( 82 + x,45 + y,208,34,34 );
gfx.PutPixel( 83 + x,45 + y,208,34,34 );
gfx.PutPixel( 84 + x,45 + y,208,34,34 );
gfx.PutPixel( 85 + x,45 + y,208,34,34 );
gfx.PutPixel( 86 + x,45 + y,208,34,34 );
gfx.PutPixel( 87 + x,45 + y,208,34,34 );
gfx.PutPixel( 88 + x,45 + y,208,34,34 );
gfx.PutPixel( 89 + x,45 + y,208,34,34 );
gfx.PutPixel( 90 + x,45 + y,208,34,34 );
gfx.PutPixel( 91 + x,45 + y,208,34,34 );
gfx.PutPixel( 92 + x,45 + y,208,34,34 );
gfx.PutPixel( 93 + x,45 + y,208,34,34 );
gfx.PutPixel( 94 + x,45 + y,208,34,34 );
gfx.PutPixel( 95 + x,45 + y,208,34,34 );
gfx.PutPixel( 96 + x,45 + y,208,34,34 );
gfx.PutPixel( 97 + x,45 + y,208,34,34 );
gfx.PutPixel( 98 + x,45 + y,208,34,34 );
gfx.PutPixel( 99 + x,45 + y,208,34,34 );
gfx.PutPixel( 100 + x,45 + y,208,34,34 );
gfx.PutPixel( 101 + x,45 + y,208,34,34 );
gfx.PutPixel( 102 + x,45 + y,208,34,34 );
gfx.PutPixel( 103 + x,45 + y,208,34,34 );
gfx.PutPixel( 104 + x,45 + y,208,34,34 );
gfx.PutPixel( 105 + x,45 + y,208,34,34 );
gfx.PutPixel( 106 + x,45 + y,208,34,34 );
gfx.PutPixel( 107 + x,45 + y,208,34,34 );
gfx.PutPixel( 108 + x,45 + y,208,34,34 );
gfx.PutPixel( 109 + x,45 + y,208,34,34 );
gfx.PutPixel( 110 + x,45 + y,208,34,34 );
gfx.PutPixel( 111 + x,45 + y,208,34,34 );
gfx.PutPixel( 112 + x,45 + y,208,34,34 );
gfx.PutPixel( 113 + x,45 + y,208,34,34 );
gfx.PutPixel( 114 + x,45 + y,208,34,34 );
gfx.PutPixel( 115 + x,45 + y,208,34,34 );
gfx.PutPixel( 116 + x,45 + y,208,34,34 );
gfx.PutPixel( 117 + x,45 + y,208,34,34 );
gfx.PutPixel( 118 + x,45 + y,208,34,34 );
gfx.PutPixel( 119 + x,45 + y,208,34,34 );
gfx.PutPixel( 120 + x,45 + y,208,34,34 );
gfx.PutPixel( 121 + x,45 + y,208,34,34 );
gfx.PutPixel( 122 + x,45 + y,208,34,34 );
gfx.PutPixel( 123 + x,45 + y,208,34,34 );
gfx.PutPixel( 124 + x,45 + y,208,34,34 );
gfx.PutPixel( 125 + x,45 + y,208,34,34 );
gfx.PutPixel( 126 + x,45 + y,208,34,34 );
gfx.PutPixel( 127 + x,45 + y,208,34,34 );
gfx.PutPixel( 128 + x,45 + y,208,34,34 );
gfx.PutPixel( 129 + x,45 + y,208,34,34 );
gfx.PutPixel( 130 + x,45 + y,208,34,34 );
gfx.PutPixel( 131 + x,45 + y,208,34,34 );
gfx.PutPixel( 132 + x,45 + y,208,34,34 );
gfx.PutPixel( 133 + x,45 + y,208,34,34 );
gfx.PutPixel( 134 + x,45 + y,208,34,34 );
gfx.PutPixel( 135 + x,45 + y,208,34,34 );
gfx.PutPixel( 136 + x,45 + y,208,34,34 );
gfx.PutPixel( 137 + x,45 + y,208,34,34 );
gfx.PutPixel( 138 + x,45 + y,208,34,34 );
gfx.PutPixel( 139 + x,45 + y,208,34,34 );
gfx.PutPixel( 140 + x,45 + y,208,34,34 );
gfx.PutPixel( 141 + x,45 + y,208,34,34 );
gfx.PutPixel( 142 + x,45 + y,208,34,34 );
gfx.PutPixel( 143 + x,45 + y,208,34,34 );
gfx.PutPixel( 144 + x,45 + y,208,34,34 );
gfx.PutPixel( 145 + x,45 + y,208,34,34 );
gfx.PutPixel( 146 + x,45 + y,208,34,34 );
gfx.PutPixel( 147 + x,45 + y,208,34,34 );
gfx.PutPixel( 148 + x,45 + y,208,34,34 );
gfx.PutPixel( 149 + x,45 + y,208,34,34 );
gfx.PutPixel( 0 + x,46 + y,208,34,34 );
gfx.PutPixel( 1 + x,46 + y,208,34,34 );
gfx.PutPixel( 2 + x,46 + y,208,34,34 );
gfx.PutPixel( 3 + x,46 + y,208,34,34 );
gfx.PutPixel( 4 + x,46 + y,208,34,34 );
gfx.PutPixel( 5 + x,46 + y,208,34,34 );
gfx.PutPixel( 6 + x,46 + y,208,34,34 );
gfx.PutPixel( 7 + x,46 + y,208,34,34 );
gfx.PutPixel( 8 + x,46 + y,208,34,34 );
gfx.PutPixel( 9 + x,46 + y,208,34,34 );
gfx.PutPixel( 10 + x,46 + y,208,34,34 );
gfx.PutPixel( 11 + x,46 + y,208,34,34 );
gfx.PutPixel( 12 + x,46 + y,208,34,34 );
gfx.PutPixel( 13 + x,46 + y,208,34,34 );
gfx.PutPixel( 14 + x,46 + y,208,34,34 );
gfx.PutPixel( 15 + x,46 + y,208,34,34 );
gfx.PutPixel( 16 + x,46 + y,208,34,34 );
gfx.PutPixel( 17 + x,46 + y,208,34,34 );
gfx.PutPixel( 18 + x,46 + y,208,34,34 );
gfx.PutPixel( 19 + x,46 + y,208,34,34 );
gfx.PutPixel( 20 + x,46 + y,208,34,34 );
gfx.PutPixel( 21 + x,46 + y,208,34,34 );
gfx.PutPixel( 22 + x,46 + y,208,34,34 );
gfx.PutPixel( 23 + x,46 + y,208,34,34 );
gfx.PutPixel( 24 + x,46 + y,208,34,34 );
gfx.PutPixel( 25 + x,46 + y,208,34,34 );
gfx.PutPixel( 26 + x,46 + y,208,34,34 );
gfx.PutPixel( 27 + x,46 + y,208,34,34 );
gfx.PutPixel( 28 + x,46 + y,208,34,34 );
gfx.PutPixel( 29 + x,46 + y,208,34,34 );
gfx.PutPixel( 30 + x,46 + y,208,34,34 );
gfx.PutPixel( 31 + x,46 + y,208,34,34 );
gfx.PutPixel( 32 + x,46 + y,208,34,34 );
gfx.PutPixel( 33 + x,46 + y,208,34,34 );
gfx.PutPixel( 34 + x,46 + y,208,34,34 );
gfx.PutPixel( 35 + x,46 + y,208,34,34 );
gfx.PutPixel( 36 + x,46 + y,208,34,34 );
gfx.PutPixel( 37 + x,46 + y,208,34,34 );
gfx.PutPixel( 38 + x,46 + y,208,34,34 );
gfx.PutPixel( 39 + x,46 + y,208,34,34 );
gfx.PutPixel( 40 + x,46 + y,208,34,34 );
gfx.PutPixel( 41 + x,46 + y,208,34,34 );
gfx.PutPixel( 42 + x,46 + y,208,34,34 );
gfx.PutPixel( 43 + x,46 + y,208,34,34 );
gfx.PutPixel( 44 + x,46 + y,208,34,34 );
gfx.PutPixel( 45 + x,46 + y,208,34,34 );
gfx.PutPixel( 46 + x,46 + y,208,34,34 );
gfx.PutPixel( 47 + x,46 + y,208,34,34 );
gfx.PutPixel( 48 + x,46 + y,208,34,34 );
gfx.PutPixel( 49 + x,46 + y,208,34,34 );
gfx.PutPixel( 50 + x,46 + y,208,34,34 );
gfx.PutPixel( 51 + x,46 + y,208,34,34 );
gfx.PutPixel( 52 + x,46 + y,208,34,34 );
gfx.PutPixel( 53 + x,46 + y,208,34,34 );
gfx.PutPixel( 54 + x,46 + y,208,34,34 );
gfx.PutPixel( 55 + x,46 + y,208,34,34 );
gfx.PutPixel( 56 + x,46 + y,208,34,34 );
gfx.PutPixel( 57 + x,46 + y,208,34,34 );
gfx.PutPixel( 58 + x,46 + y,208,34,34 );
gfx.PutPixel( 59 + x,46 + y,208,34,34 );
gfx.PutPixel( 60 + x,46 + y,208,34,34 );
gfx.PutPixel( 61 + x,46 + y,208,34,34 );
gfx.PutPixel( 62 + x,46 + y,208,34,34 );
gfx.PutPixel( 63 + x,46 + y,208,34,34 );
gfx.PutPixel( 64 + x,46 + y,208,34,34 );
gfx.PutPixel( 65 + x,46 + y,208,34,34 );
gfx.PutPixel( 66 + x,46 + y,208,34,34 );
gfx.PutPixel( 67 + x,46 + y,208,34,34 );
gfx.PutPixel( 68 + x,46 + y,208,34,34 );
gfx.PutPixel( 69 + x,46 + y,208,34,34 );
gfx.PutPixel( 70 + x,46 + y,208,34,34 );
gfx.PutPixel( 71 + x,46 + y,208,34,34 );
gfx.PutPixel( 72 + x,46 + y,208,34,34 );
gfx.PutPixel( 73 + x,46 + y,208,34,34 );
gfx.PutPixel( 74 + x,46 + y,208,34,34 );
gfx.PutPixel( 75 + x,46 + y,208,34,34 );
gfx.PutPixel( 76 + x,46 + y,208,34,34 );
gfx.PutPixel( 77 + x,46 + y,208,34,34 );
gfx.PutPixel( 78 + x,46 + y,208,34,34 );
gfx.PutPixel( 79 + x,46 + y,208,34,34 );
gfx.PutPixel( 80 + x,46 + y,208,34,34 );
gfx.PutPixel( 81 + x,46 + y,208,34,34 );
gfx.PutPixel( 82 + x,46 + y,208,34,34 );
gfx.PutPixel( 83 + x,46 + y,208,34,34 );
gfx.PutPixel( 84 + x,46 + y,208,34,34 );
gfx.PutPixel( 85 + x,46 + y,208,34,34 );
gfx.PutPixel( 86 + x,46 + y,208,34,34 );
gfx.PutPixel( 87 + x,46 + y,208,34,34 );
gfx.PutPixel( 88 + x,46 + y,208,34,34 );
gfx.PutPixel( 89 + x,46 + y,208,34,34 );
gfx.PutPixel( 90 + x,46 + y,208,34,34 );
gfx.PutPixel( 91 + x,46 + y,208,34,34 );
gfx.PutPixel( 92 + x,46 + y,208,34,34 );
gfx.PutPixel( 93 + x,46 + y,208,34,34 );
gfx.PutPixel( 94 + x,46 + y,208,34,34 );
gfx.PutPixel( 95 + x,46 + y,208,34,34 );
gfx.PutPixel( 96 + x,46 + y,208,34,34 );
gfx.PutPixel( 97 + x,46 + y,208,34,34 );
gfx.PutPixel( 98 + x,46 + y,208,34,34 );
gfx.PutPixel( 99 + x,46 + y,208,34,34 );
gfx.PutPixel( 100 + x,46 + y,208,34,34 );
gfx.PutPixel( 101 + x,46 + y,208,34,34 );
gfx.PutPixel( 102 + x,46 + y,208,34,34 );
gfx.PutPixel( 103 + x,46 + y,208,34,34 );
gfx.PutPixel( 104 + x,46 + y,208,34,34 );
gfx.PutPixel( 105 + x,46 + y,208,34,34 );
gfx.PutPixel( 106 + x,46 + y,208,34,34 );
gfx.PutPixel( 107 + x,46 + y,208,34,34 );
gfx.PutPixel( 108 + x,46 + y,208,34,34 );
gfx.PutPixel( 109 + x,46 + y,208,34,34 );
gfx.PutPixel( 110 + x,46 + y,208,34,34 );
gfx.PutPixel( 111 + x,46 + y,208,34,34 );
gfx.PutPixel( 112 + x,46 + y,208,34,34 );
gfx.PutPixel( 113 + x,46 + y,208,34,34 );
gfx.PutPixel( 114 + x,46 + y,208,34,34 );
gfx.PutPixel( 115 + x,46 + y,208,34,34 );
gfx.PutPixel( 116 + x,46 + y,208,34,34 );
gfx.PutPixel( 117 + x,46 + y,208,34,34 );
gfx.PutPixel( 118 + x,46 + y,208,34,34 );
gfx.PutPixel( 119 + x,46 + y,208,34,34 );
gfx.PutPixel( 120 + x,46 + y,208,34,34 );
gfx.PutPixel( 121 + x,46 + y,208,34,34 );
gfx.PutPixel( 122 + x,46 + y,208,34,34 );
gfx.PutPixel( 123 + x,46 + y,208,34,34 );
gfx.PutPixel( 124 + x,46 + y,208,34,34 );
gfx.PutPixel( 125 + x,46 + y,208,34,34 );
gfx.PutPixel( 126 + x,46 + y,208,34,34 );
gfx.PutPixel( 127 + x,46 + y,208,34,34 );
gfx.PutPixel( 128 + x,46 + y,208,34,34 );
gfx.PutPixel( 129 + x,46 + y,208,34,34 );
gfx.PutPixel( 130 + x,46 + y,208,34,34 );
gfx.PutPixel( 131 + x,46 + y,208,34,34 );
gfx.PutPixel( 132 + x,46 + y,208,34,34 );
gfx.PutPixel( 133 + x,46 + y,208,34,34 );
gfx.PutPixel( 134 + x,46 + y,208,34,34 );
gfx.PutPixel( 135 + x,46 + y,208,34,34 );
gfx.PutPixel( 136 + x,46 + y,208,34,34 );
gfx.PutPixel( 137 + x,46 + y,208,34,34 );
gfx.PutPixel( 138 + x,46 + y,208,34,34 );
gfx.PutPixel( 139 + x,46 + y,208,34,34 );
gfx.PutPixel( 140 + x,46 + y,208,34,34 );
gfx.PutPixel( 141 + x,46 + y,208,34,34 );
gfx.PutPixel( 142 + x,46 + y,208,34,34 );
gfx.PutPixel( 143 + x,46 + y,208,34,34 );
gfx.PutPixel( 144 + x,46 + y,208,34,34 );
gfx.PutPixel( 145 + x,46 + y,208,34,34 );
gfx.PutPixel( 146 + x,46 + y,208,34,34 );
gfx.PutPixel( 147 + x,46 + y,208,34,34 );
gfx.PutPixel( 148 + x,46 + y,208,34,34 );
gfx.PutPixel( 149 + x,46 + y,208,34,34 );
gfx.PutPixel( 0 + x,47 + y,208,34,34 );
gfx.PutPixel( 1 + x,47 + y,208,34,34 );
gfx.PutPixel( 2 + x,47 + y,208,34,34 );
gfx.PutPixel( 3 + x,47 + y,208,34,34 );
gfx.PutPixel( 4 + x,47 + y,208,34,34 );
gfx.PutPixel( 5 + x,47 + y,208,34,34 );
gfx.PutPixel( 6 + x,47 + y,208,34,34 );
gfx.PutPixel( 7 + x,47 + y,208,34,34 );
gfx.PutPixel( 8 + x,47 + y,208,34,34 );
gfx.PutPixel( 9 + x,47 + y,208,34,34 );
gfx.PutPixel( 10 + x,47 + y,208,34,34 );
gfx.PutPixel( 11 + x,47 + y,208,34,34 );
gfx.PutPixel( 12 + x,47 + y,208,34,34 );
gfx.PutPixel( 13 + x,47 + y,208,34,34 );
gfx.PutPixel( 14 + x,47 + y,208,34,34 );
gfx.PutPixel( 15 + x,47 + y,208,34,34 );
gfx.PutPixel( 16 + x,47 + y,208,34,34 );
gfx.PutPixel( 17 + x,47 + y,208,34,34 );
gfx.PutPixel( 18 + x,47 + y,208,34,34 );
gfx.PutPixel( 19 + x,47 + y,208,34,34 );
gfx.PutPixel( 20 + x,47 + y,208,34,34 );
gfx.PutPixel( 21 + x,47 + y,208,34,34 );
gfx.PutPixel( 22 + x,47 + y,208,34,34 );
gfx.PutPixel( 23 + x,47 + y,208,34,34 );
gfx.PutPixel( 24 + x,47 + y,208,34,34 );
gfx.PutPixel( 25 + x,47 + y,208,34,34 );
gfx.PutPixel( 26 + x,47 + y,208,34,34 );
gfx.PutPixel( 27 + x,47 + y,208,34,34 );
gfx.PutPixel( 28 + x,47 + y,208,34,34 );
gfx.PutPixel( 29 + x,47 + y,208,34,34 );
gfx.PutPixel( 30 + x,47 + y,208,34,34 );
gfx.PutPixel( 31 + x,47 + y,208,34,34 );
gfx.PutPixel( 32 + x,47 + y,208,34,34 );
gfx.PutPixel( 33 + x,47 + y,208,34,34 );
gfx.PutPixel( 34 + x,47 + y,208,34,34 );
gfx.PutPixel( 35 + x,47 + y,208,34,34 );
gfx.PutPixel( 36 + x,47 + y,208,34,34 );
gfx.PutPixel( 37 + x,47 + y,208,34,34 );
gfx.PutPixel( 38 + x,47 + y,208,34,34 );
gfx.PutPixel( 39 + x,47 + y,208,34,34 );
gfx.PutPixel( 40 + x,47 + y,208,34,34 );
gfx.PutPixel( 41 + x,47 + y,208,34,34 );
gfx.PutPixel( 42 + x,47 + y,208,34,34 );
gfx.PutPixel( 43 + x,47 + y,208,34,34 );
gfx.PutPixel( 44 + x,47 + y,208,34,34 );
gfx.PutPixel( 45 + x,47 + y,208,34,34 );
gfx.PutPixel( 46 + x,47 + y,208,34,34 );
gfx.PutPixel( 47 + x,47 + y,208,34,34 );
gfx.PutPixel( 48 + x,47 + y,208,34,34 );
gfx.PutPixel( 49 + x,47 + y,208,34,34 );
gfx.PutPixel( 50 + x,47 + y,208,34,34 );
gfx.PutPixel( 51 + x,47 + y,208,34,34 );
gfx.PutPixel( 52 + x,47 + y,208,34,34 );
gfx.PutPixel( 53 + x,47 + y,208,34,34 );
gfx.PutPixel( 54 + x,47 + y,208,34,34 );
gfx.PutPixel( 55 + x,47 + y,208,34,34 );
gfx.PutPixel( 56 + x,47 + y,208,34,34 );
gfx.PutPixel( 57 + x,47 + y,208,34,34 );
gfx.PutPixel( 58 + x,47 + y,208,34,34 );
gfx.PutPixel( 59 + x,47 + y,208,34,34 );
gfx.PutPixel( 60 + x,47 + y,208,34,34 );
gfx.PutPixel( 61 + x,47 + y,208,34,34 );
gfx.PutPixel( 62 + x,47 + y,208,34,34 );
gfx.PutPixel( 63 + x,47 + y,208,34,34 );
gfx.PutPixel( 64 + x,47 + y,208,34,34 );
gfx.PutPixel( 65 + x,47 + y,208,34,34 );
gfx.PutPixel( 66 + x,47 + y,208,34,34 );
gfx.PutPixel( 67 + x,47 + y,208,34,34 );
gfx.PutPixel( 68 + x,47 + y,208,34,34 );
gfx.PutPixel( 69 + x,47 + y,208,34,34 );
gfx.PutPixel( 70 + x,47 + y,208,34,34 );
gfx.PutPixel( 71 + x,47 + y,208,34,34 );
gfx.PutPixel( 72 + x,47 + y,208,34,34 );
gfx.PutPixel( 73 + x,47 + y,208,34,34 );
gfx.PutPixel( 74 + x,47 + y,208,34,34 );
gfx.PutPixel( 75 + x,47 + y,208,34,34 );
gfx.PutPixel( 76 + x,47 + y,208,34,34 );
gfx.PutPixel( 77 + x,47 + y,208,34,34 );
gfx.PutPixel( 78 + x,47 + y,208,34,34 );
gfx.PutPixel( 79 + x,47 + y,208,34,34 );
gfx.PutPixel( 80 + x,47 + y,208,34,34 );
gfx.PutPixel( 81 + x,47 + y,208,34,34 );
gfx.PutPixel( 82 + x,47 + y,208,34,34 );
gfx.PutPixel( 83 + x,47 + y,208,34,34 );
gfx.PutPixel( 84 + x,47 + y,208,34,34 );
gfx.PutPixel( 85 + x,47 + y,208,34,34 );
gfx.PutPixel( 86 + x,47 + y,208,34,34 );
gfx.PutPixel( 87 + x,47 + y,208,34,34 );
gfx.PutPixel( 88 + x,47 + y,208,34,34 );
gfx.PutPixel( 89 + x,47 + y,208,34,34 );
gfx.PutPixel( 90 + x,47 + y,208,34,34 );
gfx.PutPixel( 91 + x,47 + y,208,34,34 );
gfx.PutPixel( 92 + x,47 + y,208,34,34 );
gfx.PutPixel( 93 + x,47 + y,208,34,34 );
gfx.PutPixel( 94 + x,47 + y,208,34,34 );
gfx.PutPixel( 95 + x,47 + y,208,34,34 );
gfx.PutPixel( 96 + x,47 + y,208,34,34 );
gfx.PutPixel( 97 + x,47 + y,208,34,34 );
gfx.PutPixel( 98 + x,47 + y,208,34,34 );
gfx.PutPixel( 99 + x,47 + y,208,34,34 );
gfx.PutPixel( 100 + x,47 + y,208,34,34 );
gfx.PutPixel( 101 + x,47 + y,208,34,34 );
gfx.PutPixel( 102 + x,47 + y,208,34,34 );
gfx.PutPixel( 103 + x,47 + y,208,34,34 );
gfx.PutPixel( 104 + x,47 + y,208,34,34 );
gfx.PutPixel( 105 + x,47 + y,208,34,34 );
gfx.PutPixel( 106 + x,47 + y,208,34,34 );
gfx.PutPixel( 107 + x,47 + y,208,34,34 );
gfx.PutPixel( 108 + x,47 + y,208,34,34 );
gfx.PutPixel( 109 + x,47 + y,208,34,34 );
gfx.PutPixel( 110 + x,47 + y,208,34,34 );
gfx.PutPixel( 111 + x,47 + y,208,34,34 );
gfx.PutPixel( 112 + x,47 + y,208,34,34 );
gfx.PutPixel( 113 + x,47 + y,208,34,34 );
gfx.PutPixel( 114 + x,47 + y,208,34,34 );
gfx.PutPixel( 115 + x,47 + y,208,34,34 );
gfx.PutPixel( 116 + x,47 + y,208,34,34 );
gfx.PutPixel( 117 + x,47 + y,208,34,34 );
gfx.PutPixel( 118 + x,47 + y,208,34,34 );
gfx.PutPixel( 119 + x,47 + y,208,34,34 );
gfx.PutPixel( 120 + x,47 + y,208,34,34 );
gfx.PutPixel( 121 + x,47 + y,208,34,34 );
gfx.PutPixel( 122 + x,47 + y,208,34,34 );
gfx.PutPixel( 123 + x,47 + y,208,34,34 );
gfx.PutPixel( 124 + x,47 + y,208,34,34 );
gfx.PutPixel( 125 + x,47 + y,208,34,34 );
gfx.PutPixel( 126 + x,47 + y,208,34,34 );
gfx.PutPixel( 127 + x,47 + y,208,34,34 );
gfx.PutPixel( 128 + x,47 + y,208,34,34 );
gfx.PutPixel( 129 + x,47 + y,208,34,34 );
gfx.PutPixel( 130 + x,47 + y,208,34,34 );
gfx.PutPixel( 131 + x,47 + y,208,34,34 );
gfx.PutPixel( 132 + x,47 + y,208,34,34 );
gfx.PutPixel( 133 + x,47 + y,208,34,34 );
gfx.PutPixel( 134 + x,47 + y,208,34,34 );
gfx.PutPixel( 135 + x,47 + y,208,34,34 );
gfx.PutPixel( 136 + x,47 + y,208,34,34 );
gfx.PutPixel( 137 + x,47 + y,208,34,34 );
gfx.PutPixel( 138 + x,47 + y,208,34,34 );
gfx.PutPixel( 139 + x,47 + y,208,34,34 );
gfx.PutPixel( 140 + x,47 + y,208,34,34 );
gfx.PutPixel( 141 + x,47 + y,208,34,34 );
gfx.PutPixel( 142 + x,47 + y,208,34,34 );
gfx.PutPixel( 143 + x,47 + y,208,34,34 );
gfx.PutPixel( 144 + x,47 + y,208,34,34 );
gfx.PutPixel( 145 + x,47 + y,208,34,34 );
gfx.PutPixel( 146 + x,47 + y,208,34,34 );
gfx.PutPixel( 147 + x,47 + y,208,34,34 );
gfx.PutPixel( 148 + x,47 + y,208,34,34 );
gfx.PutPixel( 149 + x,47 + y,208,34,34 );
gfx.PutPixel( 0 + x,48 + y,208,34,34 );
gfx.PutPixel( 1 + x,48 + y,208,34,34 );
gfx.PutPixel( 2 + x,48 + y,208,34,34 );
gfx.PutPixel( 3 + x,48 + y,208,34,34 );
gfx.PutPixel( 4 + x,48 + y,208,34,34 );
gfx.PutPixel( 5 + x,48 + y,208,34,34 );
gfx.PutPixel( 6 + x,48 + y,208,34,34 );
gfx.PutPixel( 7 + x,48 + y,208,34,34 );
gfx.PutPixel( 8 + x,48 + y,208,34,34 );
gfx.PutPixel( 9 + x,48 + y,208,34,34 );
gfx.PutPixel( 10 + x,48 + y,208,34,34 );
gfx.PutPixel( 11 + x,48 + y,208,34,34 );
gfx.PutPixel( 12 + x,48 + y,208,34,34 );
gfx.PutPixel( 13 + x,48 + y,208,34,34 );
gfx.PutPixel( 14 + x,48 + y,208,34,34 );
gfx.PutPixel( 15 + x,48 + y,208,34,34 );
gfx.PutPixel( 16 + x,48 + y,208,34,34 );
gfx.PutPixel( 17 + x,48 + y,208,34,34 );
gfx.PutPixel( 18 + x,48 + y,208,34,34 );
gfx.PutPixel( 19 + x,48 + y,208,34,34 );
gfx.PutPixel( 20 + x,48 + y,208,34,34 );
gfx.PutPixel( 21 + x,48 + y,208,34,34 );
gfx.PutPixel( 22 + x,48 + y,208,34,34 );
gfx.PutPixel( 23 + x,48 + y,208,34,34 );
gfx.PutPixel( 24 + x,48 + y,208,34,34 );
gfx.PutPixel( 25 + x,48 + y,208,34,34 );
gfx.PutPixel( 26 + x,48 + y,208,34,34 );
gfx.PutPixel( 27 + x,48 + y,208,34,34 );
gfx.PutPixel( 28 + x,48 + y,208,34,34 );
gfx.PutPixel( 29 + x,48 + y,208,34,34 );
gfx.PutPixel( 30 + x,48 + y,208,34,34 );
gfx.PutPixel( 31 + x,48 + y,208,34,34 );
gfx.PutPixel( 32 + x,48 + y,208,34,34 );
gfx.PutPixel( 33 + x,48 + y,208,34,34 );
gfx.PutPixel( 34 + x,48 + y,208,34,34 );
gfx.PutPixel( 35 + x,48 + y,208,34,34 );
gfx.PutPixel( 36 + x,48 + y,208,34,34 );
gfx.PutPixel( 37 + x,48 + y,208,34,34 );
gfx.PutPixel( 38 + x,48 + y,208,34,34 );
gfx.PutPixel( 39 + x,48 + y,208,34,34 );
gfx.PutPixel( 40 + x,48 + y,208,34,34 );
gfx.PutPixel( 41 + x,48 + y,208,34,34 );
gfx.PutPixel( 42 + x,48 + y,208,34,34 );
gfx.PutPixel( 43 + x,48 + y,208,34,34 );
gfx.PutPixel( 44 + x,48 + y,208,34,34 );
gfx.PutPixel( 45 + x,48 + y,208,34,34 );
gfx.PutPixel( 46 + x,48 + y,208,34,34 );
gfx.PutPixel( 47 + x,48 + y,208,34,34 );
gfx.PutPixel( 48 + x,48 + y,208,34,34 );
gfx.PutPixel( 49 + x,48 + y,208,34,34 );
gfx.PutPixel( 50 + x,48 + y,208,34,34 );
gfx.PutPixel( 51 + x,48 + y,208,34,34 );
gfx.PutPixel( 52 + x,48 + y,208,34,34 );
gfx.PutPixel( 53 + x,48 + y,208,34,34 );
gfx.PutPixel( 54 + x,48 + y,208,34,34 );
gfx.PutPixel( 55 + x,48 + y,208,34,34 );
gfx.PutPixel( 56 + x,48 + y,208,34,34 );
gfx.PutPixel( 57 + x,48 + y,208,34,34 );
gfx.PutPixel( 58 + x,48 + y,208,34,34 );
gfx.PutPixel( 59 + x,48 + y,208,34,34 );
gfx.PutPixel( 60 + x,48 + y,208,34,34 );
gfx.PutPixel( 61 + x,48 + y,208,34,34 );
gfx.PutPixel( 62 + x,48 + y,208,34,34 );
gfx.PutPixel( 63 + x,48 + y,208,34,34 );
gfx.PutPixel( 64 + x,48 + y,208,34,34 );
gfx.PutPixel( 65 + x,48 + y,208,34,34 );
gfx.PutPixel( 66 + x,48 + y,208,34,34 );
gfx.PutPixel( 67 + x,48 + y,208,34,34 );
gfx.PutPixel( 68 + x,48 + y,208,34,34 );
gfx.PutPixel( 69 + x,48 + y,208,34,34 );
gfx.PutPixel( 70 + x,48 + y,208,34,34 );
gfx.PutPixel( 71 + x,48 + y,208,34,34 );
gfx.PutPixel( 72 + x,48 + y,208,34,34 );
gfx.PutPixel( 73 + x,48 + y,208,34,34 );
gfx.PutPixel( 74 + x,48 + y,208,34,34 );
gfx.PutPixel( 75 + x,48 + y,208,34,34 );
gfx.PutPixel( 76 + x,48 + y,208,34,34 );
gfx.PutPixel( 77 + x,48 + y,208,34,34 );
gfx.PutPixel( 78 + x,48 + y,208,34,34 );
gfx.PutPixel( 79 + x,48 + y,208,34,34 );
gfx.PutPixel( 80 + x,48 + y,208,34,34 );
gfx.PutPixel( 81 + x,48 + y,208,34,34 );
gfx.PutPixel( 82 + x,48 + y,208,34,34 );
gfx.PutPixel( 83 + x,48 + y,208,34,34 );
gfx.PutPixel( 84 + x,48 + y,208,34,34 );
gfx.PutPixel( 85 + x,48 + y,208,34,34 );
gfx.PutPixel( 86 + x,48 + y,208,34,34 );
gfx.PutPixel( 87 + x,48 + y,208,34,34 );
gfx.PutPixel( 88 + x,48 + y,208,34,34 );
gfx.PutPixel( 89 + x,48 + y,208,34,34 );
gfx.PutPixel( 90 + x,48 + y,208,34,34 );
gfx.PutPixel( 91 + x,48 + y,208,34,34 );
gfx.PutPixel( 92 + x,48 + y,208,34,34 );
gfx.PutPixel( 93 + x,48 + y,208,34,34 );
gfx.PutPixel( 94 + x,48 + y,208,34,34 );
gfx.PutPixel( 95 + x,48 + y,208,34,34 );
gfx.PutPixel( 96 + x,48 + y,208,34,34 );
gfx.PutPixel( 97 + x,48 + y,208,34,34 );
gfx.PutPixel( 98 + x,48 + y,208,34,34 );
gfx.PutPixel( 99 + x,48 + y,208,34,34 );
gfx.PutPixel( 100 + x,48 + y,208,34,34 );
gfx.PutPixel( 101 + x,48 + y,208,34,34 );
gfx.PutPixel( 102 + x,48 + y,208,34,34 );
gfx.PutPixel( 103 + x,48 + y,208,34,34 );
gfx.PutPixel( 104 + x,48 + y,208,34,34 );
gfx.PutPixel( 105 + x,48 + y,208,34,34 );
gfx.PutPixel( 106 + x,48 + y,208,34,34 );
gfx.PutPixel( 107 + x,48 + y,208,34,34 );
gfx.PutPixel( 108 + x,48 + y,208,34,34 );
gfx.PutPixel( 109 + x,48 + y,208,34,34 );
gfx.PutPixel( 110 + x,48 + y,208,34,34 );
gfx.PutPixel( 111 + x,48 + y,208,34,34 );
gfx.PutPixel( 112 + x,48 + y,208,34,34 );
gfx.PutPixel( 113 + x,48 + y,208,34,34 );
gfx.PutPixel( 114 + x,48 + y,208,34,34 );
gfx.PutPixel( 115 + x,48 + y,208,34,34 );
gfx.PutPixel( 116 + x,48 + y,208,34,34 );
gfx.PutPixel( 117 + x,48 + y,208,34,34 );
gfx.PutPixel( 118 + x,48 + y,208,34,34 );
gfx.PutPixel( 119 + x,48 + y,208,34,34 );
gfx.PutPixel( 120 + x,48 + y,208,34,34 );
gfx.PutPixel( 121 + x,48 + y,208,34,34 );
gfx.PutPixel( 122 + x,48 + y,208,34,34 );
gfx.PutPixel( 123 + x,48 + y,208,34,34 );
gfx.PutPixel( 124 + x,48 + y,208,34,34 );
gfx.PutPixel( 125 + x,48 + y,208,34,34 );
gfx.PutPixel( 126 + x,48 + y,208,34,34 );
gfx.PutPixel( 127 + x,48 + y,208,34,34 );
gfx.PutPixel( 128 + x,48 + y,208,34,34 );
gfx.PutPixel( 129 + x,48 + y,208,34,34 );
gfx.PutPixel( 130 + x,48 + y,208,34,34 );
gfx.PutPixel( 131 + x,48 + y,208,34,34 );
gfx.PutPixel( 132 + x,48 + y,208,34,34 );
gfx.PutPixel( 133 + x,48 + y,208,34,34 );
gfx.PutPixel( 134 + x,48 + y,208,34,34 );
gfx.PutPixel( 135 + x,48 + y,208,34,34 );
gfx.PutPixel( 136 + x,48 + y,208,34,34 );
gfx.PutPixel( 137 + x,48 + y,208,34,34 );
gfx.PutPixel( 138 + x,48 + y,208,34,34 );
gfx.PutPixel( 139 + x,48 + y,208,34,34 );
gfx.PutPixel( 140 + x,48 + y,208,34,34 );
gfx.PutPixel( 141 + x,48 + y,208,34,34 );
gfx.PutPixel( 142 + x,48 + y,208,34,34 );
gfx.PutPixel( 143 + x,48 + y,208,34,34 );
gfx.PutPixel( 144 + x,48 + y,208,34,34 );
gfx.PutPixel( 145 + x,48 + y,208,34,34 );
gfx.PutPixel( 146 + x,48 + y,208,34,34 );
gfx.PutPixel( 147 + x,48 + y,208,34,34 );
gfx.PutPixel( 148 + x,48 + y,208,34,34 );
gfx.PutPixel( 149 + x,48 + y,208,34,34 );
gfx.PutPixel( 0 + x,49 + y,208,34,34 );
gfx.PutPixel( 1 + x,49 + y,208,34,34 );
gfx.PutPixel( 2 + x,49 + y,208,34,34 );
gfx.PutPixel( 3 + x,49 + y,208,34,34 );
gfx.PutPixel( 4 + x,49 + y,208,34,34 );
gfx.PutPixel( 5 + x,49 + y,208,34,34 );
gfx.PutPixel( 6 + x,49 + y,208,34,34 );
gfx.PutPixel( 7 + x,49 + y,208,34,34 );
gfx.PutPixel( 8 + x,49 + y,208,34,34 );
gfx.PutPixel( 9 + x,49 + y,208,34,34 );
gfx.PutPixel( 10 + x,49 + y,208,34,34 );
gfx.PutPixel( 11 + x,49 + y,208,34,34 );
gfx.PutPixel( 12 + x,49 + y,208,34,34 );
gfx.PutPixel( 13 + x,49 + y,208,34,34 );
gfx.PutPixel( 14 + x,49 + y,208,34,34 );
gfx.PutPixel( 15 + x,49 + y,208,34,34 );
gfx.PutPixel( 16 + x,49 + y,208,34,34 );
gfx.PutPixel( 17 + x,49 + y,208,34,34 );
gfx.PutPixel( 18 + x,49 + y,208,34,34 );
gfx.PutPixel( 19 + x,49 + y,208,34,34 );
gfx.PutPixel( 20 + x,49 + y,208,34,34 );
gfx.PutPixel( 21 + x,49 + y,208,34,34 );
gfx.PutPixel( 22 + x,49 + y,208,34,34 );
gfx.PutPixel( 23 + x,49 + y,208,34,34 );
gfx.PutPixel( 24 + x,49 + y,208,34,34 );
gfx.PutPixel( 25 + x,49 + y,208,34,34 );
gfx.PutPixel( 26 + x,49 + y,208,34,34 );
gfx.PutPixel( 27 + x,49 + y,208,34,34 );
gfx.PutPixel( 28 + x,49 + y,208,34,34 );
gfx.PutPixel( 29 + x,49 + y,208,34,34 );
gfx.PutPixel( 30 + x,49 + y,208,34,34 );
gfx.PutPixel( 31 + x,49 + y,208,34,34 );
gfx.PutPixel( 32 + x,49 + y,208,34,34 );
gfx.PutPixel( 33 + x,49 + y,208,34,34 );
gfx.PutPixel( 34 + x,49 + y,208,34,34 );
gfx.PutPixel( 35 + x,49 + y,208,34,34 );
gfx.PutPixel( 36 + x,49 + y,208,34,34 );
gfx.PutPixel( 37 + x,49 + y,208,34,34 );
gfx.PutPixel( 38 + x,49 + y,208,34,34 );
gfx.PutPixel( 39 + x,49 + y,208,34,34 );
gfx.PutPixel( 40 + x,49 + y,208,34,34 );
gfx.PutPixel( 41 + x,49 + y,208,34,34 );
gfx.PutPixel( 42 + x,49 + y,208,34,34 );
gfx.PutPixel( 43 + x,49 + y,208,34,34 );
gfx.PutPixel( 44 + x,49 + y,208,34,34 );
gfx.PutPixel( 45 + x,49 + y,208,33,33 );
gfx.PutPixel( 46 + x,49 + y,207,26,26 );
gfx.PutPixel( 47 + x,49 + y,207,25,25 );
gfx.PutPixel( 48 + x,49 + y,207,25,25 );
gfx.PutPixel( 49 + x,49 + y,208,30,30 );
gfx.PutPixel( 50 + x,49 + y,208,35,35 );
gfx.PutPixel( 51 + x,49 + y,208,34,34 );
gfx.PutPixel( 52 + x,49 + y,208,34,34 );
gfx.PutPixel( 53 + x,49 + y,208,34,34 );
gfx.PutPixel( 54 + x,49 + y,208,34,34 );
gfx.PutPixel( 55 + x,49 + y,208,32,32 );
gfx.PutPixel( 56 + x,49 + y,207,26,26 );
gfx.PutPixel( 57 + x,49 + y,207,25,25 );
gfx.PutPixel( 58 + x,49 + y,207,25,25 );
gfx.PutPixel( 59 + x,49 + y,207,25,25 );
gfx.PutPixel( 60 + x,49 + y,208,28,28 );
gfx.PutPixel( 61 + x,49 + y,208,34,34 );
gfx.PutPixel( 62 + x,49 + y,208,34,34 );
gfx.PutPixel( 63 + x,49 + y,208,28,28 );
gfx.PutPixel( 64 + x,49 + y,207,25,25 );
gfx.PutPixel( 65 + x,49 + y,207,25,25 );
gfx.PutPixel( 66 + x,49 + y,207,25,25 );
gfx.PutPixel( 67 + x,49 + y,207,25,25 );
gfx.PutPixel( 68 + x,49 + y,207,25,25 );
gfx.PutPixel( 69 + x,49 + y,207,25,25 );
gfx.PutPixel( 70 + x,49 + y,207,25,25 );
gfx.PutPixel( 71 + x,49 + y,207,25,25 );
gfx.PutPixel( 72 + x,49 + y,207,25,25 );
gfx.PutPixel( 73 + x,49 + y,207,25,25 );
gfx.PutPixel( 74 + x,49 + y,208,29,29 );
gfx.PutPixel( 75 + x,49 + y,208,35,35 );
gfx.PutPixel( 76 + x,49 + y,208,34,34 );
gfx.PutPixel( 77 + x,49 + y,208,34,34 );
gfx.PutPixel( 78 + x,49 + y,208,28,28 );
gfx.PutPixel( 79 + x,49 + y,207,25,25 );
gfx.PutPixel( 80 + x,49 + y,207,25,25 );
gfx.PutPixel( 81 + x,49 + y,207,25,25 );
gfx.PutPixel( 82 + x,49 + y,207,25,25 );
gfx.PutPixel( 83 + x,49 + y,207,25,25 );
gfx.PutPixel( 84 + x,49 + y,207,25,25 );
gfx.PutPixel( 85 + x,49 + y,207,25,25 );
gfx.PutPixel( 86 + x,49 + y,207,25,25 );
gfx.PutPixel( 87 + x,49 + y,207,25,25 );
gfx.PutPixel( 88 + x,49 + y,207,25,25 );
gfx.PutPixel( 89 + x,49 + y,208,29,29 );
gfx.PutPixel( 90 + x,49 + y,208,35,35 );
gfx.PutPixel( 91 + x,49 + y,208,34,34 );
gfx.PutPixel( 92 + x,49 + y,208,33,33 );
gfx.PutPixel( 93 + x,49 + y,207,26,26 );
gfx.PutPixel( 94 + x,49 + y,207,25,25 );
gfx.PutPixel( 95 + x,49 + y,207,25,25 );
gfx.PutPixel( 96 + x,49 + y,207,25,25 );
gfx.PutPixel( 97 + x,49 + y,207,25,25 );
gfx.PutPixel( 98 + x,49 + y,207,25,25 );
gfx.PutPixel( 99 + x,49 + y,207,26,26 );
gfx.PutPixel( 100 + x,49 + y,208,27,27 );
gfx.PutPixel( 101 + x,49 + y,208,30,30 );
gfx.PutPixel( 102 + x,49 + y,208,33,33 );
gfx.PutPixel( 103 + x,49 + y,208,34,34 );
gfx.PutPixel( 104 + x,49 + y,208,34,34 );
gfx.PutPixel( 105 + x,49 + y,208,34,34 );
gfx.PutPixel( 106 + x,49 + y,208,34,34 );
gfx.PutPixel( 107 + x,49 + y,208,34,34 );
gfx.PutPixel( 108 + x,49 + y,208,34,34 );
gfx.PutPixel( 109 + x,49 + y,208,34,34 );
gfx.PutPixel( 110 + x,49 + y,208,34,34 );
gfx.PutPixel( 111 + x,49 + y,208,34,34 );
gfx.PutPixel( 112 + x,49 + y,208,34,34 );
gfx.PutPixel( 113 + x,49 + y,208,34,34 );
gfx.PutPixel( 114 + x,49 + y,208,34,34 );
gfx.PutPixel( 115 + x,49 + y,208,34,34 );
gfx.PutPixel( 116 + x,49 + y,208,34,34 );
gfx.PutPixel( 117 + x,49 + y,208,34,34 );
gfx.PutPixel( 118 + x,49 + y,208,34,34 );
gfx.PutPixel( 119 + x,49 + y,208,34,34 );
gfx.PutPixel( 120 + x,49 + y,208,34,34 );
gfx.PutPixel( 121 + x,49 + y,208,34,34 );
gfx.PutPixel( 122 + x,49 + y,208,34,34 );
gfx.PutPixel( 123 + x,49 + y,208,34,34 );
gfx.PutPixel( 124 + x,49 + y,208,34,34 );
gfx.PutPixel( 125 + x,49 + y,208,34,34 );
gfx.PutPixel( 126 + x,49 + y,208,34,34 );
gfx.PutPixel( 127 + x,49 + y,208,34,34 );
gfx.PutPixel( 128 + x,49 + y,208,34,34 );
gfx.PutPixel( 129 + x,49 + y,208,34,34 );
gfx.PutPixel( 130 + x,49 + y,208,34,34 );
gfx.PutPixel( 131 + x,49 + y,208,34,34 );
gfx.PutPixel( 132 + x,49 + y,208,34,34 );
gfx.PutPixel( 133 + x,49 + y,208,34,34 );
gfx.PutPixel( 134 + x,49 + y,208,34,34 );
gfx.PutPixel( 135 + x,49 + y,208,34,34 );
gfx.PutPixel( 136 + x,49 + y,208,34,34 );
gfx.PutPixel( 137 + x,49 + y,208,34,34 );
gfx.PutPixel( 138 + x,49 + y,208,34,34 );
gfx.PutPixel( 139 + x,49 + y,208,34,34 );
gfx.PutPixel( 140 + x,49 + y,208,34,34 );
gfx.PutPixel( 141 + x,49 + y,208,34,34 );
gfx.PutPixel( 142 + x,49 + y,208,34,34 );
gfx.PutPixel( 143 + x,49 + y,208,34,34 );
gfx.PutPixel( 144 + x,49 + y,208,34,34 );
gfx.PutPixel( 145 + x,49 + y,208,34,34 );
gfx.PutPixel( 146 + x,49 + y,208,34,34 );
gfx.PutPixel( 147 + x,49 + y,208,34,34 );
gfx.PutPixel( 148 + x,49 + y,208,34,34 );
gfx.PutPixel( 149 + x,49 + y,208,34,34 );
gfx.PutPixel( 0 + x,50 + y,208,34,34 );
gfx.PutPixel( 1 + x,50 + y,208,34,34 );
gfx.PutPixel( 2 + x,50 + y,208,34,34 );
gfx.PutPixel( 3 + x,50 + y,208,34,34 );
gfx.PutPixel( 4 + x,50 + y,208,34,34 );
gfx.PutPixel( 5 + x,50 + y,208,34,34 );
gfx.PutPixel( 6 + x,50 + y,208,34,34 );
gfx.PutPixel( 7 + x,50 + y,208,34,34 );
gfx.PutPixel( 8 + x,50 + y,208,34,34 );
gfx.PutPixel( 9 + x,50 + y,208,34,34 );
gfx.PutPixel( 10 + x,50 + y,208,34,34 );
gfx.PutPixel( 11 + x,50 + y,208,34,34 );
gfx.PutPixel( 12 + x,50 + y,208,34,34 );
gfx.PutPixel( 13 + x,50 + y,208,34,34 );
gfx.PutPixel( 14 + x,50 + y,208,34,34 );
gfx.PutPixel( 15 + x,50 + y,208,34,34 );
gfx.PutPixel( 16 + x,50 + y,208,34,34 );
gfx.PutPixel( 17 + x,50 + y,208,34,34 );
gfx.PutPixel( 18 + x,50 + y,208,34,34 );
gfx.PutPixel( 19 + x,50 + y,208,34,34 );
gfx.PutPixel( 20 + x,50 + y,208,34,34 );
gfx.PutPixel( 21 + x,50 + y,208,34,34 );
gfx.PutPixel( 22 + x,50 + y,208,34,34 );
gfx.PutPixel( 23 + x,50 + y,208,34,34 );
gfx.PutPixel( 24 + x,50 + y,208,34,34 );
gfx.PutPixel( 25 + x,50 + y,208,34,34 );
gfx.PutPixel( 26 + x,50 + y,208,34,34 );
gfx.PutPixel( 27 + x,50 + y,208,34,34 );
gfx.PutPixel( 28 + x,50 + y,208,34,34 );
gfx.PutPixel( 29 + x,50 + y,208,34,34 );
gfx.PutPixel( 30 + x,50 + y,208,34,34 );
gfx.PutPixel( 31 + x,50 + y,208,34,34 );
gfx.PutPixel( 32 + x,50 + y,208,34,34 );
gfx.PutPixel( 33 + x,50 + y,208,34,34 );
gfx.PutPixel( 34 + x,50 + y,208,34,34 );
gfx.PutPixel( 35 + x,50 + y,208,34,34 );
gfx.PutPixel( 36 + x,50 + y,208,34,34 );
gfx.PutPixel( 37 + x,50 + y,208,34,34 );
gfx.PutPixel( 38 + x,50 + y,208,34,34 );
gfx.PutPixel( 39 + x,50 + y,208,34,34 );
gfx.PutPixel( 40 + x,50 + y,208,34,34 );
gfx.PutPixel( 41 + x,50 + y,208,34,34 );
gfx.PutPixel( 42 + x,50 + y,208,34,34 );
gfx.PutPixel( 43 + x,50 + y,208,34,34 );
gfx.PutPixel( 44 + x,50 + y,208,33,33 );
gfx.PutPixel( 45 + x,50 + y,208,37,37 );
gfx.PutPixel( 46 + x,50 + y,211,79,79 );
gfx.PutPixel( 47 + x,50 + y,211,83,83 );
gfx.PutPixel( 48 + x,50 + y,212,85,85 );
gfx.PutPixel( 49 + x,50 + y,210,58,58 );
gfx.PutPixel( 50 + x,50 + y,208,31,31 );
gfx.PutPixel( 51 + x,50 + y,208,34,34 );
gfx.PutPixel( 52 + x,50 + y,208,34,34 );
gfx.PutPixel( 53 + x,50 + y,208,34,34 );
gfx.PutPixel( 54 + x,50 + y,208,31,31 );
gfx.PutPixel( 55 + x,50 + y,208,35,35 );
gfx.PutPixel( 56 + x,50 + y,211,80,80 );
gfx.PutPixel( 57 + x,50 + y,211,83,83 );
gfx.PutPixel( 58 + x,50 + y,211,82,82 );
gfx.PutPixel( 59 + x,50 + y,212,87,87 );
gfx.PutPixel( 60 + x,50 + y,211,77,77 );
gfx.PutPixel( 61 + x,50 + y,208,33,33 );
gfx.PutPixel( 62 + x,50 + y,208,32,32 );
gfx.PutPixel( 63 + x,50 + y,211,70,70 );
gfx.PutPixel( 64 + x,50 + y,212,85,85 );
gfx.PutPixel( 65 + x,50 + y,211,82,82 );
gfx.PutPixel( 66 + x,50 + y,211,82,82 );
gfx.PutPixel( 67 + x,50 + y,211,82,82 );
gfx.PutPixel( 68 + x,50 + y,211,82,82 );
gfx.PutPixel( 69 + x,50 + y,211,82,82 );
gfx.PutPixel( 70 + x,50 + y,211,82,82 );
gfx.PutPixel( 71 + x,50 + y,211,82,82 );
gfx.PutPixel( 72 + x,50 + y,211,82,82 );
gfx.PutPixel( 73 + x,50 + y,212,85,85 );
gfx.PutPixel( 74 + x,50 + y,210,60,60 );
gfx.PutPixel( 75 + x,50 + y,208,31,31 );
gfx.PutPixel( 76 + x,50 + y,208,34,34 );
gfx.PutPixel( 77 + x,50 + y,208,32,32 );
gfx.PutPixel( 78 + x,50 + y,211,70,70 );
gfx.PutPixel( 79 + x,50 + y,212,85,85 );
gfx.PutPixel( 80 + x,50 + y,211,82,82 );
gfx.PutPixel( 81 + x,50 + y,211,82,82 );
gfx.PutPixel( 82 + x,50 + y,211,82,82 );
gfx.PutPixel( 83 + x,50 + y,211,82,82 );
gfx.PutPixel( 84 + x,50 + y,211,82,82 );
gfx.PutPixel( 85 + x,50 + y,211,82,82 );
gfx.PutPixel( 86 + x,50 + y,211,82,82 );
gfx.PutPixel( 87 + x,50 + y,211,82,82 );
gfx.PutPixel( 88 + x,50 + y,212,85,85 );
gfx.PutPixel( 89 + x,50 + y,210,60,60 );
gfx.PutPixel( 90 + x,50 + y,208,31,31 );
gfx.PutPixel( 91 + x,50 + y,208,33,33 );
gfx.PutPixel( 92 + x,50 + y,208,37,37 );
gfx.PutPixel( 93 + x,50 + y,211,79,79 );
gfx.PutPixel( 94 + x,50 + y,211,83,83 );
gfx.PutPixel( 95 + x,50 + y,211,82,82 );
gfx.PutPixel( 96 + x,50 + y,211,82,82 );
gfx.PutPixel( 97 + x,50 + y,211,82,82 );
gfx.PutPixel( 98 + x,50 + y,211,82,82 );
gfx.PutPixel( 99 + x,50 + y,211,81,81 );
gfx.PutPixel( 100 + x,50 + y,211,71,71 );
gfx.PutPixel( 101 + x,50 + y,209,51,51 );
gfx.PutPixel( 102 + x,50 + y,208,28,28 );
gfx.PutPixel( 103 + x,50 + y,207,26,26 );
gfx.PutPixel( 104 + x,50 + y,208,34,34 );
gfx.PutPixel( 105 + x,50 + y,208,34,34 );
gfx.PutPixel( 106 + x,50 + y,208,34,34 );
gfx.PutPixel( 107 + x,50 + y,208,34,34 );
gfx.PutPixel( 108 + x,50 + y,208,34,34 );
gfx.PutPixel( 109 + x,50 + y,208,34,34 );
gfx.PutPixel( 110 + x,50 + y,208,34,34 );
gfx.PutPixel( 111 + x,50 + y,208,34,34 );
gfx.PutPixel( 112 + x,50 + y,208,34,34 );
gfx.PutPixel( 113 + x,50 + y,208,34,34 );
gfx.PutPixel( 114 + x,50 + y,208,34,34 );
gfx.PutPixel( 115 + x,50 + y,208,34,34 );
gfx.PutPixel( 116 + x,50 + y,208,34,34 );
gfx.PutPixel( 117 + x,50 + y,208,34,34 );
gfx.PutPixel( 118 + x,50 + y,208,34,34 );
gfx.PutPixel( 119 + x,50 + y,208,34,34 );
gfx.PutPixel( 120 + x,50 + y,208,34,34 );
gfx.PutPixel( 121 + x,50 + y,208,34,34 );
gfx.PutPixel( 122 + x,50 + y,208,34,34 );
gfx.PutPixel( 123 + x,50 + y,208,34,34 );
gfx.PutPixel( 124 + x,50 + y,208,34,34 );
gfx.PutPixel( 125 + x,50 + y,208,34,34 );
gfx.PutPixel( 126 + x,50 + y,208,34,34 );
gfx.PutPixel( 127 + x,50 + y,208,34,34 );
gfx.PutPixel( 128 + x,50 + y,208,34,34 );
gfx.PutPixel( 129 + x,50 + y,208,34,34 );
gfx.PutPixel( 130 + x,50 + y,208,34,34 );
gfx.PutPixel( 131 + x,50 + y,208,34,34 );
gfx.PutPixel( 132 + x,50 + y,208,34,34 );
gfx.PutPixel( 133 + x,50 + y,208,34,34 );
gfx.PutPixel( 134 + x,50 + y,208,34,34 );
gfx.PutPixel( 135 + x,50 + y,208,34,34 );
gfx.PutPixel( 136 + x,50 + y,208,34,34 );
gfx.PutPixel( 137 + x,50 + y,208,34,34 );
gfx.PutPixel( 138 + x,50 + y,208,34,34 );
gfx.PutPixel( 139 + x,50 + y,208,34,34 );
gfx.PutPixel( 140 + x,50 + y,208,34,34 );
gfx.PutPixel( 141 + x,50 + y,208,34,34 );
gfx.PutPixel( 142 + x,50 + y,208,34,34 );
gfx.PutPixel( 143 + x,50 + y,208,34,34 );
gfx.PutPixel( 144 + x,50 + y,208,34,34 );
gfx.PutPixel( 145 + x,50 + y,208,34,34 );
gfx.PutPixel( 146 + x,50 + y,208,34,34 );
gfx.PutPixel( 147 + x,50 + y,208,34,34 );
gfx.PutPixel( 148 + x,50 + y,208,34,34 );
gfx.PutPixel( 149 + x,50 + y,208,34,34 );
gfx.PutPixel( 0 + x,51 + y,208,34,34 );
gfx.PutPixel( 1 + x,51 + y,208,34,34 );
gfx.PutPixel( 2 + x,51 + y,208,34,34 );
gfx.PutPixel( 3 + x,51 + y,208,34,34 );
gfx.PutPixel( 4 + x,51 + y,208,34,34 );
gfx.PutPixel( 5 + x,51 + y,208,34,34 );
gfx.PutPixel( 6 + x,51 + y,208,34,34 );
gfx.PutPixel( 7 + x,51 + y,208,34,34 );
gfx.PutPixel( 8 + x,51 + y,208,34,34 );
gfx.PutPixel( 9 + x,51 + y,208,34,34 );
gfx.PutPixel( 10 + x,51 + y,208,34,34 );
gfx.PutPixel( 11 + x,51 + y,208,34,34 );
gfx.PutPixel( 12 + x,51 + y,208,34,34 );
gfx.PutPixel( 13 + x,51 + y,208,34,34 );
gfx.PutPixel( 14 + x,51 + y,208,34,34 );
gfx.PutPixel( 15 + x,51 + y,208,34,34 );
gfx.PutPixel( 16 + x,51 + y,208,34,34 );
gfx.PutPixel( 17 + x,51 + y,208,34,34 );
gfx.PutPixel( 18 + x,51 + y,208,34,34 );
gfx.PutPixel( 19 + x,51 + y,208,34,34 );
gfx.PutPixel( 20 + x,51 + y,208,34,34 );
gfx.PutPixel( 21 + x,51 + y,208,34,34 );
gfx.PutPixel( 22 + x,51 + y,208,34,34 );
gfx.PutPixel( 23 + x,51 + y,208,34,34 );
gfx.PutPixel( 24 + x,51 + y,208,34,34 );
gfx.PutPixel( 25 + x,51 + y,208,34,34 );
gfx.PutPixel( 26 + x,51 + y,208,34,34 );
gfx.PutPixel( 27 + x,51 + y,208,34,34 );
gfx.PutPixel( 28 + x,51 + y,208,34,34 );
gfx.PutPixel( 29 + x,51 + y,208,34,34 );
gfx.PutPixel( 30 + x,51 + y,208,34,34 );
gfx.PutPixel( 31 + x,51 + y,208,34,34 );
gfx.PutPixel( 32 + x,51 + y,208,34,34 );
gfx.PutPixel( 33 + x,51 + y,208,34,34 );
gfx.PutPixel( 34 + x,51 + y,208,34,34 );
gfx.PutPixel( 35 + x,51 + y,208,34,34 );
gfx.PutPixel( 36 + x,51 + y,208,34,34 );
gfx.PutPixel( 37 + x,51 + y,208,34,34 );
gfx.PutPixel( 38 + x,51 + y,208,34,34 );
gfx.PutPixel( 39 + x,51 + y,208,34,34 );
gfx.PutPixel( 40 + x,51 + y,208,34,34 );
gfx.PutPixel( 41 + x,51 + y,208,34,34 );
gfx.PutPixel( 42 + x,51 + y,208,34,34 );
gfx.PutPixel( 43 + x,51 + y,208,34,34 );
gfx.PutPixel( 44 + x,51 + y,208,30,30 );
gfx.PutPixel( 45 + x,51 + y,209,47,47 );
gfx.PutPixel( 46 + x,51 + y,220,214,214 );
gfx.PutPixel( 47 + x,51 + y,221,232,232 );
gfx.PutPixel( 48 + x,51 + y,223,240,240 );
gfx.PutPixel( 49 + x,51 + y,215,131,131 );
gfx.PutPixel( 50 + x,51 + y,207,22,22 );
gfx.PutPixel( 51 + x,51 + y,208,34,34 );
gfx.PutPixel( 52 + x,51 + y,208,34,34 );
gfx.PutPixel( 53 + x,51 + y,208,32,32 );
gfx.PutPixel( 54 + x,51 + y,208,26,26 );
gfx.PutPixel( 55 + x,51 + y,216,144,144 );
gfx.PutPixel( 56 + x,51 + y,222,233,233 );
gfx.PutPixel( 57 + x,51 + y,221,228,228 );
gfx.PutPixel( 58 + x,51 + y,222,232,232 );
gfx.PutPixel( 59 + x,51 + y,222,229,229 );
gfx.PutPixel( 60 + x,51 + y,212,100,100 );
gfx.PutPixel( 61 + x,51 + y,207,27,27 );
gfx.PutPixel( 62 + x,51 + y,208,27,27 );
gfx.PutPixel( 63 + x,51 + y,218,178,178 );
gfx.PutPixel( 64 + x,51 + y,223,237,237 );
gfx.PutPixel( 65 + x,51 + y,221,228,228 );
gfx.PutPixel( 66 + x,51 + y,221,228,228 );
gfx.PutPixel( 67 + x,51 + y,221,228,228 );
gfx.PutPixel( 68 + x,51 + y,221,228,228 );
gfx.PutPixel( 69 + x,51 + y,221,228,228 );
gfx.PutPixel( 70 + x,51 + y,221,228,228 );
gfx.PutPixel( 71 + x,51 + y,221,228,228 );
gfx.PutPixel( 72 + x,51 + y,221,228,228 );
gfx.PutPixel( 73 + x,51 + y,223,239,239 );
gfx.PutPixel( 74 + x,51 + y,215,140,140 );
gfx.PutPixel( 75 + x,51 + y,207,23,23 );
gfx.PutPixel( 76 + x,51 + y,208,33,33 );
gfx.PutPixel( 77 + x,51 + y,208,27,27 );
gfx.PutPixel( 78 + x,51 + y,218,178,178 );
gfx.PutPixel( 79 + x,51 + y,223,237,237 );
gfx.PutPixel( 80 + x,51 + y,221,228,228 );
gfx.PutPixel( 81 + x,51 + y,221,228,228 );
gfx.PutPixel( 82 + x,51 + y,221,228,228 );
gfx.PutPixel( 83 + x,51 + y,221,228,228 );
gfx.PutPixel( 84 + x,51 + y,221,228,228 );
gfx.PutPixel( 85 + x,51 + y,221,228,228 );
gfx.PutPixel( 86 + x,51 + y,221,228,228 );
gfx.PutPixel( 87 + x,51 + y,221,228,228 );
gfx.PutPixel( 88 + x,51 + y,223,239,239 );
gfx.PutPixel( 89 + x,51 + y,215,140,140 );
gfx.PutPixel( 90 + x,51 + y,207,23,23 );
gfx.PutPixel( 91 + x,51 + y,208,30,30 );
gfx.PutPixel( 92 + x,51 + y,209,47,47 );
gfx.PutPixel( 93 + x,51 + y,220,214,214 );
gfx.PutPixel( 94 + x,51 + y,221,232,232 );
gfx.PutPixel( 95 + x,51 + y,221,228,228 );
gfx.PutPixel( 96 + x,51 + y,221,228,228 );
gfx.PutPixel( 97 + x,51 + y,221,228,228 );
gfx.PutPixel( 98 + x,51 + y,221,228,228 );
gfx.PutPixel( 99 + x,51 + y,221,227,227 );
gfx.PutPixel( 100 + x,51 + y,221,222,222 );
gfx.PutPixel( 101 + x,51 + y,220,210,210 );
gfx.PutPixel( 102 + x,51 + y,217,172,172 );
gfx.PutPixel( 103 + x,51 + y,211,81,81 );
gfx.PutPixel( 104 + x,51 + y,207,25,25 );
gfx.PutPixel( 105 + x,51 + y,208,34,34 );
gfx.PutPixel( 106 + x,51 + y,208,34,34 );
gfx.PutPixel( 107 + x,51 + y,208,34,34 );
gfx.PutPixel( 108 + x,51 + y,208,34,34 );
gfx.PutPixel( 109 + x,51 + y,208,34,34 );
gfx.PutPixel( 110 + x,51 + y,208,34,34 );
gfx.PutPixel( 111 + x,51 + y,208,34,34 );
gfx.PutPixel( 112 + x,51 + y,208,34,34 );
gfx.PutPixel( 113 + x,51 + y,208,34,34 );
gfx.PutPixel( 114 + x,51 + y,208,34,34 );
gfx.PutPixel( 115 + x,51 + y,208,34,34 );
gfx.PutPixel( 116 + x,51 + y,208,34,34 );
gfx.PutPixel( 117 + x,51 + y,208,34,34 );
gfx.PutPixel( 118 + x,51 + y,208,34,34 );
gfx.PutPixel( 119 + x,51 + y,208,34,34 );
gfx.PutPixel( 120 + x,51 + y,208,34,34 );
gfx.PutPixel( 121 + x,51 + y,208,34,34 );
gfx.PutPixel( 122 + x,51 + y,208,34,34 );
gfx.PutPixel( 123 + x,51 + y,208,34,34 );
gfx.PutPixel( 124 + x,51 + y,208,34,34 );
gfx.PutPixel( 125 + x,51 + y,208,34,34 );
gfx.PutPixel( 126 + x,51 + y,208,34,34 );
gfx.PutPixel( 127 + x,51 + y,208,34,34 );
gfx.PutPixel( 128 + x,51 + y,208,34,34 );
gfx.PutPixel( 129 + x,51 + y,208,34,34 );
gfx.PutPixel( 130 + x,51 + y,208,34,34 );
gfx.PutPixel( 131 + x,51 + y,208,34,34 );
gfx.PutPixel( 132 + x,51 + y,208,34,34 );
gfx.PutPixel( 133 + x,51 + y,208,34,34 );
gfx.PutPixel( 134 + x,51 + y,208,34,34 );
gfx.PutPixel( 135 + x,51 + y,208,34,34 );
gfx.PutPixel( 136 + x,51 + y,208,34,34 );
gfx.PutPixel( 137 + x,51 + y,208,34,34 );
gfx.PutPixel( 138 + x,51 + y,208,34,34 );
gfx.PutPixel( 139 + x,51 + y,208,34,34 );
gfx.PutPixel( 140 + x,51 + y,208,34,34 );
gfx.PutPixel( 141 + x,51 + y,208,34,34 );
gfx.PutPixel( 142 + x,51 + y,208,34,34 );
gfx.PutPixel( 143 + x,51 + y,208,34,34 );
gfx.PutPixel( 144 + x,51 + y,208,34,34 );
gfx.PutPixel( 145 + x,51 + y,208,34,34 );
gfx.PutPixel( 146 + x,51 + y,208,34,34 );
gfx.PutPixel( 147 + x,51 + y,208,34,34 );
gfx.PutPixel( 148 + x,51 + y,208,34,34 );
gfx.PutPixel( 149 + x,51 + y,208,34,34 );
gfx.PutPixel( 0 + x,52 + y,208,34,34 );
gfx.PutPixel( 1 + x,52 + y,208,34,34 );
gfx.PutPixel( 2 + x,52 + y,208,34,34 );
gfx.PutPixel( 3 + x,52 + y,208,34,34 );
gfx.PutPixel( 4 + x,52 + y,208,34,34 );
gfx.PutPixel( 5 + x,52 + y,208,34,34 );
gfx.PutPixel( 6 + x,52 + y,208,34,34 );
gfx.PutPixel( 7 + x,52 + y,208,34,34 );
gfx.PutPixel( 8 + x,52 + y,208,34,34 );
gfx.PutPixel( 9 + x,52 + y,208,34,34 );
gfx.PutPixel( 10 + x,52 + y,208,34,34 );
gfx.PutPixel( 11 + x,52 + y,208,34,34 );
gfx.PutPixel( 12 + x,52 + y,208,34,34 );
gfx.PutPixel( 13 + x,52 + y,208,34,34 );
gfx.PutPixel( 14 + x,52 + y,208,34,34 );
gfx.PutPixel( 15 + x,52 + y,208,34,34 );
gfx.PutPixel( 16 + x,52 + y,208,34,34 );
gfx.PutPixel( 17 + x,52 + y,208,34,34 );
gfx.PutPixel( 18 + x,52 + y,208,34,34 );
gfx.PutPixel( 19 + x,52 + y,208,34,34 );
gfx.PutPixel( 20 + x,52 + y,208,34,34 );
gfx.PutPixel( 21 + x,52 + y,208,34,34 );
gfx.PutPixel( 22 + x,52 + y,208,34,34 );
gfx.PutPixel( 23 + x,52 + y,208,34,34 );
gfx.PutPixel( 24 + x,52 + y,208,34,34 );
gfx.PutPixel( 25 + x,52 + y,208,34,34 );
gfx.PutPixel( 26 + x,52 + y,208,34,34 );
gfx.PutPixel( 27 + x,52 + y,208,34,34 );
gfx.PutPixel( 28 + x,52 + y,208,34,34 );
gfx.PutPixel( 29 + x,52 + y,208,34,34 );
gfx.PutPixel( 30 + x,52 + y,208,34,34 );
gfx.PutPixel( 31 + x,52 + y,208,34,34 );
gfx.PutPixel( 32 + x,52 + y,208,34,34 );
gfx.PutPixel( 33 + x,52 + y,208,34,34 );
gfx.PutPixel( 34 + x,52 + y,208,34,34 );
gfx.PutPixel( 35 + x,52 + y,208,34,34 );
gfx.PutPixel( 36 + x,52 + y,208,34,34 );
gfx.PutPixel( 37 + x,52 + y,208,34,34 );
gfx.PutPixel( 38 + x,52 + y,208,34,34 );
gfx.PutPixel( 39 + x,52 + y,208,34,34 );
gfx.PutPixel( 40 + x,52 + y,208,34,34 );
gfx.PutPixel( 41 + x,52 + y,208,34,34 );
gfx.PutPixel( 42 + x,52 + y,208,34,34 );
gfx.PutPixel( 43 + x,52 + y,208,34,34 );
gfx.PutPixel( 44 + x,52 + y,208,30,30 );
gfx.PutPixel( 45 + x,52 + y,209,47,47 );
gfx.PutPixel( 46 + x,52 + y,220,208,208 );
gfx.PutPixel( 47 + x,52 + y,221,225,225 );
gfx.PutPixel( 48 + x,52 + y,222,234,234 );
gfx.PutPixel( 49 + x,52 + y,215,128,128 );
gfx.PutPixel( 50 + x,52 + y,207,22,22 );
gfx.PutPixel( 51 + x,52 + y,208,34,34 );
gfx.PutPixel( 52 + x,52 + y,208,32,32 );
gfx.PutPixel( 53 + x,52 + y,207,24,24 );
gfx.PutPixel( 54 + x,52 + y,215,134,134 );
gfx.PutPixel( 55 + x,52 + y,222,232,232 );
gfx.PutPixel( 56 + x,52 + y,221,222,222 );
gfx.PutPixel( 57 + x,52 + y,221,225,225 );
gfx.PutPixel( 58 + x,52 + y,221,226,226 );
gfx.PutPixel( 59 + x,52 + y,213,99,99 );
gfx.PutPixel( 60 + x,52 + y,207,22,22 );
gfx.PutPixel( 61 + x,52 + y,208,34,34 );
gfx.PutPixel( 62 + x,52 + y,208,27,27 );
gfx.PutPixel( 63 + x,52 + y,218,173,173 );
gfx.PutPixel( 64 + x,52 + y,222,231,231 );
gfx.PutPixel( 65 + x,52 + y,221,221,221 );
gfx.PutPixel( 66 + x,52 + y,221,222,222 );
gfx.PutPixel( 67 + x,52 + y,221,222,222 );
gfx.PutPixel( 68 + x,52 + y,221,222,222 );
gfx.PutPixel( 69 + x,52 + y,221,222,222 );
gfx.PutPixel( 70 + x,52 + y,221,222,222 );
gfx.PutPixel( 71 + x,52 + y,221,222,222 );
gfx.PutPixel( 72 + x,52 + y,221,222,222 );
gfx.PutPixel( 73 + x,52 + y,222,233,233 );
gfx.PutPixel( 74 + x,52 + y,215,137,137 );
gfx.PutPixel( 75 + x,52 + y,207,23,23 );
gfx.PutPixel( 76 + x,52 + y,208,33,33 );
gfx.PutPixel( 77 + x,52 + y,208,27,27 );
gfx.PutPixel( 78 + x,52 + y,218,173,173 );
gfx.PutPixel( 79 + x,52 + y,222,231,231 );
gfx.PutPixel( 80 + x,52 + y,221,221,221 );
gfx.PutPixel( 81 + x,52 + y,221,222,222 );
gfx.PutPixel( 82 + x,52 + y,221,222,222 );
gfx.PutPixel( 83 + x,52 + y,221,222,222 );
gfx.PutPixel( 84 + x,52 + y,221,222,222 );
gfx.PutPixel( 85 + x,52 + y,221,222,222 );
gfx.PutPixel( 86 + x,52 + y,221,222,222 );
gfx.PutPixel( 87 + x,52 + y,221,222,222 );
gfx.PutPixel( 88 + x,52 + y,222,233,233 );
gfx.PutPixel( 89 + x,52 + y,215,137,137 );
gfx.PutPixel( 90 + x,52 + y,207,23,23 );
gfx.PutPixel( 91 + x,52 + y,208,30,30 );
gfx.PutPixel( 92 + x,52 + y,209,47,47 );
gfx.PutPixel( 93 + x,52 + y,220,208,208 );
gfx.PutPixel( 94 + x,52 + y,221,225,225 );
gfx.PutPixel( 95 + x,52 + y,221,221,221 );
gfx.PutPixel( 96 + x,52 + y,221,223,223 );
gfx.PutPixel( 97 + x,52 + y,221,225,225 );
gfx.PutPixel( 98 + x,52 + y,221,225,225 );
gfx.PutPixel( 99 + x,52 + y,221,224,224 );
gfx.PutPixel( 100 + x,52 + y,221,223,223 );
gfx.PutPixel( 101 + x,52 + y,221,224,224 );
gfx.PutPixel( 102 + x,52 + y,222,232,232 );
gfx.PutPixel( 103 + x,52 + y,222,226,226 );
gfx.PutPixel( 104 + x,52 + y,212,100,100 );
gfx.PutPixel( 105 + x,52 + y,207,25,25 );
gfx.PutPixel( 106 + x,52 + y,208,34,34 );
gfx.PutPixel( 107 + x,52 + y,208,34,34 );
gfx.PutPixel( 108 + x,52 + y,208,34,34 );
gfx.PutPixel( 109 + x,52 + y,208,34,34 );
gfx.PutPixel( 110 + x,52 + y,208,34,34 );
gfx.PutPixel( 111 + x,52 + y,208,34,34 );
gfx.PutPixel( 112 + x,52 + y,208,34,34 );
gfx.PutPixel( 113 + x,52 + y,208,34,34 );
gfx.PutPixel( 114 + x,52 + y,208,34,34 );
gfx.PutPixel( 115 + x,52 + y,208,34,34 );
gfx.PutPixel( 116 + x,52 + y,208,34,34 );
gfx.PutPixel( 117 + x,52 + y,208,34,34 );
gfx.PutPixel( 118 + x,52 + y,208,34,34 );
gfx.PutPixel( 119 + x,52 + y,208,34,34 );
gfx.PutPixel( 120 + x,52 + y,208,34,34 );
gfx.PutPixel( 121 + x,52 + y,208,34,34 );
gfx.PutPixel( 122 + x,52 + y,208,34,34 );
gfx.PutPixel( 123 + x,52 + y,208,34,34 );
gfx.PutPixel( 124 + x,52 + y,208,34,34 );
gfx.PutPixel( 125 + x,52 + y,208,34,34 );
gfx.PutPixel( 126 + x,52 + y,208,34,34 );
gfx.PutPixel( 127 + x,52 + y,208,34,34 );
gfx.PutPixel( 128 + x,52 + y,208,34,34 );
gfx.PutPixel( 129 + x,52 + y,208,34,34 );
gfx.PutPixel( 130 + x,52 + y,208,34,34 );
gfx.PutPixel( 131 + x,52 + y,208,34,34 );
gfx.PutPixel( 132 + x,52 + y,208,34,34 );
gfx.PutPixel( 133 + x,52 + y,208,34,34 );
gfx.PutPixel( 134 + x,52 + y,208,34,34 );
gfx.PutPixel( 135 + x,52 + y,208,34,34 );
gfx.PutPixel( 136 + x,52 + y,208,34,34 );
gfx.PutPixel( 137 + x,52 + y,208,34,34 );
gfx.PutPixel( 138 + x,52 + y,208,34,34 );
gfx.PutPixel( 139 + x,52 + y,208,34,34 );
gfx.PutPixel( 140 + x,52 + y,208,34,34 );
gfx.PutPixel( 141 + x,52 + y,208,34,34 );
gfx.PutPixel( 142 + x,52 + y,208,34,34 );
gfx.PutPixel( 143 + x,52 + y,208,34,34 );
gfx.PutPixel( 144 + x,52 + y,208,34,34 );
gfx.PutPixel( 145 + x,52 + y,208,34,34 );
gfx.PutPixel( 146 + x,52 + y,208,34,34 );
gfx.PutPixel( 147 + x,52 + y,208,34,34 );
gfx.PutPixel( 148 + x,52 + y,208,34,34 );
gfx.PutPixel( 149 + x,52 + y,208,34,34 );
gfx.PutPixel( 0 + x,53 + y,208,34,34 );
gfx.PutPixel( 1 + x,53 + y,208,34,34 );
gfx.PutPixel( 2 + x,53 + y,208,34,34 );
gfx.PutPixel( 3 + x,53 + y,208,34,34 );
gfx.PutPixel( 4 + x,53 + y,208,34,34 );
gfx.PutPixel( 5 + x,53 + y,208,34,34 );
gfx.PutPixel( 6 + x,53 + y,208,34,34 );
gfx.PutPixel( 7 + x,53 + y,208,34,34 );
gfx.PutPixel( 8 + x,53 + y,208,34,34 );
gfx.PutPixel( 9 + x,53 + y,208,34,34 );
gfx.PutPixel( 10 + x,53 + y,208,34,34 );
gfx.PutPixel( 11 + x,53 + y,208,34,34 );
gfx.PutPixel( 12 + x,53 + y,208,34,34 );
gfx.PutPixel( 13 + x,53 + y,208,34,34 );
gfx.PutPixel( 14 + x,53 + y,208,34,34 );
gfx.PutPixel( 15 + x,53 + y,208,34,34 );
gfx.PutPixel( 16 + x,53 + y,208,34,34 );
gfx.PutPixel( 17 + x,53 + y,208,34,34 );
gfx.PutPixel( 18 + x,53 + y,208,34,34 );
gfx.PutPixel( 19 + x,53 + y,208,34,34 );
gfx.PutPixel( 20 + x,53 + y,208,34,34 );
gfx.PutPixel( 21 + x,53 + y,208,34,34 );
gfx.PutPixel( 22 + x,53 + y,208,34,34 );
gfx.PutPixel( 23 + x,53 + y,208,34,34 );
gfx.PutPixel( 24 + x,53 + y,208,34,34 );
gfx.PutPixel( 25 + x,53 + y,208,34,34 );
gfx.PutPixel( 26 + x,53 + y,208,34,34 );
gfx.PutPixel( 27 + x,53 + y,208,34,34 );
gfx.PutPixel( 28 + x,53 + y,208,34,34 );
gfx.PutPixel( 29 + x,53 + y,208,34,34 );
gfx.PutPixel( 30 + x,53 + y,208,34,34 );
gfx.PutPixel( 31 + x,53 + y,208,34,34 );
gfx.PutPixel( 32 + x,53 + y,208,34,34 );
gfx.PutPixel( 33 + x,53 + y,208,34,34 );
gfx.PutPixel( 34 + x,53 + y,208,34,34 );
gfx.PutPixel( 35 + x,53 + y,208,34,34 );
gfx.PutPixel( 36 + x,53 + y,208,34,34 );
gfx.PutPixel( 37 + x,53 + y,208,34,34 );
gfx.PutPixel( 38 + x,53 + y,208,34,34 );
gfx.PutPixel( 39 + x,53 + y,208,34,34 );
gfx.PutPixel( 40 + x,53 + y,208,34,34 );
gfx.PutPixel( 41 + x,53 + y,208,34,34 );
gfx.PutPixel( 42 + x,53 + y,208,34,34 );
gfx.PutPixel( 43 + x,53 + y,208,34,34 );
gfx.PutPixel( 44 + x,53 + y,208,30,30 );
gfx.PutPixel( 45 + x,53 + y,209,47,47 );
gfx.PutPixel( 46 + x,53 + y,220,208,208 );
gfx.PutPixel( 47 + x,53 + y,221,225,225 );
gfx.PutPixel( 48 + x,53 + y,222,233,233 );
gfx.PutPixel( 49 + x,53 + y,215,128,128 );
gfx.PutPixel( 50 + x,53 + y,207,22,22 );
gfx.PutPixel( 51 + x,53 + y,208,33,33 );
gfx.PutPixel( 52 + x,53 + y,207,23,23 );
gfx.PutPixel( 53 + x,53 + y,214,123,123 );
gfx.PutPixel( 54 + x,53 + y,222,231,231 );
gfx.PutPixel( 55 + x,53 + y,221,222,222 );
gfx.PutPixel( 56 + x,53 + y,221,224,224 );
gfx.PutPixel( 57 + x,53 + y,221,227,227 );
gfx.PutPixel( 58 + x,53 + y,213,106,106 );
gfx.PutPixel( 59 + x,53 + y,207,22,22 );
gfx.PutPixel( 60 + x,53 + y,208,33,33 );
gfx.PutPixel( 61 + x,53 + y,208,34,34 );
gfx.PutPixel( 62 + x,53 + y,208,27,27 );
gfx.PutPixel( 63 + x,53 + y,218,173,173 );
gfx.PutPixel( 64 + x,53 + y,222,230,230 );
gfx.PutPixel( 65 + x,53 + y,221,221,221 );
gfx.PutPixel( 66 + x,53 + y,221,223,223 );
gfx.PutPixel( 67 + x,53 + y,221,228,228 );
gfx.PutPixel( 68 + x,53 + y,221,228,228 );
gfx.PutPixel( 69 + x,53 + y,221,228,228 );
gfx.PutPixel( 70 + x,53 + y,221,228,228 );
gfx.PutPixel( 71 + x,53 + y,221,228,228 );
gfx.PutPixel( 72 + x,53 + y,221,228,228 );
gfx.PutPixel( 73 + x,53 + y,223,239,239 );
gfx.PutPixel( 74 + x,53 + y,215,140,140 );
gfx.PutPixel( 75 + x,53 + y,207,23,23 );
gfx.PutPixel( 76 + x,53 + y,208,33,33 );
gfx.PutPixel( 77 + x,53 + y,208,27,27 );
gfx.PutPixel( 78 + x,53 + y,218,173,173 );
gfx.PutPixel( 79 + x,53 + y,222,230,230 );
gfx.PutPixel( 80 + x,53 + y,221,221,221 );
gfx.PutPixel( 81 + x,53 + y,221,223,223 );
gfx.PutPixel( 82 + x,53 + y,221,228,228 );
gfx.PutPixel( 83 + x,53 + y,221,228,228 );
gfx.PutPixel( 84 + x,53 + y,221,228,228 );
gfx.PutPixel( 85 + x,53 + y,221,228,228 );
gfx.PutPixel( 86 + x,53 + y,221,228,228 );
gfx.PutPixel( 87 + x,53 + y,221,228,228 );
gfx.PutPixel( 88 + x,53 + y,223,239,239 );
gfx.PutPixel( 89 + x,53 + y,215,140,140 );
gfx.PutPixel( 90 + x,53 + y,207,23,23 );
gfx.PutPixel( 91 + x,53 + y,208,30,30 );
gfx.PutPixel( 92 + x,53 + y,209,47,47 );
gfx.PutPixel( 93 + x,53 + y,220,208,208 );
gfx.PutPixel( 94 + x,53 + y,221,225,225 );
gfx.PutPixel( 95 + x,53 + y,221,222,222 );
gfx.PutPixel( 96 + x,53 + y,221,214,214 );
gfx.PutPixel( 97 + x,53 + y,220,207,207 );
gfx.PutPixel( 98 + x,53 + y,220,208,208 );
gfx.PutPixel( 99 + x,53 + y,220,214,214 );
gfx.PutPixel( 100 + x,53 + y,222,229,229 );
gfx.PutPixel( 101 + x,53 + y,221,224,224 );
gfx.PutPixel( 102 + x,53 + y,221,220,220 );
gfx.PutPixel( 103 + x,53 + y,221,228,228 );
gfx.PutPixel( 104 + x,53 + y,220,208,208 );
gfx.PutPixel( 105 + x,53 + y,209,50,50 );
gfx.PutPixel( 106 + x,53 + y,208,30,30 );
gfx.PutPixel( 107 + x,53 + y,208,34,34 );
gfx.PutPixel( 108 + x,53 + y,208,34,34 );
gfx.PutPixel( 109 + x,53 + y,208,34,34 );
gfx.PutPixel( 110 + x,53 + y,208,34,34 );
gfx.PutPixel( 111 + x,53 + y,208,34,34 );
gfx.PutPixel( 112 + x,53 + y,208,34,34 );
gfx.PutPixel( 113 + x,53 + y,208,34,34 );
gfx.PutPixel( 114 + x,53 + y,208,34,34 );
gfx.PutPixel( 115 + x,53 + y,208,34,34 );
gfx.PutPixel( 116 + x,53 + y,208,34,34 );
gfx.PutPixel( 117 + x,53 + y,208,34,34 );
gfx.PutPixel( 118 + x,53 + y,208,34,34 );
gfx.PutPixel( 119 + x,53 + y,208,34,34 );
gfx.PutPixel( 120 + x,53 + y,208,34,34 );
gfx.PutPixel( 121 + x,53 + y,208,34,34 );
gfx.PutPixel( 122 + x,53 + y,208,34,34 );
gfx.PutPixel( 123 + x,53 + y,208,34,34 );
gfx.PutPixel( 124 + x,53 + y,208,34,34 );
gfx.PutPixel( 125 + x,53 + y,208,34,34 );
gfx.PutPixel( 126 + x,53 + y,208,34,34 );
gfx.PutPixel( 127 + x,53 + y,208,34,34 );
gfx.PutPixel( 128 + x,53 + y,208,34,34 );
gfx.PutPixel( 129 + x,53 + y,208,34,34 );
gfx.PutPixel( 130 + x,53 + y,208,34,34 );
gfx.PutPixel( 131 + x,53 + y,208,34,34 );
gfx.PutPixel( 132 + x,53 + y,208,34,34 );
gfx.PutPixel( 133 + x,53 + y,208,34,34 );
gfx.PutPixel( 134 + x,53 + y,208,34,34 );
gfx.PutPixel( 135 + x,53 + y,208,34,34 );
gfx.PutPixel( 136 + x,53 + y,208,34,34 );
gfx.PutPixel( 137 + x,53 + y,208,34,34 );
gfx.PutPixel( 138 + x,53 + y,208,34,34 );
gfx.PutPixel( 139 + x,53 + y,208,34,34 );
gfx.PutPixel( 140 + x,53 + y,208,34,34 );
gfx.PutPixel( 141 + x,53 + y,208,34,34 );
gfx.PutPixel( 142 + x,53 + y,208,34,34 );
gfx.PutPixel( 143 + x,53 + y,208,34,34 );
gfx.PutPixel( 144 + x,53 + y,208,34,34 );
gfx.PutPixel( 145 + x,53 + y,208,34,34 );
gfx.PutPixel( 146 + x,53 + y,208,34,34 );
gfx.PutPixel( 147 + x,53 + y,208,34,34 );
gfx.PutPixel( 148 + x,53 + y,208,34,34 );
gfx.PutPixel( 149 + x,53 + y,208,34,34 );
gfx.PutPixel( 0 + x,54 + y,208,34,34 );
gfx.PutPixel( 1 + x,54 + y,208,34,34 );
gfx.PutPixel( 2 + x,54 + y,208,34,34 );
gfx.PutPixel( 3 + x,54 + y,208,34,34 );
gfx.PutPixel( 4 + x,54 + y,208,34,34 );
gfx.PutPixel( 5 + x,54 + y,208,34,34 );
gfx.PutPixel( 6 + x,54 + y,208,34,34 );
gfx.PutPixel( 7 + x,54 + y,208,34,34 );
gfx.PutPixel( 8 + x,54 + y,208,34,34 );
gfx.PutPixel( 9 + x,54 + y,208,34,34 );
gfx.PutPixel( 10 + x,54 + y,208,34,34 );
gfx.PutPixel( 11 + x,54 + y,208,34,34 );
gfx.PutPixel( 12 + x,54 + y,208,34,34 );
gfx.PutPixel( 13 + x,54 + y,208,34,34 );
gfx.PutPixel( 14 + x,54 + y,208,34,34 );
gfx.PutPixel( 15 + x,54 + y,208,34,34 );
gfx.PutPixel( 16 + x,54 + y,208,34,34 );
gfx.PutPixel( 17 + x,54 + y,208,34,34 );
gfx.PutPixel( 18 + x,54 + y,208,34,34 );
gfx.PutPixel( 19 + x,54 + y,208,34,34 );
gfx.PutPixel( 20 + x,54 + y,208,34,34 );
gfx.PutPixel( 21 + x,54 + y,208,34,34 );
gfx.PutPixel( 22 + x,54 + y,208,34,34 );
gfx.PutPixel( 23 + x,54 + y,208,34,34 );
gfx.PutPixel( 24 + x,54 + y,208,34,34 );
gfx.PutPixel( 25 + x,54 + y,208,34,34 );
gfx.PutPixel( 26 + x,54 + y,208,34,34 );
gfx.PutPixel( 27 + x,54 + y,208,34,34 );
gfx.PutPixel( 28 + x,54 + y,208,34,34 );
gfx.PutPixel( 29 + x,54 + y,208,34,34 );
gfx.PutPixel( 30 + x,54 + y,208,34,34 );
gfx.PutPixel( 31 + x,54 + y,208,34,34 );
gfx.PutPixel( 32 + x,54 + y,208,34,34 );
gfx.PutPixel( 33 + x,54 + y,208,34,34 );
gfx.PutPixel( 34 + x,54 + y,208,34,34 );
gfx.PutPixel( 35 + x,54 + y,208,34,34 );
gfx.PutPixel( 36 + x,54 + y,208,34,34 );
gfx.PutPixel( 37 + x,54 + y,208,34,34 );
gfx.PutPixel( 38 + x,54 + y,208,34,34 );
gfx.PutPixel( 39 + x,54 + y,208,34,34 );
gfx.PutPixel( 40 + x,54 + y,208,34,34 );
gfx.PutPixel( 41 + x,54 + y,208,34,34 );
gfx.PutPixel( 42 + x,54 + y,208,34,34 );
gfx.PutPixel( 43 + x,54 + y,208,34,34 );
gfx.PutPixel( 44 + x,54 + y,208,30,30 );
gfx.PutPixel( 45 + x,54 + y,209,47,47 );
gfx.PutPixel( 46 + x,54 + y,220,208,208 );
gfx.PutPixel( 47 + x,54 + y,221,225,225 );
gfx.PutPixel( 48 + x,54 + y,222,233,233 );
gfx.PutPixel( 49 + x,54 + y,215,128,128 );
gfx.PutPixel( 50 + x,54 + y,207,21,21 );
gfx.PutPixel( 51 + x,54 + y,207,22,22 );
gfx.PutPixel( 52 + x,54 + y,213,113,113 );
gfx.PutPixel( 53 + x,54 + y,222,229,229 );
gfx.PutPixel( 54 + x,54 + y,221,223,223 );
gfx.PutPixel( 55 + x,54 + y,221,223,223 );
gfx.PutPixel( 56 + x,54 + y,221,229,229 );
gfx.PutPixel( 57 + x,54 + y,213,112,112 );
gfx.PutPixel( 58 + x,54 + y,207,22,22 );
gfx.PutPixel( 59 + x,54 + y,208,33,33 );
gfx.PutPixel( 60 + x,54 + y,208,34,34 );
gfx.PutPixel( 61 + x,54 + y,208,34,34 );
gfx.PutPixel( 62 + x,54 + y,208,27,27 );
gfx.PutPixel( 63 + x,54 + y,218,173,173 );
gfx.PutPixel( 64 + x,54 + y,222,230,230 );
gfx.PutPixel( 65 + x,54 + y,222,228,228 );
gfx.PutPixel( 66 + x,54 + y,219,185,185 );
gfx.PutPixel( 67 + x,54 + y,211,77,77 );
gfx.PutPixel( 68 + x,54 + y,211,82,82 );
gfx.PutPixel( 69 + x,54 + y,211,82,82 );
gfx.PutPixel( 70 + x,54 + y,211,82,82 );
gfx.PutPixel( 71 + x,54 + y,211,82,82 );
gfx.PutPixel( 72 + x,54 + y,211,82,82 );
gfx.PutPixel( 73 + x,54 + y,212,85,85 );
gfx.PutPixel( 74 + x,54 + y,210,60,60 );
gfx.PutPixel( 75 + x,54 + y,208,31,31 );
gfx.PutPixel( 76 + x,54 + y,208,34,34 );
gfx.PutPixel( 77 + x,54 + y,208,27,27 );
gfx.PutPixel( 78 + x,54 + y,218,173,173 );
gfx.PutPixel( 79 + x,54 + y,222,230,230 );
gfx.PutPixel( 80 + x,54 + y,222,228,228 );
gfx.PutPixel( 81 + x,54 + y,219,185,185 );
gfx.PutPixel( 82 + x,54 + y,211,77,77 );
gfx.PutPixel( 83 + x,54 + y,211,82,82 );
gfx.PutPixel( 84 + x,54 + y,211,82,82 );
gfx.PutPixel( 85 + x,54 + y,211,82,82 );
gfx.PutPixel( 86 + x,54 + y,211,82,82 );
gfx.PutPixel( 87 + x,54 + y,211,82,82 );
gfx.PutPixel( 88 + x,54 + y,212,85,85 );
gfx.PutPixel( 89 + x,54 + y,210,60,60 );
gfx.PutPixel( 90 + x,54 + y,208,31,31 );
gfx.PutPixel( 91 + x,54 + y,208,30,30 );
gfx.PutPixel( 92 + x,54 + y,209,47,47 );
gfx.PutPixel( 93 + x,54 + y,220,208,208 );
gfx.PutPixel( 94 + x,54 + y,221,225,225 );
gfx.PutPixel( 95 + x,54 + y,222,232,232 );
gfx.PutPixel( 96 + x,54 + y,215,134,134 );
gfx.PutPixel( 97 + x,54 + y,208,36,36 );
gfx.PutPixel( 98 + x,54 + y,209,48,48 );
gfx.PutPixel( 99 + x,54 + y,209,55,55 );
gfx.PutPixel( 100 + x,54 + y,213,110,110 );
gfx.PutPixel( 101 + x,54 + y,221,214,214 );
gfx.PutPixel( 102 + x,54 + y,221,223,223 );
gfx.PutPixel( 103 + x,54 + y,221,221,221 );
gfx.PutPixel( 104 + x,54 + y,222,232,232 );
gfx.PutPixel( 105 + x,54 + y,213,100,100 );
gfx.PutPixel( 106 + x,54 + y,207,24,24 );
gfx.PutPixel( 107 + x,54 + y,208,34,34 );
gfx.PutPixel( 108 + x,54 + y,208,34,34 );
gfx.PutPixel( 109 + x,54 + y,208,34,34 );
gfx.PutPixel( 110 + x,54 + y,208,34,34 );
gfx.PutPixel( 111 + x,54 + y,208,34,34 );
gfx.PutPixel( 112 + x,54 + y,208,34,34 );
gfx.PutPixel( 113 + x,54 + y,208,34,34 );
gfx.PutPixel( 114 + x,54 + y,208,34,34 );
gfx.PutPixel( 115 + x,54 + y,208,34,34 );
gfx.PutPixel( 116 + x,54 + y,208,34,34 );
gfx.PutPixel( 117 + x,54 + y,208,34,34 );
gfx.PutPixel( 118 + x,54 + y,208,34,34 );
gfx.PutPixel( 119 + x,54 + y,208,34,34 );
gfx.PutPixel( 120 + x,54 + y,208,34,34 );
gfx.PutPixel( 121 + x,54 + y,208,34,34 );
gfx.PutPixel( 122 + x,54 + y,208,34,34 );
gfx.PutPixel( 123 + x,54 + y,208,34,34 );
gfx.PutPixel( 124 + x,54 + y,208,34,34 );
gfx.PutPixel( 125 + x,54 + y,208,34,34 );
gfx.PutPixel( 126 + x,54 + y,208,34,34 );
gfx.PutPixel( 127 + x,54 + y,208,34,34 );
gfx.PutPixel( 128 + x,54 + y,208,34,34 );
gfx.PutPixel( 129 + x,54 + y,208,34,34 );
gfx.PutPixel( 130 + x,54 + y,208,34,34 );
gfx.PutPixel( 131 + x,54 + y,208,34,34 );
gfx.PutPixel( 132 + x,54 + y,208,34,34 );
gfx.PutPixel( 133 + x,54 + y,208,34,34 );
gfx.PutPixel( 134 + x,54 + y,208,34,34 );
gfx.PutPixel( 135 + x,54 + y,208,34,34 );
gfx.PutPixel( 136 + x,54 + y,208,34,34 );
gfx.PutPixel( 137 + x,54 + y,208,34,34 );
gfx.PutPixel( 138 + x,54 + y,208,34,34 );
gfx.PutPixel( 139 + x,54 + y,208,34,34 );
gfx.PutPixel( 140 + x,54 + y,208,34,34 );
gfx.PutPixel( 141 + x,54 + y,208,34,34 );
gfx.PutPixel( 142 + x,54 + y,208,34,34 );
gfx.PutPixel( 143 + x,54 + y,208,34,34 );
gfx.PutPixel( 144 + x,54 + y,208,34,34 );
gfx.PutPixel( 145 + x,54 + y,208,34,34 );
gfx.PutPixel( 146 + x,54 + y,208,34,34 );
gfx.PutPixel( 147 + x,54 + y,208,34,34 );
gfx.PutPixel( 148 + x,54 + y,208,34,34 );
gfx.PutPixel( 149 + x,54 + y,208,34,34 );
gfx.PutPixel( 0 + x,55 + y,208,34,34 );
gfx.PutPixel( 1 + x,55 + y,208,34,34 );
gfx.PutPixel( 2 + x,55 + y,208,34,34 );
gfx.PutPixel( 3 + x,55 + y,208,34,34 );
gfx.PutPixel( 4 + x,55 + y,208,34,34 );
gfx.PutPixel( 5 + x,55 + y,208,34,34 );
gfx.PutPixel( 6 + x,55 + y,208,34,34 );
gfx.PutPixel( 7 + x,55 + y,208,34,34 );
gfx.PutPixel( 8 + x,55 + y,208,34,34 );
gfx.PutPixel( 9 + x,55 + y,208,34,34 );
gfx.PutPixel( 10 + x,55 + y,208,34,34 );
gfx.PutPixel( 11 + x,55 + y,208,34,34 );
gfx.PutPixel( 12 + x,55 + y,208,34,34 );
gfx.PutPixel( 13 + x,55 + y,208,34,34 );
gfx.PutPixel( 14 + x,55 + y,208,34,34 );
gfx.PutPixel( 15 + x,55 + y,208,34,34 );
gfx.PutPixel( 16 + x,55 + y,208,34,34 );
gfx.PutPixel( 17 + x,55 + y,208,34,34 );
gfx.PutPixel( 18 + x,55 + y,208,34,34 );
gfx.PutPixel( 19 + x,55 + y,208,34,34 );
gfx.PutPixel( 20 + x,55 + y,208,34,34 );
gfx.PutPixel( 21 + x,55 + y,208,34,34 );
gfx.PutPixel( 22 + x,55 + y,208,34,34 );
gfx.PutPixel( 23 + x,55 + y,208,34,34 );
gfx.PutPixel( 24 + x,55 + y,208,34,34 );
gfx.PutPixel( 25 + x,55 + y,208,34,34 );
gfx.PutPixel( 26 + x,55 + y,208,34,34 );
gfx.PutPixel( 27 + x,55 + y,208,34,34 );
gfx.PutPixel( 28 + x,55 + y,208,34,34 );
gfx.PutPixel( 29 + x,55 + y,208,34,34 );
gfx.PutPixel( 30 + x,55 + y,208,34,34 );
gfx.PutPixel( 31 + x,55 + y,208,34,34 );
gfx.PutPixel( 32 + x,55 + y,208,34,34 );
gfx.PutPixel( 33 + x,55 + y,208,34,34 );
gfx.PutPixel( 34 + x,55 + y,208,34,34 );
gfx.PutPixel( 35 + x,55 + y,208,34,34 );
gfx.PutPixel( 36 + x,55 + y,208,34,34 );
gfx.PutPixel( 37 + x,55 + y,208,34,34 );
gfx.PutPixel( 38 + x,55 + y,208,34,34 );
gfx.PutPixel( 39 + x,55 + y,208,34,34 );
gfx.PutPixel( 40 + x,55 + y,208,34,34 );
gfx.PutPixel( 41 + x,55 + y,208,34,34 );
gfx.PutPixel( 42 + x,55 + y,208,34,34 );
gfx.PutPixel( 43 + x,55 + y,208,34,34 );
gfx.PutPixel( 44 + x,55 + y,208,30,30 );
gfx.PutPixel( 45 + x,55 + y,209,47,47 );
gfx.PutPixel( 46 + x,55 + y,220,208,208 );
gfx.PutPixel( 47 + x,55 + y,221,225,225 );
gfx.PutPixel( 48 + x,55 + y,222,233,233 );
gfx.PutPixel( 49 + x,55 + y,215,127,127 );
gfx.PutPixel( 50 + x,55 + y,206,9,9 );
gfx.PutPixel( 51 + x,55 + y,213,102,102 );
gfx.PutPixel( 52 + x,55 + y,221,227,227 );
gfx.PutPixel( 53 + x,55 + y,221,224,224 );
gfx.PutPixel( 54 + x,55 + y,221,223,223 );
gfx.PutPixel( 55 + x,55 + y,222,230,230 );
gfx.PutPixel( 56 + x,55 + y,214,119,119 );
gfx.PutPixel( 57 + x,55 + y,207,22,22 );
gfx.PutPixel( 58 + x,55 + y,208,33,33 );
gfx.PutPixel( 59 + x,55 + y,208,34,34 );
gfx.PutPixel( 60 + x,55 + y,208,34,34 );
gfx.PutPixel( 61 + x,55 + y,208,34,34 );
gfx.PutPixel( 62 + x,55 + y,208,27,27 );
gfx.PutPixel( 63 + x,55 + y,218,173,173 );
gfx.PutPixel( 64 + x,55 + y,222,230,230 );
gfx.PutPixel( 65 + x,55 + y,222,230,230 );
gfx.PutPixel( 66 + x,55 + y,218,171,171 );
gfx.PutPixel( 67 + x,55 + y,207,17,17 );
gfx.PutPixel( 68 + x,55 + y,207,25,25 );
gfx.PutPixel( 69 + x,55 + y,207,25,25 );
gfx.PutPixel( 70 + x,55 + y,207,25,25 );
gfx.PutPixel( 71 + x,55 + y,207,25,25 );
gfx.PutPixel( 72 + x,55 + y,207,25,25 );
gfx.PutPixel( 73 + x,55 + y,207,24,24 );
gfx.PutPixel( 74 + x,55 + y,208,29,29 );
gfx.PutPixel( 75 + x,55 + y,208,35,35 );
gfx.PutPixel( 76 + x,55 + y,208,34,34 );
gfx.PutPixel( 77 + x,55 + y,208,27,27 );
gfx.PutPixel( 78 + x,55 + y,218,173,173 );
gfx.PutPixel( 79 + x,55 + y,222,230,230 );
gfx.PutPixel( 80 + x,55 + y,222,230,230 );
gfx.PutPixel( 81 + x,55 + y,218,171,171 );
gfx.PutPixel( 82 + x,55 + y,207,17,17 );
gfx.PutPixel( 83 + x,55 + y,207,25,25 );
gfx.PutPixel( 84 + x,55 + y,207,25,25 );
gfx.PutPixel( 85 + x,55 + y,207,25,25 );
gfx.PutPixel( 86 + x,55 + y,207,25,25 );
gfx.PutPixel( 87 + x,55 + y,207,25,25 );
gfx.PutPixel( 88 + x,55 + y,207,24,24 );
gfx.PutPixel( 89 + x,55 + y,208,29,29 );
gfx.PutPixel( 90 + x,55 + y,208,35,35 );
gfx.PutPixel( 91 + x,55 + y,208,30,30 );
gfx.PutPixel( 92 + x,55 + y,209,47,47 );
gfx.PutPixel( 93 + x,55 + y,220,208,208 );
gfx.PutPixel( 94 + x,55 + y,221,225,225 );
gfx.PutPixel( 95 + x,55 + y,222,233,233 );
gfx.PutPixel( 96 + x,55 + y,215,126,126 );
gfx.PutPixel( 97 + x,55 + y,207,18,18 );
gfx.PutPixel( 98 + x,55 + y,208,30,30 );
gfx.PutPixel( 99 + x,55 + y,208,29,29 );
gfx.PutPixel( 100 + x,55 + y,206,15,15 );
gfx.PutPixel( 101 + x,55 + y,215,140,140 );
gfx.PutPixel( 102 + x,55 + y,222,232,232 );
gfx.PutPixel( 103 + x,55 + y,221,221,221 );
gfx.PutPixel( 104 + x,55 + y,222,233,233 );
gfx.PutPixel( 105 + x,55 + y,214,125,125 );
gfx.PutPixel( 106 + x,55 + y,207,22,22 );
gfx.PutPixel( 107 + x,55 + y,208,34,34 );
gfx.PutPixel( 108 + x,55 + y,208,34,34 );
gfx.PutPixel( 109 + x,55 + y,208,34,34 );
gfx.PutPixel( 110 + x,55 + y,208,34,34 );
gfx.PutPixel( 111 + x,55 + y,208,34,34 );
gfx.PutPixel( 112 + x,55 + y,208,34,34 );
gfx.PutPixel( 113 + x,55 + y,208,34,34 );
gfx.PutPixel( 114 + x,55 + y,208,34,34 );
gfx.PutPixel( 115 + x,55 + y,208,34,34 );
gfx.PutPixel( 116 + x,55 + y,208,34,34 );
gfx.PutPixel( 117 + x,55 + y,208,34,34 );
gfx.PutPixel( 118 + x,55 + y,208,34,34 );
gfx.PutPixel( 119 + x,55 + y,208,34,34 );
gfx.PutPixel( 120 + x,55 + y,208,34,34 );
gfx.PutPixel( 121 + x,55 + y,208,34,34 );
gfx.PutPixel( 122 + x,55 + y,208,34,34 );
gfx.PutPixel( 123 + x,55 + y,208,34,34 );
gfx.PutPixel( 124 + x,55 + y,208,34,34 );
gfx.PutPixel( 125 + x,55 + y,208,34,34 );
gfx.PutPixel( 126 + x,55 + y,208,34,34 );
gfx.PutPixel( 127 + x,55 + y,208,34,34 );
gfx.PutPixel( 128 + x,55 + y,208,34,34 );
gfx.PutPixel( 129 + x,55 + y,208,34,34 );
gfx.PutPixel( 130 + x,55 + y,208,34,34 );
gfx.PutPixel( 131 + x,55 + y,208,34,34 );
gfx.PutPixel( 132 + x,55 + y,208,34,34 );
gfx.PutPixel( 133 + x,55 + y,208,34,34 );
gfx.PutPixel( 134 + x,55 + y,208,34,34 );
gfx.PutPixel( 135 + x,55 + y,208,34,34 );
gfx.PutPixel( 136 + x,55 + y,208,34,34 );
gfx.PutPixel( 137 + x,55 + y,208,34,34 );
gfx.PutPixel( 138 + x,55 + y,208,34,34 );
gfx.PutPixel( 139 + x,55 + y,208,34,34 );
gfx.PutPixel( 140 + x,55 + y,208,34,34 );
gfx.PutPixel( 141 + x,55 + y,208,34,34 );
gfx.PutPixel( 142 + x,55 + y,208,34,34 );
gfx.PutPixel( 143 + x,55 + y,208,34,34 );
gfx.PutPixel( 144 + x,55 + y,208,34,34 );
gfx.PutPixel( 145 + x,55 + y,208,34,34 );
gfx.PutPixel( 146 + x,55 + y,208,34,34 );
gfx.PutPixel( 147 + x,55 + y,208,34,34 );
gfx.PutPixel( 148 + x,55 + y,208,34,34 );
gfx.PutPixel( 149 + x,55 + y,208,34,34 );
gfx.PutPixel( 0 + x,56 + y,208,34,34 );
gfx.PutPixel( 1 + x,56 + y,208,34,34 );
gfx.PutPixel( 2 + x,56 + y,208,34,34 );
gfx.PutPixel( 3 + x,56 + y,208,34,34 );
gfx.PutPixel( 4 + x,56 + y,208,34,34 );
gfx.PutPixel( 5 + x,56 + y,208,34,34 );
gfx.PutPixel( 6 + x,56 + y,208,34,34 );
gfx.PutPixel( 7 + x,56 + y,208,34,34 );
gfx.PutPixel( 8 + x,56 + y,208,34,34 );
gfx.PutPixel( 9 + x,56 + y,208,34,34 );
gfx.PutPixel( 10 + x,56 + y,208,34,34 );
gfx.PutPixel( 11 + x,56 + y,208,34,34 );
gfx.PutPixel( 12 + x,56 + y,208,34,34 );
gfx.PutPixel( 13 + x,56 + y,208,34,34 );
gfx.PutPixel( 14 + x,56 + y,208,34,34 );
gfx.PutPixel( 15 + x,56 + y,208,34,34 );
gfx.PutPixel( 16 + x,56 + y,208,34,34 );
gfx.PutPixel( 17 + x,56 + y,208,34,34 );
gfx.PutPixel( 18 + x,56 + y,208,34,34 );
gfx.PutPixel( 19 + x,56 + y,208,34,34 );
gfx.PutPixel( 20 + x,56 + y,208,34,34 );
gfx.PutPixel( 21 + x,56 + y,208,34,34 );
gfx.PutPixel( 22 + x,56 + y,208,34,34 );
gfx.PutPixel( 23 + x,56 + y,208,34,34 );
gfx.PutPixel( 24 + x,56 + y,208,34,34 );
gfx.PutPixel( 25 + x,56 + y,208,34,34 );
gfx.PutPixel( 26 + x,56 + y,208,34,34 );
gfx.PutPixel( 27 + x,56 + y,208,34,34 );
gfx.PutPixel( 28 + x,56 + y,208,34,34 );
gfx.PutPixel( 29 + x,56 + y,208,34,34 );
gfx.PutPixel( 30 + x,56 + y,208,34,34 );
gfx.PutPixel( 31 + x,56 + y,208,34,34 );
gfx.PutPixel( 32 + x,56 + y,208,34,34 );
gfx.PutPixel( 33 + x,56 + y,208,34,34 );
gfx.PutPixel( 34 + x,56 + y,208,34,34 );
gfx.PutPixel( 35 + x,56 + y,208,34,34 );
gfx.PutPixel( 36 + x,56 + y,208,34,34 );
gfx.PutPixel( 37 + x,56 + y,208,34,34 );
gfx.PutPixel( 38 + x,56 + y,208,34,34 );
gfx.PutPixel( 39 + x,56 + y,208,34,34 );
gfx.PutPixel( 40 + x,56 + y,208,34,34 );
gfx.PutPixel( 41 + x,56 + y,208,34,34 );
gfx.PutPixel( 42 + x,56 + y,208,34,34 );
gfx.PutPixel( 43 + x,56 + y,208,34,34 );
gfx.PutPixel( 44 + x,56 + y,208,30,30 );
gfx.PutPixel( 45 + x,56 + y,209,47,47 );
gfx.PutPixel( 46 + x,56 + y,220,208,208 );
gfx.PutPixel( 47 + x,56 + y,221,225,225 );
gfx.PutPixel( 48 + x,56 + y,222,233,233 );
gfx.PutPixel( 49 + x,56 + y,214,117,117 );
gfx.PutPixel( 50 + x,56 + y,211,80,80 );
gfx.PutPixel( 51 + x,56 + y,221,223,223 );
gfx.PutPixel( 52 + x,56 + y,221,225,225 );
gfx.PutPixel( 53 + x,56 + y,221,222,222 );
gfx.PutPixel( 54 + x,56 + y,222,231,231 );
gfx.PutPixel( 55 + x,56 + y,214,126,126 );
gfx.PutPixel( 56 + x,56 + y,207,23,23 );
gfx.PutPixel( 57 + x,56 + y,208,33,33 );
gfx.PutPixel( 58 + x,56 + y,208,34,34 );
gfx.PutPixel( 59 + x,56 + y,208,34,34 );
gfx.PutPixel( 60 + x,56 + y,208,34,34 );
gfx.PutPixel( 61 + x,56 + y,208,34,34 );
gfx.PutPixel( 62 + x,56 + y,208,27,27 );
gfx.PutPixel( 63 + x,56 + y,218,173,173 );
gfx.PutPixel( 64 + x,56 + y,222,230,230 );
gfx.PutPixel( 65 + x,56 + y,222,230,230 );
gfx.PutPixel( 66 + x,56 + y,218,171,171 );
gfx.PutPixel( 67 + x,56 + y,208,20,20 );
gfx.PutPixel( 68 + x,56 + y,208,27,27 );
gfx.PutPixel( 69 + x,56 + y,208,27,27 );
gfx.PutPixel( 70 + x,56 + y,208,27,27 );
gfx.PutPixel( 71 + x,56 + y,208,27,27 );
gfx.PutPixel( 72 + x,56 + y,208,27,27 );
gfx.PutPixel( 73 + x,56 + y,208,27,27 );
gfx.PutPixel( 74 + x,56 + y,208,33,33 );
gfx.PutPixel( 75 + x,56 + y,208,34,34 );
gfx.PutPixel( 76 + x,56 + y,208,34,34 );
gfx.PutPixel( 77 + x,56 + y,208,27,27 );
gfx.PutPixel( 78 + x,56 + y,218,173,173 );
gfx.PutPixel( 79 + x,56 + y,222,230,230 );
gfx.PutPixel( 80 + x,56 + y,222,230,230 );
gfx.PutPixel( 81 + x,56 + y,218,171,171 );
gfx.PutPixel( 82 + x,56 + y,208,20,20 );
gfx.PutPixel( 83 + x,56 + y,208,27,27 );
gfx.PutPixel( 84 + x,56 + y,208,27,27 );
gfx.PutPixel( 85 + x,56 + y,208,27,27 );
gfx.PutPixel( 86 + x,56 + y,208,27,27 );
gfx.PutPixel( 87 + x,56 + y,208,27,27 );
gfx.PutPixel( 88 + x,56 + y,208,27,27 );
gfx.PutPixel( 89 + x,56 + y,208,33,33 );
gfx.PutPixel( 90 + x,56 + y,208,34,34 );
gfx.PutPixel( 91 + x,56 + y,208,30,30 );
gfx.PutPixel( 92 + x,56 + y,209,47,47 );
gfx.PutPixel( 93 + x,56 + y,220,208,208 );
gfx.PutPixel( 94 + x,56 + y,221,225,225 );
gfx.PutPixel( 95 + x,56 + y,222,233,233 );
gfx.PutPixel( 96 + x,56 + y,215,126,126 );
gfx.PutPixel( 97 + x,56 + y,207,18,18 );
gfx.PutPixel( 98 + x,56 + y,208,31,31 );
gfx.PutPixel( 99 + x,56 + y,208,29,29 );
gfx.PutPixel( 100 + x,56 + y,206,15,15 );
gfx.PutPixel( 101 + x,56 + y,216,141,141 );
gfx.PutPixel( 102 + x,56 + y,222,233,233 );
gfx.PutPixel( 103 + x,56 + y,221,221,221 );
gfx.PutPixel( 104 + x,56 + y,222,233,233 );
gfx.PutPixel( 105 + x,56 + y,214,125,125 );
gfx.PutPixel( 106 + x,56 + y,207,22,22 );
gfx.PutPixel( 107 + x,56 + y,208,34,34 );
gfx.PutPixel( 108 + x,56 + y,208,34,34 );
gfx.PutPixel( 109 + x,56 + y,208,34,34 );
gfx.PutPixel( 110 + x,56 + y,208,34,34 );
gfx.PutPixel( 111 + x,56 + y,208,34,34 );
gfx.PutPixel( 112 + x,56 + y,208,34,34 );
gfx.PutPixel( 113 + x,56 + y,208,34,34 );
gfx.PutPixel( 114 + x,56 + y,208,34,34 );
gfx.PutPixel( 115 + x,56 + y,208,34,34 );
gfx.PutPixel( 116 + x,56 + y,208,34,34 );
gfx.PutPixel( 117 + x,56 + y,208,34,34 );
gfx.PutPixel( 118 + x,56 + y,208,34,34 );
gfx.PutPixel( 119 + x,56 + y,208,34,34 );
gfx.PutPixel( 120 + x,56 + y,208,34,34 );
gfx.PutPixel( 121 + x,56 + y,208,34,34 );
gfx.PutPixel( 122 + x,56 + y,208,34,34 );
gfx.PutPixel( 123 + x,56 + y,208,34,34 );
gfx.PutPixel( 124 + x,56 + y,208,34,34 );
gfx.PutPixel( 125 + x,56 + y,208,34,34 );
gfx.PutPixel( 126 + x,56 + y,208,34,34 );
gfx.PutPixel( 127 + x,56 + y,208,34,34 );
gfx.PutPixel( 128 + x,56 + y,208,34,34 );
gfx.PutPixel( 129 + x,56 + y,208,34,34 );
gfx.PutPixel( 130 + x,56 + y,208,34,34 );
gfx.PutPixel( 131 + x,56 + y,208,34,34 );
gfx.PutPixel( 132 + x,56 + y,208,34,34 );
gfx.PutPixel( 133 + x,56 + y,208,34,34 );
gfx.PutPixel( 134 + x,56 + y,208,34,34 );
gfx.PutPixel( 135 + x,56 + y,208,34,34 );
gfx.PutPixel( 136 + x,56 + y,208,34,34 );
gfx.PutPixel( 137 + x,56 + y,208,34,34 );
gfx.PutPixel( 138 + x,56 + y,208,34,34 );
gfx.PutPixel( 139 + x,56 + y,208,34,34 );
gfx.PutPixel( 140 + x,56 + y,208,34,34 );
gfx.PutPixel( 141 + x,56 + y,208,34,34 );
gfx.PutPixel( 142 + x,56 + y,208,34,34 );
gfx.PutPixel( 143 + x,56 + y,208,34,34 );
gfx.PutPixel( 144 + x,56 + y,208,34,34 );
gfx.PutPixel( 145 + x,56 + y,208,34,34 );
gfx.PutPixel( 146 + x,56 + y,208,34,34 );
gfx.PutPixel( 147 + x,56 + y,208,34,34 );
gfx.PutPixel( 148 + x,56 + y,208,34,34 );
gfx.PutPixel( 149 + x,56 + y,208,34,34 );
gfx.PutPixel( 0 + x,57 + y,208,34,34 );
gfx.PutPixel( 1 + x,57 + y,208,34,34 );
gfx.PutPixel( 2 + x,57 + y,208,34,34 );
gfx.PutPixel( 3 + x,57 + y,208,34,34 );
gfx.PutPixel( 4 + x,57 + y,208,34,34 );
gfx.PutPixel( 5 + x,57 + y,208,34,34 );
gfx.PutPixel( 6 + x,57 + y,208,34,34 );
gfx.PutPixel( 7 + x,57 + y,208,34,34 );
gfx.PutPixel( 8 + x,57 + y,208,34,34 );
gfx.PutPixel( 9 + x,57 + y,208,34,34 );
gfx.PutPixel( 10 + x,57 + y,208,34,34 );
gfx.PutPixel( 11 + x,57 + y,208,34,34 );
gfx.PutPixel( 12 + x,57 + y,208,34,34 );
gfx.PutPixel( 13 + x,57 + y,208,34,34 );
gfx.PutPixel( 14 + x,57 + y,208,34,34 );
gfx.PutPixel( 15 + x,57 + y,208,34,34 );
gfx.PutPixel( 16 + x,57 + y,208,34,34 );
gfx.PutPixel( 17 + x,57 + y,208,34,34 );
gfx.PutPixel( 18 + x,57 + y,208,34,34 );
gfx.PutPixel( 19 + x,57 + y,208,34,34 );
gfx.PutPixel( 20 + x,57 + y,208,34,34 );
gfx.PutPixel( 21 + x,57 + y,208,34,34 );
gfx.PutPixel( 22 + x,57 + y,208,34,34 );
gfx.PutPixel( 23 + x,57 + y,208,34,34 );
gfx.PutPixel( 24 + x,57 + y,208,34,34 );
gfx.PutPixel( 25 + x,57 + y,208,34,34 );
gfx.PutPixel( 26 + x,57 + y,208,34,34 );
gfx.PutPixel( 27 + x,57 + y,208,34,34 );
gfx.PutPixel( 28 + x,57 + y,208,34,34 );
gfx.PutPixel( 29 + x,57 + y,208,34,34 );
gfx.PutPixel( 30 + x,57 + y,208,34,34 );
gfx.PutPixel( 31 + x,57 + y,208,34,34 );
gfx.PutPixel( 32 + x,57 + y,208,34,34 );
gfx.PutPixel( 33 + x,57 + y,208,34,34 );
gfx.PutPixel( 34 + x,57 + y,208,34,34 );
gfx.PutPixel( 35 + x,57 + y,208,34,34 );
gfx.PutPixel( 36 + x,57 + y,208,34,34 );
gfx.PutPixel( 37 + x,57 + y,208,34,34 );
gfx.PutPixel( 38 + x,57 + y,208,34,34 );
gfx.PutPixel( 39 + x,57 + y,208,34,34 );
gfx.PutPixel( 40 + x,57 + y,208,34,34 );
gfx.PutPixel( 41 + x,57 + y,208,34,34 );
gfx.PutPixel( 42 + x,57 + y,208,34,34 );
gfx.PutPixel( 43 + x,57 + y,208,34,34 );
gfx.PutPixel( 44 + x,57 + y,208,30,30 );
gfx.PutPixel( 45 + x,57 + y,209,47,47 );
gfx.PutPixel( 46 + x,57 + y,220,208,208 );
gfx.PutPixel( 47 + x,57 + y,221,225,225 );
gfx.PutPixel( 48 + x,57 + y,221,226,226 );
gfx.PutPixel( 49 + x,57 + y,218,172,172 );
gfx.PutPixel( 50 + x,57 + y,220,207,207 );
gfx.PutPixel( 51 + x,57 + y,221,226,226 );
gfx.PutPixel( 52 + x,57 + y,221,221,221 );
gfx.PutPixel( 53 + x,57 + y,222,227,227 );
gfx.PutPixel( 54 + x,57 + y,215,133,133 );
gfx.PutPixel( 55 + x,57 + y,207,24,24 );
gfx.PutPixel( 56 + x,57 + y,208,32,32 );
gfx.PutPixel( 57 + x,57 + y,208,34,34 );
gfx.PutPixel( 58 + x,57 + y,208,34,34 );
gfx.PutPixel( 59 + x,57 + y,208,34,34 );
gfx.PutPixel( 60 + x,57 + y,208,34,34 );
gfx.PutPixel( 61 + x,57 + y,208,34,34 );
gfx.PutPixel( 62 + x,57 + y,208,27,27 );
gfx.PutPixel( 63 + x,57 + y,218,173,173 );
gfx.PutPixel( 64 + x,57 + y,222,230,230 );
gfx.PutPixel( 65 + x,57 + y,221,223,223 );
gfx.PutPixel( 66 + x,57 + y,220,209,209 );
gfx.PutPixel( 67 + x,57 + y,218,171,171 );
gfx.PutPixel( 68 + x,57 + y,218,173,173 );
gfx.PutPixel( 69 + x,57 + y,218,173,173 );
gfx.PutPixel( 70 + x,57 + y,218,173,173 );
gfx.PutPixel( 71 + x,57 + y,218,173,173 );
gfx.PutPixel( 72 + x,57 + y,218,174,174 );
gfx.PutPixel( 73 + x,57 + y,218,170,170 );
gfx.PutPixel( 74 + x,57 + y,209,56,56 );
gfx.PutPixel( 75 + x,57 + y,208,30,30 );
gfx.PutPixel( 76 + x,57 + y,208,34,34 );
gfx.PutPixel( 77 + x,57 + y,208,27,27 );
gfx.PutPixel( 78 + x,57 + y,218,173,173 );
gfx.PutPixel( 79 + x,57 + y,222,230,230 );
gfx.PutPixel( 80 + x,57 + y,221,223,223 );
gfx.PutPixel( 81 + x,57 + y,220,209,209 );
gfx.PutPixel( 82 + x,57 + y,218,171,171 );
gfx.PutPixel( 83 + x,57 + y,218,173,173 );
gfx.PutPixel( 84 + x,57 + y,218,173,173 );
gfx.PutPixel( 85 + x,57 + y,218,173,173 );
gfx.PutPixel( 86 + x,57 + y,218,173,173 );
gfx.PutPixel( 87 + x,57 + y,218,174,174 );
gfx.PutPixel( 88 + x,57 + y,218,170,170 );
gfx.PutPixel( 89 + x,57 + y,209,56,56 );
gfx.PutPixel( 90 + x,57 + y,208,30,30 );
gfx.PutPixel( 91 + x,57 + y,208,30,30 );
gfx.PutPixel( 92 + x,57 + y,209,47,47 );
gfx.PutPixel( 93 + x,57 + y,220,208,208 );
gfx.PutPixel( 94 + x,57 + y,221,225,225 );
gfx.PutPixel( 95 + x,57 + y,222,232,232 );
gfx.PutPixel( 96 + x,57 + y,215,135,135 );
gfx.PutPixel( 97 + x,57 + y,208,36,36 );
gfx.PutPixel( 98 + x,57 + y,209,46,46 );
gfx.PutPixel( 99 + x,57 + y,209,50,50 );
gfx.PutPixel( 100 + x,57 + y,213,102,102 );
gfx.PutPixel( 101 + x,57 + y,221,213,213 );
gfx.PutPixel( 102 + x,57 + y,221,224,224 );
gfx.PutPixel( 103 + x,57 + y,221,221,221 );
gfx.PutPixel( 104 + x,57 + y,222,231,231 );
gfx.PutPixel( 105 + x,57 + y,212,100,100 );
gfx.PutPixel( 106 + x,57 + y,207,24,24 );
gfx.PutPixel( 107 + x,57 + y,208,34,34 );
gfx.PutPixel( 108 + x,57 + y,208,34,34 );
gfx.PutPixel( 109 + x,57 + y,208,34,34 );
gfx.PutPixel( 110 + x,57 + y,208,34,34 );
gfx.PutPixel( 111 + x,57 + y,208,34,34 );
gfx.PutPixel( 112 + x,57 + y,208,34,34 );
gfx.PutPixel( 113 + x,57 + y,208,34,34 );
gfx.PutPixel( 114 + x,57 + y,208,34,34 );
gfx.PutPixel( 115 + x,57 + y,208,34,34 );
gfx.PutPixel( 116 + x,57 + y,208,34,34 );
gfx.PutPixel( 117 + x,57 + y,208,34,34 );
gfx.PutPixel( 118 + x,57 + y,208,34,34 );
gfx.PutPixel( 119 + x,57 + y,208,34,34 );
gfx.PutPixel( 120 + x,57 + y,208,34,34 );
gfx.PutPixel( 121 + x,57 + y,208,34,34 );
gfx.PutPixel( 122 + x,57 + y,208,34,34 );
gfx.PutPixel( 123 + x,57 + y,208,34,34 );
gfx.PutPixel( 124 + x,57 + y,208,34,34 );
gfx.PutPixel( 125 + x,57 + y,208,34,34 );
gfx.PutPixel( 126 + x,57 + y,208,34,34 );
gfx.PutPixel( 127 + x,57 + y,208,34,34 );
gfx.PutPixel( 128 + x,57 + y,208,34,34 );
gfx.PutPixel( 129 + x,57 + y,208,34,34 );
gfx.PutPixel( 130 + x,57 + y,208,34,34 );
gfx.PutPixel( 131 + x,57 + y,208,34,34 );
gfx.PutPixel( 132 + x,57 + y,208,34,34 );
gfx.PutPixel( 133 + x,57 + y,208,34,34 );
gfx.PutPixel( 134 + x,57 + y,208,34,34 );
gfx.PutPixel( 135 + x,57 + y,208,34,34 );
gfx.PutPixel( 136 + x,57 + y,208,34,34 );
gfx.PutPixel( 137 + x,57 + y,208,34,34 );
gfx.PutPixel( 138 + x,57 + y,208,34,34 );
gfx.PutPixel( 139 + x,57 + y,208,34,34 );
gfx.PutPixel( 140 + x,57 + y,208,34,34 );
gfx.PutPixel( 141 + x,57 + y,208,34,34 );
gfx.PutPixel( 142 + x,57 + y,208,34,34 );
gfx.PutPixel( 143 + x,57 + y,208,34,34 );
gfx.PutPixel( 144 + x,57 + y,208,34,34 );
gfx.PutPixel( 145 + x,57 + y,208,34,34 );
gfx.PutPixel( 146 + x,57 + y,208,34,34 );
gfx.PutPixel( 147 + x,57 + y,208,34,34 );
gfx.PutPixel( 148 + x,57 + y,208,34,34 );
gfx.PutPixel( 149 + x,57 + y,208,34,34 );
gfx.PutPixel( 0 + x,58 + y,208,34,34 );
gfx.PutPixel( 1 + x,58 + y,208,34,34 );
gfx.PutPixel( 2 + x,58 + y,208,34,34 );
gfx.PutPixel( 3 + x,58 + y,208,34,34 );
gfx.PutPixel( 4 + x,58 + y,208,34,34 );
gfx.PutPixel( 5 + x,58 + y,208,34,34 );
gfx.PutPixel( 6 + x,58 + y,208,34,34 );
gfx.PutPixel( 7 + x,58 + y,208,34,34 );
gfx.PutPixel( 8 + x,58 + y,208,34,34 );
gfx.PutPixel( 9 + x,58 + y,208,34,34 );
gfx.PutPixel( 10 + x,58 + y,208,34,34 );
gfx.PutPixel( 11 + x,58 + y,208,34,34 );
gfx.PutPixel( 12 + x,58 + y,208,34,34 );
gfx.PutPixel( 13 + x,58 + y,208,34,34 );
gfx.PutPixel( 14 + x,58 + y,208,34,34 );
gfx.PutPixel( 15 + x,58 + y,208,34,34 );
gfx.PutPixel( 16 + x,58 + y,208,34,34 );
gfx.PutPixel( 17 + x,58 + y,208,34,34 );
gfx.PutPixel( 18 + x,58 + y,208,34,34 );
gfx.PutPixel( 19 + x,58 + y,208,34,34 );
gfx.PutPixel( 20 + x,58 + y,208,34,34 );
gfx.PutPixel( 21 + x,58 + y,208,34,34 );
gfx.PutPixel( 22 + x,58 + y,208,34,34 );
gfx.PutPixel( 23 + x,58 + y,208,34,34 );
gfx.PutPixel( 24 + x,58 + y,208,34,34 );
gfx.PutPixel( 25 + x,58 + y,208,34,34 );
gfx.PutPixel( 26 + x,58 + y,208,34,34 );
gfx.PutPixel( 27 + x,58 + y,208,34,34 );
gfx.PutPixel( 28 + x,58 + y,208,34,34 );
gfx.PutPixel( 29 + x,58 + y,208,34,34 );
gfx.PutPixel( 30 + x,58 + y,208,34,34 );
gfx.PutPixel( 31 + x,58 + y,208,34,34 );
gfx.PutPixel( 32 + x,58 + y,208,34,34 );
gfx.PutPixel( 33 + x,58 + y,208,34,34 );
gfx.PutPixel( 34 + x,58 + y,208,34,34 );
gfx.PutPixel( 35 + x,58 + y,208,34,34 );
gfx.PutPixel( 36 + x,58 + y,208,34,34 );
gfx.PutPixel( 37 + x,58 + y,208,34,34 );
gfx.PutPixel( 38 + x,58 + y,208,34,34 );
gfx.PutPixel( 39 + x,58 + y,208,34,34 );
gfx.PutPixel( 40 + x,58 + y,208,34,34 );
gfx.PutPixel( 41 + x,58 + y,208,34,34 );
gfx.PutPixel( 42 + x,58 + y,208,34,34 );
gfx.PutPixel( 43 + x,58 + y,208,34,34 );
gfx.PutPixel( 44 + x,58 + y,208,30,30 );
gfx.PutPixel( 45 + x,58 + y,209,47,47 );
gfx.PutPixel( 46 + x,58 + y,220,208,208 );
gfx.PutPixel( 47 + x,58 + y,221,225,225 );
gfx.PutPixel( 48 + x,58 + y,221,220,220 );
gfx.PutPixel( 49 + x,58 + y,221,228,228 );
gfx.PutPixel( 50 + x,58 + y,221,225,225 );
gfx.PutPixel( 51 + x,58 + y,221,221,221 );
gfx.PutPixel( 52 + x,58 + y,222,230,230 );
gfx.PutPixel( 53 + x,58 + y,217,163,163 );
gfx.PutPixel( 54 + x,58 + y,207,20,20 );
gfx.PutPixel( 55 + x,58 + y,208,32,32 );
gfx.PutPixel( 56 + x,58 + y,208,34,34 );
gfx.PutPixel( 57 + x,58 + y,208,34,34 );
gfx.PutPixel( 58 + x,58 + y,208,34,34 );
gfx.PutPixel( 59 + x,58 + y,208,34,34 );
gfx.PutPixel( 60 + x,58 + y,208,34,34 );
gfx.PutPixel( 61 + x,58 + y,208,34,34 );
gfx.PutPixel( 62 + x,58 + y,208,27,27 );
gfx.PutPixel( 63 + x,58 + y,218,173,173 );
gfx.PutPixel( 64 + x,58 + y,222,230,230 );
gfx.PutPixel( 65 + x,58 + y,221,221,221 );
gfx.PutPixel( 66 + x,58 + y,221,223,223 );
gfx.PutPixel( 67 + x,58 + y,222,230,230 );
gfx.PutPixel( 68 + x,58 + y,222,230,230 );
gfx.PutPixel( 69 + x,58 + y,222,230,230 );
gfx.PutPixel( 70 + x,58 + y,222,230,230 );
gfx.PutPixel( 71 + x,58 + y,222,230,230 );
gfx.PutPixel( 72 + x,58 + y,222,232,232 );
gfx.PutPixel( 73 + x,58 + y,222,226,226 );
gfx.PutPixel( 74 + x,58 + y,210,65,65 );
gfx.PutPixel( 75 + x,58 + y,208,28,28 );
gfx.PutPixel( 76 + x,58 + y,208,34,34 );
gfx.PutPixel( 77 + x,58 + y,208,27,27 );
gfx.PutPixel( 78 + x,58 + y,218,173,173 );
gfx.PutPixel( 79 + x,58 + y,222,230,230 );
gfx.PutPixel( 80 + x,58 + y,221,221,221 );
gfx.PutPixel( 81 + x,58 + y,221,223,223 );
gfx.PutPixel( 82 + x,58 + y,222,230,230 );
gfx.PutPixel( 83 + x,58 + y,222,230,230 );
gfx.PutPixel( 84 + x,58 + y,222,230,230 );
gfx.PutPixel( 85 + x,58 + y,222,230,230 );
gfx.PutPixel( 86 + x,58 + y,222,230,230 );
gfx.PutPixel( 87 + x,58 + y,222,232,232 );
gfx.PutPixel( 88 + x,58 + y,222,226,226 );
gfx.PutPixel( 89 + x,58 + y,210,65,65 );
gfx.PutPixel( 90 + x,58 + y,208,28,28 );
gfx.PutPixel( 91 + x,58 + y,208,30,30 );
gfx.PutPixel( 92 + x,58 + y,209,47,47 );
gfx.PutPixel( 93 + x,58 + y,220,208,208 );
gfx.PutPixel( 94 + x,58 + y,221,225,225 );
gfx.PutPixel( 95 + x,58 + y,221,222,222 );
gfx.PutPixel( 96 + x,58 + y,221,214,214 );
gfx.PutPixel( 97 + x,58 + y,220,207,207 );
gfx.PutPixel( 98 + x,58 + y,220,207,207 );
gfx.PutPixel( 99 + x,58 + y,220,211,211 );
gfx.PutPixel( 100 + x,58 + y,221,228,228 );
gfx.PutPixel( 101 + x,58 + y,221,224,224 );
gfx.PutPixel( 102 + x,58 + y,221,220,220 );
gfx.PutPixel( 103 + x,58 + y,221,228,228 );
gfx.PutPixel( 104 + x,58 + y,220,208,208 );
gfx.PutPixel( 105 + x,58 + y,209,49,49 );
gfx.PutPixel( 106 + x,58 + y,208,30,30 );
gfx.PutPixel( 107 + x,58 + y,208,34,34 );
gfx.PutPixel( 108 + x,58 + y,208,34,34 );
gfx.PutPixel( 109 + x,58 + y,208,34,34 );
gfx.PutPixel( 110 + x,58 + y,208,34,34 );
gfx.PutPixel( 111 + x,58 + y,208,34,34 );
gfx.PutPixel( 112 + x,58 + y,208,34,34 );
gfx.PutPixel( 113 + x,58 + y,208,34,34 );
gfx.PutPixel( 114 + x,58 + y,208,34,34 );
gfx.PutPixel( 115 + x,58 + y,208,34,34 );
gfx.PutPixel( 116 + x,58 + y,208,34,34 );
gfx.PutPixel( 117 + x,58 + y,208,34,34 );
gfx.PutPixel( 118 + x,58 + y,208,34,34 );
gfx.PutPixel( 119 + x,58 + y,208,34,34 );
gfx.PutPixel( 120 + x,58 + y,208,34,34 );
gfx.PutPixel( 121 + x,58 + y,208,34,34 );
gfx.PutPixel( 122 + x,58 + y,208,34,34 );
gfx.PutPixel( 123 + x,58 + y,208,34,34 );
gfx.PutPixel( 124 + x,58 + y,208,34,34 );
gfx.PutPixel( 125 + x,58 + y,208,34,34 );
gfx.PutPixel( 126 + x,58 + y,208,34,34 );
gfx.PutPixel( 127 + x,58 + y,208,34,34 );
gfx.PutPixel( 128 + x,58 + y,208,34,34 );
gfx.PutPixel( 129 + x,58 + y,208,34,34 );
gfx.PutPixel( 130 + x,58 + y,208,34,34 );
gfx.PutPixel( 131 + x,58 + y,208,34,34 );
gfx.PutPixel( 132 + x,58 + y,208,34,34 );
gfx.PutPixel( 133 + x,58 + y,208,34,34 );
gfx.PutPixel( 134 + x,58 + y,208,34,34 );
gfx.PutPixel( 135 + x,58 + y,208,34,34 );
gfx.PutPixel( 136 + x,58 + y,208,34,34 );
gfx.PutPixel( 137 + x,58 + y,208,34,34 );
gfx.PutPixel( 138 + x,58 + y,208,34,34 );
gfx.PutPixel( 139 + x,58 + y,208,34,34 );
gfx.PutPixel( 140 + x,58 + y,208,34,34 );
gfx.PutPixel( 141 + x,58 + y,208,34,34 );
gfx.PutPixel( 142 + x,58 + y,208,34,34 );
gfx.PutPixel( 143 + x,58 + y,208,34,34 );
gfx.PutPixel( 144 + x,58 + y,208,34,34 );
gfx.PutPixel( 145 + x,58 + y,208,34,34 );
gfx.PutPixel( 146 + x,58 + y,208,34,34 );
gfx.PutPixel( 147 + x,58 + y,208,34,34 );
gfx.PutPixel( 148 + x,58 + y,208,34,34 );
gfx.PutPixel( 149 + x,58 + y,208,34,34 );
gfx.PutPixel( 0 + x,59 + y,208,34,34 );
gfx.PutPixel( 1 + x,59 + y,208,34,34 );
gfx.PutPixel( 2 + x,59 + y,208,34,34 );
gfx.PutPixel( 3 + x,59 + y,208,34,34 );
gfx.PutPixel( 4 + x,59 + y,208,34,34 );
gfx.PutPixel( 5 + x,59 + y,208,34,34 );
gfx.PutPixel( 6 + x,59 + y,208,34,34 );
gfx.PutPixel( 7 + x,59 + y,208,34,34 );
gfx.PutPixel( 8 + x,59 + y,208,34,34 );
gfx.PutPixel( 9 + x,59 + y,208,34,34 );
gfx.PutPixel( 10 + x,59 + y,208,34,34 );
gfx.PutPixel( 11 + x,59 + y,208,34,34 );
gfx.PutPixel( 12 + x,59 + y,208,34,34 );
gfx.PutPixel( 13 + x,59 + y,208,34,34 );
gfx.PutPixel( 14 + x,59 + y,208,34,34 );
gfx.PutPixel( 15 + x,59 + y,208,34,34 );
gfx.PutPixel( 16 + x,59 + y,208,34,34 );
gfx.PutPixel( 17 + x,59 + y,208,34,34 );
gfx.PutPixel( 18 + x,59 + y,208,34,34 );
gfx.PutPixel( 19 + x,59 + y,208,34,34 );
gfx.PutPixel( 20 + x,59 + y,208,34,34 );
gfx.PutPixel( 21 + x,59 + y,208,34,34 );
gfx.PutPixel( 22 + x,59 + y,208,34,34 );
gfx.PutPixel( 23 + x,59 + y,208,34,34 );
gfx.PutPixel( 24 + x,59 + y,208,34,34 );
gfx.PutPixel( 25 + x,59 + y,208,34,34 );
gfx.PutPixel( 26 + x,59 + y,208,34,34 );
gfx.PutPixel( 27 + x,59 + y,208,34,34 );
gfx.PutPixel( 28 + x,59 + y,208,34,34 );
gfx.PutPixel( 29 + x,59 + y,208,34,34 );
gfx.PutPixel( 30 + x,59 + y,208,34,34 );
gfx.PutPixel( 31 + x,59 + y,208,34,34 );
gfx.PutPixel( 32 + x,59 + y,208,34,34 );
gfx.PutPixel( 33 + x,59 + y,208,34,34 );
gfx.PutPixel( 34 + x,59 + y,208,34,34 );
gfx.PutPixel( 35 + x,59 + y,208,34,34 );
gfx.PutPixel( 36 + x,59 + y,208,34,34 );
gfx.PutPixel( 37 + x,59 + y,208,34,34 );
gfx.PutPixel( 38 + x,59 + y,208,34,34 );
gfx.PutPixel( 39 + x,59 + y,208,34,34 );
gfx.PutPixel( 40 + x,59 + y,208,34,34 );
gfx.PutPixel( 41 + x,59 + y,208,34,34 );
gfx.PutPixel( 42 + x,59 + y,208,34,34 );
gfx.PutPixel( 43 + x,59 + y,208,34,34 );
gfx.PutPixel( 44 + x,59 + y,208,30,30 );
gfx.PutPixel( 45 + x,59 + y,209,47,47 );
gfx.PutPixel( 46 + x,59 + y,220,208,208 );
gfx.PutPixel( 47 + x,59 + y,221,225,225 );
gfx.PutPixel( 48 + x,59 + y,221,222,222 );
gfx.PutPixel( 49 + x,59 + y,220,213,213 );
gfx.PutPixel( 50 + x,59 + y,221,225,225 );
gfx.PutPixel( 51 + x,59 + y,221,221,221 );
gfx.PutPixel( 52 + x,59 + y,221,224,224 );
gfx.PutPixel( 53 + x,59 + y,221,210,210 );
gfx.PutPixel( 54 + x,59 + y,211,79,79 );
gfx.PutPixel( 55 + x,59 + y,207,23,23 );
gfx.PutPixel( 56 + x,59 + y,208,34,34 );
gfx.PutPixel( 57 + x,59 + y,208,34,34 );
gfx.PutPixel( 58 + x,59 + y,208,34,34 );
gfx.PutPixel( 59 + x,59 + y,208,34,34 );
gfx.PutPixel( 60 + x,59 + y,208,34,34 );
gfx.PutPixel( 61 + x,59 + y,208,34,34 );
gfx.PutPixel( 62 + x,59 + y,208,27,27 );
gfx.PutPixel( 63 + x,59 + y,218,173,173 );
gfx.PutPixel( 64 + x,59 + y,222,230,230 );
gfx.PutPixel( 65 + x,59 + y,221,221,221 );
gfx.PutPixel( 66 + x,59 + y,221,223,223 );
gfx.PutPixel( 67 + x,59 + y,222,230,230 );
gfx.PutPixel( 68 + x,59 + y,222,230,230 );
gfx.PutPixel( 69 + x,59 + y,222,230,230 );
gfx.PutPixel( 70 + x,59 + y,222,230,230 );
gfx.PutPixel( 71 + x,59 + y,222,230,230 );
gfx.PutPixel( 72 + x,59 + y,222,232,232 );
gfx.PutPixel( 73 + x,59 + y,222,226,226 );
gfx.PutPixel( 74 + x,59 + y,210,65,65 );
gfx.PutPixel( 75 + x,59 + y,208,28,28 );
gfx.PutPixel( 76 + x,59 + y,208,34,34 );
gfx.PutPixel( 77 + x,59 + y,208,27,27 );
gfx.PutPixel( 78 + x,59 + y,218,173,173 );
gfx.PutPixel( 79 + x,59 + y,222,230,230 );
gfx.PutPixel( 80 + x,59 + y,221,221,221 );
gfx.PutPixel( 81 + x,59 + y,221,223,223 );
gfx.PutPixel( 82 + x,59 + y,222,230,230 );
gfx.PutPixel( 83 + x,59 + y,222,230,230 );
gfx.PutPixel( 84 + x,59 + y,222,230,230 );
gfx.PutPixel( 85 + x,59 + y,222,230,230 );
gfx.PutPixel( 86 + x,59 + y,222,230,230 );
gfx.PutPixel( 87 + x,59 + y,222,232,232 );
gfx.PutPixel( 88 + x,59 + y,222,226,226 );
gfx.PutPixel( 89 + x,59 + y,210,65,65 );
gfx.PutPixel( 90 + x,59 + y,208,28,28 );
gfx.PutPixel( 91 + x,59 + y,208,30,30 );
gfx.PutPixel( 92 + x,59 + y,209,47,47 );
gfx.PutPixel( 93 + x,59 + y,220,208,208 );
gfx.PutPixel( 94 + x,59 + y,221,225,225 );
gfx.PutPixel( 95 + x,59 + y,221,221,221 );
gfx.PutPixel( 96 + x,59 + y,221,223,223 );
gfx.PutPixel( 97 + x,59 + y,221,225,225 );
gfx.PutPixel( 98 + x,59 + y,221,225,225 );
gfx.PutPixel( 99 + x,59 + y,221,225,225 );
gfx.PutPixel( 100 + x,59 + y,221,223,223 );
gfx.PutPixel( 101 + x,59 + y,221,224,224 );
gfx.PutPixel( 102 + x,59 + y,222,232,232 );
gfx.PutPixel( 103 + x,59 + y,221,228,228 );
gfx.PutPixel( 104 + x,59 + y,213,102,102 );
gfx.PutPixel( 105 + x,59 + y,207,24,24 );
gfx.PutPixel( 106 + x,59 + y,208,34,34 );
gfx.PutPixel( 107 + x,59 + y,208,34,34 );
gfx.PutPixel( 108 + x,59 + y,208,34,34 );
gfx.PutPixel( 109 + x,59 + y,208,34,34 );
gfx.PutPixel( 110 + x,59 + y,208,34,34 );
gfx.PutPixel( 111 + x,59 + y,208,34,34 );
gfx.PutPixel( 112 + x,59 + y,208,34,34 );
gfx.PutPixel( 113 + x,59 + y,208,34,34 );
gfx.PutPixel( 114 + x,59 + y,208,34,34 );
gfx.PutPixel( 115 + x,59 + y,208,34,34 );
gfx.PutPixel( 116 + x,59 + y,208,34,34 );
gfx.PutPixel( 117 + x,59 + y,208,34,34 );
gfx.PutPixel( 118 + x,59 + y,208,34,34 );
gfx.PutPixel( 119 + x,59 + y,208,34,34 );
gfx.PutPixel( 120 + x,59 + y,208,34,34 );
gfx.PutPixel( 121 + x,59 + y,208,34,34 );
gfx.PutPixel( 122 + x,59 + y,208,34,34 );
gfx.PutPixel( 123 + x,59 + y,208,34,34 );
gfx.PutPixel( 124 + x,59 + y,208,34,34 );
gfx.PutPixel( 125 + x,59 + y,208,34,34 );
gfx.PutPixel( 126 + x,59 + y,208,34,34 );
gfx.PutPixel( 127 + x,59 + y,208,34,34 );
gfx.PutPixel( 128 + x,59 + y,208,34,34 );
gfx.PutPixel( 129 + x,59 + y,208,34,34 );
gfx.PutPixel( 130 + x,59 + y,208,34,34 );
gfx.PutPixel( 131 + x,59 + y,208,34,34 );
gfx.PutPixel( 132 + x,59 + y,208,34,34 );
gfx.PutPixel( 133 + x,59 + y,208,34,34 );
gfx.PutPixel( 134 + x,59 + y,208,34,34 );
gfx.PutPixel( 135 + x,59 + y,208,34,34 );
gfx.PutPixel( 136 + x,59 + y,208,34,34 );
gfx.PutPixel( 137 + x,59 + y,208,34,34 );
gfx.PutPixel( 138 + x,59 + y,208,34,34 );
gfx.PutPixel( 139 + x,59 + y,208,34,34 );
gfx.PutPixel( 140 + x,59 + y,208,34,34 );
gfx.PutPixel( 141 + x,59 + y,208,34,34 );
gfx.PutPixel( 142 + x,59 + y,208,34,34 );
gfx.PutPixel( 143 + x,59 + y,208,34,34 );
gfx.PutPixel( 144 + x,59 + y,208,34,34 );
gfx.PutPixel( 145 + x,59 + y,208,34,34 );
gfx.PutPixel( 146 + x,59 + y,208,34,34 );
gfx.PutPixel( 147 + x,59 + y,208,34,34 );
gfx.PutPixel( 148 + x,59 + y,208,34,34 );
gfx.PutPixel( 149 + x,59 + y,208,34,34 );
gfx.PutPixel( 0 + x,60 + y,208,34,34 );
gfx.PutPixel( 1 + x,60 + y,208,34,34 );
gfx.PutPixel( 2 + x,60 + y,208,34,34 );
gfx.PutPixel( 3 + x,60 + y,208,34,34 );
gfx.PutPixel( 4 + x,60 + y,208,34,34 );
gfx.PutPixel( 5 + x,60 + y,208,34,34 );
gfx.PutPixel( 6 + x,60 + y,208,34,34 );
gfx.PutPixel( 7 + x,60 + y,208,34,34 );
gfx.PutPixel( 8 + x,60 + y,208,34,34 );
gfx.PutPixel( 9 + x,60 + y,208,34,34 );
gfx.PutPixel( 10 + x,60 + y,208,34,34 );
gfx.PutPixel( 11 + x,60 + y,208,34,34 );
gfx.PutPixel( 12 + x,60 + y,208,34,34 );
gfx.PutPixel( 13 + x,60 + y,208,34,34 );
gfx.PutPixel( 14 + x,60 + y,208,34,34 );
gfx.PutPixel( 15 + x,60 + y,208,34,34 );
gfx.PutPixel( 16 + x,60 + y,208,34,34 );
gfx.PutPixel( 17 + x,60 + y,208,34,34 );
gfx.PutPixel( 18 + x,60 + y,208,34,34 );
gfx.PutPixel( 19 + x,60 + y,208,34,34 );
gfx.PutPixel( 20 + x,60 + y,208,34,34 );
gfx.PutPixel( 21 + x,60 + y,208,34,34 );
gfx.PutPixel( 22 + x,60 + y,208,34,34 );
gfx.PutPixel( 23 + x,60 + y,208,34,34 );
gfx.PutPixel( 24 + x,60 + y,208,34,34 );
gfx.PutPixel( 25 + x,60 + y,208,34,34 );
gfx.PutPixel( 26 + x,60 + y,208,34,34 );
gfx.PutPixel( 27 + x,60 + y,208,34,34 );
gfx.PutPixel( 28 + x,60 + y,208,34,34 );
gfx.PutPixel( 29 + x,60 + y,208,34,34 );
gfx.PutPixel( 30 + x,60 + y,208,34,34 );
gfx.PutPixel( 31 + x,60 + y,208,34,34 );
gfx.PutPixel( 32 + x,60 + y,208,34,34 );
gfx.PutPixel( 33 + x,60 + y,208,34,34 );
gfx.PutPixel( 34 + x,60 + y,208,34,34 );
gfx.PutPixel( 35 + x,60 + y,208,34,34 );
gfx.PutPixel( 36 + x,60 + y,208,34,34 );
gfx.PutPixel( 37 + x,60 + y,208,34,34 );
gfx.PutPixel( 38 + x,60 + y,208,34,34 );
gfx.PutPixel( 39 + x,60 + y,208,34,34 );
gfx.PutPixel( 40 + x,60 + y,208,34,34 );
gfx.PutPixel( 41 + x,60 + y,208,34,34 );
gfx.PutPixel( 42 + x,60 + y,208,34,34 );
gfx.PutPixel( 43 + x,60 + y,208,34,34 );
gfx.PutPixel( 44 + x,60 + y,208,30,30 );
gfx.PutPixel( 45 + x,60 + y,209,47,47 );
gfx.PutPixel( 46 + x,60 + y,220,208,208 );
gfx.PutPixel( 47 + x,60 + y,221,225,225 );
gfx.PutPixel( 48 + x,60 + y,222,231,231 );
gfx.PutPixel( 49 + x,60 + y,215,133,133 );
gfx.PutPixel( 50 + x,60 + y,217,163,163 );
gfx.PutPixel( 51 + x,60 + y,222,232,232 );
gfx.PutPixel( 52 + x,60 + y,221,220,220 );
gfx.PutPixel( 53 + x,60 + y,221,227,227 );
gfx.PutPixel( 54 + x,60 + y,220,211,211 );
gfx.PutPixel( 55 + x,60 + y,210,67,67 );
gfx.PutPixel( 56 + x,60 + y,207,24,24 );
gfx.PutPixel( 57 + x,60 + y,208,34,34 );
gfx.PutPixel( 58 + x,60 + y,208,34,34 );
gfx.PutPixel( 59 + x,60 + y,208,34,34 );
gfx.PutPixel( 60 + x,60 + y,208,34,34 );
gfx.PutPixel( 61 + x,60 + y,208,34,34 );
gfx.PutPixel( 62 + x,60 + y,208,27,27 );
gfx.PutPixel( 63 + x,60 + y,218,173,173 );
gfx.PutPixel( 64 + x,60 + y,222,230,230 );
gfx.PutPixel( 65 + x,60 + y,221,223,223 );
gfx.PutPixel( 66 + x,60 + y,220,209,209 );
gfx.PutPixel( 67 + x,60 + y,218,171,171 );
gfx.PutPixel( 68 + x,60 + y,218,173,173 );
gfx.PutPixel( 69 + x,60 + y,218,173,173 );
gfx.PutPixel( 70 + x,60 + y,218,173,173 );
gfx.PutPixel( 71 + x,60 + y,218,173,173 );
gfx.PutPixel( 72 + x,60 + y,218,174,174 );
gfx.PutPixel( 73 + x,60 + y,218,170,170 );
gfx.PutPixel( 74 + x,60 + y,209,56,56 );
gfx.PutPixel( 75 + x,60 + y,208,30,30 );
gfx.PutPixel( 76 + x,60 + y,208,34,34 );
gfx.PutPixel( 77 + x,60 + y,208,27,27 );
gfx.PutPixel( 78 + x,60 + y,218,173,173 );
gfx.PutPixel( 79 + x,60 + y,222,230,230 );
gfx.PutPixel( 80 + x,60 + y,221,223,223 );
gfx.PutPixel( 81 + x,60 + y,220,209,209 );
gfx.PutPixel( 82 + x,60 + y,218,171,171 );
gfx.PutPixel( 83 + x,60 + y,218,173,173 );
gfx.PutPixel( 84 + x,60 + y,218,173,173 );
gfx.PutPixel( 85 + x,60 + y,218,173,173 );
gfx.PutPixel( 86 + x,60 + y,218,173,173 );
gfx.PutPixel( 87 + x,60 + y,218,174,174 );
gfx.PutPixel( 88 + x,60 + y,218,170,170 );
gfx.PutPixel( 89 + x,60 + y,209,56,56 );
gfx.PutPixel( 90 + x,60 + y,208,30,30 );
gfx.PutPixel( 91 + x,60 + y,208,30,30 );
gfx.PutPixel( 92 + x,60 + y,209,47,47 );
gfx.PutPixel( 93 + x,60 + y,220,208,208 );
gfx.PutPixel( 94 + x,60 + y,221,225,225 );
gfx.PutPixel( 95 + x,60 + y,221,221,221 );
gfx.PutPixel( 96 + x,60 + y,221,224,224 );
gfx.PutPixel( 97 + x,60 + y,222,228,228 );
gfx.PutPixel( 98 + x,60 + y,221,228,228 );
gfx.PutPixel( 99 + x,60 + y,221,227,227 );
gfx.PutPixel( 100 + x,60 + y,221,223,223 );
gfx.PutPixel( 101 + x,60 + y,221,212,212 );
gfx.PutPixel( 102 + x,60 + y,218,174,174 );
gfx.PutPixel( 103 + x,60 + y,211,84,84 );
gfx.PutPixel( 104 + x,60 + y,207,25,25 );
gfx.PutPixel( 105 + x,60 + y,208,34,34 );
gfx.PutPixel( 106 + x,60 + y,208,34,34 );
gfx.PutPixel( 107 + x,60 + y,208,34,34 );
gfx.PutPixel( 108 + x,60 + y,208,34,34 );
gfx.PutPixel( 109 + x,60 + y,208,34,34 );
gfx.PutPixel( 110 + x,60 + y,208,34,34 );
gfx.PutPixel( 111 + x,60 + y,208,34,34 );
gfx.PutPixel( 112 + x,60 + y,208,34,34 );
gfx.PutPixel( 113 + x,60 + y,208,34,34 );
gfx.PutPixel( 114 + x,60 + y,208,34,34 );
gfx.PutPixel( 115 + x,60 + y,208,34,34 );
gfx.PutPixel( 116 + x,60 + y,208,34,34 );
gfx.PutPixel( 117 + x,60 + y,208,34,34 );
gfx.PutPixel( 118 + x,60 + y,208,34,34 );
gfx.PutPixel( 119 + x,60 + y,208,34,34 );
gfx.PutPixel( 120 + x,60 + y,208,34,34 );
gfx.PutPixel( 121 + x,60 + y,208,34,34 );
gfx.PutPixel( 122 + x,60 + y,208,34,34 );
gfx.PutPixel( 123 + x,60 + y,208,34,34 );
gfx.PutPixel( 124 + x,60 + y,208,34,34 );
gfx.PutPixel( 125 + x,60 + y,208,34,34 );
gfx.PutPixel( 126 + x,60 + y,208,34,34 );
gfx.PutPixel( 127 + x,60 + y,208,34,34 );
gfx.PutPixel( 128 + x,60 + y,208,34,34 );
gfx.PutPixel( 129 + x,60 + y,208,34,34 );
gfx.PutPixel( 130 + x,60 + y,208,34,34 );
gfx.PutPixel( 131 + x,60 + y,208,34,34 );
gfx.PutPixel( 132 + x,60 + y,208,34,34 );
gfx.PutPixel( 133 + x,60 + y,208,34,34 );
gfx.PutPixel( 134 + x,60 + y,208,34,34 );
gfx.PutPixel( 135 + x,60 + y,208,34,34 );
gfx.PutPixel( 136 + x,60 + y,208,34,34 );
gfx.PutPixel( 137 + x,60 + y,208,34,34 );
gfx.PutPixel( 138 + x,60 + y,208,34,34 );
gfx.PutPixel( 139 + x,60 + y,208,34,34 );
gfx.PutPixel( 140 + x,60 + y,208,34,34 );
gfx.PutPixel( 141 + x,60 + y,208,34,34 );
gfx.PutPixel( 142 + x,60 + y,208,34,34 );
gfx.PutPixel( 143 + x,60 + y,208,34,34 );
gfx.PutPixel( 144 + x,60 + y,208,34,34 );
gfx.PutPixel( 145 + x,60 + y,208,34,34 );
gfx.PutPixel( 146 + x,60 + y,208,34,34 );
gfx.PutPixel( 147 + x,60 + y,208,34,34 );
gfx.PutPixel( 148 + x,60 + y,208,34,34 );
gfx.PutPixel( 149 + x,60 + y,208,34,34 );
gfx.PutPixel( 0 + x,61 + y,208,34,34 );
gfx.PutPixel( 1 + x,61 + y,208,34,34 );
gfx.PutPixel( 2 + x,61 + y,208,34,34 );
gfx.PutPixel( 3 + x,61 + y,208,34,34 );
gfx.PutPixel( 4 + x,61 + y,208,34,34 );
gfx.PutPixel( 5 + x,61 + y,208,34,34 );
gfx.PutPixel( 6 + x,61 + y,208,34,34 );
gfx.PutPixel( 7 + x,61 + y,208,34,34 );
gfx.PutPixel( 8 + x,61 + y,208,34,34 );
gfx.PutPixel( 9 + x,61 + y,208,34,34 );
gfx.PutPixel( 10 + x,61 + y,208,34,34 );
gfx.PutPixel( 11 + x,61 + y,208,34,34 );
gfx.PutPixel( 12 + x,61 + y,208,34,34 );
gfx.PutPixel( 13 + x,61 + y,208,34,34 );
gfx.PutPixel( 14 + x,61 + y,208,34,34 );
gfx.PutPixel( 15 + x,61 + y,208,34,34 );
gfx.PutPixel( 16 + x,61 + y,208,34,34 );
gfx.PutPixel( 17 + x,61 + y,208,34,34 );
gfx.PutPixel( 18 + x,61 + y,208,34,34 );
gfx.PutPixel( 19 + x,61 + y,208,34,34 );
gfx.PutPixel( 20 + x,61 + y,208,34,34 );
gfx.PutPixel( 21 + x,61 + y,208,34,34 );
gfx.PutPixel( 22 + x,61 + y,208,34,34 );
gfx.PutPixel( 23 + x,61 + y,208,34,34 );
gfx.PutPixel( 24 + x,61 + y,208,34,34 );
gfx.PutPixel( 25 + x,61 + y,208,34,34 );
gfx.PutPixel( 26 + x,61 + y,208,34,34 );
gfx.PutPixel( 27 + x,61 + y,208,34,34 );
gfx.PutPixel( 28 + x,61 + y,208,34,34 );
gfx.PutPixel( 29 + x,61 + y,208,34,34 );
gfx.PutPixel( 30 + x,61 + y,208,34,34 );
gfx.PutPixel( 31 + x,61 + y,208,34,34 );
gfx.PutPixel( 32 + x,61 + y,208,34,34 );
gfx.PutPixel( 33 + x,61 + y,208,34,34 );
gfx.PutPixel( 34 + x,61 + y,208,34,34 );
gfx.PutPixel( 35 + x,61 + y,208,34,34 );
gfx.PutPixel( 36 + x,61 + y,208,34,34 );
gfx.PutPixel( 37 + x,61 + y,208,34,34 );
gfx.PutPixel( 38 + x,61 + y,208,34,34 );
gfx.PutPixel( 39 + x,61 + y,208,34,34 );
gfx.PutPixel( 40 + x,61 + y,208,34,34 );
gfx.PutPixel( 41 + x,61 + y,208,34,34 );
gfx.PutPixel( 42 + x,61 + y,208,34,34 );
gfx.PutPixel( 43 + x,61 + y,208,34,34 );
gfx.PutPixel( 44 + x,61 + y,208,30,30 );
gfx.PutPixel( 45 + x,61 + y,209,47,47 );
gfx.PutPixel( 46 + x,61 + y,220,208,208 );
gfx.PutPixel( 47 + x,61 + y,221,225,225 );
gfx.PutPixel( 48 + x,61 + y,222,233,233 );
gfx.PutPixel( 49 + x,61 + y,214,121,121 );
gfx.PutPixel( 50 + x,61 + y,208,35,35 );
gfx.PutPixel( 51 + x,61 + y,219,195,195 );
gfx.PutPixel( 52 + x,61 + y,222,230,230 );
gfx.PutPixel( 53 + x,61 + y,221,220,220 );
gfx.PutPixel( 54 + x,61 + y,222,229,229 );
gfx.PutPixel( 55 + x,61 + y,220,201,201 );
gfx.PutPixel( 56 + x,61 + y,209,55,55 );
gfx.PutPixel( 57 + x,61 + y,207,26,26 );
gfx.PutPixel( 58 + x,61 + y,208,34,34 );
gfx.PutPixel( 59 + x,61 + y,208,34,34 );
gfx.PutPixel( 60 + x,61 + y,208,34,34 );
gfx.PutPixel( 61 + x,61 + y,208,34,34 );
gfx.PutPixel( 62 + x,61 + y,208,27,27 );
gfx.PutPixel( 63 + x,61 + y,218,173,173 );
gfx.PutPixel( 64 + x,61 + y,222,230,230 );
gfx.PutPixel( 65 + x,61 + y,222,230,230 );
gfx.PutPixel( 66 + x,61 + y,218,171,171 );
gfx.PutPixel( 67 + x,61 + y,208,20,20 );
gfx.PutPixel( 68 + x,61 + y,208,27,27 );
gfx.PutPixel( 69 + x,61 + y,208,27,27 );
gfx.PutPixel( 70 + x,61 + y,208,27,27 );
gfx.PutPixel( 71 + x,61 + y,208,27,27 );
gfx.PutPixel( 72 + x,61 + y,208,27,27 );
gfx.PutPixel( 73 + x,61 + y,208,27,27 );
gfx.PutPixel( 74 + x,61 + y,208,33,33 );
gfx.PutPixel( 75 + x,61 + y,208,34,34 );
gfx.PutPixel( 76 + x,61 + y,208,34,34 );
gfx.PutPixel( 77 + x,61 + y,208,27,27 );
gfx.PutPixel( 78 + x,61 + y,218,173,173 );
gfx.PutPixel( 79 + x,61 + y,222,230,230 );
gfx.PutPixel( 80 + x,61 + y,222,230,230 );
gfx.PutPixel( 81 + x,61 + y,218,171,171 );
gfx.PutPixel( 82 + x,61 + y,208,20,20 );
gfx.PutPixel( 83 + x,61 + y,208,27,27 );
gfx.PutPixel( 84 + x,61 + y,208,27,27 );
gfx.PutPixel( 85 + x,61 + y,208,27,27 );
gfx.PutPixel( 86 + x,61 + y,208,27,27 );
gfx.PutPixel( 87 + x,61 + y,208,27,27 );
gfx.PutPixel( 88 + x,61 + y,208,27,27 );
gfx.PutPixel( 89 + x,61 + y,208,33,33 );
gfx.PutPixel( 90 + x,61 + y,208,34,34 );
gfx.PutPixel( 91 + x,61 + y,208,30,30 );
gfx.PutPixel( 92 + x,61 + y,209,47,47 );
gfx.PutPixel( 93 + x,61 + y,220,208,208 );
gfx.PutPixel( 94 + x,61 + y,221,225,225 );
gfx.PutPixel( 95 + x,61 + y,222,230,230 );
gfx.PutPixel( 96 + x,61 + y,217,152,152 );
gfx.PutPixel( 97 + x,61 + y,211,73,73 );
gfx.PutPixel( 98 + x,61 + y,211,82,82 );
gfx.PutPixel( 99 + x,61 + y,211,82,82 );
gfx.PutPixel( 100 + x,61 + y,211,74,74 );
gfx.PutPixel( 101 + x,61 + y,210,53,53 );
gfx.PutPixel( 102 + x,61 + y,208,29,29 );
gfx.PutPixel( 103 + x,61 + y,207,25,25 );
gfx.PutPixel( 104 + x,61 + y,208,34,34 );
gfx.PutPixel( 105 + x,61 + y,208,34,34 );
gfx.PutPixel( 106 + x,61 + y,208,34,34 );
gfx.PutPixel( 107 + x,61 + y,208,34,34 );
gfx.PutPixel( 108 + x,61 + y,208,34,34 );
gfx.PutPixel( 109 + x,61 + y,208,34,34 );
gfx.PutPixel( 110 + x,61 + y,208,34,34 );
gfx.PutPixel( 111 + x,61 + y,208,34,34 );
gfx.PutPixel( 112 + x,61 + y,208,34,34 );
gfx.PutPixel( 113 + x,61 + y,208,34,34 );
gfx.PutPixel( 114 + x,61 + y,208,34,34 );
gfx.PutPixel( 115 + x,61 + y,208,34,34 );
gfx.PutPixel( 116 + x,61 + y,208,34,34 );
gfx.PutPixel( 117 + x,61 + y,208,34,34 );
gfx.PutPixel( 118 + x,61 + y,208,34,34 );
gfx.PutPixel( 119 + x,61 + y,208,34,34 );
gfx.PutPixel( 120 + x,61 + y,208,34,34 );
gfx.PutPixel( 121 + x,61 + y,208,34,34 );
gfx.PutPixel( 122 + x,61 + y,208,34,34 );
gfx.PutPixel( 123 + x,61 + y,208,34,34 );
gfx.PutPixel( 124 + x,61 + y,208,34,34 );
gfx.PutPixel( 125 + x,61 + y,208,34,34 );
gfx.PutPixel( 126 + x,61 + y,208,34,34 );
gfx.PutPixel( 127 + x,61 + y,208,34,34 );
gfx.PutPixel( 128 + x,61 + y,208,34,34 );
gfx.PutPixel( 129 + x,61 + y,208,34,34 );
gfx.PutPixel( 130 + x,61 + y,208,34,34 );
gfx.PutPixel( 131 + x,61 + y,208,34,34 );
gfx.PutPixel( 132 + x,61 + y,208,34,34 );
gfx.PutPixel( 133 + x,61 + y,208,34,34 );
gfx.PutPixel( 134 + x,61 + y,208,34,34 );
gfx.PutPixel( 135 + x,61 + y,208,34,34 );
gfx.PutPixel( 136 + x,61 + y,208,34,34 );
gfx.PutPixel( 137 + x,61 + y,208,34,34 );
gfx.PutPixel( 138 + x,61 + y,208,34,34 );
gfx.PutPixel( 139 + x,61 + y,208,34,34 );
gfx.PutPixel( 140 + x,61 + y,208,34,34 );
gfx.PutPixel( 141 + x,61 + y,208,34,34 );
gfx.PutPixel( 142 + x,61 + y,208,34,34 );
gfx.PutPixel( 143 + x,61 + y,208,34,34 );
gfx.PutPixel( 144 + x,61 + y,208,34,34 );
gfx.PutPixel( 145 + x,61 + y,208,34,34 );
gfx.PutPixel( 146 + x,61 + y,208,34,34 );
gfx.PutPixel( 147 + x,61 + y,208,34,34 );
gfx.PutPixel( 148 + x,61 + y,208,34,34 );
gfx.PutPixel( 149 + x,61 + y,208,34,34 );
gfx.PutPixel( 0 + x,62 + y,208,34,34 );
gfx.PutPixel( 1 + x,62 + y,208,34,34 );
gfx.PutPixel( 2 + x,62 + y,208,34,34 );
gfx.PutPixel( 3 + x,62 + y,208,34,34 );
gfx.PutPixel( 4 + x,62 + y,208,34,34 );
gfx.PutPixel( 5 + x,62 + y,208,34,34 );
gfx.PutPixel( 6 + x,62 + y,208,34,34 );
gfx.PutPixel( 7 + x,62 + y,208,34,34 );
gfx.PutPixel( 8 + x,62 + y,208,34,34 );
gfx.PutPixel( 9 + x,62 + y,208,34,34 );
gfx.PutPixel( 10 + x,62 + y,208,34,34 );
gfx.PutPixel( 11 + x,62 + y,208,34,34 );
gfx.PutPixel( 12 + x,62 + y,208,34,34 );
gfx.PutPixel( 13 + x,62 + y,208,34,34 );
gfx.PutPixel( 14 + x,62 + y,208,34,34 );
gfx.PutPixel( 15 + x,62 + y,208,34,34 );
gfx.PutPixel( 16 + x,62 + y,208,34,34 );
gfx.PutPixel( 17 + x,62 + y,208,34,34 );
gfx.PutPixel( 18 + x,62 + y,208,34,34 );
gfx.PutPixel( 19 + x,62 + y,208,34,34 );
gfx.PutPixel( 20 + x,62 + y,208,34,34 );
gfx.PutPixel( 21 + x,62 + y,208,34,34 );
gfx.PutPixel( 22 + x,62 + y,208,34,34 );
gfx.PutPixel( 23 + x,62 + y,208,34,34 );
gfx.PutPixel( 24 + x,62 + y,208,34,34 );
gfx.PutPixel( 25 + x,62 + y,208,34,34 );
gfx.PutPixel( 26 + x,62 + y,208,34,34 );
gfx.PutPixel( 27 + x,62 + y,208,34,34 );
gfx.PutPixel( 28 + x,62 + y,208,34,34 );
gfx.PutPixel( 29 + x,62 + y,208,34,34 );
gfx.PutPixel( 30 + x,62 + y,208,34,34 );
gfx.PutPixel( 31 + x,62 + y,208,34,34 );
gfx.PutPixel( 32 + x,62 + y,208,34,34 );
gfx.PutPixel( 33 + x,62 + y,208,34,34 );
gfx.PutPixel( 34 + x,62 + y,208,34,34 );
gfx.PutPixel( 35 + x,62 + y,208,34,34 );
gfx.PutPixel( 36 + x,62 + y,208,34,34 );
gfx.PutPixel( 37 + x,62 + y,208,34,34 );
gfx.PutPixel( 38 + x,62 + y,208,34,34 );
gfx.PutPixel( 39 + x,62 + y,208,34,34 );
gfx.PutPixel( 40 + x,62 + y,208,34,34 );
gfx.PutPixel( 41 + x,62 + y,208,34,34 );
gfx.PutPixel( 42 + x,62 + y,208,34,34 );
gfx.PutPixel( 43 + x,62 + y,208,34,34 );
gfx.PutPixel( 44 + x,62 + y,208,30,30 );
gfx.PutPixel( 45 + x,62 + y,209,47,47 );
gfx.PutPixel( 46 + x,62 + y,220,208,208 );
gfx.PutPixel( 47 + x,62 + y,221,225,225 );
gfx.PutPixel( 48 + x,62 + y,222,233,233 );
gfx.PutPixel( 49 + x,62 + y,215,128,128 );
gfx.PutPixel( 50 + x,62 + y,206,12,12 );
gfx.PutPixel( 51 + x,62 + y,210,64,64 );
gfx.PutPixel( 52 + x,62 + y,220,211,211 );
gfx.PutPixel( 53 + x,62 + y,221,227,227 );
gfx.PutPixel( 54 + x,62 + y,221,220,220 );
gfx.PutPixel( 55 + x,62 + y,222,231,231 );
gfx.PutPixel( 56 + x,62 + y,219,190,190 );
gfx.PutPixel( 57 + x,62 + y,209,45,45 );
gfx.PutPixel( 58 + x,62 + y,208,27,27 );
gfx.PutPixel( 59 + x,62 + y,208,34,34 );
gfx.PutPixel( 60 + x,62 + y,208,34,34 );
gfx.PutPixel( 61 + x,62 + y,208,34,34 );
gfx.PutPixel( 62 + x,62 + y,208,27,27 );
gfx.PutPixel( 63 + x,62 + y,218,173,173 );
gfx.PutPixel( 64 + x,62 + y,222,230,230 );
gfx.PutPixel( 65 + x,62 + y,222,230,230 );
gfx.PutPixel( 66 + x,62 + y,218,173,173 );
gfx.PutPixel( 67 + x,62 + y,208,26,26 );
gfx.PutPixel( 68 + x,62 + y,208,33,33 );
gfx.PutPixel( 69 + x,62 + y,208,33,33 );
gfx.PutPixel( 70 + x,62 + y,208,33,33 );
gfx.PutPixel( 71 + x,62 + y,208,33,33 );
gfx.PutPixel( 72 + x,62 + y,208,33,33 );
gfx.PutPixel( 73 + x,62 + y,208,33,33 );
gfx.PutPixel( 74 + x,62 + y,208,33,33 );
gfx.PutPixel( 75 + x,62 + y,208,34,34 );
gfx.PutPixel( 76 + x,62 + y,208,34,34 );
gfx.PutPixel( 77 + x,62 + y,208,27,27 );
gfx.PutPixel( 78 + x,62 + y,218,173,173 );
gfx.PutPixel( 79 + x,62 + y,222,230,230 );
gfx.PutPixel( 80 + x,62 + y,222,230,230 );
gfx.PutPixel( 81 + x,62 + y,218,173,173 );
gfx.PutPixel( 82 + x,62 + y,208,26,26 );
gfx.PutPixel( 83 + x,62 + y,208,33,33 );
gfx.PutPixel( 84 + x,62 + y,208,33,33 );
gfx.PutPixel( 85 + x,62 + y,208,33,33 );
gfx.PutPixel( 86 + x,62 + y,208,33,33 );
gfx.PutPixel( 87 + x,62 + y,208,33,33 );
gfx.PutPixel( 88 + x,62 + y,208,33,33 );
gfx.PutPixel( 89 + x,62 + y,208,33,33 );
gfx.PutPixel( 90 + x,62 + y,208,34,34 );
gfx.PutPixel( 91 + x,62 + y,208,30,30 );
gfx.PutPixel( 92 + x,62 + y,209,47,47 );
gfx.PutPixel( 93 + x,62 + y,220,208,208 );
gfx.PutPixel( 94 + x,62 + y,221,225,225 );
gfx.PutPixel( 95 + x,62 + y,222,234,234 );
gfx.PutPixel( 96 + x,62 + y,215,124,124 );
gfx.PutPixel( 97 + x,62 + y,206,13,13 );
gfx.PutPixel( 98 + x,62 + y,207,25,25 );
gfx.PutPixel( 99 + x,62 + y,207,25,25 );
gfx.PutPixel( 100 + x,62 + y,207,27,27 );
gfx.PutPixel( 101 + x,62 + y,208,30,30 );
gfx.PutPixel( 102 + x,62 + y,208,33,33 );
gfx.PutPixel( 103 + x,62 + y,208,34,34 );
gfx.PutPixel( 104 + x,62 + y,208,34,34 );
gfx.PutPixel( 105 + x,62 + y,208,34,34 );
gfx.PutPixel( 106 + x,62 + y,208,34,34 );
gfx.PutPixel( 107 + x,62 + y,208,34,34 );
gfx.PutPixel( 108 + x,62 + y,208,34,34 );
gfx.PutPixel( 109 + x,62 + y,208,34,34 );
gfx.PutPixel( 110 + x,62 + y,208,34,34 );
gfx.PutPixel( 111 + x,62 + y,208,34,34 );
gfx.PutPixel( 112 + x,62 + y,208,34,34 );
gfx.PutPixel( 113 + x,62 + y,208,34,34 );
gfx.PutPixel( 114 + x,62 + y,208,34,34 );
gfx.PutPixel( 115 + x,62 + y,208,34,34 );
gfx.PutPixel( 116 + x,62 + y,208,34,34 );
gfx.PutPixel( 117 + x,62 + y,208,34,34 );
gfx.PutPixel( 118 + x,62 + y,208,34,34 );
gfx.PutPixel( 119 + x,62 + y,208,34,34 );
gfx.PutPixel( 120 + x,62 + y,208,34,34 );
gfx.PutPixel( 121 + x,62 + y,208,34,34 );
gfx.PutPixel( 122 + x,62 + y,208,34,34 );
gfx.PutPixel( 123 + x,62 + y,208,34,34 );
gfx.PutPixel( 124 + x,62 + y,208,34,34 );
gfx.PutPixel( 125 + x,62 + y,208,34,34 );
gfx.PutPixel( 126 + x,62 + y,208,34,34 );
gfx.PutPixel( 127 + x,62 + y,208,34,34 );
gfx.PutPixel( 128 + x,62 + y,208,34,34 );
gfx.PutPixel( 129 + x,62 + y,208,34,34 );
gfx.PutPixel( 130 + x,62 + y,208,34,34 );
gfx.PutPixel( 131 + x,62 + y,208,34,34 );
gfx.PutPixel( 132 + x,62 + y,208,34,34 );
gfx.PutPixel( 133 + x,62 + y,208,34,34 );
gfx.PutPixel( 134 + x,62 + y,208,34,34 );
gfx.PutPixel( 135 + x,62 + y,208,34,34 );
gfx.PutPixel( 136 + x,62 + y,208,34,34 );
gfx.PutPixel( 137 + x,62 + y,208,34,34 );
gfx.PutPixel( 138 + x,62 + y,208,34,34 );
gfx.PutPixel( 139 + x,62 + y,208,34,34 );
gfx.PutPixel( 140 + x,62 + y,208,34,34 );
gfx.PutPixel( 141 + x,62 + y,208,34,34 );
gfx.PutPixel( 142 + x,62 + y,208,34,34 );
gfx.PutPixel( 143 + x,62 + y,208,34,34 );
gfx.PutPixel( 144 + x,62 + y,208,34,34 );
gfx.PutPixel( 145 + x,62 + y,208,34,34 );
gfx.PutPixel( 146 + x,62 + y,208,34,34 );
gfx.PutPixel( 147 + x,62 + y,208,34,34 );
gfx.PutPixel( 148 + x,62 + y,208,34,34 );
gfx.PutPixel( 149 + x,62 + y,208,34,34 );
gfx.PutPixel( 0 + x,63 + y,208,34,34 );
gfx.PutPixel( 1 + x,63 + y,208,34,34 );
gfx.PutPixel( 2 + x,63 + y,208,34,34 );
gfx.PutPixel( 3 + x,63 + y,208,34,34 );
gfx.PutPixel( 4 + x,63 + y,208,34,34 );
gfx.PutPixel( 5 + x,63 + y,208,34,34 );
gfx.PutPixel( 6 + x,63 + y,208,34,34 );
gfx.PutPixel( 7 + x,63 + y,208,34,34 );
gfx.PutPixel( 8 + x,63 + y,208,34,34 );
gfx.PutPixel( 9 + x,63 + y,208,34,34 );
gfx.PutPixel( 10 + x,63 + y,208,34,34 );
gfx.PutPixel( 11 + x,63 + y,208,34,34 );
gfx.PutPixel( 12 + x,63 + y,208,34,34 );
gfx.PutPixel( 13 + x,63 + y,208,34,34 );
gfx.PutPixel( 14 + x,63 + y,208,34,34 );
gfx.PutPixel( 15 + x,63 + y,208,34,34 );
gfx.PutPixel( 16 + x,63 + y,208,34,34 );
gfx.PutPixel( 17 + x,63 + y,208,34,34 );
gfx.PutPixel( 18 + x,63 + y,208,34,34 );
gfx.PutPixel( 19 + x,63 + y,208,34,34 );
gfx.PutPixel( 20 + x,63 + y,208,34,34 );
gfx.PutPixel( 21 + x,63 + y,208,34,34 );
gfx.PutPixel( 22 + x,63 + y,208,34,34 );
gfx.PutPixel( 23 + x,63 + y,208,34,34 );
gfx.PutPixel( 24 + x,63 + y,208,34,34 );
gfx.PutPixel( 25 + x,63 + y,208,34,34 );
gfx.PutPixel( 26 + x,63 + y,208,34,34 );
gfx.PutPixel( 27 + x,63 + y,208,34,34 );
gfx.PutPixel( 28 + x,63 + y,208,34,34 );
gfx.PutPixel( 29 + x,63 + y,208,34,34 );
gfx.PutPixel( 30 + x,63 + y,208,34,34 );
gfx.PutPixel( 31 + x,63 + y,208,34,34 );
gfx.PutPixel( 32 + x,63 + y,208,34,34 );
gfx.PutPixel( 33 + x,63 + y,208,34,34 );
gfx.PutPixel( 34 + x,63 + y,208,34,34 );
gfx.PutPixel( 35 + x,63 + y,208,34,34 );
gfx.PutPixel( 36 + x,63 + y,208,34,34 );
gfx.PutPixel( 37 + x,63 + y,208,34,34 );
gfx.PutPixel( 38 + x,63 + y,208,34,34 );
gfx.PutPixel( 39 + x,63 + y,208,34,34 );
gfx.PutPixel( 40 + x,63 + y,208,34,34 );
gfx.PutPixel( 41 + x,63 + y,208,34,34 );
gfx.PutPixel( 42 + x,63 + y,208,34,34 );
gfx.PutPixel( 43 + x,63 + y,208,34,34 );
gfx.PutPixel( 44 + x,63 + y,208,30,30 );
gfx.PutPixel( 45 + x,63 + y,209,47,47 );
gfx.PutPixel( 46 + x,63 + y,220,208,208 );
gfx.PutPixel( 47 + x,63 + y,221,225,225 );
gfx.PutPixel( 48 + x,63 + y,222,233,233 );
gfx.PutPixel( 49 + x,63 + y,215,128,128 );
gfx.PutPixel( 50 + x,63 + y,207,22,22 );
gfx.PutPixel( 51 + x,63 + y,207,22,22 );
gfx.PutPixel( 52 + x,63 + y,211,84,84 );
gfx.PutPixel( 53 + x,63 + y,221,222,222 );
gfx.PutPixel( 54 + x,63 + y,221,225,225 );
gfx.PutPixel( 55 + x,63 + y,221,220,220 );
gfx.PutPixel( 56 + x,63 + y,222,232,232 );
gfx.PutPixel( 57 + x,63 + y,218,176,176 );
gfx.PutPixel( 58 + x,63 + y,208,37,37 );
gfx.PutPixel( 59 + x,63 + y,208,29,29 );
gfx.PutPixel( 60 + x,63 + y,208,34,34 );
gfx.PutPixel( 61 + x,63 + y,208,34,34 );
gfx.PutPixel( 62 + x,63 + y,208,27,27 );
gfx.PutPixel( 63 + x,63 + y,218,173,173 );
gfx.PutPixel( 64 + x,63 + y,222,230,230 );
gfx.PutPixel( 65 + x,63 + y,222,230,230 );
gfx.PutPixel( 66 + x,63 + y,218,171,171 );
gfx.PutPixel( 67 + x,63 + y,208,20,20 );
gfx.PutPixel( 68 + x,63 + y,208,27,27 );
gfx.PutPixel( 69 + x,63 + y,208,27,27 );
gfx.PutPixel( 70 + x,63 + y,208,27,27 );
gfx.PutPixel( 71 + x,63 + y,208,27,27 );
gfx.PutPixel( 72 + x,63 + y,208,27,27 );
gfx.PutPixel( 73 + x,63 + y,208,27,27 );
gfx.PutPixel( 74 + x,63 + y,208,28,28 );
gfx.PutPixel( 75 + x,63 + y,208,34,34 );
gfx.PutPixel( 76 + x,63 + y,208,34,34 );
gfx.PutPixel( 77 + x,63 + y,208,27,27 );
gfx.PutPixel( 78 + x,63 + y,218,173,173 );
gfx.PutPixel( 79 + x,63 + y,222,230,230 );
gfx.PutPixel( 80 + x,63 + y,222,230,230 );
gfx.PutPixel( 81 + x,63 + y,218,171,171 );
gfx.PutPixel( 82 + x,63 + y,208,20,20 );
gfx.PutPixel( 83 + x,63 + y,208,27,27 );
gfx.PutPixel( 84 + x,63 + y,208,27,27 );
gfx.PutPixel( 85 + x,63 + y,208,27,27 );
gfx.PutPixel( 86 + x,63 + y,208,27,27 );
gfx.PutPixel( 87 + x,63 + y,208,27,27 );
gfx.PutPixel( 88 + x,63 + y,208,27,27 );
gfx.PutPixel( 89 + x,63 + y,208,28,28 );
gfx.PutPixel( 90 + x,63 + y,208,34,34 );
gfx.PutPixel( 91 + x,63 + y,208,30,30 );
gfx.PutPixel( 92 + x,63 + y,209,47,47 );
gfx.PutPixel( 93 + x,63 + y,220,208,208 );
gfx.PutPixel( 94 + x,63 + y,221,225,225 );
gfx.PutPixel( 95 + x,63 + y,222,233,233 );
gfx.PutPixel( 96 + x,63 + y,215,128,128 );
gfx.PutPixel( 97 + x,63 + y,207,22,22 );
gfx.PutPixel( 98 + x,63 + y,208,34,34 );
gfx.PutPixel( 99 + x,63 + y,208,34,34 );
gfx.PutPixel( 100 + x,63 + y,208,34,34 );
gfx.PutPixel( 101 + x,63 + y,208,34,34 );
gfx.PutPixel( 102 + x,63 + y,208,34,34 );
gfx.PutPixel( 103 + x,63 + y,208,34,34 );
gfx.PutPixel( 104 + x,63 + y,208,34,34 );
gfx.PutPixel( 105 + x,63 + y,208,34,34 );
gfx.PutPixel( 106 + x,63 + y,208,34,34 );
gfx.PutPixel( 107 + x,63 + y,208,34,34 );
gfx.PutPixel( 108 + x,63 + y,208,34,34 );
gfx.PutPixel( 109 + x,63 + y,208,34,34 );
gfx.PutPixel( 110 + x,63 + y,208,34,34 );
gfx.PutPixel( 111 + x,63 + y,208,34,34 );
gfx.PutPixel( 112 + x,63 + y,208,34,34 );
gfx.PutPixel( 113 + x,63 + y,208,34,34 );
gfx.PutPixel( 114 + x,63 + y,208,34,34 );
gfx.PutPixel( 115 + x,63 + y,208,34,34 );
gfx.PutPixel( 116 + x,63 + y,208,34,34 );
gfx.PutPixel( 117 + x,63 + y,208,34,34 );
gfx.PutPixel( 118 + x,63 + y,208,34,34 );
gfx.PutPixel( 119 + x,63 + y,208,34,34 );
gfx.PutPixel( 120 + x,63 + y,208,34,34 );
gfx.PutPixel( 121 + x,63 + y,208,34,34 );
gfx.PutPixel( 122 + x,63 + y,208,34,34 );
gfx.PutPixel( 123 + x,63 + y,208,34,34 );
gfx.PutPixel( 124 + x,63 + y,208,34,34 );
gfx.PutPixel( 125 + x,63 + y,208,34,34 );
gfx.PutPixel( 126 + x,63 + y,208,34,34 );
gfx.PutPixel( 127 + x,63 + y,208,34,34 );
gfx.PutPixel( 128 + x,63 + y,208,34,34 );
gfx.PutPixel( 129 + x,63 + y,208,34,34 );
gfx.PutPixel( 130 + x,63 + y,208,34,34 );
gfx.PutPixel( 131 + x,63 + y,208,34,34 );
gfx.PutPixel( 132 + x,63 + y,208,34,34 );
gfx.PutPixel( 133 + x,63 + y,208,34,34 );
gfx.PutPixel( 134 + x,63 + y,208,34,34 );
gfx.PutPixel( 135 + x,63 + y,208,34,34 );
gfx.PutPixel( 136 + x,63 + y,208,34,34 );
gfx.PutPixel( 137 + x,63 + y,208,34,34 );
gfx.PutPixel( 138 + x,63 + y,208,34,34 );
gfx.PutPixel( 139 + x,63 + y,208,34,34 );
gfx.PutPixel( 140 + x,63 + y,208,34,34 );
gfx.PutPixel( 141 + x,63 + y,208,34,34 );
gfx.PutPixel( 142 + x,63 + y,208,34,34 );
gfx.PutPixel( 143 + x,63 + y,208,34,34 );
gfx.PutPixel( 144 + x,63 + y,208,34,34 );
gfx.PutPixel( 145 + x,63 + y,208,34,34 );
gfx.PutPixel( 146 + x,63 + y,208,34,34 );
gfx.PutPixel( 147 + x,63 + y,208,34,34 );
gfx.PutPixel( 148 + x,63 + y,208,34,34 );
gfx.PutPixel( 149 + x,63 + y,208,34,34 );
gfx.PutPixel( 0 + x,64 + y,208,34,34 );
gfx.PutPixel( 1 + x,64 + y,208,34,34 );
gfx.PutPixel( 2 + x,64 + y,208,34,34 );
gfx.PutPixel( 3 + x,64 + y,208,34,34 );
gfx.PutPixel( 4 + x,64 + y,208,34,34 );
gfx.PutPixel( 5 + x,64 + y,208,34,34 );
gfx.PutPixel( 6 + x,64 + y,208,34,34 );
gfx.PutPixel( 7 + x,64 + y,208,34,34 );
gfx.PutPixel( 8 + x,64 + y,208,34,34 );
gfx.PutPixel( 9 + x,64 + y,208,34,34 );
gfx.PutPixel( 10 + x,64 + y,208,34,34 );
gfx.PutPixel( 11 + x,64 + y,208,34,34 );
gfx.PutPixel( 12 + x,64 + y,208,34,34 );
gfx.PutPixel( 13 + x,64 + y,208,34,34 );
gfx.PutPixel( 14 + x,64 + y,208,34,34 );
gfx.PutPixel( 15 + x,64 + y,208,34,34 );
gfx.PutPixel( 16 + x,64 + y,208,34,34 );
gfx.PutPixel( 17 + x,64 + y,208,34,34 );
gfx.PutPixel( 18 + x,64 + y,208,34,34 );
gfx.PutPixel( 19 + x,64 + y,208,34,34 );
gfx.PutPixel( 20 + x,64 + y,208,34,34 );
gfx.PutPixel( 21 + x,64 + y,208,34,34 );
gfx.PutPixel( 22 + x,64 + y,208,34,34 );
gfx.PutPixel( 23 + x,64 + y,208,34,34 );
gfx.PutPixel( 24 + x,64 + y,208,34,34 );
gfx.PutPixel( 25 + x,64 + y,208,34,34 );
gfx.PutPixel( 26 + x,64 + y,208,34,34 );
gfx.PutPixel( 27 + x,64 + y,208,34,34 );
gfx.PutPixel( 28 + x,64 + y,208,34,34 );
gfx.PutPixel( 29 + x,64 + y,208,34,34 );
gfx.PutPixel( 30 + x,64 + y,208,34,34 );
gfx.PutPixel( 31 + x,64 + y,208,34,34 );
gfx.PutPixel( 32 + x,64 + y,208,34,34 );
gfx.PutPixel( 33 + x,64 + y,208,34,34 );
gfx.PutPixel( 34 + x,64 + y,208,34,34 );
gfx.PutPixel( 35 + x,64 + y,208,34,34 );
gfx.PutPixel( 36 + x,64 + y,208,34,34 );
gfx.PutPixel( 37 + x,64 + y,208,34,34 );
gfx.PutPixel( 38 + x,64 + y,208,34,34 );
gfx.PutPixel( 39 + x,64 + y,208,34,34 );
gfx.PutPixel( 40 + x,64 + y,208,34,34 );
gfx.PutPixel( 41 + x,64 + y,208,34,34 );
gfx.PutPixel( 42 + x,64 + y,208,34,34 );
gfx.PutPixel( 43 + x,64 + y,208,34,34 );
gfx.PutPixel( 44 + x,64 + y,208,30,30 );
gfx.PutPixel( 45 + x,64 + y,209,47,47 );
gfx.PutPixel( 46 + x,64 + y,220,208,208 );
gfx.PutPixel( 47 + x,64 + y,221,225,225 );
gfx.PutPixel( 48 + x,64 + y,222,233,233 );
gfx.PutPixel( 49 + x,64 + y,215,128,128 );
gfx.PutPixel( 50 + x,64 + y,207,22,22 );
gfx.PutPixel( 51 + x,64 + y,208,34,34 );
gfx.PutPixel( 52 + x,64 + y,207,21,21 );
gfx.PutPixel( 53 + x,64 + y,213,107,107 );
gfx.PutPixel( 54 + x,64 + y,222,229,229 );
gfx.PutPixel( 55 + x,64 + y,221,223,223 );
gfx.PutPixel( 56 + x,64 + y,221,221,221 );
gfx.PutPixel( 57 + x,64 + y,222,233,233 );
gfx.PutPixel( 58 + x,64 + y,217,162,162 );
gfx.PutPixel( 59 + x,64 + y,208,30,30 );
gfx.PutPixel( 60 + x,64 + y,208,31,31 );
gfx.PutPixel( 61 + x,64 + y,208,34,34 );
gfx.PutPixel( 62 + x,64 + y,208,27,27 );
gfx.PutPixel( 63 + x,64 + y,218,173,173 );
gfx.PutPixel( 64 + x,64 + y,222,230,230 );
gfx.PutPixel( 65 + x,64 + y,221,223,223 );
gfx.PutPixel( 66 + x,64 + y,220,209,209 );
gfx.PutPixel( 67 + x,64 + y,218,171,171 );
gfx.PutPixel( 68 + x,64 + y,218,173,173 );
gfx.PutPixel( 69 + x,64 + y,218,173,173 );
gfx.PutPixel( 70 + x,64 + y,218,173,173 );
gfx.PutPixel( 71 + x,64 + y,218,173,173 );
gfx.PutPixel( 72 + x,64 + y,218,173,173 );
gfx.PutPixel( 73 + x,64 + y,218,176,176 );
gfx.PutPixel( 74 + x,64 + y,217,161,161 );
gfx.PutPixel( 75 + x,64 + y,209,43,43 );
gfx.PutPixel( 76 + x,64 + y,208,31,31 );
gfx.PutPixel( 77 + x,64 + y,208,27,27 );
gfx.PutPixel( 78 + x,64 + y,218,173,173 );
gfx.PutPixel( 79 + x,64 + y,222,230,230 );
gfx.PutPixel( 80 + x,64 + y,221,223,223 );
gfx.PutPixel( 81 + x,64 + y,220,209,209 );
gfx.PutPixel( 82 + x,64 + y,218,171,171 );
gfx.PutPixel( 83 + x,64 + y,218,173,173 );
gfx.PutPixel( 84 + x,64 + y,218,173,173 );
gfx.PutPixel( 85 + x,64 + y,218,173,173 );
gfx.PutPixel( 86 + x,64 + y,218,173,173 );
gfx.PutPixel( 87 + x,64 + y,218,173,173 );
gfx.PutPixel( 88 + x,64 + y,218,176,176 );
gfx.PutPixel( 89 + x,64 + y,217,161,161 );
gfx.PutPixel( 90 + x,64 + y,209,43,43 );
gfx.PutPixel( 91 + x,64 + y,208,28,28 );
gfx.PutPixel( 92 + x,64 + y,209,47,47 );
gfx.PutPixel( 93 + x,64 + y,220,208,208 );
gfx.PutPixel( 94 + x,64 + y,221,225,225 );
gfx.PutPixel( 95 + x,64 + y,222,233,233 );
gfx.PutPixel( 96 + x,64 + y,215,128,128 );
gfx.PutPixel( 97 + x,64 + y,207,22,22 );
gfx.PutPixel( 98 + x,64 + y,208,34,34 );
gfx.PutPixel( 99 + x,64 + y,208,34,34 );
gfx.PutPixel( 100 + x,64 + y,208,34,34 );
gfx.PutPixel( 101 + x,64 + y,208,34,34 );
gfx.PutPixel( 102 + x,64 + y,208,34,34 );
gfx.PutPixel( 103 + x,64 + y,208,34,34 );
gfx.PutPixel( 104 + x,64 + y,208,34,34 );
gfx.PutPixel( 105 + x,64 + y,208,34,34 );
gfx.PutPixel( 106 + x,64 + y,208,34,34 );
gfx.PutPixel( 107 + x,64 + y,208,34,34 );
gfx.PutPixel( 108 + x,64 + y,208,34,34 );
gfx.PutPixel( 109 + x,64 + y,208,34,34 );
gfx.PutPixel( 110 + x,64 + y,208,34,34 );
gfx.PutPixel( 111 + x,64 + y,208,34,34 );
gfx.PutPixel( 112 + x,64 + y,208,34,34 );
gfx.PutPixel( 113 + x,64 + y,208,34,34 );
gfx.PutPixel( 114 + x,64 + y,208,34,34 );
gfx.PutPixel( 115 + x,64 + y,208,34,34 );
gfx.PutPixel( 116 + x,64 + y,208,34,34 );
gfx.PutPixel( 117 + x,64 + y,208,34,34 );
gfx.PutPixel( 118 + x,64 + y,208,34,34 );
gfx.PutPixel( 119 + x,64 + y,208,34,34 );
gfx.PutPixel( 120 + x,64 + y,208,34,34 );
gfx.PutPixel( 121 + x,64 + y,208,34,34 );
gfx.PutPixel( 122 + x,64 + y,208,34,34 );
gfx.PutPixel( 123 + x,64 + y,208,34,34 );
gfx.PutPixel( 124 + x,64 + y,208,34,34 );
gfx.PutPixel( 125 + x,64 + y,208,34,34 );
gfx.PutPixel( 126 + x,64 + y,208,34,34 );
gfx.PutPixel( 127 + x,64 + y,208,34,34 );
gfx.PutPixel( 128 + x,64 + y,208,34,34 );
gfx.PutPixel( 129 + x,64 + y,208,34,34 );
gfx.PutPixel( 130 + x,64 + y,208,34,34 );
gfx.PutPixel( 131 + x,64 + y,208,34,34 );
gfx.PutPixel( 132 + x,64 + y,208,34,34 );
gfx.PutPixel( 133 + x,64 + y,208,34,34 );
gfx.PutPixel( 134 + x,64 + y,208,34,34 );
gfx.PutPixel( 135 + x,64 + y,208,34,34 );
gfx.PutPixel( 136 + x,64 + y,208,34,34 );
gfx.PutPixel( 137 + x,64 + y,208,34,34 );
gfx.PutPixel( 138 + x,64 + y,208,34,34 );
gfx.PutPixel( 139 + x,64 + y,208,34,34 );
gfx.PutPixel( 140 + x,64 + y,208,34,34 );
gfx.PutPixel( 141 + x,64 + y,208,34,34 );
gfx.PutPixel( 142 + x,64 + y,208,34,34 );
gfx.PutPixel( 143 + x,64 + y,208,34,34 );
gfx.PutPixel( 144 + x,64 + y,208,34,34 );
gfx.PutPixel( 145 + x,64 + y,208,34,34 );
gfx.PutPixel( 146 + x,64 + y,208,34,34 );
gfx.PutPixel( 147 + x,64 + y,208,34,34 );
gfx.PutPixel( 148 + x,64 + y,208,34,34 );
gfx.PutPixel( 149 + x,64 + y,208,34,34 );
gfx.PutPixel( 0 + x,65 + y,208,34,34 );
gfx.PutPixel( 1 + x,65 + y,208,34,34 );
gfx.PutPixel( 2 + x,65 + y,208,34,34 );
gfx.PutPixel( 3 + x,65 + y,208,34,34 );
gfx.PutPixel( 4 + x,65 + y,208,34,34 );
gfx.PutPixel( 5 + x,65 + y,208,34,34 );
gfx.PutPixel( 6 + x,65 + y,208,34,34 );
gfx.PutPixel( 7 + x,65 + y,208,34,34 );
gfx.PutPixel( 8 + x,65 + y,208,34,34 );
gfx.PutPixel( 9 + x,65 + y,208,34,34 );
gfx.PutPixel( 10 + x,65 + y,208,34,34 );
gfx.PutPixel( 11 + x,65 + y,208,34,34 );
gfx.PutPixel( 12 + x,65 + y,208,34,34 );
gfx.PutPixel( 13 + x,65 + y,208,34,34 );
gfx.PutPixel( 14 + x,65 + y,208,34,34 );
gfx.PutPixel( 15 + x,65 + y,208,34,34 );
gfx.PutPixel( 16 + x,65 + y,208,34,34 );
gfx.PutPixel( 17 + x,65 + y,208,34,34 );
gfx.PutPixel( 18 + x,65 + y,208,34,34 );
gfx.PutPixel( 19 + x,65 + y,208,34,34 );
gfx.PutPixel( 20 + x,65 + y,208,34,34 );
gfx.PutPixel( 21 + x,65 + y,208,34,34 );
gfx.PutPixel( 22 + x,65 + y,208,34,34 );
gfx.PutPixel( 23 + x,65 + y,208,34,34 );
gfx.PutPixel( 24 + x,65 + y,208,34,34 );
gfx.PutPixel( 25 + x,65 + y,208,34,34 );
gfx.PutPixel( 26 + x,65 + y,208,34,34 );
gfx.PutPixel( 27 + x,65 + y,208,34,34 );
gfx.PutPixel( 28 + x,65 + y,208,34,34 );
gfx.PutPixel( 29 + x,65 + y,208,34,34 );
gfx.PutPixel( 30 + x,65 + y,208,34,34 );
gfx.PutPixel( 31 + x,65 + y,208,34,34 );
gfx.PutPixel( 32 + x,65 + y,208,34,34 );
gfx.PutPixel( 33 + x,65 + y,208,34,34 );
gfx.PutPixel( 34 + x,65 + y,208,34,34 );
gfx.PutPixel( 35 + x,65 + y,208,34,34 );
gfx.PutPixel( 36 + x,65 + y,208,34,34 );
gfx.PutPixel( 37 + x,65 + y,208,34,34 );
gfx.PutPixel( 38 + x,65 + y,208,34,34 );
gfx.PutPixel( 39 + x,65 + y,208,34,34 );
gfx.PutPixel( 40 + x,65 + y,208,34,34 );
gfx.PutPixel( 41 + x,65 + y,208,34,34 );
gfx.PutPixel( 42 + x,65 + y,208,34,34 );
gfx.PutPixel( 43 + x,65 + y,208,34,34 );
gfx.PutPixel( 44 + x,65 + y,208,30,30 );
gfx.PutPixel( 45 + x,65 + y,209,47,47 );
gfx.PutPixel( 46 + x,65 + y,220,208,208 );
gfx.PutPixel( 47 + x,65 + y,221,225,225 );
gfx.PutPixel( 48 + x,65 + y,222,233,233 );
gfx.PutPixel( 49 + x,65 + y,215,128,128 );
gfx.PutPixel( 50 + x,65 + y,207,22,22 );
gfx.PutPixel( 51 + x,65 + y,208,34,34 );
gfx.PutPixel( 52 + x,65 + y,208,33,33 );
gfx.PutPixel( 53 + x,65 + y,207,23,23 );
gfx.PutPixel( 54 + x,65 + y,215,130,130 );
gfx.PutPixel( 55 + x,65 + y,222,233,233 );
gfx.PutPixel( 56 + x,65 + y,221,221,221 );
gfx.PutPixel( 57 + x,65 + y,221,221,221 );
gfx.PutPixel( 58 + x,65 + y,222,233,233 );
gfx.PutPixel( 59 + x,65 + y,216,146,146 );
gfx.PutPixel( 60 + x,65 + y,208,26,26 );
gfx.PutPixel( 61 + x,65 + y,208,31,31 );
gfx.PutPixel( 62 + x,65 + y,208,27,27 );
gfx.PutPixel( 63 + x,65 + y,218,173,173 );
gfx.PutPixel( 64 + x,65 + y,222,230,230 );
gfx.PutPixel( 65 + x,65 + y,221,221,221 );
gfx.PutPixel( 66 + x,65 + y,221,223,223 );
gfx.PutPixel( 67 + x,65 + y,222,230,230 );
gfx.PutPixel( 68 + x,65 + y,222,230,230 );
gfx.PutPixel( 69 + x,65 + y,222,230,230 );
gfx.PutPixel( 70 + x,65 + y,222,230,230 );
gfx.PutPixel( 71 + x,65 + y,222,230,230 );
gfx.PutPixel( 72 + x,65 + y,222,230,230 );
gfx.PutPixel( 73 + x,65 + y,222,234,234 );
gfx.PutPixel( 74 + x,65 + y,221,213,213 );
gfx.PutPixel( 75 + x,65 + y,209,47,47 );
gfx.PutPixel( 76 + x,65 + y,208,30,30 );
gfx.PutPixel( 77 + x,65 + y,208,27,27 );
gfx.PutPixel( 78 + x,65 + y,218,173,173 );
gfx.PutPixel( 79 + x,65 + y,222,230,230 );
gfx.PutPixel( 80 + x,65 + y,221,221,221 );
gfx.PutPixel( 81 + x,65 + y,221,223,223 );
gfx.PutPixel( 82 + x,65 + y,222,230,230 );
gfx.PutPixel( 83 + x,65 + y,222,230,230 );
gfx.PutPixel( 84 + x,65 + y,222,230,230 );
gfx.PutPixel( 85 + x,65 + y,222,230,230 );
gfx.PutPixel( 86 + x,65 + y,222,230,230 );
gfx.PutPixel( 87 + x,65 + y,222,230,230 );
gfx.PutPixel( 88 + x,65 + y,222,234,234 );
gfx.PutPixel( 89 + x,65 + y,221,213,213 );
gfx.PutPixel( 90 + x,65 + y,209,47,47 );
gfx.PutPixel( 91 + x,65 + y,208,27,27 );
gfx.PutPixel( 92 + x,65 + y,209,47,47 );
gfx.PutPixel( 93 + x,65 + y,220,208,208 );
gfx.PutPixel( 94 + x,65 + y,221,225,225 );
gfx.PutPixel( 95 + x,65 + y,222,233,233 );
gfx.PutPixel( 96 + x,65 + y,215,128,128 );
gfx.PutPixel( 97 + x,65 + y,207,22,22 );
gfx.PutPixel( 98 + x,65 + y,208,34,34 );
gfx.PutPixel( 99 + x,65 + y,208,34,34 );
gfx.PutPixel( 100 + x,65 + y,208,34,34 );
gfx.PutPixel( 101 + x,65 + y,208,34,34 );
gfx.PutPixel( 102 + x,65 + y,208,34,34 );
gfx.PutPixel( 103 + x,65 + y,208,34,34 );
gfx.PutPixel( 104 + x,65 + y,208,34,34 );
gfx.PutPixel( 105 + x,65 + y,208,34,34 );
gfx.PutPixel( 106 + x,65 + y,208,34,34 );
gfx.PutPixel( 107 + x,65 + y,208,34,34 );
gfx.PutPixel( 108 + x,65 + y,208,34,34 );
gfx.PutPixel( 109 + x,65 + y,208,34,34 );
gfx.PutPixel( 110 + x,65 + y,208,34,34 );
gfx.PutPixel( 111 + x,65 + y,208,34,34 );
gfx.PutPixel( 112 + x,65 + y,208,34,34 );
gfx.PutPixel( 113 + x,65 + y,208,34,34 );
gfx.PutPixel( 114 + x,65 + y,208,34,34 );
gfx.PutPixel( 115 + x,65 + y,208,34,34 );
gfx.PutPixel( 116 + x,65 + y,208,34,34 );
gfx.PutPixel( 117 + x,65 + y,208,34,34 );
gfx.PutPixel( 118 + x,65 + y,208,34,34 );
gfx.PutPixel( 119 + x,65 + y,208,34,34 );
gfx.PutPixel( 120 + x,65 + y,208,34,34 );
gfx.PutPixel( 121 + x,65 + y,208,34,34 );
gfx.PutPixel( 122 + x,65 + y,208,34,34 );
gfx.PutPixel( 123 + x,65 + y,208,34,34 );
gfx.PutPixel( 124 + x,65 + y,208,34,34 );
gfx.PutPixel( 125 + x,65 + y,208,34,34 );
gfx.PutPixel( 126 + x,65 + y,208,34,34 );
gfx.PutPixel( 127 + x,65 + y,208,34,34 );
gfx.PutPixel( 128 + x,65 + y,208,34,34 );
gfx.PutPixel( 129 + x,65 + y,208,34,34 );
gfx.PutPixel( 130 + x,65 + y,208,34,34 );
gfx.PutPixel( 131 + x,65 + y,208,34,34 );
gfx.PutPixel( 132 + x,65 + y,208,34,34 );
gfx.PutPixel( 133 + x,65 + y,208,34,34 );
gfx.PutPixel( 134 + x,65 + y,208,34,34 );
gfx.PutPixel( 135 + x,65 + y,208,34,34 );
gfx.PutPixel( 136 + x,65 + y,208,34,34 );
gfx.PutPixel( 137 + x,65 + y,208,34,34 );
gfx.PutPixel( 138 + x,65 + y,208,34,34 );
gfx.PutPixel( 139 + x,65 + y,208,34,34 );
gfx.PutPixel( 140 + x,65 + y,208,34,34 );
gfx.PutPixel( 141 + x,65 + y,208,34,34 );
gfx.PutPixel( 142 + x,65 + y,208,34,34 );
gfx.PutPixel( 143 + x,65 + y,208,34,34 );
gfx.PutPixel( 144 + x,65 + y,208,34,34 );
gfx.PutPixel( 145 + x,65 + y,208,34,34 );
gfx.PutPixel( 146 + x,65 + y,208,34,34 );
gfx.PutPixel( 147 + x,65 + y,208,34,34 );
gfx.PutPixel( 148 + x,65 + y,208,34,34 );
gfx.PutPixel( 149 + x,65 + y,208,34,34 );
gfx.PutPixel( 0 + x,66 + y,208,34,34 );
gfx.PutPixel( 1 + x,66 + y,208,34,34 );
gfx.PutPixel( 2 + x,66 + y,208,34,34 );
gfx.PutPixel( 3 + x,66 + y,208,34,34 );
gfx.PutPixel( 4 + x,66 + y,208,34,34 );
gfx.PutPixel( 5 + x,66 + y,208,34,34 );
gfx.PutPixel( 6 + x,66 + y,208,34,34 );
gfx.PutPixel( 7 + x,66 + y,208,34,34 );
gfx.PutPixel( 8 + x,66 + y,208,34,34 );
gfx.PutPixel( 9 + x,66 + y,208,34,34 );
gfx.PutPixel( 10 + x,66 + y,208,34,34 );
gfx.PutPixel( 11 + x,66 + y,208,34,34 );
gfx.PutPixel( 12 + x,66 + y,208,34,34 );
gfx.PutPixel( 13 + x,66 + y,208,34,34 );
gfx.PutPixel( 14 + x,66 + y,208,34,34 );
gfx.PutPixel( 15 + x,66 + y,208,34,34 );
gfx.PutPixel( 16 + x,66 + y,208,34,34 );
gfx.PutPixel( 17 + x,66 + y,208,34,34 );
gfx.PutPixel( 18 + x,66 + y,208,34,34 );
gfx.PutPixel( 19 + x,66 + y,208,34,34 );
gfx.PutPixel( 20 + x,66 + y,208,34,34 );
gfx.PutPixel( 21 + x,66 + y,208,34,34 );
gfx.PutPixel( 22 + x,66 + y,208,34,34 );
gfx.PutPixel( 23 + x,66 + y,208,34,34 );
gfx.PutPixel( 24 + x,66 + y,208,34,34 );
gfx.PutPixel( 25 + x,66 + y,208,34,34 );
gfx.PutPixel( 26 + x,66 + y,208,34,34 );
gfx.PutPixel( 27 + x,66 + y,208,34,34 );
gfx.PutPixel( 28 + x,66 + y,208,34,34 );
gfx.PutPixel( 29 + x,66 + y,208,34,34 );
gfx.PutPixel( 30 + x,66 + y,208,34,34 );
gfx.PutPixel( 31 + x,66 + y,208,34,34 );
gfx.PutPixel( 32 + x,66 + y,208,34,34 );
gfx.PutPixel( 33 + x,66 + y,208,34,34 );
gfx.PutPixel( 34 + x,66 + y,208,34,34 );
gfx.PutPixel( 35 + x,66 + y,208,34,34 );
gfx.PutPixel( 36 + x,66 + y,208,34,34 );
gfx.PutPixel( 37 + x,66 + y,208,34,34 );
gfx.PutPixel( 38 + x,66 + y,208,34,34 );
gfx.PutPixel( 39 + x,66 + y,208,34,34 );
gfx.PutPixel( 40 + x,66 + y,208,34,34 );
gfx.PutPixel( 41 + x,66 + y,208,34,34 );
gfx.PutPixel( 42 + x,66 + y,208,34,34 );
gfx.PutPixel( 43 + x,66 + y,208,34,34 );
gfx.PutPixel( 44 + x,66 + y,208,30,30 );
gfx.PutPixel( 45 + x,66 + y,209,48,48 );
gfx.PutPixel( 46 + x,66 + y,221,216,216 );
gfx.PutPixel( 47 + x,66 + y,222,234,234 );
gfx.PutPixel( 48 + x,66 + y,223,242,242 );
gfx.PutPixel( 49 + x,66 + y,215,132,132 );
gfx.PutPixel( 50 + x,66 + y,207,21,21 );
gfx.PutPixel( 51 + x,66 + y,208,34,34 );
gfx.PutPixel( 52 + x,66 + y,208,34,34 );
gfx.PutPixel( 53 + x,66 + y,208,32,32 );
gfx.PutPixel( 54 + x,66 + y,208,27,27 );
gfx.PutPixel( 55 + x,66 + y,216,154,154 );
gfx.PutPixel( 56 + x,66 + y,222,237,237 );
gfx.PutPixel( 57 + x,66 + y,222,230,230 );
gfx.PutPixel( 58 + x,66 + y,222,231,231 );
gfx.PutPixel( 59 + x,66 + y,222,241,241 );
gfx.PutPixel( 60 + x,66 + y,215,139,139 );
gfx.PutPixel( 61 + x,66 + y,208,30,30 );
gfx.PutPixel( 62 + x,66 + y,208,26,26 );
gfx.PutPixel( 63 + x,66 + y,218,179,179 );
gfx.PutPixel( 64 + x,66 + y,223,239,239 );
gfx.PutPixel( 65 + x,66 + y,222,230,230 );
gfx.PutPixel( 66 + x,66 + y,222,230,230 );
gfx.PutPixel( 67 + x,66 + y,222,230,230 );
gfx.PutPixel( 68 + x,66 + y,222,230,230 );
gfx.PutPixel( 69 + x,66 + y,222,230,230 );
gfx.PutPixel( 70 + x,66 + y,222,230,230 );
gfx.PutPixel( 71 + x,66 + y,222,230,230 );
gfx.PutPixel( 72 + x,66 + y,222,230,230 );
gfx.PutPixel( 73 + x,66 + y,222,234,234 );
gfx.PutPixel( 74 + x,66 + y,221,213,213 );
gfx.PutPixel( 75 + x,66 + y,209,47,47 );
gfx.PutPixel( 76 + x,66 + y,208,30,30 );
gfx.PutPixel( 77 + x,66 + y,208,27,27 );
gfx.PutPixel( 78 + x,66 + y,218,179,179 );
gfx.PutPixel( 79 + x,66 + y,223,239,239 );
gfx.PutPixel( 80 + x,66 + y,222,230,230 );
gfx.PutPixel( 81 + x,66 + y,222,230,230 );
gfx.PutPixel( 82 + x,66 + y,222,230,230 );
gfx.PutPixel( 83 + x,66 + y,222,230,230 );
gfx.PutPixel( 84 + x,66 + y,222,230,230 );
gfx.PutPixel( 85 + x,66 + y,222,230,230 );
gfx.PutPixel( 86 + x,66 + y,222,230,230 );
gfx.PutPixel( 87 + x,66 + y,222,230,230 );
gfx.PutPixel( 88 + x,66 + y,222,234,234 );
gfx.PutPixel( 89 + x,66 + y,221,213,213 );
gfx.PutPixel( 90 + x,66 + y,209,47,47 );
gfx.PutPixel( 91 + x,66 + y,208,27,27 );
gfx.PutPixel( 92 + x,66 + y,209,48,48 );
gfx.PutPixel( 93 + x,66 + y,221,216,216 );
gfx.PutPixel( 94 + x,66 + y,222,234,234 );
gfx.PutPixel( 95 + x,66 + y,223,242,242 );
gfx.PutPixel( 96 + x,66 + y,215,132,132 );
gfx.PutPixel( 97 + x,66 + y,207,21,21 );
gfx.PutPixel( 98 + x,66 + y,208,34,34 );
gfx.PutPixel( 99 + x,66 + y,208,34,34 );
gfx.PutPixel( 100 + x,66 + y,208,34,34 );
gfx.PutPixel( 101 + x,66 + y,208,34,34 );
gfx.PutPixel( 102 + x,66 + y,208,34,34 );
gfx.PutPixel( 103 + x,66 + y,208,34,34 );
gfx.PutPixel( 104 + x,66 + y,208,34,34 );
gfx.PutPixel( 105 + x,66 + y,208,34,34 );
gfx.PutPixel( 106 + x,66 + y,208,34,34 );
gfx.PutPixel( 107 + x,66 + y,208,34,34 );
gfx.PutPixel( 108 + x,66 + y,208,34,34 );
gfx.PutPixel( 109 + x,66 + y,208,34,34 );
gfx.PutPixel( 110 + x,66 + y,208,34,34 );
gfx.PutPixel( 111 + x,66 + y,208,34,34 );
gfx.PutPixel( 112 + x,66 + y,208,34,34 );
gfx.PutPixel( 113 + x,66 + y,208,34,34 );
gfx.PutPixel( 114 + x,66 + y,208,34,34 );
gfx.PutPixel( 115 + x,66 + y,208,34,34 );
gfx.PutPixel( 116 + x,66 + y,208,34,34 );
gfx.PutPixel( 117 + x,66 + y,208,34,34 );
gfx.PutPixel( 118 + x,66 + y,208,34,34 );
gfx.PutPixel( 119 + x,66 + y,208,34,34 );
gfx.PutPixel( 120 + x,66 + y,208,34,34 );
gfx.PutPixel( 121 + x,66 + y,208,34,34 );
gfx.PutPixel( 122 + x,66 + y,208,34,34 );
gfx.PutPixel( 123 + x,66 + y,208,34,34 );
gfx.PutPixel( 124 + x,66 + y,208,34,34 );
gfx.PutPixel( 125 + x,66 + y,208,34,34 );
gfx.PutPixel( 126 + x,66 + y,208,34,34 );
gfx.PutPixel( 127 + x,66 + y,208,34,34 );
gfx.PutPixel( 128 + x,66 + y,208,34,34 );
gfx.PutPixel( 129 + x,66 + y,208,34,34 );
gfx.PutPixel( 130 + x,66 + y,208,34,34 );
gfx.PutPixel( 131 + x,66 + y,208,34,34 );
gfx.PutPixel( 132 + x,66 + y,208,34,34 );
gfx.PutPixel( 133 + x,66 + y,208,34,34 );
gfx.PutPixel( 134 + x,66 + y,208,34,34 );
gfx.PutPixel( 135 + x,66 + y,208,34,34 );
gfx.PutPixel( 136 + x,66 + y,208,34,34 );
gfx.PutPixel( 137 + x,66 + y,208,34,34 );
gfx.PutPixel( 138 + x,66 + y,208,34,34 );
gfx.PutPixel( 139 + x,66 + y,208,34,34 );
gfx.PutPixel( 140 + x,66 + y,208,34,34 );
gfx.PutPixel( 141 + x,66 + y,208,34,34 );
gfx.PutPixel( 142 + x,66 + y,208,34,34 );
gfx.PutPixel( 143 + x,66 + y,208,34,34 );
gfx.PutPixel( 144 + x,66 + y,208,34,34 );
gfx.PutPixel( 145 + x,66 + y,208,34,34 );
gfx.PutPixel( 146 + x,66 + y,208,34,34 );
gfx.PutPixel( 147 + x,66 + y,208,34,34 );
gfx.PutPixel( 148 + x,66 + y,208,34,34 );
gfx.PutPixel( 149 + x,66 + y,208,34,34 );
gfx.PutPixel( 0 + x,67 + y,208,34,34 );
gfx.PutPixel( 1 + x,67 + y,208,34,34 );
gfx.PutPixel( 2 + x,67 + y,208,34,34 );
gfx.PutPixel( 3 + x,67 + y,208,34,34 );
gfx.PutPixel( 4 + x,67 + y,208,34,34 );
gfx.PutPixel( 5 + x,67 + y,208,34,34 );
gfx.PutPixel( 6 + x,67 + y,208,34,34 );
gfx.PutPixel( 7 + x,67 + y,208,34,34 );
gfx.PutPixel( 8 + x,67 + y,208,34,34 );
gfx.PutPixel( 9 + x,67 + y,208,34,34 );
gfx.PutPixel( 10 + x,67 + y,208,34,34 );
gfx.PutPixel( 11 + x,67 + y,208,34,34 );
gfx.PutPixel( 12 + x,67 + y,208,34,34 );
gfx.PutPixel( 13 + x,67 + y,208,34,34 );
gfx.PutPixel( 14 + x,67 + y,208,34,34 );
gfx.PutPixel( 15 + x,67 + y,208,34,34 );
gfx.PutPixel( 16 + x,67 + y,208,34,34 );
gfx.PutPixel( 17 + x,67 + y,208,34,34 );
gfx.PutPixel( 18 + x,67 + y,208,34,34 );
gfx.PutPixel( 19 + x,67 + y,208,34,34 );
gfx.PutPixel( 20 + x,67 + y,208,34,34 );
gfx.PutPixel( 21 + x,67 + y,208,34,34 );
gfx.PutPixel( 22 + x,67 + y,208,34,34 );
gfx.PutPixel( 23 + x,67 + y,208,34,34 );
gfx.PutPixel( 24 + x,67 + y,208,34,34 );
gfx.PutPixel( 25 + x,67 + y,208,34,34 );
gfx.PutPixel( 26 + x,67 + y,208,34,34 );
gfx.PutPixel( 27 + x,67 + y,208,34,34 );
gfx.PutPixel( 28 + x,67 + y,208,34,34 );
gfx.PutPixel( 29 + x,67 + y,208,34,34 );
gfx.PutPixel( 30 + x,67 + y,208,34,34 );
gfx.PutPixel( 31 + x,67 + y,208,34,34 );
gfx.PutPixel( 32 + x,67 + y,208,34,34 );
gfx.PutPixel( 33 + x,67 + y,208,34,34 );
gfx.PutPixel( 34 + x,67 + y,208,34,34 );
gfx.PutPixel( 35 + x,67 + y,208,34,34 );
gfx.PutPixel( 36 + x,67 + y,208,34,34 );
gfx.PutPixel( 37 + x,67 + y,208,34,34 );
gfx.PutPixel( 38 + x,67 + y,208,34,34 );
gfx.PutPixel( 39 + x,67 + y,208,34,34 );
gfx.PutPixel( 40 + x,67 + y,208,34,34 );
gfx.PutPixel( 41 + x,67 + y,208,34,34 );
gfx.PutPixel( 42 + x,67 + y,208,34,34 );
gfx.PutPixel( 43 + x,67 + y,208,34,34 );
gfx.PutPixel( 44 + x,67 + y,208,31,31 );
gfx.PutPixel( 45 + x,67 + y,209,44,44 );
gfx.PutPixel( 46 + x,67 + y,217,163,163 );
gfx.PutPixel( 47 + x,67 + y,218,176,176 );
gfx.PutPixel( 48 + x,67 + y,218,182,182 );
gfx.PutPixel( 49 + x,67 + y,213,104,104 );
gfx.PutPixel( 50 + x,67 + y,207,25,25 );
gfx.PutPixel( 51 + x,67 + y,208,34,34 );
gfx.PutPixel( 52 + x,67 + y,208,34,34 );
gfx.PutPixel( 53 + x,67 + y,208,34,34 );
gfx.PutPixel( 54 + x,67 + y,208,30,30 );
gfx.PutPixel( 55 + x,67 + y,208,39,39 );
gfx.PutPixel( 56 + x,67 + y,216,153,153 );
gfx.PutPixel( 57 + x,67 + y,218,176,176 );
gfx.PutPixel( 58 + x,67 + y,218,173,173 );
gfx.PutPixel( 59 + x,67 + y,218,175,175 );
gfx.PutPixel( 60 + x,67 + y,218,180,180 );
gfx.PutPixel( 61 + x,67 + y,211,77,77 );
gfx.PutPixel( 62 + x,67 + y,207,23,23 );
gfx.PutPixel( 63 + x,67 + y,215,137,137 );
gfx.PutPixel( 64 + x,67 + y,218,179,179 );
gfx.PutPixel( 65 + x,67 + y,218,173,173 );
gfx.PutPixel( 66 + x,67 + y,218,173,173 );
gfx.PutPixel( 67 + x,67 + y,218,173,173 );
gfx.PutPixel( 68 + x,67 + y,218,173,173 );
gfx.PutPixel( 69 + x,67 + y,218,173,173 );
gfx.PutPixel( 70 + x,67 + y,218,173,173 );
gfx.PutPixel( 71 + x,67 + y,218,173,173 );
gfx.PutPixel( 72 + x,67 + y,218,173,173 );
gfx.PutPixel( 73 + x,67 + y,218,176,176 );
gfx.PutPixel( 74 + x,67 + y,217,161,161 );
gfx.PutPixel( 75 + x,67 + y,209,43,43 );
gfx.PutPixel( 76 + x,67 + y,208,31,31 );
gfx.PutPixel( 77 + x,67 + y,208,29,29 );
gfx.PutPixel( 78 + x,67 + y,215,137,137 );
gfx.PutPixel( 79 + x,67 + y,218,179,179 );
gfx.PutPixel( 80 + x,67 + y,218,173,173 );
gfx.PutPixel( 81 + x,67 + y,218,173,173 );
gfx.PutPixel( 82 + x,67 + y,218,173,173 );
gfx.PutPixel( 83 + x,67 + y,218,173,173 );
gfx.PutPixel( 84 + x,67 + y,218,173,173 );
gfx.PutPixel( 85 + x,67 + y,218,173,173 );
gfx.PutPixel( 86 + x,67 + y,218,173,173 );
gfx.PutPixel( 87 + x,67 + y,218,173,173 );
gfx.PutPixel( 88 + x,67 + y,218,176,176 );
gfx.PutPixel( 89 + x,67 + y,217,161,161 );
gfx.PutPixel( 90 + x,67 + y,209,43,43 );
gfx.PutPixel( 91 + x,67 + y,208,29,29 );
gfx.PutPixel( 92 + x,67 + y,209,44,44 );
gfx.PutPixel( 93 + x,67 + y,217,163,163 );
gfx.PutPixel( 94 + x,67 + y,218,176,176 );
gfx.PutPixel( 95 + x,67 + y,218,182,182 );
gfx.PutPixel( 96 + x,67 + y,213,104,104 );
gfx.PutPixel( 97 + x,67 + y,207,25,25 );
gfx.PutPixel( 98 + x,67 + y,208,34,34 );
gfx.PutPixel( 99 + x,67 + y,208,34,34 );
gfx.PutPixel( 100 + x,67 + y,208,34,34 );
gfx.PutPixel( 101 + x,67 + y,208,34,34 );
gfx.PutPixel( 102 + x,67 + y,208,34,34 );
gfx.PutPixel( 103 + x,67 + y,208,34,34 );
gfx.PutPixel( 104 + x,67 + y,208,34,34 );
gfx.PutPixel( 105 + x,67 + y,208,34,34 );
gfx.PutPixel( 106 + x,67 + y,208,34,34 );
gfx.PutPixel( 107 + x,67 + y,208,34,34 );
gfx.PutPixel( 108 + x,67 + y,208,34,34 );
gfx.PutPixel( 109 + x,67 + y,208,34,34 );
gfx.PutPixel( 110 + x,67 + y,208,34,34 );
gfx.PutPixel( 111 + x,67 + y,208,34,34 );
gfx.PutPixel( 112 + x,67 + y,208,34,34 );
gfx.PutPixel( 113 + x,67 + y,208,34,34 );
gfx.PutPixel( 114 + x,67 + y,208,34,34 );
gfx.PutPixel( 115 + x,67 + y,208,34,34 );
gfx.PutPixel( 116 + x,67 + y,208,34,34 );
gfx.PutPixel( 117 + x,67 + y,208,34,34 );
gfx.PutPixel( 118 + x,67 + y,208,34,34 );
gfx.PutPixel( 119 + x,67 + y,208,34,34 );
gfx.PutPixel( 120 + x,67 + y,208,34,34 );
gfx.PutPixel( 121 + x,67 + y,208,34,34 );
gfx.PutPixel( 122 + x,67 + y,208,34,34 );
gfx.PutPixel( 123 + x,67 + y,208,34,34 );
gfx.PutPixel( 124 + x,67 + y,208,34,34 );
gfx.PutPixel( 125 + x,67 + y,208,34,34 );
gfx.PutPixel( 126 + x,67 + y,208,34,34 );
gfx.PutPixel( 127 + x,67 + y,208,34,34 );
gfx.PutPixel( 128 + x,67 + y,208,34,34 );
gfx.PutPixel( 129 + x,67 + y,208,34,34 );
gfx.PutPixel( 130 + x,67 + y,208,34,34 );
gfx.PutPixel( 131 + x,67 + y,208,34,34 );
gfx.PutPixel( 132 + x,67 + y,208,34,34 );
gfx.PutPixel( 133 + x,67 + y,208,34,34 );
gfx.PutPixel( 134 + x,67 + y,208,34,34 );
gfx.PutPixel( 135 + x,67 + y,208,34,34 );
gfx.PutPixel( 136 + x,67 + y,208,34,34 );
gfx.PutPixel( 137 + x,67 + y,208,34,34 );
gfx.PutPixel( 138 + x,67 + y,208,34,34 );
gfx.PutPixel( 139 + x,67 + y,208,34,34 );
gfx.PutPixel( 140 + x,67 + y,208,34,34 );
gfx.PutPixel( 141 + x,67 + y,208,34,34 );
gfx.PutPixel( 142 + x,67 + y,208,34,34 );
gfx.PutPixel( 143 + x,67 + y,208,34,34 );
gfx.PutPixel( 144 + x,67 + y,208,34,34 );
gfx.PutPixel( 145 + x,67 + y,208,34,34 );
gfx.PutPixel( 146 + x,67 + y,208,34,34 );
gfx.PutPixel( 147 + x,67 + y,208,34,34 );
gfx.PutPixel( 148 + x,67 + y,208,34,34 );
gfx.PutPixel( 149 + x,67 + y,208,34,34 );
gfx.PutPixel( 0 + x,68 + y,208,34,34 );
gfx.PutPixel( 1 + x,68 + y,208,34,34 );
gfx.PutPixel( 2 + x,68 + y,208,34,34 );
gfx.PutPixel( 3 + x,68 + y,208,34,34 );
gfx.PutPixel( 4 + x,68 + y,208,34,34 );
gfx.PutPixel( 5 + x,68 + y,208,34,34 );
gfx.PutPixel( 6 + x,68 + y,208,34,34 );
gfx.PutPixel( 7 + x,68 + y,208,34,34 );
gfx.PutPixel( 8 + x,68 + y,208,34,34 );
gfx.PutPixel( 9 + x,68 + y,208,34,34 );
gfx.PutPixel( 10 + x,68 + y,208,34,34 );
gfx.PutPixel( 11 + x,68 + y,208,34,34 );
gfx.PutPixel( 12 + x,68 + y,208,34,34 );
gfx.PutPixel( 13 + x,68 + y,208,34,34 );
gfx.PutPixel( 14 + x,68 + y,208,34,34 );
gfx.PutPixel( 15 + x,68 + y,208,34,34 );
gfx.PutPixel( 16 + x,68 + y,208,34,34 );
gfx.PutPixel( 17 + x,68 + y,208,34,34 );
gfx.PutPixel( 18 + x,68 + y,208,34,34 );
gfx.PutPixel( 19 + x,68 + y,208,34,34 );
gfx.PutPixel( 20 + x,68 + y,208,34,34 );
gfx.PutPixel( 21 + x,68 + y,208,34,34 );
gfx.PutPixel( 22 + x,68 + y,208,34,34 );
gfx.PutPixel( 23 + x,68 + y,208,34,34 );
gfx.PutPixel( 24 + x,68 + y,208,34,34 );
gfx.PutPixel( 25 + x,68 + y,208,34,34 );
gfx.PutPixel( 26 + x,68 + y,208,34,34 );
gfx.PutPixel( 27 + x,68 + y,208,34,34 );
gfx.PutPixel( 28 + x,68 + y,208,34,34 );
gfx.PutPixel( 29 + x,68 + y,208,34,34 );
gfx.PutPixel( 30 + x,68 + y,208,34,34 );
gfx.PutPixel( 31 + x,68 + y,208,34,34 );
gfx.PutPixel( 32 + x,68 + y,208,34,34 );
gfx.PutPixel( 33 + x,68 + y,208,34,34 );
gfx.PutPixel( 34 + x,68 + y,208,34,34 );
gfx.PutPixel( 35 + x,68 + y,208,34,34 );
gfx.PutPixel( 36 + x,68 + y,208,34,34 );
gfx.PutPixel( 37 + x,68 + y,208,34,34 );
gfx.PutPixel( 38 + x,68 + y,208,34,34 );
gfx.PutPixel( 39 + x,68 + y,208,34,34 );
gfx.PutPixel( 40 + x,68 + y,208,34,34 );
gfx.PutPixel( 41 + x,68 + y,208,34,34 );
gfx.PutPixel( 42 + x,68 + y,208,34,34 );
gfx.PutPixel( 43 + x,68 + y,208,34,34 );
gfx.PutPixel( 44 + x,68 + y,208,34,34 );
gfx.PutPixel( 45 + x,68 + y,208,34,34 );
gfx.PutPixel( 46 + x,68 + y,208,28,28 );
gfx.PutPixel( 47 + x,68 + y,208,27,27 );
gfx.PutPixel( 48 + x,68 + y,207,27,27 );
gfx.PutPixel( 49 + x,68 + y,208,31,31 );
gfx.PutPixel( 50 + x,68 + y,208,34,34 );
gfx.PutPixel( 51 + x,68 + y,208,34,34 );
gfx.PutPixel( 52 + x,68 + y,208,34,34 );
gfx.PutPixel( 53 + x,68 + y,208,34,34 );
gfx.PutPixel( 54 + x,68 + y,208,34,34 );
gfx.PutPixel( 55 + x,68 + y,208,32,32 );
gfx.PutPixel( 56 + x,68 + y,207,26,26 );
gfx.PutPixel( 57 + x,68 + y,208,27,27 );
gfx.PutPixel( 58 + x,68 + y,208,27,27 );
gfx.PutPixel( 59 + x,68 + y,208,27,27 );
gfx.PutPixel( 60 + x,68 + y,208,28,28 );
gfx.PutPixel( 61 + x,68 + y,208,35,35 );
gfx.PutPixel( 62 + x,68 + y,208,34,34 );
gfx.PutPixel( 63 + x,68 + y,208,29,29 );
gfx.PutPixel( 64 + x,68 + y,207,27,27 );
gfx.PutPixel( 65 + x,68 + y,208,27,27 );
gfx.PutPixel( 66 + x,68 + y,208,27,27 );
gfx.PutPixel( 67 + x,68 + y,208,27,27 );
gfx.PutPixel( 68 + x,68 + y,208,27,27 );
gfx.PutPixel( 69 + x,68 + y,208,27,27 );
gfx.PutPixel( 70 + x,68 + y,208,27,27 );
gfx.PutPixel( 71 + x,68 + y,208,27,27 );
gfx.PutPixel( 72 + x,68 + y,208,27,27 );
gfx.PutPixel( 73 + x,68 + y,208,27,27 );
gfx.PutPixel( 74 + x,68 + y,208,28,28 );
gfx.PutPixel( 75 + x,68 + y,208,34,34 );
gfx.PutPixel( 76 + x,68 + y,208,34,34 );
gfx.PutPixel( 77 + x,68 + y,208,34,34 );
gfx.PutPixel( 78 + x,68 + y,208,29,29 );
gfx.PutPixel( 79 + x,68 + y,207,27,27 );
gfx.PutPixel( 80 + x,68 + y,208,27,27 );
gfx.PutPixel( 81 + x,68 + y,208,27,27 );
gfx.PutPixel( 82 + x,68 + y,208,27,27 );
gfx.PutPixel( 83 + x,68 + y,208,27,27 );
gfx.PutPixel( 84 + x,68 + y,208,27,27 );
gfx.PutPixel( 85 + x,68 + y,208,27,27 );
gfx.PutPixel( 86 + x,68 + y,208,27,27 );
gfx.PutPixel( 87 + x,68 + y,208,27,27 );
gfx.PutPixel( 88 + x,68 + y,208,27,27 );
gfx.PutPixel( 89 + x,68 + y,208,28,28 );
gfx.PutPixel( 90 + x,68 + y,208,34,34 );
gfx.PutPixel( 91 + x,68 + y,208,34,34 );
gfx.PutPixel( 92 + x,68 + y,208,34,34 );
gfx.PutPixel( 93 + x,68 + y,208,28,28 );
gfx.PutPixel( 94 + x,68 + y,208,27,27 );
gfx.PutPixel( 95 + x,68 + y,207,27,27 );
gfx.PutPixel( 96 + x,68 + y,208,31,31 );
gfx.PutPixel( 97 + x,68 + y,208,34,34 );
gfx.PutPixel( 98 + x,68 + y,208,34,34 );
gfx.PutPixel( 99 + x,68 + y,208,34,34 );
gfx.PutPixel( 100 + x,68 + y,208,34,34 );
gfx.PutPixel( 101 + x,68 + y,208,34,34 );
gfx.PutPixel( 102 + x,68 + y,208,34,34 );
gfx.PutPixel( 103 + x,68 + y,208,34,34 );
gfx.PutPixel( 104 + x,68 + y,208,34,34 );
gfx.PutPixel( 105 + x,68 + y,208,34,34 );
gfx.PutPixel( 106 + x,68 + y,208,34,34 );
gfx.PutPixel( 107 + x,68 + y,208,34,34 );
gfx.PutPixel( 108 + x,68 + y,208,34,34 );
gfx.PutPixel( 109 + x,68 + y,208,34,34 );
gfx.PutPixel( 110 + x,68 + y,208,34,34 );
gfx.PutPixel( 111 + x,68 + y,208,34,34 );
gfx.PutPixel( 112 + x,68 + y,208,34,34 );
gfx.PutPixel( 113 + x,68 + y,208,34,34 );
gfx.PutPixel( 114 + x,68 + y,208,34,34 );
gfx.PutPixel( 115 + x,68 + y,208,34,34 );
gfx.PutPixel( 116 + x,68 + y,208,34,34 );
gfx.PutPixel( 117 + x,68 + y,208,34,34 );
gfx.PutPixel( 118 + x,68 + y,208,34,34 );
gfx.PutPixel( 119 + x,68 + y,208,34,34 );
gfx.PutPixel( 120 + x,68 + y,208,34,34 );
gfx.PutPixel( 121 + x,68 + y,208,34,34 );
gfx.PutPixel( 122 + x,68 + y,208,34,34 );
gfx.PutPixel( 123 + x,68 + y,208,34,34 );
gfx.PutPixel( 124 + x,68 + y,208,34,34 );
gfx.PutPixel( 125 + x,68 + y,208,34,34 );
gfx.PutPixel( 126 + x,68 + y,208,34,34 );
gfx.PutPixel( 127 + x,68 + y,208,34,34 );
gfx.PutPixel( 128 + x,68 + y,208,34,34 );
gfx.PutPixel( 129 + x,68 + y,208,34,34 );
gfx.PutPixel( 130 + x,68 + y,208,34,34 );
gfx.PutPixel( 131 + x,68 + y,208,34,34 );
gfx.PutPixel( 132 + x,68 + y,208,34,34 );
gfx.PutPixel( 133 + x,68 + y,208,34,34 );
gfx.PutPixel( 134 + x,68 + y,208,34,34 );
gfx.PutPixel( 135 + x,68 + y,208,34,34 );
gfx.PutPixel( 136 + x,68 + y,208,34,34 );
gfx.PutPixel( 137 + x,68 + y,208,34,34 );
gfx.PutPixel( 138 + x,68 + y,208,34,34 );
gfx.PutPixel( 139 + x,68 + y,208,34,34 );
gfx.PutPixel( 140 + x,68 + y,208,34,34 );
gfx.PutPixel( 141 + x,68 + y,208,34,34 );
gfx.PutPixel( 142 + x,68 + y,208,34,34 );
gfx.PutPixel( 143 + x,68 + y,208,34,34 );
gfx.PutPixel( 144 + x,68 + y,208,34,34 );
gfx.PutPixel( 145 + x,68 + y,208,34,34 );
gfx.PutPixel( 146 + x,68 + y,208,34,34 );
gfx.PutPixel( 147 + x,68 + y,208,34,34 );
gfx.PutPixel( 148 + x,68 + y,208,34,34 );
gfx.PutPixel( 149 + x,68 + y,208,34,34 );
gfx.PutPixel( 0 + x,69 + y,208,34,34 );
gfx.PutPixel( 1 + x,69 + y,208,34,34 );
gfx.PutPixel( 2 + x,69 + y,208,34,34 );
gfx.PutPixel( 3 + x,69 + y,208,34,34 );
gfx.PutPixel( 4 + x,69 + y,208,34,34 );
gfx.PutPixel( 5 + x,69 + y,208,34,34 );
gfx.PutPixel( 6 + x,69 + y,208,34,34 );
gfx.PutPixel( 7 + x,69 + y,208,34,34 );
gfx.PutPixel( 8 + x,69 + y,208,34,34 );
gfx.PutPixel( 9 + x,69 + y,208,34,34 );
gfx.PutPixel( 10 + x,69 + y,208,34,34 );
gfx.PutPixel( 11 + x,69 + y,208,34,34 );
gfx.PutPixel( 12 + x,69 + y,208,34,34 );
gfx.PutPixel( 13 + x,69 + y,208,34,34 );
gfx.PutPixel( 14 + x,69 + y,208,34,34 );
gfx.PutPixel( 15 + x,69 + y,208,34,34 );
gfx.PutPixel( 16 + x,69 + y,208,34,34 );
gfx.PutPixel( 17 + x,69 + y,208,34,34 );
gfx.PutPixel( 18 + x,69 + y,208,34,34 );
gfx.PutPixel( 19 + x,69 + y,208,34,34 );
gfx.PutPixel( 20 + x,69 + y,208,34,34 );
gfx.PutPixel( 21 + x,69 + y,208,34,34 );
gfx.PutPixel( 22 + x,69 + y,208,34,34 );
gfx.PutPixel( 23 + x,69 + y,208,34,34 );
gfx.PutPixel( 24 + x,69 + y,208,34,34 );
gfx.PutPixel( 25 + x,69 + y,208,34,34 );
gfx.PutPixel( 26 + x,69 + y,208,34,34 );
gfx.PutPixel( 27 + x,69 + y,208,34,34 );
gfx.PutPixel( 28 + x,69 + y,208,34,34 );
gfx.PutPixel( 29 + x,69 + y,208,34,34 );
gfx.PutPixel( 30 + x,69 + y,208,34,34 );
gfx.PutPixel( 31 + x,69 + y,208,34,34 );
gfx.PutPixel( 32 + x,69 + y,208,34,34 );
gfx.PutPixel( 33 + x,69 + y,208,34,34 );
gfx.PutPixel( 34 + x,69 + y,208,34,34 );
gfx.PutPixel( 35 + x,69 + y,208,34,34 );
gfx.PutPixel( 36 + x,69 + y,208,34,34 );
gfx.PutPixel( 37 + x,69 + y,208,34,34 );
gfx.PutPixel( 38 + x,69 + y,208,34,34 );
gfx.PutPixel( 39 + x,69 + y,208,34,34 );
gfx.PutPixel( 40 + x,69 + y,208,34,34 );
gfx.PutPixel( 41 + x,69 + y,208,34,34 );
gfx.PutPixel( 42 + x,69 + y,208,34,34 );
gfx.PutPixel( 43 + x,69 + y,208,34,34 );
gfx.PutPixel( 44 + x,69 + y,208,34,34 );
gfx.PutPixel( 45 + x,69 + y,208,34,34 );
gfx.PutPixel( 46 + x,69 + y,208,34,34 );
gfx.PutPixel( 47 + x,69 + y,208,34,34 );
gfx.PutPixel( 48 + x,69 + y,208,33,33 );
gfx.PutPixel( 49 + x,69 + y,208,34,34 );
gfx.PutPixel( 50 + x,69 + y,208,34,34 );
gfx.PutPixel( 51 + x,69 + y,208,34,34 );
gfx.PutPixel( 52 + x,69 + y,208,34,34 );
gfx.PutPixel( 53 + x,69 + y,208,34,34 );
gfx.PutPixel( 54 + x,69 + y,208,34,34 );
gfx.PutPixel( 55 + x,69 + y,208,34,34 );
gfx.PutPixel( 56 + x,69 + y,208,34,34 );
gfx.PutPixel( 57 + x,69 + y,208,33,33 );
gfx.PutPixel( 58 + x,69 + y,208,34,34 );
gfx.PutPixel( 59 + x,69 + y,208,34,34 );
gfx.PutPixel( 60 + x,69 + y,208,33,33 );
gfx.PutPixel( 61 + x,69 + y,208,34,34 );
gfx.PutPixel( 62 + x,69 + y,208,34,34 );
gfx.PutPixel( 63 + x,69 + y,208,34,34 );
gfx.PutPixel( 64 + x,69 + y,208,33,33 );
gfx.PutPixel( 65 + x,69 + y,208,34,34 );
gfx.PutPixel( 66 + x,69 + y,208,34,34 );
gfx.PutPixel( 67 + x,69 + y,208,34,34 );
gfx.PutPixel( 68 + x,69 + y,208,34,34 );
gfx.PutPixel( 69 + x,69 + y,208,34,34 );
gfx.PutPixel( 70 + x,69 + y,208,34,34 );
gfx.PutPixel( 71 + x,69 + y,208,34,34 );
gfx.PutPixel( 72 + x,69 + y,208,34,34 );
gfx.PutPixel( 73 + x,69 + y,208,34,34 );
gfx.PutPixel( 74 + x,69 + y,208,34,34 );
gfx.PutPixel( 75 + x,69 + y,208,34,34 );
gfx.PutPixel( 76 + x,69 + y,208,34,34 );
gfx.PutPixel( 77 + x,69 + y,208,34,34 );
gfx.PutPixel( 78 + x,69 + y,208,34,34 );
gfx.PutPixel( 79 + x,69 + y,208,33,33 );
gfx.PutPixel( 80 + x,69 + y,208,34,34 );
gfx.PutPixel( 81 + x,69 + y,208,34,34 );
gfx.PutPixel( 82 + x,69 + y,208,34,34 );
gfx.PutPixel( 83 + x,69 + y,208,34,34 );
gfx.PutPixel( 84 + x,69 + y,208,34,34 );
gfx.PutPixel( 85 + x,69 + y,208,34,34 );
gfx.PutPixel( 86 + x,69 + y,208,34,34 );
gfx.PutPixel( 87 + x,69 + y,208,34,34 );
gfx.PutPixel( 88 + x,69 + y,208,34,34 );
gfx.PutPixel( 89 + x,69 + y,208,34,34 );
gfx.PutPixel( 90 + x,69 + y,208,34,34 );
gfx.PutPixel( 91 + x,69 + y,208,34,34 );
gfx.PutPixel( 92 + x,69 + y,208,34,34 );
gfx.PutPixel( 93 + x,69 + y,208,34,34 );
gfx.PutPixel( 94 + x,69 + y,208,34,34 );
gfx.PutPixel( 95 + x,69 + y,208,33,33 );
gfx.PutPixel( 96 + x,69 + y,208,34,34 );
gfx.PutPixel( 97 + x,69 + y,208,34,34 );
gfx.PutPixel( 98 + x,69 + y,208,34,34 );
gfx.PutPixel( 99 + x,69 + y,208,34,34 );
gfx.PutPixel( 100 + x,69 + y,208,34,34 );
gfx.PutPixel( 101 + x,69 + y,208,34,34 );
gfx.PutPixel( 102 + x,69 + y,208,34,34 );
gfx.PutPixel( 103 + x,69 + y,208,34,34 );
gfx.PutPixel( 104 + x,69 + y,208,34,34 );
gfx.PutPixel( 105 + x,69 + y,208,34,34 );
gfx.PutPixel( 106 + x,69 + y,208,34,34 );
gfx.PutPixel( 107 + x,69 + y,208,34,34 );
gfx.PutPixel( 108 + x,69 + y,208,34,34 );
gfx.PutPixel( 109 + x,69 + y,208,34,34 );
gfx.PutPixel( 110 + x,69 + y,208,34,34 );
gfx.PutPixel( 111 + x,69 + y,208,34,34 );
gfx.PutPixel( 112 + x,69 + y,208,34,34 );
gfx.PutPixel( 113 + x,69 + y,208,34,34 );
gfx.PutPixel( 114 + x,69 + y,208,34,34 );
gfx.PutPixel( 115 + x,69 + y,208,34,34 );
gfx.PutPixel( 116 + x,69 + y,208,34,34 );
gfx.PutPixel( 117 + x,69 + y,208,34,34 );
gfx.PutPixel( 118 + x,69 + y,208,34,34 );
gfx.PutPixel( 119 + x,69 + y,208,34,34 );
gfx.PutPixel( 120 + x,69 + y,208,34,34 );
gfx.PutPixel( 121 + x,69 + y,208,34,34 );
gfx.PutPixel( 122 + x,69 + y,208,34,34 );
gfx.PutPixel( 123 + x,69 + y,208,34,34 );
gfx.PutPixel( 124 + x,69 + y,208,34,34 );
gfx.PutPixel( 125 + x,69 + y,208,34,34 );
gfx.PutPixel( 126 + x,69 + y,208,34,34 );
gfx.PutPixel( 127 + x,69 + y,208,34,34 );
gfx.PutPixel( 128 + x,69 + y,208,34,34 );
gfx.PutPixel( 129 + x,69 + y,208,34,34 );
gfx.PutPixel( 130 + x,69 + y,208,34,34 );
gfx.PutPixel( 131 + x,69 + y,208,34,34 );
gfx.PutPixel( 132 + x,69 + y,208,34,34 );
gfx.PutPixel( 133 + x,69 + y,208,34,34 );
gfx.PutPixel( 134 + x,69 + y,208,34,34 );
gfx.PutPixel( 135 + x,69 + y,208,34,34 );
gfx.PutPixel( 136 + x,69 + y,208,34,34 );
gfx.PutPixel( 137 + x,69 + y,208,34,34 );
gfx.PutPixel( 138 + x,69 + y,208,34,34 );
gfx.PutPixel( 139 + x,69 + y,208,34,34 );
gfx.PutPixel( 140 + x,69 + y,208,34,34 );
gfx.PutPixel( 141 + x,69 + y,208,34,34 );
gfx.PutPixel( 142 + x,69 + y,208,34,34 );
gfx.PutPixel( 143 + x,69 + y,208,34,34 );
gfx.PutPixel( 144 + x,69 + y,208,34,34 );
gfx.PutPixel( 145 + x,69 + y,208,34,34 );
gfx.PutPixel( 146 + x,69 + y,208,34,34 );
gfx.PutPixel( 147 + x,69 + y,208,34,34 );
gfx.PutPixel( 148 + x,69 + y,208,34,34 );
gfx.PutPixel( 149 + x,69 + y,208,34,34 );
gfx.PutPixel( 0 + x,70 + y,208,34,34 );
gfx.PutPixel( 1 + x,70 + y,208,34,34 );
gfx.PutPixel( 2 + x,70 + y,208,34,34 );
gfx.PutPixel( 3 + x,70 + y,208,34,34 );
gfx.PutPixel( 4 + x,70 + y,208,34,34 );
gfx.PutPixel( 5 + x,70 + y,208,34,34 );
gfx.PutPixel( 6 + x,70 + y,208,34,34 );
gfx.PutPixel( 7 + x,70 + y,208,34,34 );
gfx.PutPixel( 8 + x,70 + y,208,34,34 );
gfx.PutPixel( 9 + x,70 + y,208,34,34 );
gfx.PutPixel( 10 + x,70 + y,208,34,34 );
gfx.PutPixel( 11 + x,70 + y,208,34,34 );
gfx.PutPixel( 12 + x,70 + y,208,34,34 );
gfx.PutPixel( 13 + x,70 + y,208,34,34 );
gfx.PutPixel( 14 + x,70 + y,208,34,34 );
gfx.PutPixel( 15 + x,70 + y,208,34,34 );
gfx.PutPixel( 16 + x,70 + y,208,34,34 );
gfx.PutPixel( 17 + x,70 + y,208,34,34 );
gfx.PutPixel( 18 + x,70 + y,208,34,34 );
gfx.PutPixel( 19 + x,70 + y,208,34,34 );
gfx.PutPixel( 20 + x,70 + y,208,34,34 );
gfx.PutPixel( 21 + x,70 + y,208,34,34 );
gfx.PutPixel( 22 + x,70 + y,208,34,34 );
gfx.PutPixel( 23 + x,70 + y,208,34,34 );
gfx.PutPixel( 24 + x,70 + y,208,34,34 );
gfx.PutPixel( 25 + x,70 + y,208,34,34 );
gfx.PutPixel( 26 + x,70 + y,208,34,34 );
gfx.PutPixel( 27 + x,70 + y,208,34,34 );
gfx.PutPixel( 28 + x,70 + y,208,34,34 );
gfx.PutPixel( 29 + x,70 + y,208,34,34 );
gfx.PutPixel( 30 + x,70 + y,208,34,34 );
gfx.PutPixel( 31 + x,70 + y,208,34,34 );
gfx.PutPixel( 32 + x,70 + y,208,34,34 );
gfx.PutPixel( 33 + x,70 + y,208,34,34 );
gfx.PutPixel( 34 + x,70 + y,208,34,34 );
gfx.PutPixel( 35 + x,70 + y,208,34,34 );
gfx.PutPixel( 36 + x,70 + y,208,34,34 );
gfx.PutPixel( 37 + x,70 + y,208,34,34 );
gfx.PutPixel( 38 + x,70 + y,208,34,34 );
gfx.PutPixel( 39 + x,70 + y,208,34,34 );
gfx.PutPixel( 40 + x,70 + y,208,34,34 );
gfx.PutPixel( 41 + x,70 + y,208,34,34 );
gfx.PutPixel( 42 + x,70 + y,208,34,34 );
gfx.PutPixel( 43 + x,70 + y,208,34,34 );
gfx.PutPixel( 44 + x,70 + y,208,34,34 );
gfx.PutPixel( 45 + x,70 + y,208,34,34 );
gfx.PutPixel( 46 + x,70 + y,208,34,34 );
gfx.PutPixel( 47 + x,70 + y,208,34,34 );
gfx.PutPixel( 48 + x,70 + y,208,34,34 );
gfx.PutPixel( 49 + x,70 + y,208,34,34 );
gfx.PutPixel( 50 + x,70 + y,208,34,34 );
gfx.PutPixel( 51 + x,70 + y,208,34,34 );
gfx.PutPixel( 52 + x,70 + y,208,34,34 );
gfx.PutPixel( 53 + x,70 + y,208,34,34 );
gfx.PutPixel( 54 + x,70 + y,208,34,34 );
gfx.PutPixel( 55 + x,70 + y,208,34,34 );
gfx.PutPixel( 56 + x,70 + y,208,34,34 );
gfx.PutPixel( 57 + x,70 + y,208,34,34 );
gfx.PutPixel( 58 + x,70 + y,208,34,34 );
gfx.PutPixel( 59 + x,70 + y,208,34,34 );
gfx.PutPixel( 60 + x,70 + y,208,34,34 );
gfx.PutPixel( 61 + x,70 + y,208,34,34 );
gfx.PutPixel( 62 + x,70 + y,208,34,34 );
gfx.PutPixel( 63 + x,70 + y,208,34,34 );
gfx.PutPixel( 64 + x,70 + y,208,34,34 );
gfx.PutPixel( 65 + x,70 + y,208,34,34 );
gfx.PutPixel( 66 + x,70 + y,208,34,34 );
gfx.PutPixel( 67 + x,70 + y,208,34,34 );
gfx.PutPixel( 68 + x,70 + y,208,34,34 );
gfx.PutPixel( 69 + x,70 + y,208,34,34 );
gfx.PutPixel( 70 + x,70 + y,208,34,34 );
gfx.PutPixel( 71 + x,70 + y,208,34,34 );
gfx.PutPixel( 72 + x,70 + y,208,34,34 );
gfx.PutPixel( 73 + x,70 + y,208,34,34 );
gfx.PutPixel( 74 + x,70 + y,208,34,34 );
gfx.PutPixel( 75 + x,70 + y,208,34,34 );
gfx.PutPixel( 76 + x,70 + y,208,34,34 );
gfx.PutPixel( 77 + x,70 + y,208,34,34 );
gfx.PutPixel( 78 + x,70 + y,208,34,34 );
gfx.PutPixel( 79 + x,70 + y,208,34,34 );
gfx.PutPixel( 80 + x,70 + y,208,34,34 );
gfx.PutPixel( 81 + x,70 + y,208,34,34 );
gfx.PutPixel( 82 + x,70 + y,208,34,34 );
gfx.PutPixel( 83 + x,70 + y,208,34,34 );
gfx.PutPixel( 84 + x,70 + y,208,34,34 );
gfx.PutPixel( 85 + x,70 + y,208,34,34 );
gfx.PutPixel( 86 + x,70 + y,208,34,34 );
gfx.PutPixel( 87 + x,70 + y,208,34,34 );
gfx.PutPixel( 88 + x,70 + y,208,34,34 );
gfx.PutPixel( 89 + x,70 + y,208,34,34 );
gfx.PutPixel( 90 + x,70 + y,208,34,34 );
gfx.PutPixel( 91 + x,70 + y,208,34,34 );
gfx.PutPixel( 92 + x,70 + y,208,34,34 );
gfx.PutPixel( 93 + x,70 + y,208,34,34 );
gfx.PutPixel( 94 + x,70 + y,208,34,34 );
gfx.PutPixel( 95 + x,70 + y,208,34,34 );
gfx.PutPixel( 96 + x,70 + y,208,34,34 );
gfx.PutPixel( 97 + x,70 + y,208,34,34 );
gfx.PutPixel( 98 + x,70 + y,208,34,34 );
gfx.PutPixel( 99 + x,70 + y,208,34,34 );
gfx.PutPixel( 100 + x,70 + y,208,34,34 );
gfx.PutPixel( 101 + x,70 + y,208,34,34 );
gfx.PutPixel( 102 + x,70 + y,208,34,34 );
gfx.PutPixel( 103 + x,70 + y,208,34,34 );
gfx.PutPixel( 104 + x,70 + y,208,34,34 );
gfx.PutPixel( 105 + x,70 + y,208,34,34 );
gfx.PutPixel( 106 + x,70 + y,208,34,34 );
gfx.PutPixel( 107 + x,70 + y,208,34,34 );
gfx.PutPixel( 108 + x,70 + y,208,34,34 );
gfx.PutPixel( 109 + x,70 + y,208,34,34 );
gfx.PutPixel( 110 + x,70 + y,208,34,34 );
gfx.PutPixel( 111 + x,70 + y,208,34,34 );
gfx.PutPixel( 112 + x,70 + y,208,34,34 );
gfx.PutPixel( 113 + x,70 + y,208,34,34 );
gfx.PutPixel( 114 + x,70 + y,208,34,34 );
gfx.PutPixel( 115 + x,70 + y,208,34,34 );
gfx.PutPixel( 116 + x,70 + y,208,34,34 );
gfx.PutPixel( 117 + x,70 + y,208,34,34 );
gfx.PutPixel( 118 + x,70 + y,208,34,34 );
gfx.PutPixel( 119 + x,70 + y,208,34,34 );
gfx.PutPixel( 120 + x,70 + y,208,34,34 );
gfx.PutPixel( 121 + x,70 + y,208,34,34 );
gfx.PutPixel( 122 + x,70 + y,208,34,34 );
gfx.PutPixel( 123 + x,70 + y,208,34,34 );
gfx.PutPixel( 124 + x,70 + y,208,34,34 );
gfx.PutPixel( 125 + x,70 + y,208,34,34 );
gfx.PutPixel( 126 + x,70 + y,208,34,34 );
gfx.PutPixel( 127 + x,70 + y,208,34,34 );
gfx.PutPixel( 128 + x,70 + y,208,34,34 );
gfx.PutPixel( 129 + x,70 + y,208,34,34 );
gfx.PutPixel( 130 + x,70 + y,208,34,34 );
gfx.PutPixel( 131 + x,70 + y,208,34,34 );
gfx.PutPixel( 132 + x,70 + y,208,34,34 );
gfx.PutPixel( 133 + x,70 + y,208,34,34 );
gfx.PutPixel( 134 + x,70 + y,208,34,34 );
gfx.PutPixel( 135 + x,70 + y,208,34,34 );
gfx.PutPixel( 136 + x,70 + y,208,34,34 );
gfx.PutPixel( 137 + x,70 + y,208,34,34 );
gfx.PutPixel( 138 + x,70 + y,208,34,34 );
gfx.PutPixel( 139 + x,70 + y,208,34,34 );
gfx.PutPixel( 140 + x,70 + y,208,34,34 );
gfx.PutPixel( 141 + x,70 + y,208,34,34 );
gfx.PutPixel( 142 + x,70 + y,208,34,34 );
gfx.PutPixel( 143 + x,70 + y,208,34,34 );
gfx.PutPixel( 144 + x,70 + y,208,34,34 );
gfx.PutPixel( 145 + x,70 + y,208,34,34 );
gfx.PutPixel( 146 + x,70 + y,208,34,34 );
gfx.PutPixel( 147 + x,70 + y,208,34,34 );
gfx.PutPixel( 148 + x,70 + y,208,34,34 );
gfx.PutPixel( 149 + x,70 + y,208,34,34 );
gfx.PutPixel( 0 + x,71 + y,208,34,34 );
gfx.PutPixel( 1 + x,71 + y,208,34,34 );
gfx.PutPixel( 2 + x,71 + y,208,34,34 );
gfx.PutPixel( 3 + x,71 + y,208,34,34 );
gfx.PutPixel( 4 + x,71 + y,208,34,34 );
gfx.PutPixel( 5 + x,71 + y,208,34,34 );
gfx.PutPixel( 6 + x,71 + y,208,34,34 );
gfx.PutPixel( 7 + x,71 + y,208,34,34 );
gfx.PutPixel( 8 + x,71 + y,208,34,34 );
gfx.PutPixel( 9 + x,71 + y,208,34,34 );
gfx.PutPixel( 10 + x,71 + y,208,34,34 );
gfx.PutPixel( 11 + x,71 + y,208,34,34 );
gfx.PutPixel( 12 + x,71 + y,208,34,34 );
gfx.PutPixel( 13 + x,71 + y,208,34,34 );
gfx.PutPixel( 14 + x,71 + y,208,34,34 );
gfx.PutPixel( 15 + x,71 + y,208,34,34 );
gfx.PutPixel( 16 + x,71 + y,208,34,34 );
gfx.PutPixel( 17 + x,71 + y,208,34,34 );
gfx.PutPixel( 18 + x,71 + y,208,34,34 );
gfx.PutPixel( 19 + x,71 + y,208,34,34 );
gfx.PutPixel( 20 + x,71 + y,208,34,34 );
gfx.PutPixel( 21 + x,71 + y,208,34,34 );
gfx.PutPixel( 22 + x,71 + y,208,34,34 );
gfx.PutPixel( 23 + x,71 + y,208,34,34 );
gfx.PutPixel( 24 + x,71 + y,208,34,34 );
gfx.PutPixel( 25 + x,71 + y,208,34,34 );
gfx.PutPixel( 26 + x,71 + y,208,34,34 );
gfx.PutPixel( 27 + x,71 + y,208,34,34 );
gfx.PutPixel( 28 + x,71 + y,208,34,34 );
gfx.PutPixel( 29 + x,71 + y,208,34,34 );
gfx.PutPixel( 30 + x,71 + y,208,34,34 );
gfx.PutPixel( 31 + x,71 + y,208,34,34 );
gfx.PutPixel( 32 + x,71 + y,208,34,34 );
gfx.PutPixel( 33 + x,71 + y,208,34,34 );
gfx.PutPixel( 34 + x,71 + y,208,34,34 );
gfx.PutPixel( 35 + x,71 + y,208,34,34 );
gfx.PutPixel( 36 + x,71 + y,208,34,34 );
gfx.PutPixel( 37 + x,71 + y,208,34,34 );
gfx.PutPixel( 38 + x,71 + y,208,34,34 );
gfx.PutPixel( 39 + x,71 + y,208,34,34 );
gfx.PutPixel( 40 + x,71 + y,208,34,34 );
gfx.PutPixel( 41 + x,71 + y,208,34,34 );
gfx.PutPixel( 42 + x,71 + y,208,34,34 );
gfx.PutPixel( 43 + x,71 + y,208,34,34 );
gfx.PutPixel( 44 + x,71 + y,208,34,34 );
gfx.PutPixel( 45 + x,71 + y,208,34,34 );
gfx.PutPixel( 46 + x,71 + y,208,34,34 );
gfx.PutPixel( 47 + x,71 + y,208,34,34 );
gfx.PutPixel( 48 + x,71 + y,208,34,34 );
gfx.PutPixel( 49 + x,71 + y,208,34,34 );
gfx.PutPixel( 50 + x,71 + y,208,34,34 );
gfx.PutPixel( 51 + x,71 + y,208,34,34 );
gfx.PutPixel( 52 + x,71 + y,208,34,34 );
gfx.PutPixel( 53 + x,71 + y,208,34,34 );
gfx.PutPixel( 54 + x,71 + y,208,34,34 );
gfx.PutPixel( 55 + x,71 + y,208,34,34 );
gfx.PutPixel( 56 + x,71 + y,208,34,34 );
gfx.PutPixel( 57 + x,71 + y,208,34,34 );
gfx.PutPixel( 58 + x,71 + y,208,34,34 );
gfx.PutPixel( 59 + x,71 + y,208,34,34 );
gfx.PutPixel( 60 + x,71 + y,208,34,34 );
gfx.PutPixel( 61 + x,71 + y,208,34,34 );
gfx.PutPixel( 62 + x,71 + y,208,34,34 );
gfx.PutPixel( 63 + x,71 + y,208,34,34 );
gfx.PutPixel( 64 + x,71 + y,208,34,34 );
gfx.PutPixel( 65 + x,71 + y,208,34,34 );
gfx.PutPixel( 66 + x,71 + y,208,34,34 );
gfx.PutPixel( 67 + x,71 + y,208,34,34 );
gfx.PutPixel( 68 + x,71 + y,208,34,34 );
gfx.PutPixel( 69 + x,71 + y,208,34,34 );
gfx.PutPixel( 70 + x,71 + y,208,34,34 );
gfx.PutPixel( 71 + x,71 + y,208,34,34 );
gfx.PutPixel( 72 + x,71 + y,208,34,34 );
gfx.PutPixel( 73 + x,71 + y,208,34,34 );
gfx.PutPixel( 74 + x,71 + y,208,34,34 );
gfx.PutPixel( 75 + x,71 + y,208,34,34 );
gfx.PutPixel( 76 + x,71 + y,208,34,34 );
gfx.PutPixel( 77 + x,71 + y,208,34,34 );
gfx.PutPixel( 78 + x,71 + y,208,34,34 );
gfx.PutPixel( 79 + x,71 + y,208,34,34 );
gfx.PutPixel( 80 + x,71 + y,208,34,34 );
gfx.PutPixel( 81 + x,71 + y,208,34,34 );
gfx.PutPixel( 82 + x,71 + y,208,34,34 );
gfx.PutPixel( 83 + x,71 + y,208,34,34 );
gfx.PutPixel( 84 + x,71 + y,208,34,34 );
gfx.PutPixel( 85 + x,71 + y,208,34,34 );
gfx.PutPixel( 86 + x,71 + y,208,34,34 );
gfx.PutPixel( 87 + x,71 + y,208,34,34 );
gfx.PutPixel( 88 + x,71 + y,208,34,34 );
gfx.PutPixel( 89 + x,71 + y,208,34,34 );
gfx.PutPixel( 90 + x,71 + y,208,34,34 );
gfx.PutPixel( 91 + x,71 + y,208,34,34 );
gfx.PutPixel( 92 + x,71 + y,208,34,34 );
gfx.PutPixel( 93 + x,71 + y,208,34,34 );
gfx.PutPixel( 94 + x,71 + y,208,34,34 );
gfx.PutPixel( 95 + x,71 + y,208,34,34 );
gfx.PutPixel( 96 + x,71 + y,208,34,34 );
gfx.PutPixel( 97 + x,71 + y,208,34,34 );
gfx.PutPixel( 98 + x,71 + y,208,34,34 );
gfx.PutPixel( 99 + x,71 + y,208,34,34 );
gfx.PutPixel( 100 + x,71 + y,208,34,34 );
gfx.PutPixel( 101 + x,71 + y,208,34,34 );
gfx.PutPixel( 102 + x,71 + y,208,34,34 );
gfx.PutPixel( 103 + x,71 + y,208,34,34 );
gfx.PutPixel( 104 + x,71 + y,208,34,34 );
gfx.PutPixel( 105 + x,71 + y,208,34,34 );
gfx.PutPixel( 106 + x,71 + y,208,34,34 );
gfx.PutPixel( 107 + x,71 + y,208,34,34 );
gfx.PutPixel( 108 + x,71 + y,208,34,34 );
gfx.PutPixel( 109 + x,71 + y,208,34,34 );
gfx.PutPixel( 110 + x,71 + y,208,34,34 );
gfx.PutPixel( 111 + x,71 + y,208,34,34 );
gfx.PutPixel( 112 + x,71 + y,208,34,34 );
gfx.PutPixel( 113 + x,71 + y,208,34,34 );
gfx.PutPixel( 114 + x,71 + y,208,34,34 );
gfx.PutPixel( 115 + x,71 + y,208,34,34 );
gfx.PutPixel( 116 + x,71 + y,208,34,34 );
gfx.PutPixel( 117 + x,71 + y,208,34,34 );
gfx.PutPixel( 118 + x,71 + y,208,34,34 );
gfx.PutPixel( 119 + x,71 + y,208,34,34 );
gfx.PutPixel( 120 + x,71 + y,208,34,34 );
gfx.PutPixel( 121 + x,71 + y,208,34,34 );
gfx.PutPixel( 122 + x,71 + y,208,34,34 );
gfx.PutPixel( 123 + x,71 + y,208,34,34 );
gfx.PutPixel( 124 + x,71 + y,208,34,34 );
gfx.PutPixel( 125 + x,71 + y,208,34,34 );
gfx.PutPixel( 126 + x,71 + y,208,34,34 );
gfx.PutPixel( 127 + x,71 + y,208,34,34 );
gfx.PutPixel( 128 + x,71 + y,208,34,34 );
gfx.PutPixel( 129 + x,71 + y,208,34,34 );
gfx.PutPixel( 130 + x,71 + y,208,34,34 );
gfx.PutPixel( 131 + x,71 + y,208,34,34 );
gfx.PutPixel( 132 + x,71 + y,208,34,34 );
gfx.PutPixel( 133 + x,71 + y,208,34,34 );
gfx.PutPixel( 134 + x,71 + y,208,34,34 );
gfx.PutPixel( 135 + x,71 + y,208,34,34 );
gfx.PutPixel( 136 + x,71 + y,208,34,34 );
gfx.PutPixel( 137 + x,71 + y,208,34,34 );
gfx.PutPixel( 138 + x,71 + y,208,34,34 );
gfx.PutPixel( 139 + x,71 + y,208,34,34 );
gfx.PutPixel( 140 + x,71 + y,208,34,34 );
gfx.PutPixel( 141 + x,71 + y,208,34,34 );
gfx.PutPixel( 142 + x,71 + y,208,34,34 );
gfx.PutPixel( 143 + x,71 + y,208,34,34 );
gfx.PutPixel( 144 + x,71 + y,208,34,34 );
gfx.PutPixel( 145 + x,71 + y,208,34,34 );
gfx.PutPixel( 146 + x,71 + y,208,34,34 );
gfx.PutPixel( 147 + x,71 + y,208,34,34 );
gfx.PutPixel( 148 + x,71 + y,208,34,34 );
gfx.PutPixel( 149 + x,71 + y,208,34,34 );
gfx.PutPixel( 0 + x,72 + y,208,34,34 );
gfx.PutPixel( 1 + x,72 + y,208,34,34 );
gfx.PutPixel( 2 + x,72 + y,208,34,34 );
gfx.PutPixel( 3 + x,72 + y,208,34,34 );
gfx.PutPixel( 4 + x,72 + y,208,34,34 );
gfx.PutPixel( 5 + x,72 + y,208,34,34 );
gfx.PutPixel( 6 + x,72 + y,208,34,34 );
gfx.PutPixel( 7 + x,72 + y,208,34,34 );
gfx.PutPixel( 8 + x,72 + y,208,34,34 );
gfx.PutPixel( 9 + x,72 + y,208,34,34 );
gfx.PutPixel( 10 + x,72 + y,208,34,34 );
gfx.PutPixel( 11 + x,72 + y,208,34,34 );
gfx.PutPixel( 12 + x,72 + y,208,34,34 );
gfx.PutPixel( 13 + x,72 + y,208,34,34 );
gfx.PutPixel( 14 + x,72 + y,208,34,34 );
gfx.PutPixel( 15 + x,72 + y,208,34,34 );
gfx.PutPixel( 16 + x,72 + y,208,34,34 );
gfx.PutPixel( 17 + x,72 + y,208,34,34 );
gfx.PutPixel( 18 + x,72 + y,208,34,34 );
gfx.PutPixel( 19 + x,72 + y,208,34,34 );
gfx.PutPixel( 20 + x,72 + y,208,34,34 );
gfx.PutPixel( 21 + x,72 + y,208,34,34 );
gfx.PutPixel( 22 + x,72 + y,208,34,34 );
gfx.PutPixel( 23 + x,72 + y,208,34,34 );
gfx.PutPixel( 24 + x,72 + y,208,34,34 );
gfx.PutPixel( 25 + x,72 + y,208,34,34 );
gfx.PutPixel( 26 + x,72 + y,208,34,34 );
gfx.PutPixel( 27 + x,72 + y,208,34,34 );
gfx.PutPixel( 28 + x,72 + y,208,34,34 );
gfx.PutPixel( 29 + x,72 + y,208,34,34 );
gfx.PutPixel( 30 + x,72 + y,208,34,34 );
gfx.PutPixel( 31 + x,72 + y,208,34,34 );
gfx.PutPixel( 32 + x,72 + y,208,34,34 );
gfx.PutPixel( 33 + x,72 + y,208,34,34 );
gfx.PutPixel( 34 + x,72 + y,208,34,34 );
gfx.PutPixel( 35 + x,72 + y,208,34,34 );
gfx.PutPixel( 36 + x,72 + y,208,34,34 );
gfx.PutPixel( 37 + x,72 + y,208,34,34 );
gfx.PutPixel( 38 + x,72 + y,208,34,34 );
gfx.PutPixel( 39 + x,72 + y,208,34,34 );
gfx.PutPixel( 40 + x,72 + y,208,34,34 );
gfx.PutPixel( 41 + x,72 + y,208,34,34 );
gfx.PutPixel( 42 + x,72 + y,208,34,34 );
gfx.PutPixel( 43 + x,72 + y,208,34,34 );
gfx.PutPixel( 44 + x,72 + y,208,34,34 );
gfx.PutPixel( 45 + x,72 + y,208,34,34 );
gfx.PutPixel( 46 + x,72 + y,208,34,34 );
gfx.PutPixel( 47 + x,72 + y,208,34,34 );
gfx.PutPixel( 48 + x,72 + y,208,34,34 );
gfx.PutPixel( 49 + x,72 + y,208,34,34 );
gfx.PutPixel( 50 + x,72 + y,208,34,34 );
gfx.PutPixel( 51 + x,72 + y,208,34,34 );
gfx.PutPixel( 52 + x,72 + y,208,34,34 );
gfx.PutPixel( 53 + x,72 + y,208,34,34 );
gfx.PutPixel( 54 + x,72 + y,208,34,34 );
gfx.PutPixel( 55 + x,72 + y,208,34,34 );
gfx.PutPixel( 56 + x,72 + y,208,34,34 );
gfx.PutPixel( 57 + x,72 + y,208,34,34 );
gfx.PutPixel( 58 + x,72 + y,208,34,34 );
gfx.PutPixel( 59 + x,72 + y,208,34,34 );
gfx.PutPixel( 60 + x,72 + y,208,34,34 );
gfx.PutPixel( 61 + x,72 + y,208,34,34 );
gfx.PutPixel( 62 + x,72 + y,208,34,34 );
gfx.PutPixel( 63 + x,72 + y,208,34,34 );
gfx.PutPixel( 64 + x,72 + y,208,34,34 );
gfx.PutPixel( 65 + x,72 + y,208,34,34 );
gfx.PutPixel( 66 + x,72 + y,208,34,34 );
gfx.PutPixel( 67 + x,72 + y,208,34,34 );
gfx.PutPixel( 68 + x,72 + y,208,34,34 );
gfx.PutPixel( 69 + x,72 + y,208,34,34 );
gfx.PutPixel( 70 + x,72 + y,208,34,34 );
gfx.PutPixel( 71 + x,72 + y,208,34,34 );
gfx.PutPixel( 72 + x,72 + y,208,34,34 );
gfx.PutPixel( 73 + x,72 + y,208,34,34 );
gfx.PutPixel( 74 + x,72 + y,208,34,34 );
gfx.PutPixel( 75 + x,72 + y,208,34,34 );
gfx.PutPixel( 76 + x,72 + y,208,34,34 );
gfx.PutPixel( 77 + x,72 + y,208,34,34 );
gfx.PutPixel( 78 + x,72 + y,208,34,34 );
gfx.PutPixel( 79 + x,72 + y,208,34,34 );
gfx.PutPixel( 80 + x,72 + y,208,34,34 );
gfx.PutPixel( 81 + x,72 + y,208,34,34 );
gfx.PutPixel( 82 + x,72 + y,208,34,34 );
gfx.PutPixel( 83 + x,72 + y,208,34,34 );
gfx.PutPixel( 84 + x,72 + y,208,34,34 );
gfx.PutPixel( 85 + x,72 + y,208,34,34 );
gfx.PutPixel( 86 + x,72 + y,208,34,34 );
gfx.PutPixel( 87 + x,72 + y,208,34,34 );
gfx.PutPixel( 88 + x,72 + y,208,34,34 );
gfx.PutPixel( 89 + x,72 + y,208,34,34 );
gfx.PutPixel( 90 + x,72 + y,208,34,34 );
gfx.PutPixel( 91 + x,72 + y,208,34,34 );
gfx.PutPixel( 92 + x,72 + y,208,34,34 );
gfx.PutPixel( 93 + x,72 + y,208,34,34 );
gfx.PutPixel( 94 + x,72 + y,208,34,34 );
gfx.PutPixel( 95 + x,72 + y,208,34,34 );
gfx.PutPixel( 96 + x,72 + y,208,34,34 );
gfx.PutPixel( 97 + x,72 + y,208,34,34 );
gfx.PutPixel( 98 + x,72 + y,208,34,34 );
gfx.PutPixel( 99 + x,72 + y,208,34,34 );
gfx.PutPixel( 100 + x,72 + y,208,34,34 );
gfx.PutPixel( 101 + x,72 + y,208,34,34 );
gfx.PutPixel( 102 + x,72 + y,208,34,34 );
gfx.PutPixel( 103 + x,72 + y,208,34,34 );
gfx.PutPixel( 104 + x,72 + y,208,34,34 );
gfx.PutPixel( 105 + x,72 + y,208,34,34 );
gfx.PutPixel( 106 + x,72 + y,208,34,34 );
gfx.PutPixel( 107 + x,72 + y,208,34,34 );
gfx.PutPixel( 108 + x,72 + y,208,34,34 );
gfx.PutPixel( 109 + x,72 + y,208,34,34 );
gfx.PutPixel( 110 + x,72 + y,208,34,34 );
gfx.PutPixel( 111 + x,72 + y,208,34,34 );
gfx.PutPixel( 112 + x,72 + y,208,34,34 );
gfx.PutPixel( 113 + x,72 + y,208,34,34 );
gfx.PutPixel( 114 + x,72 + y,208,34,34 );
gfx.PutPixel( 115 + x,72 + y,208,34,34 );
gfx.PutPixel( 116 + x,72 + y,208,34,34 );
gfx.PutPixel( 117 + x,72 + y,208,34,34 );
gfx.PutPixel( 118 + x,72 + y,208,34,34 );
gfx.PutPixel( 119 + x,72 + y,208,34,34 );
gfx.PutPixel( 120 + x,72 + y,208,34,34 );
gfx.PutPixel( 121 + x,72 + y,208,34,34 );
gfx.PutPixel( 122 + x,72 + y,208,34,34 );
gfx.PutPixel( 123 + x,72 + y,208,34,34 );
gfx.PutPixel( 124 + x,72 + y,208,34,34 );
gfx.PutPixel( 125 + x,72 + y,208,34,34 );
gfx.PutPixel( 126 + x,72 + y,208,34,34 );
gfx.PutPixel( 127 + x,72 + y,208,34,34 );
gfx.PutPixel( 128 + x,72 + y,208,34,34 );
gfx.PutPixel( 129 + x,72 + y,208,34,34 );
gfx.PutPixel( 130 + x,72 + y,208,34,34 );
gfx.PutPixel( 131 + x,72 + y,208,34,34 );
gfx.PutPixel( 132 + x,72 + y,208,34,34 );
gfx.PutPixel( 133 + x,72 + y,208,34,34 );
gfx.PutPixel( 134 + x,72 + y,208,34,34 );
gfx.PutPixel( 135 + x,72 + y,208,34,34 );
gfx.PutPixel( 136 + x,72 + y,208,34,34 );
gfx.PutPixel( 137 + x,72 + y,208,34,34 );
gfx.PutPixel( 138 + x,72 + y,208,34,34 );
gfx.PutPixel( 139 + x,72 + y,208,34,34 );
gfx.PutPixel( 140 + x,72 + y,208,34,34 );
gfx.PutPixel( 141 + x,72 + y,208,34,34 );
gfx.PutPixel( 142 + x,72 + y,208,34,34 );
gfx.PutPixel( 143 + x,72 + y,208,34,34 );
gfx.PutPixel( 144 + x,72 + y,208,34,34 );
gfx.PutPixel( 145 + x,72 + y,208,34,34 );
gfx.PutPixel( 146 + x,72 + y,208,34,34 );
gfx.PutPixel( 147 + x,72 + y,208,34,34 );
gfx.PutPixel( 148 + x,72 + y,208,34,34 );
gfx.PutPixel( 149 + x,72 + y,208,34,34 );
gfx.PutPixel( 0 + x,73 + y,208,34,34 );
gfx.PutPixel( 1 + x,73 + y,208,34,34 );
gfx.PutPixel( 2 + x,73 + y,208,34,34 );
gfx.PutPixel( 3 + x,73 + y,208,34,34 );
gfx.PutPixel( 4 + x,73 + y,208,34,34 );
gfx.PutPixel( 5 + x,73 + y,208,34,34 );
gfx.PutPixel( 6 + x,73 + y,208,34,34 );
gfx.PutPixel( 7 + x,73 + y,208,34,34 );
gfx.PutPixel( 8 + x,73 + y,208,34,34 );
gfx.PutPixel( 9 + x,73 + y,208,34,34 );
gfx.PutPixel( 10 + x,73 + y,208,34,34 );
gfx.PutPixel( 11 + x,73 + y,208,34,34 );
gfx.PutPixel( 12 + x,73 + y,208,34,34 );
gfx.PutPixel( 13 + x,73 + y,208,34,34 );
gfx.PutPixel( 14 + x,73 + y,208,34,34 );
gfx.PutPixel( 15 + x,73 + y,208,34,34 );
gfx.PutPixel( 16 + x,73 + y,208,34,34 );
gfx.PutPixel( 17 + x,73 + y,208,34,34 );
gfx.PutPixel( 18 + x,73 + y,208,34,34 );
gfx.PutPixel( 19 + x,73 + y,208,34,34 );
gfx.PutPixel( 20 + x,73 + y,208,34,34 );
gfx.PutPixel( 21 + x,73 + y,208,34,34 );
gfx.PutPixel( 22 + x,73 + y,208,34,34 );
gfx.PutPixel( 23 + x,73 + y,208,34,34 );
gfx.PutPixel( 24 + x,73 + y,208,34,34 );
gfx.PutPixel( 25 + x,73 + y,208,34,34 );
gfx.PutPixel( 26 + x,73 + y,208,34,34 );
gfx.PutPixel( 27 + x,73 + y,208,34,34 );
gfx.PutPixel( 28 + x,73 + y,208,34,34 );
gfx.PutPixel( 29 + x,73 + y,208,34,34 );
gfx.PutPixel( 30 + x,73 + y,208,34,34 );
gfx.PutPixel( 31 + x,73 + y,208,34,34 );
gfx.PutPixel( 32 + x,73 + y,208,34,34 );
gfx.PutPixel( 33 + x,73 + y,208,34,34 );
gfx.PutPixel( 34 + x,73 + y,208,34,34 );
gfx.PutPixel( 35 + x,73 + y,208,34,34 );
gfx.PutPixel( 36 + x,73 + y,208,34,34 );
gfx.PutPixel( 37 + x,73 + y,208,34,34 );
gfx.PutPixel( 38 + x,73 + y,208,34,34 );
gfx.PutPixel( 39 + x,73 + y,208,34,34 );
gfx.PutPixel( 40 + x,73 + y,208,34,34 );
gfx.PutPixel( 41 + x,73 + y,208,34,34 );
gfx.PutPixel( 42 + x,73 + y,208,34,34 );
gfx.PutPixel( 43 + x,73 + y,208,34,34 );
gfx.PutPixel( 44 + x,73 + y,208,34,34 );
gfx.PutPixel( 45 + x,73 + y,208,34,34 );
gfx.PutPixel( 46 + x,73 + y,208,34,34 );
gfx.PutPixel( 47 + x,73 + y,208,34,34 );
gfx.PutPixel( 48 + x,73 + y,208,34,34 );
gfx.PutPixel( 49 + x,73 + y,208,34,34 );
gfx.PutPixel( 50 + x,73 + y,208,34,34 );
gfx.PutPixel( 51 + x,73 + y,208,34,34 );
gfx.PutPixel( 52 + x,73 + y,208,34,34 );
gfx.PutPixel( 53 + x,73 + y,208,34,34 );
gfx.PutPixel( 54 + x,73 + y,208,34,34 );
gfx.PutPixel( 55 + x,73 + y,208,34,34 );
gfx.PutPixel( 56 + x,73 + y,208,34,34 );
gfx.PutPixel( 57 + x,73 + y,208,34,34 );
gfx.PutPixel( 58 + x,73 + y,208,34,34 );
gfx.PutPixel( 59 + x,73 + y,208,34,34 );
gfx.PutPixel( 60 + x,73 + y,208,34,34 );
gfx.PutPixel( 61 + x,73 + y,208,34,34 );
gfx.PutPixel( 62 + x,73 + y,208,34,34 );
gfx.PutPixel( 63 + x,73 + y,208,34,34 );
gfx.PutPixel( 64 + x,73 + y,208,34,34 );
gfx.PutPixel( 65 + x,73 + y,208,34,34 );
gfx.PutPixel( 66 + x,73 + y,208,34,34 );
gfx.PutPixel( 67 + x,73 + y,208,34,34 );
gfx.PutPixel( 68 + x,73 + y,208,34,34 );
gfx.PutPixel( 69 + x,73 + y,208,34,34 );
gfx.PutPixel( 70 + x,73 + y,208,34,34 );
gfx.PutPixel( 71 + x,73 + y,208,34,34 );
gfx.PutPixel( 72 + x,73 + y,208,34,34 );
gfx.PutPixel( 73 + x,73 + y,208,34,34 );
gfx.PutPixel( 74 + x,73 + y,208,34,34 );
gfx.PutPixel( 75 + x,73 + y,208,34,34 );
gfx.PutPixel( 76 + x,73 + y,208,34,34 );
gfx.PutPixel( 77 + x,73 + y,208,34,34 );
gfx.PutPixel( 78 + x,73 + y,208,34,34 );
gfx.PutPixel( 79 + x,73 + y,208,34,34 );
gfx.PutPixel( 80 + x,73 + y,208,34,34 );
gfx.PutPixel( 81 + x,73 + y,208,34,34 );
gfx.PutPixel( 82 + x,73 + y,208,34,34 );
gfx.PutPixel( 83 + x,73 + y,208,34,34 );
gfx.PutPixel( 84 + x,73 + y,208,34,34 );
gfx.PutPixel( 85 + x,73 + y,208,34,34 );
gfx.PutPixel( 86 + x,73 + y,208,34,34 );
gfx.PutPixel( 87 + x,73 + y,208,34,34 );
gfx.PutPixel( 88 + x,73 + y,208,34,34 );
gfx.PutPixel( 89 + x,73 + y,208,34,34 );
gfx.PutPixel( 90 + x,73 + y,208,34,34 );
gfx.PutPixel( 91 + x,73 + y,208,34,34 );
gfx.PutPixel( 92 + x,73 + y,208,34,34 );
gfx.PutPixel( 93 + x,73 + y,208,34,34 );
gfx.PutPixel( 94 + x,73 + y,208,34,34 );
gfx.PutPixel( 95 + x,73 + y,208,34,34 );
gfx.PutPixel( 96 + x,73 + y,208,34,34 );
gfx.PutPixel( 97 + x,73 + y,208,34,34 );
gfx.PutPixel( 98 + x,73 + y,208,34,34 );
gfx.PutPixel( 99 + x,73 + y,208,34,34 );
gfx.PutPixel( 100 + x,73 + y,208,34,34 );
gfx.PutPixel( 101 + x,73 + y,208,34,34 );
gfx.PutPixel( 102 + x,73 + y,208,34,34 );
gfx.PutPixel( 103 + x,73 + y,208,34,34 );
gfx.PutPixel( 104 + x,73 + y,208,34,34 );
gfx.PutPixel( 105 + x,73 + y,208,34,34 );
gfx.PutPixel( 106 + x,73 + y,208,34,34 );
gfx.PutPixel( 107 + x,73 + y,208,34,34 );
gfx.PutPixel( 108 + x,73 + y,208,34,34 );
gfx.PutPixel( 109 + x,73 + y,208,34,34 );
gfx.PutPixel( 110 + x,73 + y,208,34,34 );
gfx.PutPixel( 111 + x,73 + y,208,34,34 );
gfx.PutPixel( 112 + x,73 + y,208,34,34 );
gfx.PutPixel( 113 + x,73 + y,208,34,34 );
gfx.PutPixel( 114 + x,73 + y,208,34,34 );
gfx.PutPixel( 115 + x,73 + y,208,34,34 );
gfx.PutPixel( 116 + x,73 + y,208,34,34 );
gfx.PutPixel( 117 + x,73 + y,208,34,34 );
gfx.PutPixel( 118 + x,73 + y,208,34,34 );
gfx.PutPixel( 119 + x,73 + y,208,34,34 );
gfx.PutPixel( 120 + x,73 + y,208,34,34 );
gfx.PutPixel( 121 + x,73 + y,208,34,34 );
gfx.PutPixel( 122 + x,73 + y,208,34,34 );
gfx.PutPixel( 123 + x,73 + y,208,34,34 );
gfx.PutPixel( 124 + x,73 + y,208,34,34 );
gfx.PutPixel( 125 + x,73 + y,208,34,34 );
gfx.PutPixel( 126 + x,73 + y,208,34,34 );
gfx.PutPixel( 127 + x,73 + y,208,34,34 );
gfx.PutPixel( 128 + x,73 + y,208,34,34 );
gfx.PutPixel( 129 + x,73 + y,208,34,34 );
gfx.PutPixel( 130 + x,73 + y,208,34,34 );
gfx.PutPixel( 131 + x,73 + y,208,34,34 );
gfx.PutPixel( 132 + x,73 + y,208,34,34 );
gfx.PutPixel( 133 + x,73 + y,208,34,34 );
gfx.PutPixel( 134 + x,73 + y,208,34,34 );
gfx.PutPixel( 135 + x,73 + y,208,34,34 );
gfx.PutPixel( 136 + x,73 + y,208,34,34 );
gfx.PutPixel( 137 + x,73 + y,208,34,34 );
gfx.PutPixel( 138 + x,73 + y,208,34,34 );
gfx.PutPixel( 139 + x,73 + y,208,34,34 );
gfx.PutPixel( 140 + x,73 + y,208,34,34 );
gfx.PutPixel( 141 + x,73 + y,208,34,34 );
gfx.PutPixel( 142 + x,73 + y,208,34,34 );
gfx.PutPixel( 143 + x,73 + y,208,34,34 );
gfx.PutPixel( 144 + x,73 + y,208,34,34 );
gfx.PutPixel( 145 + x,73 + y,208,34,34 );
gfx.PutPixel( 146 + x,73 + y,208,34,34 );
gfx.PutPixel( 147 + x,73 + y,208,34,34 );
gfx.PutPixel( 148 + x,73 + y,208,34,34 );
gfx.PutPixel( 149 + x,73 + y,208,34,34 );
gfx.PutPixel( 0 + x,74 + y,208,34,34 );
gfx.PutPixel( 1 + x,74 + y,208,34,34 );
gfx.PutPixel( 2 + x,74 + y,208,34,34 );
gfx.PutPixel( 3 + x,74 + y,208,34,34 );
gfx.PutPixel( 4 + x,74 + y,208,34,34 );
gfx.PutPixel( 5 + x,74 + y,208,34,34 );
gfx.PutPixel( 6 + x,74 + y,208,34,34 );
gfx.PutPixel( 7 + x,74 + y,208,34,34 );
gfx.PutPixel( 8 + x,74 + y,208,34,34 );
gfx.PutPixel( 9 + x,74 + y,208,34,34 );
gfx.PutPixel( 10 + x,74 + y,208,34,34 );
gfx.PutPixel( 11 + x,74 + y,208,34,34 );
gfx.PutPixel( 12 + x,74 + y,208,34,34 );
gfx.PutPixel( 13 + x,74 + y,208,34,34 );
gfx.PutPixel( 14 + x,74 + y,208,34,34 );
gfx.PutPixel( 15 + x,74 + y,208,34,34 );
gfx.PutPixel( 16 + x,74 + y,208,34,34 );
gfx.PutPixel( 17 + x,74 + y,208,34,34 );
gfx.PutPixel( 18 + x,74 + y,208,34,34 );
gfx.PutPixel( 19 + x,74 + y,208,34,34 );
gfx.PutPixel( 20 + x,74 + y,208,34,34 );
gfx.PutPixel( 21 + x,74 + y,208,34,34 );
gfx.PutPixel( 22 + x,74 + y,208,34,34 );
gfx.PutPixel( 23 + x,74 + y,208,34,34 );
gfx.PutPixel( 24 + x,74 + y,208,34,34 );
gfx.PutPixel( 25 + x,74 + y,208,34,34 );
gfx.PutPixel( 26 + x,74 + y,208,34,34 );
gfx.PutPixel( 27 + x,74 + y,208,34,34 );
gfx.PutPixel( 28 + x,74 + y,208,34,34 );
gfx.PutPixel( 29 + x,74 + y,208,34,34 );
gfx.PutPixel( 30 + x,74 + y,208,34,34 );
gfx.PutPixel( 31 + x,74 + y,208,34,34 );
gfx.PutPixel( 32 + x,74 + y,208,34,34 );
gfx.PutPixel( 33 + x,74 + y,208,34,34 );
gfx.PutPixel( 34 + x,74 + y,208,34,34 );
gfx.PutPixel( 35 + x,74 + y,208,34,34 );
gfx.PutPixel( 36 + x,74 + y,208,34,34 );
gfx.PutPixel( 37 + x,74 + y,208,34,34 );
gfx.PutPixel( 38 + x,74 + y,208,34,34 );
gfx.PutPixel( 39 + x,74 + y,208,34,34 );
gfx.PutPixel( 40 + x,74 + y,208,34,34 );
gfx.PutPixel( 41 + x,74 + y,208,34,34 );
gfx.PutPixel( 42 + x,74 + y,208,34,34 );
gfx.PutPixel( 43 + x,74 + y,208,34,34 );
gfx.PutPixel( 44 + x,74 + y,208,34,34 );
gfx.PutPixel( 45 + x,74 + y,208,34,34 );
gfx.PutPixel( 46 + x,74 + y,208,34,34 );
gfx.PutPixel( 47 + x,74 + y,208,31,31 );
gfx.PutPixel( 48 + x,74 + y,208,27,27 );
gfx.PutPixel( 49 + x,74 + y,207,26,26 );
gfx.PutPixel( 50 + x,74 + y,207,26,26 );
gfx.PutPixel( 51 + x,74 + y,208,28,28 );
gfx.PutPixel( 52 + x,74 + y,208,32,32 );
gfx.PutPixel( 53 + x,74 + y,208,34,34 );
gfx.PutPixel( 54 + x,74 + y,208,34,34 );
gfx.PutPixel( 55 + x,74 + y,208,34,34 );
gfx.PutPixel( 56 + x,74 + y,208,34,34 );
gfx.PutPixel( 57 + x,74 + y,208,34,34 );
gfx.PutPixel( 58 + x,74 + y,208,34,34 );
gfx.PutPixel( 59 + x,74 + y,208,34,34 );
gfx.PutPixel( 60 + x,74 + y,208,34,34 );
gfx.PutPixel( 61 + x,74 + y,208,34,34 );
gfx.PutPixel( 62 + x,74 + y,208,34,34 );
gfx.PutPixel( 63 + x,74 + y,208,34,34 );
gfx.PutPixel( 64 + x,74 + y,208,34,34 );
gfx.PutPixel( 65 + x,74 + y,208,34,34 );
gfx.PutPixel( 66 + x,74 + y,208,34,34 );
gfx.PutPixel( 67 + x,74 + y,208,34,34 );
gfx.PutPixel( 68 + x,74 + y,208,34,34 );
gfx.PutPixel( 69 + x,74 + y,208,34,34 );
gfx.PutPixel( 70 + x,74 + y,208,34,34 );
gfx.PutPixel( 71 + x,74 + y,208,34,34 );
gfx.PutPixel( 72 + x,74 + y,208,34,34 );
gfx.PutPixel( 73 + x,74 + y,208,34,34 );
gfx.PutPixel( 74 + x,74 + y,208,34,34 );
gfx.PutPixel( 75 + x,74 + y,208,34,34 );
gfx.PutPixel( 76 + x,74 + y,208,34,34 );
gfx.PutPixel( 77 + x,74 + y,208,33,33 );
gfx.PutPixel( 78 + x,74 + y,208,33,33 );
gfx.PutPixel( 79 + x,74 + y,208,34,34 );
gfx.PutPixel( 80 + x,74 + y,208,34,34 );
gfx.PutPixel( 81 + x,74 + y,208,34,34 );
gfx.PutPixel( 82 + x,74 + y,208,34,34 );
gfx.PutPixel( 83 + x,74 + y,208,34,34 );
gfx.PutPixel( 84 + x,74 + y,208,34,34 );
gfx.PutPixel( 85 + x,74 + y,208,34,34 );
gfx.PutPixel( 86 + x,74 + y,208,34,34 );
gfx.PutPixel( 87 + x,74 + y,208,34,34 );
gfx.PutPixel( 88 + x,74 + y,208,34,34 );
gfx.PutPixel( 89 + x,74 + y,208,34,34 );
gfx.PutPixel( 90 + x,74 + y,208,34,34 );
gfx.PutPixel( 91 + x,74 + y,208,34,34 );
gfx.PutPixel( 92 + x,74 + y,208,34,34 );
gfx.PutPixel( 93 + x,74 + y,208,33,33 );
gfx.PutPixel( 94 + x,74 + y,208,34,34 );
gfx.PutPixel( 95 + x,74 + y,208,34,34 );
gfx.PutPixel( 96 + x,74 + y,208,34,34 );
gfx.PutPixel( 97 + x,74 + y,208,34,34 );
gfx.PutPixel( 98 + x,74 + y,208,34,34 );
gfx.PutPixel( 99 + x,74 + y,208,34,34 );
gfx.PutPixel( 100 + x,74 + y,208,34,34 );
gfx.PutPixel( 101 + x,74 + y,208,34,34 );
gfx.PutPixel( 102 + x,74 + y,208,34,34 );
gfx.PutPixel( 103 + x,74 + y,208,33,33 );
gfx.PutPixel( 104 + x,74 + y,208,34,34 );
gfx.PutPixel( 105 + x,74 + y,208,34,34 );
gfx.PutPixel( 106 + x,74 + y,208,34,34 );
gfx.PutPixel( 107 + x,74 + y,208,34,34 );
gfx.PutPixel( 108 + x,74 + y,208,34,34 );
gfx.PutPixel( 109 + x,74 + y,208,34,34 );
gfx.PutPixel( 110 + x,74 + y,208,34,34 );
gfx.PutPixel( 111 + x,74 + y,208,34,34 );
gfx.PutPixel( 112 + x,74 + y,208,34,34 );
gfx.PutPixel( 113 + x,74 + y,208,34,34 );
gfx.PutPixel( 114 + x,74 + y,208,34,34 );
gfx.PutPixel( 115 + x,74 + y,208,34,34 );
gfx.PutPixel( 116 + x,74 + y,208,34,34 );
gfx.PutPixel( 117 + x,74 + y,208,34,34 );
gfx.PutPixel( 118 + x,74 + y,208,34,34 );
gfx.PutPixel( 119 + x,74 + y,208,34,34 );
gfx.PutPixel( 120 + x,74 + y,208,34,34 );
gfx.PutPixel( 121 + x,74 + y,208,34,34 );
gfx.PutPixel( 122 + x,74 + y,208,34,34 );
gfx.PutPixel( 123 + x,74 + y,208,34,34 );
gfx.PutPixel( 124 + x,74 + y,208,34,34 );
gfx.PutPixel( 125 + x,74 + y,208,34,34 );
gfx.PutPixel( 126 + x,74 + y,208,34,34 );
gfx.PutPixel( 127 + x,74 + y,208,34,34 );
gfx.PutPixel( 128 + x,74 + y,208,34,34 );
gfx.PutPixel( 129 + x,74 + y,208,34,34 );
gfx.PutPixel( 130 + x,74 + y,208,34,34 );
gfx.PutPixel( 131 + x,74 + y,208,34,34 );
gfx.PutPixel( 132 + x,74 + y,208,34,34 );
gfx.PutPixel( 133 + x,74 + y,208,34,34 );
gfx.PutPixel( 134 + x,74 + y,208,34,34 );
gfx.PutPixel( 135 + x,74 + y,208,34,34 );
gfx.PutPixel( 136 + x,74 + y,208,34,34 );
gfx.PutPixel( 137 + x,74 + y,208,34,34 );
gfx.PutPixel( 138 + x,74 + y,208,34,34 );
gfx.PutPixel( 139 + x,74 + y,208,34,34 );
gfx.PutPixel( 140 + x,74 + y,208,34,34 );
gfx.PutPixel( 141 + x,74 + y,208,34,34 );
gfx.PutPixel( 142 + x,74 + y,208,34,34 );
gfx.PutPixel( 143 + x,74 + y,208,34,34 );
gfx.PutPixel( 144 + x,74 + y,208,34,34 );
gfx.PutPixel( 145 + x,74 + y,208,34,34 );
gfx.PutPixel( 146 + x,74 + y,208,34,34 );
gfx.PutPixel( 147 + x,74 + y,208,34,34 );
gfx.PutPixel( 148 + x,74 + y,208,34,34 );
gfx.PutPixel( 149 + x,74 + y,208,34,34 );
gfx.PutPixel( 0 + x,75 + y,208,34,34 );
gfx.PutPixel( 1 + x,75 + y,208,34,34 );
gfx.PutPixel( 2 + x,75 + y,208,34,34 );
gfx.PutPixel( 3 + x,75 + y,208,34,34 );
gfx.PutPixel( 4 + x,75 + y,208,34,34 );
gfx.PutPixel( 5 + x,75 + y,208,34,34 );
gfx.PutPixel( 6 + x,75 + y,208,34,34 );
gfx.PutPixel( 7 + x,75 + y,208,34,34 );
gfx.PutPixel( 8 + x,75 + y,208,34,34 );
gfx.PutPixel( 9 + x,75 + y,208,34,34 );
gfx.PutPixel( 10 + x,75 + y,208,34,34 );
gfx.PutPixel( 11 + x,75 + y,208,34,34 );
gfx.PutPixel( 12 + x,75 + y,208,34,34 );
gfx.PutPixel( 13 + x,75 + y,208,34,34 );
gfx.PutPixel( 14 + x,75 + y,208,34,34 );
gfx.PutPixel( 15 + x,75 + y,208,34,34 );
gfx.PutPixel( 16 + x,75 + y,208,34,34 );
gfx.PutPixel( 17 + x,75 + y,208,34,34 );
gfx.PutPixel( 18 + x,75 + y,208,34,34 );
gfx.PutPixel( 19 + x,75 + y,208,34,34 );
gfx.PutPixel( 20 + x,75 + y,208,34,34 );
gfx.PutPixel( 21 + x,75 + y,208,34,34 );
gfx.PutPixel( 22 + x,75 + y,208,34,34 );
gfx.PutPixel( 23 + x,75 + y,208,34,34 );
gfx.PutPixel( 24 + x,75 + y,208,34,34 );
gfx.PutPixel( 25 + x,75 + y,208,34,34 );
gfx.PutPixel( 26 + x,75 + y,208,34,34 );
gfx.PutPixel( 27 + x,75 + y,208,34,34 );
gfx.PutPixel( 28 + x,75 + y,208,34,34 );
gfx.PutPixel( 29 + x,75 + y,208,34,34 );
gfx.PutPixel( 30 + x,75 + y,208,34,34 );
gfx.PutPixel( 31 + x,75 + y,208,34,34 );
gfx.PutPixel( 32 + x,75 + y,208,34,34 );
gfx.PutPixel( 33 + x,75 + y,208,34,34 );
gfx.PutPixel( 34 + x,75 + y,208,34,34 );
gfx.PutPixel( 35 + x,75 + y,208,34,34 );
gfx.PutPixel( 36 + x,75 + y,208,34,34 );
gfx.PutPixel( 37 + x,75 + y,208,34,34 );
gfx.PutPixel( 38 + x,75 + y,208,34,34 );
gfx.PutPixel( 39 + x,75 + y,208,34,34 );
gfx.PutPixel( 40 + x,75 + y,208,34,34 );
gfx.PutPixel( 41 + x,75 + y,208,34,34 );
gfx.PutPixel( 42 + x,75 + y,208,34,34 );
gfx.PutPixel( 43 + x,75 + y,208,34,34 );
gfx.PutPixel( 44 + x,75 + y,208,33,33 );
gfx.PutPixel( 45 + x,75 + y,207,25,25 );
gfx.PutPixel( 46 + x,75 + y,207,25,25 );
gfx.PutPixel( 47 + x,75 + y,209,44,44 );
gfx.PutPixel( 48 + x,75 + y,210,67,67 );
gfx.PutPixel( 49 + x,75 + y,211,80,80 );
gfx.PutPixel( 50 + x,75 + y,211,80,80 );
gfx.PutPixel( 51 + x,75 + y,210,63,63 );
gfx.PutPixel( 52 + x,75 + y,208,37,37 );
gfx.PutPixel( 53 + x,75 + y,207,23,23 );
gfx.PutPixel( 54 + x,75 + y,208,31,31 );
gfx.PutPixel( 55 + x,75 + y,208,34,34 );
gfx.PutPixel( 56 + x,75 + y,208,34,34 );
gfx.PutPixel( 57 + x,75 + y,208,34,34 );
gfx.PutPixel( 58 + x,75 + y,208,34,34 );
gfx.PutPixel( 59 + x,75 + y,208,34,34 );
gfx.PutPixel( 60 + x,75 + y,208,34,34 );
gfx.PutPixel( 61 + x,75 + y,208,34,34 );
gfx.PutPixel( 62 + x,75 + y,208,34,34 );
gfx.PutPixel( 63 + x,75 + y,208,30,30 );
gfx.PutPixel( 64 + x,75 + y,207,27,27 );
gfx.PutPixel( 65 + x,75 + y,208,27,27 );
gfx.PutPixel( 66 + x,75 + y,207,27,27 );
gfx.PutPixel( 67 + x,75 + y,208,32,32 );
gfx.PutPixel( 68 + x,75 + y,208,34,34 );
gfx.PutPixel( 69 + x,75 + y,208,34,34 );
gfx.PutPixel( 70 + x,75 + y,208,34,34 );
gfx.PutPixel( 71 + x,75 + y,208,34,34 );
gfx.PutPixel( 72 + x,75 + y,208,34,34 );
gfx.PutPixel( 73 + x,75 + y,208,34,34 );
gfx.PutPixel( 74 + x,75 + y,208,34,34 );
gfx.PutPixel( 75 + x,75 + y,208,34,34 );
gfx.PutPixel( 76 + x,75 + y,208,29,29 );
gfx.PutPixel( 77 + x,75 + y,207,27,27 );
gfx.PutPixel( 78 + x,75 + y,207,27,27 );
gfx.PutPixel( 79 + x,75 + y,208,29,29 );
gfx.PutPixel( 80 + x,75 + y,208,34,34 );
gfx.PutPixel( 81 + x,75 + y,208,34,34 );
gfx.PutPixel( 82 + x,75 + y,208,34,34 );
gfx.PutPixel( 83 + x,75 + y,208,34,34 );
gfx.PutPixel( 84 + x,75 + y,208,34,34 );
gfx.PutPixel( 85 + x,75 + y,208,34,34 );
gfx.PutPixel( 86 + x,75 + y,208,34,34 );
gfx.PutPixel( 87 + x,75 + y,208,34,34 );
gfx.PutPixel( 88 + x,75 + y,208,34,34 );
gfx.PutPixel( 89 + x,75 + y,208,28,28 );
gfx.PutPixel( 90 + x,75 + y,208,27,27 );
gfx.PutPixel( 91 + x,75 + y,208,27,27 );
gfx.PutPixel( 92 + x,75 + y,208,27,27 );
gfx.PutPixel( 93 + x,75 + y,208,27,27 );
gfx.PutPixel( 94 + x,75 + y,208,28,28 );
gfx.PutPixel( 95 + x,75 + y,208,34,34 );
gfx.PutPixel( 96 + x,75 + y,208,34,34 );
gfx.PutPixel( 97 + x,75 + y,208,34,34 );
gfx.PutPixel( 98 + x,75 + y,208,34,34 );
gfx.PutPixel( 99 + x,75 + y,208,34,34 );
gfx.PutPixel( 100 + x,75 + y,208,34,34 );
gfx.PutPixel( 101 + x,75 + y,208,34,34 );
gfx.PutPixel( 102 + x,75 + y,208,28,28 );
gfx.PutPixel( 103 + x,75 + y,208,27,27 );
gfx.PutPixel( 104 + x,75 + y,208,27,27 );
gfx.PutPixel( 105 + x,75 + y,208,27,27 );
gfx.PutPixel( 106 + x,75 + y,208,27,27 );
gfx.PutPixel( 107 + x,75 + y,208,28,28 );
gfx.PutPixel( 108 + x,75 + y,208,34,34 );
gfx.PutPixel( 109 + x,75 + y,208,34,34 );
gfx.PutPixel( 110 + x,75 + y,208,34,34 );
gfx.PutPixel( 111 + x,75 + y,208,34,34 );
gfx.PutPixel( 112 + x,75 + y,208,34,34 );
gfx.PutPixel( 113 + x,75 + y,208,34,34 );
gfx.PutPixel( 114 + x,75 + y,208,34,34 );
gfx.PutPixel( 115 + x,75 + y,208,34,34 );
gfx.PutPixel( 116 + x,75 + y,208,34,34 );
gfx.PutPixel( 117 + x,75 + y,208,34,34 );
gfx.PutPixel( 118 + x,75 + y,208,34,34 );
gfx.PutPixel( 119 + x,75 + y,208,34,34 );
gfx.PutPixel( 120 + x,75 + y,208,34,34 );
gfx.PutPixel( 121 + x,75 + y,208,34,34 );
gfx.PutPixel( 122 + x,75 + y,208,34,34 );
gfx.PutPixel( 123 + x,75 + y,208,34,34 );
gfx.PutPixel( 124 + x,75 + y,208,34,34 );
gfx.PutPixel( 125 + x,75 + y,208,34,34 );
gfx.PutPixel( 126 + x,75 + y,208,34,34 );
gfx.PutPixel( 127 + x,75 + y,208,34,34 );
gfx.PutPixel( 128 + x,75 + y,208,34,34 );
gfx.PutPixel( 129 + x,75 + y,208,34,34 );
gfx.PutPixel( 130 + x,75 + y,208,34,34 );
gfx.PutPixel( 131 + x,75 + y,208,34,34 );
gfx.PutPixel( 132 + x,75 + y,208,34,34 );
gfx.PutPixel( 133 + x,75 + y,208,34,34 );
gfx.PutPixel( 134 + x,75 + y,208,34,34 );
gfx.PutPixel( 135 + x,75 + y,208,34,34 );
gfx.PutPixel( 136 + x,75 + y,208,34,34 );
gfx.PutPixel( 137 + x,75 + y,208,34,34 );
gfx.PutPixel( 138 + x,75 + y,208,34,34 );
gfx.PutPixel( 139 + x,75 + y,208,34,34 );
gfx.PutPixel( 140 + x,75 + y,208,34,34 );
gfx.PutPixel( 141 + x,75 + y,208,34,34 );
gfx.PutPixel( 142 + x,75 + y,208,34,34 );
gfx.PutPixel( 143 + x,75 + y,208,34,34 );
gfx.PutPixel( 144 + x,75 + y,208,34,34 );
gfx.PutPixel( 145 + x,75 + y,208,34,34 );
gfx.PutPixel( 146 + x,75 + y,208,34,34 );
gfx.PutPixel( 147 + x,75 + y,208,34,34 );
gfx.PutPixel( 148 + x,75 + y,208,34,34 );
gfx.PutPixel( 149 + x,75 + y,208,34,34 );
gfx.PutPixel( 0 + x,76 + y,208,34,34 );
gfx.PutPixel( 1 + x,76 + y,208,34,34 );
gfx.PutPixel( 2 + x,76 + y,208,34,34 );
gfx.PutPixel( 3 + x,76 + y,208,34,34 );
gfx.PutPixel( 4 + x,76 + y,208,34,34 );
gfx.PutPixel( 5 + x,76 + y,208,34,34 );
gfx.PutPixel( 6 + x,76 + y,208,34,34 );
gfx.PutPixel( 7 + x,76 + y,208,34,34 );
gfx.PutPixel( 8 + x,76 + y,208,34,34 );
gfx.PutPixel( 9 + x,76 + y,208,34,34 );
gfx.PutPixel( 10 + x,76 + y,208,34,34 );
gfx.PutPixel( 11 + x,76 + y,208,34,34 );
gfx.PutPixel( 12 + x,76 + y,208,34,34 );
gfx.PutPixel( 13 + x,76 + y,208,34,34 );
gfx.PutPixel( 14 + x,76 + y,208,34,34 );
gfx.PutPixel( 15 + x,76 + y,208,34,34 );
gfx.PutPixel( 16 + x,76 + y,208,34,34 );
gfx.PutPixel( 17 + x,76 + y,208,34,34 );
gfx.PutPixel( 18 + x,76 + y,208,34,34 );
gfx.PutPixel( 19 + x,76 + y,208,34,34 );
gfx.PutPixel( 20 + x,76 + y,208,34,34 );
gfx.PutPixel( 21 + x,76 + y,208,34,34 );
gfx.PutPixel( 22 + x,76 + y,208,34,34 );
gfx.PutPixel( 23 + x,76 + y,208,34,34 );
gfx.PutPixel( 24 + x,76 + y,208,34,34 );
gfx.PutPixel( 25 + x,76 + y,208,34,34 );
gfx.PutPixel( 26 + x,76 + y,208,34,34 );
gfx.PutPixel( 27 + x,76 + y,208,34,34 );
gfx.PutPixel( 28 + x,76 + y,208,34,34 );
gfx.PutPixel( 29 + x,76 + y,208,34,34 );
gfx.PutPixel( 30 + x,76 + y,208,34,34 );
gfx.PutPixel( 31 + x,76 + y,208,34,34 );
gfx.PutPixel( 32 + x,76 + y,208,34,34 );
gfx.PutPixel( 33 + x,76 + y,208,34,34 );
gfx.PutPixel( 34 + x,76 + y,208,34,34 );
gfx.PutPixel( 35 + x,76 + y,208,34,34 );
gfx.PutPixel( 36 + x,76 + y,208,34,34 );
gfx.PutPixel( 37 + x,76 + y,208,34,34 );
gfx.PutPixel( 38 + x,76 + y,208,34,34 );
gfx.PutPixel( 39 + x,76 + y,208,34,34 );
gfx.PutPixel( 40 + x,76 + y,208,34,34 );
gfx.PutPixel( 41 + x,76 + y,208,34,34 );
gfx.PutPixel( 42 + x,76 + y,208,34,34 );
gfx.PutPixel( 43 + x,76 + y,208,29,29 );
gfx.PutPixel( 44 + x,76 + y,207,26,26 );
gfx.PutPixel( 45 + x,76 + y,211,81,81 );
gfx.PutPixel( 46 + x,76 + y,217,158,158 );
gfx.PutPixel( 47 + x,76 + y,220,202,202 );
gfx.PutPixel( 48 + x,76 + y,221,220,220 );
gfx.PutPixel( 49 + x,76 + y,221,227,227 );
gfx.PutPixel( 50 + x,76 + y,221,226,226 );
gfx.PutPixel( 51 + x,76 + y,221,218,218 );
gfx.PutPixel( 52 + x,76 + y,219,192,192 );
gfx.PutPixel( 53 + x,76 + y,214,125,125 );
gfx.PutPixel( 54 + x,76 + y,208,41,41 );
gfx.PutPixel( 55 + x,76 + y,208,26,26 );
gfx.PutPixel( 56 + x,76 + y,208,35,35 );
gfx.PutPixel( 57 + x,76 + y,208,34,34 );
gfx.PutPixel( 58 + x,76 + y,208,34,34 );
gfx.PutPixel( 59 + x,76 + y,208,34,34 );
gfx.PutPixel( 60 + x,76 + y,208,34,34 );
gfx.PutPixel( 61 + x,76 + y,208,34,34 );
gfx.PutPixel( 62 + x,76 + y,207,26,26 );
gfx.PutPixel( 63 + x,76 + y,211,81,81 );
gfx.PutPixel( 64 + x,76 + y,218,179,179 );
gfx.PutPixel( 65 + x,76 + y,218,175,175 );
gfx.PutPixel( 66 + x,76 + y,217,168,168 );
gfx.PutPixel( 67 + x,76 + y,209,50,50 );
gfx.PutPixel( 68 + x,76 + y,208,30,30 );
gfx.PutPixel( 69 + x,76 + y,208,34,34 );
gfx.PutPixel( 70 + x,76 + y,208,34,34 );
gfx.PutPixel( 71 + x,76 + y,208,34,34 );
gfx.PutPixel( 72 + x,76 + y,208,34,34 );
gfx.PutPixel( 73 + x,76 + y,208,34,34 );
gfx.PutPixel( 74 + x,76 + y,208,34,34 );
gfx.PutPixel( 75 + x,76 + y,208,29,29 );
gfx.PutPixel( 76 + x,76 + y,215,137,137 );
gfx.PutPixel( 77 + x,76 + y,218,179,179 );
gfx.PutPixel( 78 + x,76 + y,218,179,179 );
gfx.PutPixel( 79 + x,76 + y,215,137,137 );
gfx.PutPixel( 80 + x,76 + y,208,29,29 );
gfx.PutPixel( 81 + x,76 + y,208,34,34 );
gfx.PutPixel( 82 + x,76 + y,208,34,34 );
gfx.PutPixel( 83 + x,76 + y,208,34,34 );
gfx.PutPixel( 84 + x,76 + y,208,34,34 );
gfx.PutPixel( 85 + x,76 + y,208,34,34 );
gfx.PutPixel( 86 + x,76 + y,208,34,34 );
gfx.PutPixel( 87 + x,76 + y,208,31,31 );
gfx.PutPixel( 88 + x,76 + y,209,44,44 );
gfx.PutPixel( 89 + x,76 + y,217,163,163 );
gfx.PutPixel( 90 + x,76 + y,218,176,176 );
gfx.PutPixel( 91 + x,76 + y,218,173,173 );
gfx.PutPixel( 92 + x,76 + y,218,173,173 );
gfx.PutPixel( 93 + x,76 + y,218,179,179 );
gfx.PutPixel( 94 + x,76 + y,215,134,134 );
gfx.PutPixel( 95 + x,76 + y,208,28,28 );
gfx.PutPixel( 96 + x,76 + y,208,34,34 );
gfx.PutPixel( 97 + x,76 + y,208,34,34 );
gfx.PutPixel( 98 + x,76 + y,208,34,34 );
gfx.PutPixel( 99 + x,76 + y,208,34,34 );
gfx.PutPixel( 100 + x,76 + y,208,34,34 );
gfx.PutPixel( 101 + x,76 + y,207,28,28 );
gfx.PutPixel( 102 + x,76 + y,215,131,131 );
gfx.PutPixel( 103 + x,76 + y,218,179,179 );
gfx.PutPixel( 104 + x,76 + y,218,173,173 );
gfx.PutPixel( 105 + x,76 + y,218,173,173 );
gfx.PutPixel( 106 + x,76 + y,218,176,176 );
gfx.PutPixel( 107 + x,76 + y,217,163,163 );
gfx.PutPixel( 108 + x,76 + y,209,44,44 );
gfx.PutPixel( 109 + x,76 + y,208,31,31 );
gfx.PutPixel( 110 + x,76 + y,208,34,34 );
gfx.PutPixel( 111 + x,76 + y,208,34,34 );
gfx.PutPixel( 112 + x,76 + y,208,34,34 );
gfx.PutPixel( 113 + x,76 + y,208,34,34 );
gfx.PutPixel( 114 + x,76 + y,208,34,34 );
gfx.PutPixel( 115 + x,76 + y,208,34,34 );
gfx.PutPixel( 116 + x,76 + y,208,34,34 );
gfx.PutPixel( 117 + x,76 + y,208,34,34 );
gfx.PutPixel( 118 + x,76 + y,208,34,34 );
gfx.PutPixel( 119 + x,76 + y,208,34,34 );
gfx.PutPixel( 120 + x,76 + y,208,34,34 );
gfx.PutPixel( 121 + x,76 + y,208,34,34 );
gfx.PutPixel( 122 + x,76 + y,208,34,34 );
gfx.PutPixel( 123 + x,76 + y,208,34,34 );
gfx.PutPixel( 124 + x,76 + y,208,34,34 );
gfx.PutPixel( 125 + x,76 + y,208,34,34 );
gfx.PutPixel( 126 + x,76 + y,208,34,34 );
gfx.PutPixel( 127 + x,76 + y,208,34,34 );
gfx.PutPixel( 128 + x,76 + y,208,34,34 );
gfx.PutPixel( 129 + x,76 + y,208,34,34 );
gfx.PutPixel( 130 + x,76 + y,208,34,34 );
gfx.PutPixel( 131 + x,76 + y,208,34,34 );
gfx.PutPixel( 132 + x,76 + y,208,34,34 );
gfx.PutPixel( 133 + x,76 + y,208,34,34 );
gfx.PutPixel( 134 + x,76 + y,208,34,34 );
gfx.PutPixel( 135 + x,76 + y,208,34,34 );
gfx.PutPixel( 136 + x,76 + y,208,34,34 );
gfx.PutPixel( 137 + x,76 + y,208,34,34 );
gfx.PutPixel( 138 + x,76 + y,208,34,34 );
gfx.PutPixel( 139 + x,76 + y,208,34,34 );
gfx.PutPixel( 140 + x,76 + y,208,34,34 );
gfx.PutPixel( 141 + x,76 + y,208,34,34 );
gfx.PutPixel( 142 + x,76 + y,208,34,34 );
gfx.PutPixel( 143 + x,76 + y,208,34,34 );
gfx.PutPixel( 144 + x,76 + y,208,34,34 );
gfx.PutPixel( 145 + x,76 + y,208,34,34 );
gfx.PutPixel( 146 + x,76 + y,208,34,34 );
gfx.PutPixel( 147 + x,76 + y,208,34,34 );
gfx.PutPixel( 148 + x,76 + y,208,34,34 );
gfx.PutPixel( 149 + x,76 + y,208,34,34 );
gfx.PutPixel( 0 + x,77 + y,208,34,34 );
gfx.PutPixel( 1 + x,77 + y,208,34,34 );
gfx.PutPixel( 2 + x,77 + y,208,34,34 );
gfx.PutPixel( 3 + x,77 + y,208,34,34 );
gfx.PutPixel( 4 + x,77 + y,208,34,34 );
gfx.PutPixel( 5 + x,77 + y,208,34,34 );
gfx.PutPixel( 6 + x,77 + y,208,34,34 );
gfx.PutPixel( 7 + x,77 + y,208,34,34 );
gfx.PutPixel( 8 + x,77 + y,208,34,34 );
gfx.PutPixel( 9 + x,77 + y,208,34,34 );
gfx.PutPixel( 10 + x,77 + y,208,34,34 );
gfx.PutPixel( 11 + x,77 + y,208,34,34 );
gfx.PutPixel( 12 + x,77 + y,208,34,34 );
gfx.PutPixel( 13 + x,77 + y,208,34,34 );
gfx.PutPixel( 14 + x,77 + y,208,34,34 );
gfx.PutPixel( 15 + x,77 + y,208,34,34 );
gfx.PutPixel( 16 + x,77 + y,208,34,34 );
gfx.PutPixel( 17 + x,77 + y,208,34,34 );
gfx.PutPixel( 18 + x,77 + y,208,34,34 );
gfx.PutPixel( 19 + x,77 + y,208,34,34 );
gfx.PutPixel( 20 + x,77 + y,208,34,34 );
gfx.PutPixel( 21 + x,77 + y,208,34,34 );
gfx.PutPixel( 22 + x,77 + y,208,34,34 );
gfx.PutPixel( 23 + x,77 + y,208,34,34 );
gfx.PutPixel( 24 + x,77 + y,208,34,34 );
gfx.PutPixel( 25 + x,77 + y,208,34,34 );
gfx.PutPixel( 26 + x,77 + y,208,34,34 );
gfx.PutPixel( 27 + x,77 + y,208,34,34 );
gfx.PutPixel( 28 + x,77 + y,208,34,34 );
gfx.PutPixel( 29 + x,77 + y,208,34,34 );
gfx.PutPixel( 30 + x,77 + y,208,34,34 );
gfx.PutPixel( 31 + x,77 + y,208,34,34 );
gfx.PutPixel( 32 + x,77 + y,208,34,34 );
gfx.PutPixel( 33 + x,77 + y,208,34,34 );
gfx.PutPixel( 34 + x,77 + y,208,34,34 );
gfx.PutPixel( 35 + x,77 + y,208,34,34 );
gfx.PutPixel( 36 + x,77 + y,208,34,34 );
gfx.PutPixel( 37 + x,77 + y,208,34,34 );
gfx.PutPixel( 38 + x,77 + y,208,34,34 );
gfx.PutPixel( 39 + x,77 + y,208,34,34 );
gfx.PutPixel( 40 + x,77 + y,208,34,34 );
gfx.PutPixel( 41 + x,77 + y,208,34,34 );
gfx.PutPixel( 42 + x,77 + y,207,27,27 );
gfx.PutPixel( 43 + x,77 + y,209,42,42 );
gfx.PutPixel( 44 + x,77 + y,216,155,155 );
gfx.PutPixel( 45 + x,77 + y,221,227,227 );
gfx.PutPixel( 46 + x,77 + y,222,232,232 );
gfx.PutPixel( 47 + x,77 + y,221,226,226 );
gfx.PutPixel( 48 + x,77 + y,221,223,223 );
gfx.PutPixel( 49 + x,77 + y,221,222,222 );
gfx.PutPixel( 50 + x,77 + y,221,222,222 );
gfx.PutPixel( 51 + x,77 + y,221,223,223 );
gfx.PutPixel( 52 + x,77 + y,221,228,228 );
gfx.PutPixel( 53 + x,77 + y,222,235,235 );
gfx.PutPixel( 54 + x,77 + y,219,193,193 );
gfx.PutPixel( 55 + x,77 + y,210,70,70 );
gfx.PutPixel( 56 + x,77 + y,208,29,29 );
gfx.PutPixel( 57 + x,77 + y,208,34,34 );
gfx.PutPixel( 58 + x,77 + y,208,34,34 );
gfx.PutPixel( 59 + x,77 + y,208,34,34 );
gfx.PutPixel( 60 + x,77 + y,208,34,34 );
gfx.PutPixel( 61 + x,77 + y,208,33,33 );
gfx.PutPixel( 62 + x,77 + y,207,26,26 );
gfx.PutPixel( 63 + x,77 + y,217,168,168 );
gfx.PutPixel( 64 + x,77 + y,222,239,239 );
gfx.PutPixel( 65 + x,77 + y,222,230,230 );
gfx.PutPixel( 66 + x,77 + y,223,240,240 );
gfx.PutPixel( 67 + x,77 + y,214,119,119 );
gfx.PutPixel( 68 + x,77 + y,207,22,22 );
gfx.PutPixel( 69 + x,77 + y,208,34,34 );
gfx.PutPixel( 70 + x,77 + y,208,34,34 );
gfx.PutPixel( 71 + x,77 + y,208,34,34 );
gfx.PutPixel( 72 + x,77 + y,208,34,34 );
gfx.PutPixel( 73 + x,77 + y,208,34,34 );
gfx.PutPixel( 74 + x,77 + y,208,34,34 );
gfx.PutPixel( 75 + x,77 + y,208,27,27 );
gfx.PutPixel( 76 + x,77 + y,218,179,179 );
gfx.PutPixel( 77 + x,77 + y,223,239,239 );
gfx.PutPixel( 78 + x,77 + y,223,239,239 );
gfx.PutPixel( 79 + x,77 + y,218,179,179 );
gfx.PutPixel( 80 + x,77 + y,208,27,27 );
gfx.PutPixel( 81 + x,77 + y,208,34,34 );
gfx.PutPixel( 82 + x,77 + y,208,34,34 );
gfx.PutPixel( 83 + x,77 + y,208,34,34 );
gfx.PutPixel( 84 + x,77 + y,208,34,34 );
gfx.PutPixel( 85 + x,77 + y,208,34,34 );
gfx.PutPixel( 86 + x,77 + y,208,34,34 );
gfx.PutPixel( 87 + x,77 + y,208,30,30 );
gfx.PutPixel( 88 + x,77 + y,209,48,48 );
gfx.PutPixel( 89 + x,77 + y,221,216,216 );
gfx.PutPixel( 90 + x,77 + y,222,234,234 );
gfx.PutPixel( 91 + x,77 + y,222,230,230 );
gfx.PutPixel( 92 + x,77 + y,222,230,230 );
gfx.PutPixel( 93 + x,77 + y,222,233,233 );
gfx.PutPixel( 94 + x,77 + y,221,216,216 );
gfx.PutPixel( 95 + x,77 + y,209,53,53 );
gfx.PutPixel( 96 + x,77 + y,208,29,29 );
gfx.PutPixel( 97 + x,77 + y,208,34,34 );
gfx.PutPixel( 98 + x,77 + y,208,34,34 );
gfx.PutPixel( 99 + x,77 + y,208,34,34 );
gfx.PutPixel( 100 + x,77 + y,208,30,30 );
gfx.PutPixel( 101 + x,77 + y,209,50,50 );
gfx.PutPixel( 102 + x,77 + y,220,214,214 );
gfx.PutPixel( 103 + x,77 + y,222,234,234 );
gfx.PutPixel( 104 + x,77 + y,222,230,230 );
gfx.PutPixel( 105 + x,77 + y,222,230,230 );
gfx.PutPixel( 106 + x,77 + y,222,234,234 );
gfx.PutPixel( 107 + x,77 + y,221,216,216 );
gfx.PutPixel( 108 + x,77 + y,209,48,48 );
gfx.PutPixel( 109 + x,77 + y,208,30,30 );
gfx.PutPixel( 110 + x,77 + y,208,34,34 );
gfx.PutPixel( 111 + x,77 + y,208,34,34 );
gfx.PutPixel( 112 + x,77 + y,208,34,34 );
gfx.PutPixel( 113 + x,77 + y,208,34,34 );
gfx.PutPixel( 114 + x,77 + y,208,34,34 );
gfx.PutPixel( 115 + x,77 + y,208,34,34 );
gfx.PutPixel( 116 + x,77 + y,208,34,34 );
gfx.PutPixel( 117 + x,77 + y,208,34,34 );
gfx.PutPixel( 118 + x,77 + y,208,34,34 );
gfx.PutPixel( 119 + x,77 + y,208,34,34 );
gfx.PutPixel( 120 + x,77 + y,208,34,34 );
gfx.PutPixel( 121 + x,77 + y,208,34,34 );
gfx.PutPixel( 122 + x,77 + y,208,34,34 );
gfx.PutPixel( 123 + x,77 + y,208,34,34 );
gfx.PutPixel( 124 + x,77 + y,208,34,34 );
gfx.PutPixel( 125 + x,77 + y,208,34,34 );
gfx.PutPixel( 126 + x,77 + y,208,34,34 );
gfx.PutPixel( 127 + x,77 + y,208,34,34 );
gfx.PutPixel( 128 + x,77 + y,208,34,34 );
gfx.PutPixel( 129 + x,77 + y,208,34,34 );
gfx.PutPixel( 130 + x,77 + y,208,34,34 );
gfx.PutPixel( 131 + x,77 + y,208,34,34 );
gfx.PutPixel( 132 + x,77 + y,208,34,34 );
gfx.PutPixel( 133 + x,77 + y,208,34,34 );
gfx.PutPixel( 134 + x,77 + y,208,34,34 );
gfx.PutPixel( 135 + x,77 + y,208,34,34 );
gfx.PutPixel( 136 + x,77 + y,208,34,34 );
gfx.PutPixel( 137 + x,77 + y,208,34,34 );
gfx.PutPixel( 138 + x,77 + y,208,34,34 );
gfx.PutPixel( 139 + x,77 + y,208,34,34 );
gfx.PutPixel( 140 + x,77 + y,208,34,34 );
gfx.PutPixel( 141 + x,77 + y,208,34,34 );
gfx.PutPixel( 142 + x,77 + y,208,34,34 );
gfx.PutPixel( 143 + x,77 + y,208,34,34 );
gfx.PutPixel( 144 + x,77 + y,208,34,34 );
gfx.PutPixel( 145 + x,77 + y,208,34,34 );
gfx.PutPixel( 146 + x,77 + y,208,34,34 );
gfx.PutPixel( 147 + x,77 + y,208,34,34 );
gfx.PutPixel( 148 + x,77 + y,208,34,34 );
gfx.PutPixel( 149 + x,77 + y,208,34,34 );
gfx.PutPixel( 0 + x,78 + y,208,34,34 );
gfx.PutPixel( 1 + x,78 + y,208,34,34 );
gfx.PutPixel( 2 + x,78 + y,208,34,34 );
gfx.PutPixel( 3 + x,78 + y,208,34,34 );
gfx.PutPixel( 4 + x,78 + y,208,34,34 );
gfx.PutPixel( 5 + x,78 + y,208,34,34 );
gfx.PutPixel( 6 + x,78 + y,208,34,34 );
gfx.PutPixel( 7 + x,78 + y,208,34,34 );
gfx.PutPixel( 8 + x,78 + y,208,34,34 );
gfx.PutPixel( 9 + x,78 + y,208,34,34 );
gfx.PutPixel( 10 + x,78 + y,208,34,34 );
gfx.PutPixel( 11 + x,78 + y,208,34,34 );
gfx.PutPixel( 12 + x,78 + y,208,34,34 );
gfx.PutPixel( 13 + x,78 + y,208,34,34 );
gfx.PutPixel( 14 + x,78 + y,208,34,34 );
gfx.PutPixel( 15 + x,78 + y,208,34,34 );
gfx.PutPixel( 16 + x,78 + y,208,34,34 );
gfx.PutPixel( 17 + x,78 + y,208,34,34 );
gfx.PutPixel( 18 + x,78 + y,208,34,34 );
gfx.PutPixel( 19 + x,78 + y,208,34,34 );
gfx.PutPixel( 20 + x,78 + y,208,34,34 );
gfx.PutPixel( 21 + x,78 + y,208,34,34 );
gfx.PutPixel( 22 + x,78 + y,208,34,34 );
gfx.PutPixel( 23 + x,78 + y,208,34,34 );
gfx.PutPixel( 24 + x,78 + y,208,34,34 );
gfx.PutPixel( 25 + x,78 + y,208,34,34 );
gfx.PutPixel( 26 + x,78 + y,208,34,34 );
gfx.PutPixel( 27 + x,78 + y,208,34,34 );
gfx.PutPixel( 28 + x,78 + y,208,34,34 );
gfx.PutPixel( 29 + x,78 + y,208,34,34 );
gfx.PutPixel( 30 + x,78 + y,208,34,34 );
gfx.PutPixel( 31 + x,78 + y,208,34,34 );
gfx.PutPixel( 32 + x,78 + y,208,34,34 );
gfx.PutPixel( 33 + x,78 + y,208,34,34 );
gfx.PutPixel( 34 + x,78 + y,208,34,34 );
gfx.PutPixel( 35 + x,78 + y,208,34,34 );
gfx.PutPixel( 36 + x,78 + y,208,34,34 );
gfx.PutPixel( 37 + x,78 + y,208,34,34 );
gfx.PutPixel( 38 + x,78 + y,208,34,34 );
gfx.PutPixel( 39 + x,78 + y,208,34,34 );
gfx.PutPixel( 40 + x,78 + y,208,34,34 );
gfx.PutPixel( 41 + x,78 + y,208,29,29 );
gfx.PutPixel( 42 + x,78 + y,209,44,44 );
gfx.PutPixel( 43 + x,78 + y,218,184,184 );
gfx.PutPixel( 44 + x,78 + y,222,235,235 );
gfx.PutPixel( 45 + x,78 + y,221,222,222 );
gfx.PutPixel( 46 + x,78 + y,221,221,221 );
gfx.PutPixel( 47 + x,78 + y,222,229,229 );
gfx.PutPixel( 48 + x,78 + y,222,231,231 );
gfx.PutPixel( 49 + x,78 + y,221,228,228 );
gfx.PutPixel( 50 + x,78 + y,222,230,230 );
gfx.PutPixel( 51 + x,78 + y,222,231,231 );
gfx.PutPixel( 52 + x,78 + y,221,222,222 );
gfx.PutPixel( 53 + x,78 + y,221,225,225 );
gfx.PutPixel( 54 + x,78 + y,222,235,235 );
gfx.PutPixel( 55 + x,78 + y,213,113,113 );
gfx.PutPixel( 56 + x,78 + y,207,25,25 );
gfx.PutPixel( 57 + x,78 + y,208,34,34 );
gfx.PutPixel( 58 + x,78 + y,208,34,34 );
gfx.PutPixel( 59 + x,78 + y,208,34,34 );
gfx.PutPixel( 60 + x,78 + y,208,34,34 );
gfx.PutPixel( 61 + x,78 + y,207,27,27 );
gfx.PutPixel( 62 + x,78 + y,210,68,68 );
gfx.PutPixel( 63 + x,78 + y,221,221,221 );
gfx.PutPixel( 64 + x,78 + y,221,223,223 );
gfx.PutPixel( 65 + x,78 + y,221,221,221 );
gfx.PutPixel( 66 + x,78 + y,221,227,227 );
gfx.PutPixel( 67 + x,78 + y,219,193,193 );
gfx.PutPixel( 68 + x,78 + y,208,37,37 );
gfx.PutPixel( 69 + x,78 + y,208,32,32 );
gfx.PutPixel( 70 + x,78 + y,208,34,34 );
gfx.PutPixel( 71 + x,78 + y,208,34,34 );
gfx.PutPixel( 72 + x,78 + y,208,34,34 );
gfx.PutPixel( 73 + x,78 + y,208,34,34 );
gfx.PutPixel( 74 + x,78 + y,208,34,34 );
gfx.PutPixel( 75 + x,78 + y,208,27,27 );
gfx.PutPixel( 76 + x,78 + y,218,173,173 );
gfx.PutPixel( 77 + x,78 + y,222,230,230 );
gfx.PutPixel( 78 + x,78 + y,222,230,230 );
gfx.PutPixel( 79 + x,78 + y,218,173,173 );
gfx.PutPixel( 80 + x,78 + y,208,27,27 );
gfx.PutPixel( 81 + x,78 + y,208,34,34 );
gfx.PutPixel( 82 + x,78 + y,208,34,34 );
gfx.PutPixel( 83 + x,78 + y,208,34,34 );
gfx.PutPixel( 84 + x,78 + y,208,34,34 );
gfx.PutPixel( 85 + x,78 + y,208,34,34 );
gfx.PutPixel( 86 + x,78 + y,208,34,34 );
gfx.PutPixel( 87 + x,78 + y,208,30,30 );
gfx.PutPixel( 88 + x,78 + y,209,47,47 );
gfx.PutPixel( 89 + x,78 + y,220,208,208 );
gfx.PutPixel( 90 + x,78 + y,221,225,225 );
gfx.PutPixel( 91 + x,78 + y,221,221,221 );
gfx.PutPixel( 92 + x,78 + y,221,221,221 );
gfx.PutPixel( 93 + x,78 + y,221,221,221 );
gfx.PutPixel( 94 + x,78 + y,222,232,232 );
gfx.PutPixel( 95 + x,78 + y,213,109,109 );
gfx.PutPixel( 96 + x,78 + y,207,23,23 );
gfx.PutPixel( 97 + x,78 + y,208,34,34 );
gfx.PutPixel( 98 + x,78 + y,208,34,34 );
gfx.PutPixel( 99 + x,78 + y,208,34,34 );
gfx.PutPixel( 100 + x,78 + y,207,23,23 );
gfx.PutPixel( 101 + x,78 + y,212,104,104 );
gfx.PutPixel( 102 + x,78 + y,222,231,231 );
gfx.PutPixel( 103 + x,78 + y,221,221,221 );
gfx.PutPixel( 104 + x,78 + y,221,221,221 );
gfx.PutPixel( 105 + x,78 + y,221,221,221 );
gfx.PutPixel( 106 + x,78 + y,221,225,225 );
gfx.PutPixel( 107 + x,78 + y,220,208,208 );
gfx.PutPixel( 108 + x,78 + y,209,47,47 );
gfx.PutPixel( 109 + x,78 + y,208,30,30 );
gfx.PutPixel( 110 + x,78 + y,208,34,34 );
gfx.PutPixel( 111 + x,78 + y,208,34,34 );
gfx.PutPixel( 112 + x,78 + y,208,34,34 );
gfx.PutPixel( 113 + x,78 + y,208,34,34 );
gfx.PutPixel( 114 + x,78 + y,208,34,34 );
gfx.PutPixel( 115 + x,78 + y,208,34,34 );
gfx.PutPixel( 116 + x,78 + y,208,34,34 );
gfx.PutPixel( 117 + x,78 + y,208,34,34 );
gfx.PutPixel( 118 + x,78 + y,208,34,34 );
gfx.PutPixel( 119 + x,78 + y,208,34,34 );
gfx.PutPixel( 120 + x,78 + y,208,34,34 );
gfx.PutPixel( 121 + x,78 + y,208,34,34 );
gfx.PutPixel( 122 + x,78 + y,208,34,34 );
gfx.PutPixel( 123 + x,78 + y,208,34,34 );
gfx.PutPixel( 124 + x,78 + y,208,34,34 );
gfx.PutPixel( 125 + x,78 + y,208,34,34 );
gfx.PutPixel( 126 + x,78 + y,208,34,34 );
gfx.PutPixel( 127 + x,78 + y,208,34,34 );
gfx.PutPixel( 128 + x,78 + y,208,34,34 );
gfx.PutPixel( 129 + x,78 + y,208,34,34 );
gfx.PutPixel( 130 + x,78 + y,208,34,34 );
gfx.PutPixel( 131 + x,78 + y,208,34,34 );
gfx.PutPixel( 132 + x,78 + y,208,34,34 );
gfx.PutPixel( 133 + x,78 + y,208,34,34 );
gfx.PutPixel( 134 + x,78 + y,208,34,34 );
gfx.PutPixel( 135 + x,78 + y,208,34,34 );
gfx.PutPixel( 136 + x,78 + y,208,34,34 );
gfx.PutPixel( 137 + x,78 + y,208,34,34 );
gfx.PutPixel( 138 + x,78 + y,208,34,34 );
gfx.PutPixel( 139 + x,78 + y,208,34,34 );
gfx.PutPixel( 140 + x,78 + y,208,34,34 );
gfx.PutPixel( 141 + x,78 + y,208,34,34 );
gfx.PutPixel( 142 + x,78 + y,208,34,34 );
gfx.PutPixel( 143 + x,78 + y,208,34,34 );
gfx.PutPixel( 144 + x,78 + y,208,34,34 );
gfx.PutPixel( 145 + x,78 + y,208,34,34 );
gfx.PutPixel( 146 + x,78 + y,208,34,34 );
gfx.PutPixel( 147 + x,78 + y,208,34,34 );
gfx.PutPixel( 148 + x,78 + y,208,34,34 );
gfx.PutPixel( 149 + x,78 + y,208,34,34 );
gfx.PutPixel( 0 + x,79 + y,208,34,34 );
gfx.PutPixel( 1 + x,79 + y,208,34,34 );
gfx.PutPixel( 2 + x,79 + y,208,34,34 );
gfx.PutPixel( 3 + x,79 + y,208,34,34 );
gfx.PutPixel( 4 + x,79 + y,208,34,34 );
gfx.PutPixel( 5 + x,79 + y,208,34,34 );
gfx.PutPixel( 6 + x,79 + y,208,34,34 );
gfx.PutPixel( 7 + x,79 + y,208,34,34 );
gfx.PutPixel( 8 + x,79 + y,208,34,34 );
gfx.PutPixel( 9 + x,79 + y,208,34,34 );
gfx.PutPixel( 10 + x,79 + y,208,34,34 );
gfx.PutPixel( 11 + x,79 + y,208,34,34 );
gfx.PutPixel( 12 + x,79 + y,208,34,34 );
gfx.PutPixel( 13 + x,79 + y,208,34,34 );
gfx.PutPixel( 14 + x,79 + y,208,34,34 );
gfx.PutPixel( 15 + x,79 + y,208,34,34 );
gfx.PutPixel( 16 + x,79 + y,208,34,34 );
gfx.PutPixel( 17 + x,79 + y,208,34,34 );
gfx.PutPixel( 18 + x,79 + y,208,34,34 );
gfx.PutPixel( 19 + x,79 + y,208,34,34 );
gfx.PutPixel( 20 + x,79 + y,208,34,34 );
gfx.PutPixel( 21 + x,79 + y,208,34,34 );
gfx.PutPixel( 22 + x,79 + y,208,34,34 );
gfx.PutPixel( 23 + x,79 + y,208,34,34 );
gfx.PutPixel( 24 + x,79 + y,208,34,34 );
gfx.PutPixel( 25 + x,79 + y,208,34,34 );
gfx.PutPixel( 26 + x,79 + y,208,34,34 );
gfx.PutPixel( 27 + x,79 + y,208,34,34 );
gfx.PutPixel( 28 + x,79 + y,208,34,34 );
gfx.PutPixel( 29 + x,79 + y,208,34,34 );
gfx.PutPixel( 30 + x,79 + y,208,34,34 );
gfx.PutPixel( 31 + x,79 + y,208,34,34 );
gfx.PutPixel( 32 + x,79 + y,208,34,34 );
gfx.PutPixel( 33 + x,79 + y,208,34,34 );
gfx.PutPixel( 34 + x,79 + y,208,34,34 );
gfx.PutPixel( 35 + x,79 + y,208,34,34 );
gfx.PutPixel( 36 + x,79 + y,208,34,34 );
gfx.PutPixel( 37 + x,79 + y,208,34,34 );
gfx.PutPixel( 38 + x,79 + y,208,34,34 );
gfx.PutPixel( 39 + x,79 + y,208,34,34 );
gfx.PutPixel( 40 + x,79 + y,208,33,33 );
gfx.PutPixel( 41 + x,79 + y,208,28,28 );
gfx.PutPixel( 42 + x,79 + y,217,162,162 );
gfx.PutPixel( 43 + x,79 + y,222,235,235 );
gfx.PutPixel( 44 + x,79 + y,221,221,221 );
gfx.PutPixel( 45 + x,79 + y,221,223,223 );
gfx.PutPixel( 46 + x,79 + y,222,229,229 );
gfx.PutPixel( 47 + x,79 + y,218,176,176 );
gfx.PutPixel( 48 + x,79 + y,213,108,108 );
gfx.PutPixel( 49 + x,79 + y,212,82,82 );
gfx.PutPixel( 50 + x,79 + y,212,93,93 );
gfx.PutPixel( 51 + x,79 + y,216,149,149 );
gfx.PutPixel( 52 + x,79 + y,221,225,225 );
gfx.PutPixel( 53 + x,79 + y,221,218,218 );
gfx.PutPixel( 54 + x,79 + y,212,97,97 );
gfx.PutPixel( 55 + x,79 + y,208,26,26 );
gfx.PutPixel( 56 + x,79 + y,208,34,34 );
gfx.PutPixel( 57 + x,79 + y,208,34,34 );
gfx.PutPixel( 58 + x,79 + y,208,34,34 );
gfx.PutPixel( 59 + x,79 + y,208,34,34 );
gfx.PutPixel( 60 + x,79 + y,208,34,34 );
gfx.PutPixel( 61 + x,79 + y,207,23,23 );
gfx.PutPixel( 62 + x,79 + y,216,143,143 );
gfx.PutPixel( 63 + x,79 + y,222,233,233 );
gfx.PutPixel( 64 + x,79 + y,221,221,221 );
gfx.PutPixel( 65 + x,79 + y,221,221,221 );
gfx.PutPixel( 66 + x,79 + y,221,221,221 );
gfx.PutPixel( 67 + x,79 + y,222,230,230 );
gfx.PutPixel( 68 + x,79 + y,213,96,96 );
gfx.PutPixel( 69 + x,79 + y,207,23,23 );
gfx.PutPixel( 70 + x,79 + y,208,34,34 );
gfx.PutPixel( 71 + x,79 + y,208,34,34 );
gfx.PutPixel( 72 + x,79 + y,208,34,34 );
gfx.PutPixel( 73 + x,79 + y,208,34,34 );
gfx.PutPixel( 74 + x,79 + y,208,34,34 );
gfx.PutPixel( 75 + x,79 + y,208,27,27 );
gfx.PutPixel( 76 + x,79 + y,218,173,173 );
gfx.PutPixel( 77 + x,79 + y,222,230,230 );
gfx.PutPixel( 78 + x,79 + y,222,230,230 );
gfx.PutPixel( 79 + x,79 + y,218,173,173 );
gfx.PutPixel( 80 + x,79 + y,208,27,27 );
gfx.PutPixel( 81 + x,79 + y,208,34,34 );
gfx.PutPixel( 82 + x,79 + y,208,34,34 );
gfx.PutPixel( 83 + x,79 + y,208,34,34 );
gfx.PutPixel( 84 + x,79 + y,208,34,34 );
gfx.PutPixel( 85 + x,79 + y,208,34,34 );
gfx.PutPixel( 86 + x,79 + y,208,34,34 );
gfx.PutPixel( 87 + x,79 + y,208,30,30 );
gfx.PutPixel( 88 + x,79 + y,209,47,47 );
gfx.PutPixel( 89 + x,79 + y,220,208,208 );
gfx.PutPixel( 90 + x,79 + y,221,225,225 );
gfx.PutPixel( 91 + x,79 + y,221,221,221 );
gfx.PutPixel( 92 + x,79 + y,221,223,223 );
gfx.PutPixel( 93 + x,79 + y,221,221,221 );
gfx.PutPixel( 94 + x,79 + y,222,230,230 );
gfx.PutPixel( 95 + x,79 + y,218,172,172 );
gfx.PutPixel( 96 + x,79 + y,207,28,28 );
gfx.PutPixel( 97 + x,79 + y,208,33,33 );
gfx.PutPixel( 98 + x,79 + y,208,34,34 );
gfx.PutPixel( 99 + x,79 + y,208,33,33 );
gfx.PutPixel( 100 + x,79 + y,207,27,27 );
gfx.PutPixel( 101 + x,79 + y,217,168,168 );
gfx.PutPixel( 102 + x,79 + y,222,230,230 );
gfx.PutPixel( 103 + x,79 + y,221,221,221 );
gfx.PutPixel( 104 + x,79 + y,221,223,223 );
gfx.PutPixel( 105 + x,79 + y,221,221,221 );
gfx.PutPixel( 106 + x,79 + y,221,225,225 );
gfx.PutPixel( 107 + x,79 + y,220,208,208 );
gfx.PutPixel( 108 + x,79 + y,209,47,47 );
gfx.PutPixel( 109 + x,79 + y,208,30,30 );
gfx.PutPixel( 110 + x,79 + y,208,34,34 );
gfx.PutPixel( 111 + x,79 + y,208,34,34 );
gfx.PutPixel( 112 + x,79 + y,208,34,34 );
gfx.PutPixel( 113 + x,79 + y,208,34,34 );
gfx.PutPixel( 114 + x,79 + y,208,34,34 );
gfx.PutPixel( 115 + x,79 + y,208,34,34 );
gfx.PutPixel( 116 + x,79 + y,208,34,34 );
gfx.PutPixel( 117 + x,79 + y,208,34,34 );
gfx.PutPixel( 118 + x,79 + y,208,34,34 );
gfx.PutPixel( 119 + x,79 + y,208,34,34 );
gfx.PutPixel( 120 + x,79 + y,208,34,34 );
gfx.PutPixel( 121 + x,79 + y,208,34,34 );
gfx.PutPixel( 122 + x,79 + y,208,34,34 );
gfx.PutPixel( 123 + x,79 + y,208,34,34 );
gfx.PutPixel( 124 + x,79 + y,208,34,34 );
gfx.PutPixel( 125 + x,79 + y,208,34,34 );
gfx.PutPixel( 126 + x,79 + y,208,34,34 );
gfx.PutPixel( 127 + x,79 + y,208,34,34 );
gfx.PutPixel( 128 + x,79 + y,208,34,34 );
gfx.PutPixel( 129 + x,79 + y,208,34,34 );
gfx.PutPixel( 130 + x,79 + y,208,34,34 );
gfx.PutPixel( 131 + x,79 + y,208,34,34 );
gfx.PutPixel( 132 + x,79 + y,208,34,34 );
gfx.PutPixel( 133 + x,79 + y,208,34,34 );
gfx.PutPixel( 134 + x,79 + y,208,34,34 );
gfx.PutPixel( 135 + x,79 + y,208,34,34 );
gfx.PutPixel( 136 + x,79 + y,208,34,34 );
gfx.PutPixel( 137 + x,79 + y,208,34,34 );
gfx.PutPixel( 138 + x,79 + y,208,34,34 );
gfx.PutPixel( 139 + x,79 + y,208,34,34 );
gfx.PutPixel( 140 + x,79 + y,208,34,34 );
gfx.PutPixel( 141 + x,79 + y,208,34,34 );
gfx.PutPixel( 142 + x,79 + y,208,34,34 );
gfx.PutPixel( 143 + x,79 + y,208,34,34 );
gfx.PutPixel( 144 + x,79 + y,208,34,34 );
gfx.PutPixel( 145 + x,79 + y,208,34,34 );
gfx.PutPixel( 146 + x,79 + y,208,34,34 );
gfx.PutPixel( 147 + x,79 + y,208,34,34 );
gfx.PutPixel( 148 + x,79 + y,208,34,34 );
gfx.PutPixel( 149 + x,79 + y,208,34,34 );
gfx.PutPixel( 0 + x,80 + y,208,34,34 );
gfx.PutPixel( 1 + x,80 + y,208,34,34 );
gfx.PutPixel( 2 + x,80 + y,208,34,34 );
gfx.PutPixel( 3 + x,80 + y,208,34,34 );
gfx.PutPixel( 4 + x,80 + y,208,34,34 );
gfx.PutPixel( 5 + x,80 + y,208,34,34 );
gfx.PutPixel( 6 + x,80 + y,208,34,34 );
gfx.PutPixel( 7 + x,80 + y,208,34,34 );
gfx.PutPixel( 8 + x,80 + y,208,34,34 );
gfx.PutPixel( 9 + x,80 + y,208,34,34 );
gfx.PutPixel( 10 + x,80 + y,208,34,34 );
gfx.PutPixel( 11 + x,80 + y,208,34,34 );
gfx.PutPixel( 12 + x,80 + y,208,34,34 );
gfx.PutPixel( 13 + x,80 + y,208,34,34 );
gfx.PutPixel( 14 + x,80 + y,208,34,34 );
gfx.PutPixel( 15 + x,80 + y,208,34,34 );
gfx.PutPixel( 16 + x,80 + y,208,34,34 );
gfx.PutPixel( 17 + x,80 + y,208,34,34 );
gfx.PutPixel( 18 + x,80 + y,208,34,34 );
gfx.PutPixel( 19 + x,80 + y,208,34,34 );
gfx.PutPixel( 20 + x,80 + y,208,34,34 );
gfx.PutPixel( 21 + x,80 + y,208,34,34 );
gfx.PutPixel( 22 + x,80 + y,208,34,34 );
gfx.PutPixel( 23 + x,80 + y,208,34,34 );
gfx.PutPixel( 24 + x,80 + y,208,34,34 );
gfx.PutPixel( 25 + x,80 + y,208,34,34 );
gfx.PutPixel( 26 + x,80 + y,208,34,34 );
gfx.PutPixel( 27 + x,80 + y,208,34,34 );
gfx.PutPixel( 28 + x,80 + y,208,34,34 );
gfx.PutPixel( 29 + x,80 + y,208,34,34 );
gfx.PutPixel( 30 + x,80 + y,208,34,34 );
gfx.PutPixel( 31 + x,80 + y,208,34,34 );
gfx.PutPixel( 32 + x,80 + y,208,34,34 );
gfx.PutPixel( 33 + x,80 + y,208,34,34 );
gfx.PutPixel( 34 + x,80 + y,208,34,34 );
gfx.PutPixel( 35 + x,80 + y,208,34,34 );
gfx.PutPixel( 36 + x,80 + y,208,34,34 );
gfx.PutPixel( 37 + x,80 + y,208,34,34 );
gfx.PutPixel( 38 + x,80 + y,208,34,34 );
gfx.PutPixel( 39 + x,80 + y,208,34,34 );
gfx.PutPixel( 40 + x,80 + y,207,25,25 );
gfx.PutPixel( 41 + x,80 + y,212,90,90 );
gfx.PutPixel( 42 + x,80 + y,222,230,230 );
gfx.PutPixel( 43 + x,80 + y,221,222,222 );
gfx.PutPixel( 44 + x,80 + y,221,222,222 );
gfx.PutPixel( 45 + x,80 + y,222,228,228 );
gfx.PutPixel( 46 + x,80 + y,214,127,127 );
gfx.PutPixel( 47 + x,80 + y,208,28,28 );
gfx.PutPixel( 48 + x,80 + y,207,22,22 );
gfx.PutPixel( 49 + x,80 + y,207,25,25 );
gfx.PutPixel( 50 + x,80 + y,207,24,24 );
gfx.PutPixel( 51 + x,80 + y,207,22,22 );
gfx.PutPixel( 52 + x,80 + y,212,91,91 );
gfx.PutPixel( 53 + x,80 + y,211,78,78 );
gfx.PutPixel( 54 + x,80 + y,207,22,22 );
gfx.PutPixel( 55 + x,80 + y,208,34,34 );
gfx.PutPixel( 56 + x,80 + y,208,34,34 );
gfx.PutPixel( 57 + x,80 + y,208,34,34 );
gfx.PutPixel( 58 + x,80 + y,208,34,34 );
gfx.PutPixel( 59 + x,80 + y,208,34,34 );
gfx.PutPixel( 60 + x,80 + y,208,30,30 );
gfx.PutPixel( 61 + x,80 + y,209,50,50 );
gfx.PutPixel( 62 + x,80 + y,220,208,208 );
gfx.PutPixel( 63 + x,80 + y,221,225,225 );
gfx.PutPixel( 64 + x,80 + y,221,223,223 );
gfx.PutPixel( 65 + x,80 + y,221,226,226 );
gfx.PutPixel( 66 + x,80 + y,221,221,221 );
gfx.PutPixel( 67 + x,80 + y,222,230,230 );
gfx.PutPixel( 68 + x,80 + y,218,174,174 );
gfx.PutPixel( 69 + x,80 + y,207,29,29 );
gfx.PutPixel( 70 + x,80 + y,208,33,33 );
gfx.PutPixel( 71 + x,80 + y,208,34,34 );
gfx.PutPixel( 72 + x,80 + y,208,34,34 );
gfx.PutPixel( 73 + x,80 + y,208,34,34 );
gfx.PutPixel( 74 + x,80 + y,208,34,34 );
gfx.PutPixel( 75 + x,80 + y,208,27,27 );
gfx.PutPixel( 76 + x,80 + y,218,173,173 );
gfx.PutPixel( 77 + x,80 + y,222,230,230 );
gfx.PutPixel( 78 + x,80 + y,222,230,230 );
gfx.PutPixel( 79 + x,80 + y,218,173,173 );
gfx.PutPixel( 80 + x,80 + y,208,27,27 );
gfx.PutPixel( 81 + x,80 + y,208,34,34 );
gfx.PutPixel( 82 + x,80 + y,208,34,34 );
gfx.PutPixel( 83 + x,80 + y,208,34,34 );
gfx.PutPixel( 84 + x,80 + y,208,34,34 );
gfx.PutPixel( 85 + x,80 + y,208,34,34 );
gfx.PutPixel( 86 + x,80 + y,208,34,34 );
gfx.PutPixel( 87 + x,80 + y,208,30,30 );
gfx.PutPixel( 88 + x,80 + y,209,47,47 );
gfx.PutPixel( 89 + x,80 + y,220,208,208 );
gfx.PutPixel( 90 + x,80 + y,221,225,225 );
gfx.PutPixel( 91 + x,80 + y,221,223,223 );
gfx.PutPixel( 92 + x,80 + y,220,196,196 );
gfx.PutPixel( 93 + x,80 + y,221,219,219 );
gfx.PutPixel( 94 + x,80 + y,221,223,223 );
gfx.PutPixel( 95 + x,80 + y,221,217,217 );
gfx.PutPixel( 96 + x,80 + y,210,60,60 );
gfx.PutPixel( 97 + x,80 + y,208,28,28 );
gfx.PutPixel( 98 + x,80 + y,208,34,34 );
gfx.PutPixel( 99 + x,80 + y,208,29,29 );
gfx.PutPixel( 100 + x,80 + y,210,57,57 );
gfx.PutPixel( 101 + x,80 + y,221,215,215 );
gfx.PutPixel( 102 + x,80 + y,221,223,223 );
gfx.PutPixel( 103 + x,80 + y,221,220,220 );
gfx.PutPixel( 104 + x,80 + y,220,202,202 );
gfx.PutPixel( 105 + x,80 + y,221,222,222 );
gfx.PutPixel( 106 + x,80 + y,221,225,225 );
gfx.PutPixel( 107 + x,80 + y,220,208,208 );
gfx.PutPixel( 108 + x,80 + y,209,47,47 );
gfx.PutPixel( 109 + x,80 + y,208,30,30 );
gfx.PutPixel( 110 + x,80 + y,208,34,34 );
gfx.PutPixel( 111 + x,80 + y,208,34,34 );
gfx.PutPixel( 112 + x,80 + y,208,34,34 );
gfx.PutPixel( 113 + x,80 + y,208,34,34 );
gfx.PutPixel( 114 + x,80 + y,208,34,34 );
gfx.PutPixel( 115 + x,80 + y,208,34,34 );
gfx.PutPixel( 116 + x,80 + y,208,34,34 );
gfx.PutPixel( 117 + x,80 + y,208,34,34 );
gfx.PutPixel( 118 + x,80 + y,208,34,34 );
gfx.PutPixel( 119 + x,80 + y,208,34,34 );
gfx.PutPixel( 120 + x,80 + y,208,34,34 );
gfx.PutPixel( 121 + x,80 + y,208,34,34 );
gfx.PutPixel( 122 + x,80 + y,208,34,34 );
gfx.PutPixel( 123 + x,80 + y,208,34,34 );
gfx.PutPixel( 124 + x,80 + y,208,34,34 );
gfx.PutPixel( 125 + x,80 + y,208,34,34 );
gfx.PutPixel( 126 + x,80 + y,208,34,34 );
gfx.PutPixel( 127 + x,80 + y,208,34,34 );
gfx.PutPixel( 128 + x,80 + y,208,34,34 );
gfx.PutPixel( 129 + x,80 + y,208,34,34 );
gfx.PutPixel( 130 + x,80 + y,208,34,34 );
gfx.PutPixel( 131 + x,80 + y,208,34,34 );
gfx.PutPixel( 132 + x,80 + y,208,34,34 );
gfx.PutPixel( 133 + x,80 + y,208,34,34 );
gfx.PutPixel( 134 + x,80 + y,208,34,34 );
gfx.PutPixel( 135 + x,80 + y,208,34,34 );
gfx.PutPixel( 136 + x,80 + y,208,34,34 );
gfx.PutPixel( 137 + x,80 + y,208,34,34 );
gfx.PutPixel( 138 + x,80 + y,208,34,34 );
gfx.PutPixel( 139 + x,80 + y,208,34,34 );
gfx.PutPixel( 140 + x,80 + y,208,34,34 );
gfx.PutPixel( 141 + x,80 + y,208,34,34 );
gfx.PutPixel( 142 + x,80 + y,208,34,34 );
gfx.PutPixel( 143 + x,80 + y,208,34,34 );
gfx.PutPixel( 144 + x,80 + y,208,34,34 );
gfx.PutPixel( 145 + x,80 + y,208,34,34 );
gfx.PutPixel( 146 + x,80 + y,208,34,34 );
gfx.PutPixel( 147 + x,80 + y,208,34,34 );
gfx.PutPixel( 148 + x,80 + y,208,34,34 );
gfx.PutPixel( 149 + x,80 + y,208,34,34 );
gfx.PutPixel( 0 + x,81 + y,208,34,34 );
gfx.PutPixel( 1 + x,81 + y,208,34,34 );
gfx.PutPixel( 2 + x,81 + y,208,34,34 );
gfx.PutPixel( 3 + x,81 + y,208,34,34 );
gfx.PutPixel( 4 + x,81 + y,208,34,34 );
gfx.PutPixel( 5 + x,81 + y,208,34,34 );
gfx.PutPixel( 6 + x,81 + y,208,34,34 );
gfx.PutPixel( 7 + x,81 + y,208,34,34 );
gfx.PutPixel( 8 + x,81 + y,208,34,34 );
gfx.PutPixel( 9 + x,81 + y,208,34,34 );
gfx.PutPixel( 10 + x,81 + y,208,34,34 );
gfx.PutPixel( 11 + x,81 + y,208,34,34 );
gfx.PutPixel( 12 + x,81 + y,208,34,34 );
gfx.PutPixel( 13 + x,81 + y,208,34,34 );
gfx.PutPixel( 14 + x,81 + y,208,34,34 );
gfx.PutPixel( 15 + x,81 + y,208,34,34 );
gfx.PutPixel( 16 + x,81 + y,208,34,34 );
gfx.PutPixel( 17 + x,81 + y,208,34,34 );
gfx.PutPixel( 18 + x,81 + y,208,34,34 );
gfx.PutPixel( 19 + x,81 + y,208,34,34 );
gfx.PutPixel( 20 + x,81 + y,208,34,34 );
gfx.PutPixel( 21 + x,81 + y,208,34,34 );
gfx.PutPixel( 22 + x,81 + y,208,34,34 );
gfx.PutPixel( 23 + x,81 + y,208,34,34 );
gfx.PutPixel( 24 + x,81 + y,208,34,34 );
gfx.PutPixel( 25 + x,81 + y,208,34,34 );
gfx.PutPixel( 26 + x,81 + y,208,34,34 );
gfx.PutPixel( 27 + x,81 + y,208,34,34 );
gfx.PutPixel( 28 + x,81 + y,208,34,34 );
gfx.PutPixel( 29 + x,81 + y,208,34,34 );
gfx.PutPixel( 30 + x,81 + y,208,34,34 );
gfx.PutPixel( 31 + x,81 + y,208,34,34 );
gfx.PutPixel( 32 + x,81 + y,208,34,34 );
gfx.PutPixel( 33 + x,81 + y,208,34,34 );
gfx.PutPixel( 34 + x,81 + y,208,34,34 );
gfx.PutPixel( 35 + x,81 + y,208,34,34 );
gfx.PutPixel( 36 + x,81 + y,208,34,34 );
gfx.PutPixel( 37 + x,81 + y,208,34,34 );
gfx.PutPixel( 38 + x,81 + y,208,34,34 );
gfx.PutPixel( 39 + x,81 + y,208,33,33 );
gfx.PutPixel( 40 + x,81 + y,207,27,27 );
gfx.PutPixel( 41 + x,81 + y,217,167,167 );
gfx.PutPixel( 42 + x,81 + y,222,231,231 );
gfx.PutPixel( 43 + x,81 + y,221,221,221 );
gfx.PutPixel( 44 + x,81 + y,222,231,231 );
gfx.PutPixel( 45 + x,81 + y,216,156,156 );
gfx.PutPixel( 46 + x,81 + y,207,22,22 );
gfx.PutPixel( 47 + x,81 + y,208,31,31 );
gfx.PutPixel( 48 + x,81 + y,208,34,34 );
gfx.PutPixel( 49 + x,81 + y,208,34,34 );
gfx.PutPixel( 50 + x,81 + y,208,34,34 );
gfx.PutPixel( 51 + x,81 + y,208,34,34 );
gfx.PutPixel( 52 + x,81 + y,207,26,26 );
gfx.PutPixel( 53 + x,81 + y,208,27,27 );
gfx.PutPixel( 54 + x,81 + y,208,34,34 );
gfx.PutPixel( 55 + x,81 + y,208,34,34 );
gfx.PutPixel( 56 + x,81 + y,208,34,34 );
gfx.PutPixel( 57 + x,81 + y,208,34,34 );
gfx.PutPixel( 58 + x,81 + y,208,34,34 );
gfx.PutPixel( 59 + x,81 + y,208,34,34 );
gfx.PutPixel( 60 + x,81 + y,207,22,22 );
gfx.PutPixel( 61 + x,81 + y,214,118,118 );
gfx.PutPixel( 62 + x,81 + y,222,233,233 );
gfx.PutPixel( 63 + x,81 + y,221,222,222 );
gfx.PutPixel( 64 + x,81 + y,220,211,211 );
gfx.PutPixel( 65 + x,81 + y,219,184,184 );
gfx.PutPixel( 66 + x,81 + y,221,226,226 );
gfx.PutPixel( 67 + x,81 + y,221,222,222 );
gfx.PutPixel( 68 + x,81 + y,221,224,224 );
gfx.PutPixel( 69 + x,81 + y,211,74,74 );
gfx.PutPixel( 70 + x,81 + y,207,26,26 );
gfx.PutPixel( 71 + x,81 + y,208,34,34 );
gfx.PutPixel( 72 + x,81 + y,208,34,34 );
gfx.PutPixel( 73 + x,81 + y,208,34,34 );
gfx.PutPixel( 74 + x,81 + y,208,34,34 );
gfx.PutPixel( 75 + x,81 + y,208,27,27 );
gfx.PutPixel( 76 + x,81 + y,218,173,173 );
gfx.PutPixel( 77 + x,81 + y,222,230,230 );
gfx.PutPixel( 78 + x,81 + y,222,230,230 );
gfx.PutPixel( 79 + x,81 + y,218,173,173 );
gfx.PutPixel( 80 + x,81 + y,208,27,27 );
gfx.PutPixel( 81 + x,81 + y,208,34,34 );
gfx.PutPixel( 82 + x,81 + y,208,34,34 );
gfx.PutPixel( 83 + x,81 + y,208,34,34 );
gfx.PutPixel( 84 + x,81 + y,208,34,34 );
gfx.PutPixel( 85 + x,81 + y,208,34,34 );
gfx.PutPixel( 86 + x,81 + y,208,34,34 );
gfx.PutPixel( 87 + x,81 + y,208,30,30 );
gfx.PutPixel( 88 + x,81 + y,209,47,47 );
gfx.PutPixel( 89 + x,81 + y,220,208,208 );
gfx.PutPixel( 90 + x,81 + y,221,225,225 );
gfx.PutPixel( 91 + x,81 + y,222,229,229 );
gfx.PutPixel( 92 + x,81 + y,216,143,143 );
gfx.PutPixel( 93 + x,81 + y,219,197,197 );
gfx.PutPixel( 94 + x,81 + y,221,225,225 );
gfx.PutPixel( 95 + x,81 + y,222,233,233 );
gfx.PutPixel( 96 + x,81 + y,214,119,119 );
gfx.PutPixel( 97 + x,81 + y,207,22,22 );
gfx.PutPixel( 98 + x,81 + y,208,34,34 );
gfx.PutPixel( 99 + x,81 + y,207,22,22 );
gfx.PutPixel( 100 + x,81 + y,213,114,114 );
gfx.PutPixel( 101 + x,81 + y,222,232,232 );
gfx.PutPixel( 102 + x,81 + y,221,224,224 );
gfx.PutPixel( 103 + x,81 + y,220,200,200 );
gfx.PutPixel( 104 + x,81 + y,216,148,148 );
gfx.PutPixel( 105 + x,81 + y,222,229,229 );
gfx.PutPixel( 106 + x,81 + y,221,225,225 );
gfx.PutPixel( 107 + x,81 + y,220,208,208 );
gfx.PutPixel( 108 + x,81 + y,209,47,47 );
gfx.PutPixel( 109 + x,81 + y,208,30,30 );
gfx.PutPixel( 110 + x,81 + y,208,34,34 );
gfx.PutPixel( 111 + x,81 + y,208,34,34 );
gfx.PutPixel( 112 + x,81 + y,208,34,34 );
gfx.PutPixel( 113 + x,81 + y,208,34,34 );
gfx.PutPixel( 114 + x,81 + y,208,34,34 );
gfx.PutPixel( 115 + x,81 + y,208,34,34 );
gfx.PutPixel( 116 + x,81 + y,208,34,34 );
gfx.PutPixel( 117 + x,81 + y,208,34,34 );
gfx.PutPixel( 118 + x,81 + y,208,34,34 );
gfx.PutPixel( 119 + x,81 + y,208,34,34 );
gfx.PutPixel( 120 + x,81 + y,208,34,34 );
gfx.PutPixel( 121 + x,81 + y,208,34,34 );
gfx.PutPixel( 122 + x,81 + y,208,34,34 );
gfx.PutPixel( 123 + x,81 + y,208,34,34 );
gfx.PutPixel( 124 + x,81 + y,208,34,34 );
gfx.PutPixel( 125 + x,81 + y,208,34,34 );
gfx.PutPixel( 126 + x,81 + y,208,34,34 );
gfx.PutPixel( 127 + x,81 + y,208,34,34 );
gfx.PutPixel( 128 + x,81 + y,208,34,34 );
gfx.PutPixel( 129 + x,81 + y,208,34,34 );
gfx.PutPixel( 130 + x,81 + y,208,34,34 );
gfx.PutPixel( 131 + x,81 + y,208,34,34 );
gfx.PutPixel( 132 + x,81 + y,208,34,34 );
gfx.PutPixel( 133 + x,81 + y,208,34,34 );
gfx.PutPixel( 134 + x,81 + y,208,34,34 );
gfx.PutPixel( 135 + x,81 + y,208,34,34 );
gfx.PutPixel( 136 + x,81 + y,208,34,34 );
gfx.PutPixel( 137 + x,81 + y,208,34,34 );
gfx.PutPixel( 138 + x,81 + y,208,34,34 );
gfx.PutPixel( 139 + x,81 + y,208,34,34 );
gfx.PutPixel( 140 + x,81 + y,208,34,34 );
gfx.PutPixel( 141 + x,81 + y,208,34,34 );
gfx.PutPixel( 142 + x,81 + y,208,34,34 );
gfx.PutPixel( 143 + x,81 + y,208,34,34 );
gfx.PutPixel( 144 + x,81 + y,208,34,34 );
gfx.PutPixel( 145 + x,81 + y,208,34,34 );
gfx.PutPixel( 146 + x,81 + y,208,34,34 );
gfx.PutPixel( 147 + x,81 + y,208,34,34 );
gfx.PutPixel( 148 + x,81 + y,208,34,34 );
gfx.PutPixel( 149 + x,81 + y,208,34,34 );
gfx.PutPixel( 0 + x,82 + y,208,34,34 );
gfx.PutPixel( 1 + x,82 + y,208,34,34 );
gfx.PutPixel( 2 + x,82 + y,208,34,34 );
gfx.PutPixel( 3 + x,82 + y,208,34,34 );
gfx.PutPixel( 4 + x,82 + y,208,34,34 );
gfx.PutPixel( 5 + x,82 + y,208,34,34 );
gfx.PutPixel( 6 + x,82 + y,208,34,34 );
gfx.PutPixel( 7 + x,82 + y,208,34,34 );
gfx.PutPixel( 8 + x,82 + y,208,34,34 );
gfx.PutPixel( 9 + x,82 + y,208,34,34 );
gfx.PutPixel( 10 + x,82 + y,208,34,34 );
gfx.PutPixel( 11 + x,82 + y,208,34,34 );
gfx.PutPixel( 12 + x,82 + y,208,34,34 );
gfx.PutPixel( 13 + x,82 + y,208,34,34 );
gfx.PutPixel( 14 + x,82 + y,208,34,34 );
gfx.PutPixel( 15 + x,82 + y,208,34,34 );
gfx.PutPixel( 16 + x,82 + y,208,34,34 );
gfx.PutPixel( 17 + x,82 + y,208,34,34 );
gfx.PutPixel( 18 + x,82 + y,208,34,34 );
gfx.PutPixel( 19 + x,82 + y,208,34,34 );
gfx.PutPixel( 20 + x,82 + y,208,34,34 );
gfx.PutPixel( 21 + x,82 + y,208,34,34 );
gfx.PutPixel( 22 + x,82 + y,208,34,34 );
gfx.PutPixel( 23 + x,82 + y,208,34,34 );
gfx.PutPixel( 24 + x,82 + y,208,34,34 );
gfx.PutPixel( 25 + x,82 + y,208,34,34 );
gfx.PutPixel( 26 + x,82 + y,208,34,34 );
gfx.PutPixel( 27 + x,82 + y,208,34,34 );
gfx.PutPixel( 28 + x,82 + y,208,34,34 );
gfx.PutPixel( 29 + x,82 + y,208,34,34 );
gfx.PutPixel( 30 + x,82 + y,208,34,34 );
gfx.PutPixel( 31 + x,82 + y,208,34,34 );
gfx.PutPixel( 32 + x,82 + y,208,34,34 );
gfx.PutPixel( 33 + x,82 + y,208,34,34 );
gfx.PutPixel( 34 + x,82 + y,208,34,34 );
gfx.PutPixel( 35 + x,82 + y,208,34,34 );
gfx.PutPixel( 36 + x,82 + y,208,34,34 );
gfx.PutPixel( 37 + x,82 + y,208,34,34 );
gfx.PutPixel( 38 + x,82 + y,208,34,34 );
gfx.PutPixel( 39 + x,82 + y,208,30,30 );
gfx.PutPixel( 40 + x,82 + y,209,49,49 );
gfx.PutPixel( 41 + x,82 + y,220,208,208 );
gfx.PutPixel( 42 + x,82 + y,221,225,225 );
gfx.PutPixel( 43 + x,82 + y,221,223,223 );
gfx.PutPixel( 44 + x,82 + y,221,220,220 );
gfx.PutPixel( 45 + x,82 + y,210,67,67 );
gfx.PutPixel( 46 + x,82 + y,207,26,26 );
gfx.PutPixel( 47 + x,82 + y,208,34,34 );
gfx.PutPixel( 48 + x,82 + y,208,34,34 );
gfx.PutPixel( 49 + x,82 + y,208,34,34 );
gfx.PutPixel( 50 + x,82 + y,208,34,34 );
gfx.PutPixel( 51 + x,82 + y,208,34,34 );
gfx.PutPixel( 52 + x,82 + y,208,34,34 );
gfx.PutPixel( 53 + x,82 + y,208,34,34 );
gfx.PutPixel( 54 + x,82 + y,208,34,34 );
gfx.PutPixel( 55 + x,82 + y,208,34,34 );
gfx.PutPixel( 56 + x,82 + y,208,34,34 );
gfx.PutPixel( 57 + x,82 + y,208,34,34 );
gfx.PutPixel( 58 + x,82 + y,208,34,34 );
gfx.PutPixel( 59 + x,82 + y,208,32,32 );
gfx.PutPixel( 60 + x,82 + y,208,36,36 );
gfx.PutPixel( 61 + x,82 + y,219,192,192 );
gfx.PutPixel( 62 + x,82 + y,221,227,227 );
gfx.PutPixel( 63 + x,82 + y,222,230,230 );
gfx.PutPixel( 64 + x,82 + y,217,165,165 );
gfx.PutPixel( 65 + x,82 + y,211,76,76 );
gfx.PutPixel( 66 + x,82 + y,221,225,225 );
gfx.PutPixel( 67 + x,82 + y,221,222,222 );
gfx.PutPixel( 68 + x,82 + y,222,232,232 );
gfx.PutPixel( 69 + x,82 + y,216,152,152 );
gfx.PutPixel( 70 + x,82 + y,207,24,24 );
gfx.PutPixel( 71 + x,82 + y,208,34,34 );
gfx.PutPixel( 72 + x,82 + y,208,34,34 );
gfx.PutPixel( 73 + x,82 + y,208,34,34 );
gfx.PutPixel( 74 + x,82 + y,208,34,34 );
gfx.PutPixel( 75 + x,82 + y,208,27,27 );
gfx.PutPixel( 76 + x,82 + y,218,173,173 );
gfx.PutPixel( 77 + x,82 + y,222,230,230 );
gfx.PutPixel( 78 + x,82 + y,222,230,230 );
gfx.PutPixel( 79 + x,82 + y,218,173,173 );
gfx.PutPixel( 80 + x,82 + y,208,27,27 );
gfx.PutPixel( 81 + x,82 + y,208,34,34 );
gfx.PutPixel( 82 + x,82 + y,208,34,34 );
gfx.PutPixel( 83 + x,82 + y,208,34,34 );
gfx.PutPixel( 84 + x,82 + y,208,34,34 );
gfx.PutPixel( 85 + x,82 + y,208,34,34 );
gfx.PutPixel( 86 + x,82 + y,208,34,34 );
gfx.PutPixel( 87 + x,82 + y,208,30,30 );
gfx.PutPixel( 88 + x,82 + y,209,47,47 );
gfx.PutPixel( 89 + x,82 + y,220,208,208 );
gfx.PutPixel( 90 + x,82 + y,221,225,225 );
gfx.PutPixel( 91 + x,82 + y,222,233,233 );
gfx.PutPixel( 92 + x,82 + y,214,118,118 );
gfx.PutPixel( 93 + x,82 + y,216,147,147 );
gfx.PutPixel( 94 + x,82 + y,222,231,231 );
gfx.PutPixel( 95 + x,82 + y,222,229,229 );
gfx.PutPixel( 96 + x,82 + y,218,181,181 );
gfx.PutPixel( 97 + x,82 + y,208,31,31 );
gfx.PutPixel( 98 + x,82 + y,208,32,32 );
gfx.PutPixel( 99 + x,82 + y,208,29,29 );
gfx.PutPixel( 100 + x,82 + y,218,176,176 );
gfx.PutPixel( 101 + x,82 + y,222,229,229 );
gfx.PutPixel( 102 + x,82 + y,222,231,231 );
gfx.PutPixel( 103 + x,82 + y,216,151,151 );
gfx.PutPixel( 104 + x,82 + y,214,119,119 );
gfx.PutPixel( 105 + x,82 + y,222,233,233 );
gfx.PutPixel( 106 + x,82 + y,221,225,225 );
gfx.PutPixel( 107 + x,82 + y,220,208,208 );
gfx.PutPixel( 108 + x,82 + y,209,47,47 );
gfx.PutPixel( 109 + x,82 + y,208,30,30 );
gfx.PutPixel( 110 + x,82 + y,208,34,34 );
gfx.PutPixel( 111 + x,82 + y,208,34,34 );
gfx.PutPixel( 112 + x,82 + y,208,34,34 );
gfx.PutPixel( 113 + x,82 + y,208,34,34 );
gfx.PutPixel( 114 + x,82 + y,208,34,34 );
gfx.PutPixel( 115 + x,82 + y,208,34,34 );
gfx.PutPixel( 116 + x,82 + y,208,34,34 );
gfx.PutPixel( 117 + x,82 + y,208,34,34 );
gfx.PutPixel( 118 + x,82 + y,208,34,34 );
gfx.PutPixel( 119 + x,82 + y,208,34,34 );
gfx.PutPixel( 120 + x,82 + y,208,34,34 );
gfx.PutPixel( 121 + x,82 + y,208,34,34 );
gfx.PutPixel( 122 + x,82 + y,208,34,34 );
gfx.PutPixel( 123 + x,82 + y,208,34,34 );
gfx.PutPixel( 124 + x,82 + y,208,34,34 );
gfx.PutPixel( 125 + x,82 + y,208,34,34 );
gfx.PutPixel( 126 + x,82 + y,208,34,34 );
gfx.PutPixel( 127 + x,82 + y,208,34,34 );
gfx.PutPixel( 128 + x,82 + y,208,34,34 );
gfx.PutPixel( 129 + x,82 + y,208,34,34 );
gfx.PutPixel( 130 + x,82 + y,208,34,34 );
gfx.PutPixel( 131 + x,82 + y,208,34,34 );
gfx.PutPixel( 132 + x,82 + y,208,34,34 );
gfx.PutPixel( 133 + x,82 + y,208,34,34 );
gfx.PutPixel( 134 + x,82 + y,208,34,34 );
gfx.PutPixel( 135 + x,82 + y,208,34,34 );
gfx.PutPixel( 136 + x,82 + y,208,34,34 );
gfx.PutPixel( 137 + x,82 + y,208,34,34 );
gfx.PutPixel( 138 + x,82 + y,208,34,34 );
gfx.PutPixel( 139 + x,82 + y,208,34,34 );
gfx.PutPixel( 140 + x,82 + y,208,34,34 );
gfx.PutPixel( 141 + x,82 + y,208,34,34 );
gfx.PutPixel( 142 + x,82 + y,208,34,34 );
gfx.PutPixel( 143 + x,82 + y,208,34,34 );
gfx.PutPixel( 144 + x,82 + y,208,34,34 );
gfx.PutPixel( 145 + x,82 + y,208,34,34 );
gfx.PutPixel( 146 + x,82 + y,208,34,34 );
gfx.PutPixel( 147 + x,82 + y,208,34,34 );
gfx.PutPixel( 148 + x,82 + y,208,34,34 );
gfx.PutPixel( 149 + x,82 + y,208,34,34 );
gfx.PutPixel( 0 + x,83 + y,208,34,34 );
gfx.PutPixel( 1 + x,83 + y,208,34,34 );
gfx.PutPixel( 2 + x,83 + y,208,34,34 );
gfx.PutPixel( 3 + x,83 + y,208,34,34 );
gfx.PutPixel( 4 + x,83 + y,208,34,34 );
gfx.PutPixel( 5 + x,83 + y,208,34,34 );
gfx.PutPixel( 6 + x,83 + y,208,34,34 );
gfx.PutPixel( 7 + x,83 + y,208,34,34 );
gfx.PutPixel( 8 + x,83 + y,208,34,34 );
gfx.PutPixel( 9 + x,83 + y,208,34,34 );
gfx.PutPixel( 10 + x,83 + y,208,34,34 );
gfx.PutPixel( 11 + x,83 + y,208,34,34 );
gfx.PutPixel( 12 + x,83 + y,208,34,34 );
gfx.PutPixel( 13 + x,83 + y,208,34,34 );
gfx.PutPixel( 14 + x,83 + y,208,34,34 );
gfx.PutPixel( 15 + x,83 + y,208,34,34 );
gfx.PutPixel( 16 + x,83 + y,208,34,34 );
gfx.PutPixel( 17 + x,83 + y,208,34,34 );
gfx.PutPixel( 18 + x,83 + y,208,34,34 );
gfx.PutPixel( 19 + x,83 + y,208,34,34 );
gfx.PutPixel( 20 + x,83 + y,208,34,34 );
gfx.PutPixel( 21 + x,83 + y,208,34,34 );
gfx.PutPixel( 22 + x,83 + y,208,34,34 );
gfx.PutPixel( 23 + x,83 + y,208,34,34 );
gfx.PutPixel( 24 + x,83 + y,208,34,34 );
gfx.PutPixel( 25 + x,83 + y,208,34,34 );
gfx.PutPixel( 26 + x,83 + y,208,34,34 );
gfx.PutPixel( 27 + x,83 + y,208,34,34 );
gfx.PutPixel( 28 + x,83 + y,208,34,34 );
gfx.PutPixel( 29 + x,83 + y,208,34,34 );
gfx.PutPixel( 30 + x,83 + y,208,34,34 );
gfx.PutPixel( 31 + x,83 + y,208,34,34 );
gfx.PutPixel( 32 + x,83 + y,208,34,34 );
gfx.PutPixel( 33 + x,83 + y,208,34,34 );
gfx.PutPixel( 34 + x,83 + y,208,34,34 );
gfx.PutPixel( 35 + x,83 + y,208,34,34 );
gfx.PutPixel( 36 + x,83 + y,208,34,34 );
gfx.PutPixel( 37 + x,83 + y,208,34,34 );
gfx.PutPixel( 38 + x,83 + y,208,34,34 );
gfx.PutPixel( 39 + x,83 + y,208,27,27 );
gfx.PutPixel( 40 + x,83 + y,211,72,72 );
gfx.PutPixel( 41 + x,83 + y,221,222,222 );
gfx.PutPixel( 42 + x,83 + y,221,222,222 );
gfx.PutPixel( 43 + x,83 + y,221,227,227 );
gfx.PutPixel( 44 + x,83 + y,219,189,189 );
gfx.PutPixel( 45 + x,83 + y,208,35,35 );
gfx.PutPixel( 46 + x,83 + y,208,32,32 );
gfx.PutPixel( 47 + x,83 + y,208,34,34 );
gfx.PutPixel( 48 + x,83 + y,208,34,34 );
gfx.PutPixel( 49 + x,83 + y,208,34,34 );
gfx.PutPixel( 50 + x,83 + y,208,34,34 );
gfx.PutPixel( 51 + x,83 + y,208,34,34 );
gfx.PutPixel( 52 + x,83 + y,208,34,34 );
gfx.PutPixel( 53 + x,83 + y,208,34,34 );
gfx.PutPixel( 54 + x,83 + y,208,34,34 );
gfx.PutPixel( 55 + x,83 + y,208,34,34 );
gfx.PutPixel( 56 + x,83 + y,208,34,34 );
gfx.PutPixel( 57 + x,83 + y,208,34,34 );
gfx.PutPixel( 58 + x,83 + y,208,34,34 );
gfx.PutPixel( 59 + x,83 + y,207,24,24 );
gfx.PutPixel( 60 + x,83 + y,212,93,93 );
gfx.PutPixel( 61 + x,83 + y,222,230,230 );
gfx.PutPixel( 62 + x,83 + y,221,222,222 );
gfx.PutPixel( 63 + x,83 + y,222,231,231 );
gfx.PutPixel( 64 + x,83 + y,213,102,102 );
gfx.PutPixel( 65 + x,83 + y,207,22,22 );
gfx.PutPixel( 66 + x,83 + y,219,186,186 );
gfx.PutPixel( 67 + x,83 + y,222,228,228 );
gfx.PutPixel( 68 + x,83 + y,221,224,224 );
gfx.PutPixel( 69 + x,83 + y,220,214,214 );
gfx.PutPixel( 70 + x,83 + y,209,56,56 );
gfx.PutPixel( 71 + x,83 + y,208,29,29 );
gfx.PutPixel( 72 + x,83 + y,208,34,34 );
gfx.PutPixel( 73 + x,83 + y,208,34,34 );
gfx.PutPixel( 74 + x,83 + y,208,34,34 );
gfx.PutPixel( 75 + x,83 + y,208,27,27 );
gfx.PutPixel( 76 + x,83 + y,218,173,173 );
gfx.PutPixel( 77 + x,83 + y,222,230,230 );
gfx.PutPixel( 78 + x,83 + y,222,230,230 );
gfx.PutPixel( 79 + x,83 + y,218,173,173 );
gfx.PutPixel( 80 + x,83 + y,208,27,27 );
gfx.PutPixel( 81 + x,83 + y,208,34,34 );
gfx.PutPixel( 82 + x,83 + y,208,34,34 );
gfx.PutPixel( 83 + x,83 + y,208,34,34 );
gfx.PutPixel( 84 + x,83 + y,208,34,34 );
gfx.PutPixel( 85 + x,83 + y,208,34,34 );
gfx.PutPixel( 86 + x,83 + y,208,34,34 );
gfx.PutPixel( 87 + x,83 + y,208,30,30 );
gfx.PutPixel( 88 + x,83 + y,209,47,47 );
gfx.PutPixel( 89 + x,83 + y,220,208,208 );
gfx.PutPixel( 90 + x,83 + y,221,225,225 );
gfx.PutPixel( 91 + x,83 + y,222,233,233 );
gfx.PutPixel( 92 + x,83 + y,214,117,117 );
gfx.PutPixel( 93 + x,83 + y,211,85,85 );
gfx.PutPixel( 94 + x,83 + y,222,230,230 );
gfx.PutPixel( 95 + x,83 + y,221,222,222 );
gfx.PutPixel( 96 + x,83 + y,221,221,221 );
gfx.PutPixel( 97 + x,83 + y,210,68,68 );
gfx.PutPixel( 98 + x,83 + y,207,21,21 );
gfx.PutPixel( 99 + x,83 + y,210,64,64 );
gfx.PutPixel( 100 + x,83 + y,221,220,220 );
gfx.PutPixel( 101 + x,83 + y,221,223,223 );
gfx.PutPixel( 102 + x,83 + y,222,230,230 );
gfx.PutPixel( 103 + x,83 + y,211,87,87 );
gfx.PutPixel( 104 + x,83 + y,214,117,117 );
gfx.PutPixel( 105 + x,83 + y,222,233,233 );
gfx.PutPixel( 106 + x,83 + y,221,225,225 );
gfx.PutPixel( 107 + x,83 + y,220,208,208 );
gfx.PutPixel( 108 + x,83 + y,209,47,47 );
gfx.PutPixel( 109 + x,83 + y,208,30,30 );
gfx.PutPixel( 110 + x,83 + y,208,34,34 );
gfx.PutPixel( 111 + x,83 + y,208,34,34 );
gfx.PutPixel( 112 + x,83 + y,208,34,34 );
gfx.PutPixel( 113 + x,83 + y,208,34,34 );
gfx.PutPixel( 114 + x,83 + y,208,34,34 );
gfx.PutPixel( 115 + x,83 + y,208,34,34 );
gfx.PutPixel( 116 + x,83 + y,208,34,34 );
gfx.PutPixel( 117 + x,83 + y,208,34,34 );
gfx.PutPixel( 118 + x,83 + y,208,34,34 );
gfx.PutPixel( 119 + x,83 + y,208,34,34 );
gfx.PutPixel( 120 + x,83 + y,208,34,34 );
gfx.PutPixel( 121 + x,83 + y,208,34,34 );
gfx.PutPixel( 122 + x,83 + y,208,34,34 );
gfx.PutPixel( 123 + x,83 + y,208,34,34 );
gfx.PutPixel( 124 + x,83 + y,208,34,34 );
gfx.PutPixel( 125 + x,83 + y,208,34,34 );
gfx.PutPixel( 126 + x,83 + y,208,34,34 );
gfx.PutPixel( 127 + x,83 + y,208,34,34 );
gfx.PutPixel( 128 + x,83 + y,208,34,34 );
gfx.PutPixel( 129 + x,83 + y,208,34,34 );
gfx.PutPixel( 130 + x,83 + y,208,34,34 );
gfx.PutPixel( 131 + x,83 + y,208,34,34 );
gfx.PutPixel( 132 + x,83 + y,208,34,34 );
gfx.PutPixel( 133 + x,83 + y,208,34,34 );
gfx.PutPixel( 134 + x,83 + y,208,34,34 );
gfx.PutPixel( 135 + x,83 + y,208,34,34 );
gfx.PutPixel( 136 + x,83 + y,208,34,34 );
gfx.PutPixel( 137 + x,83 + y,208,34,34 );
gfx.PutPixel( 138 + x,83 + y,208,34,34 );
gfx.PutPixel( 139 + x,83 + y,208,34,34 );
gfx.PutPixel( 140 + x,83 + y,208,34,34 );
gfx.PutPixel( 141 + x,83 + y,208,34,34 );
gfx.PutPixel( 142 + x,83 + y,208,34,34 );
gfx.PutPixel( 143 + x,83 + y,208,34,34 );
gfx.PutPixel( 144 + x,83 + y,208,34,34 );
gfx.PutPixel( 145 + x,83 + y,208,34,34 );
gfx.PutPixel( 146 + x,83 + y,208,34,34 );
gfx.PutPixel( 147 + x,83 + y,208,34,34 );
gfx.PutPixel( 148 + x,83 + y,208,34,34 );
gfx.PutPixel( 149 + x,83 + y,208,34,34 );
gfx.PutPixel( 0 + x,84 + y,208,34,34 );
gfx.PutPixel( 1 + x,84 + y,208,34,34 );
gfx.PutPixel( 2 + x,84 + y,208,34,34 );
gfx.PutPixel( 3 + x,84 + y,208,34,34 );
gfx.PutPixel( 4 + x,84 + y,208,34,34 );
gfx.PutPixel( 5 + x,84 + y,208,34,34 );
gfx.PutPixel( 6 + x,84 + y,208,34,34 );
gfx.PutPixel( 7 + x,84 + y,208,34,34 );
gfx.PutPixel( 8 + x,84 + y,208,34,34 );
gfx.PutPixel( 9 + x,84 + y,208,34,34 );
gfx.PutPixel( 10 + x,84 + y,208,34,34 );
gfx.PutPixel( 11 + x,84 + y,208,34,34 );
gfx.PutPixel( 12 + x,84 + y,208,34,34 );
gfx.PutPixel( 13 + x,84 + y,208,34,34 );
gfx.PutPixel( 14 + x,84 + y,208,34,34 );
gfx.PutPixel( 15 + x,84 + y,208,34,34 );
gfx.PutPixel( 16 + x,84 + y,208,34,34 );
gfx.PutPixel( 17 + x,84 + y,208,34,34 );
gfx.PutPixel( 18 + x,84 + y,208,34,34 );
gfx.PutPixel( 19 + x,84 + y,208,34,34 );
gfx.PutPixel( 20 + x,84 + y,208,34,34 );
gfx.PutPixel( 21 + x,84 + y,208,34,34 );
gfx.PutPixel( 22 + x,84 + y,208,34,34 );
gfx.PutPixel( 23 + x,84 + y,208,34,34 );
gfx.PutPixel( 24 + x,84 + y,208,34,34 );
gfx.PutPixel( 25 + x,84 + y,208,34,34 );
gfx.PutPixel( 26 + x,84 + y,208,34,34 );
gfx.PutPixel( 27 + x,84 + y,208,34,34 );
gfx.PutPixel( 28 + x,84 + y,208,34,34 );
gfx.PutPixel( 29 + x,84 + y,208,34,34 );
gfx.PutPixel( 30 + x,84 + y,208,34,34 );
gfx.PutPixel( 31 + x,84 + y,208,34,34 );
gfx.PutPixel( 32 + x,84 + y,208,34,34 );
gfx.PutPixel( 33 + x,84 + y,208,34,34 );
gfx.PutPixel( 34 + x,84 + y,208,34,34 );
gfx.PutPixel( 35 + x,84 + y,208,34,34 );
gfx.PutPixel( 36 + x,84 + y,208,34,34 );
gfx.PutPixel( 37 + x,84 + y,208,34,34 );
gfx.PutPixel( 38 + x,84 + y,208,34,34 );
gfx.PutPixel( 39 + x,84 + y,207,25,25 );
gfx.PutPixel( 40 + x,84 + y,211,82,82 );
gfx.PutPixel( 41 + x,84 + y,221,227,227 );
gfx.PutPixel( 42 + x,84 + y,221,222,222 );
gfx.PutPixel( 43 + x,84 + y,222,230,230 );
gfx.PutPixel( 44 + x,84 + y,218,173,173 );
gfx.PutPixel( 45 + x,84 + y,208,28,28 );
gfx.PutPixel( 46 + x,84 + y,208,33,33 );
gfx.PutPixel( 47 + x,84 + y,208,34,34 );
gfx.PutPixel( 48 + x,84 + y,208,34,34 );
gfx.PutPixel( 49 + x,84 + y,208,34,34 );
gfx.PutPixel( 50 + x,84 + y,208,34,34 );
gfx.PutPixel( 51 + x,84 + y,208,34,34 );
gfx.PutPixel( 52 + x,84 + y,208,34,34 );
gfx.PutPixel( 53 + x,84 + y,208,34,34 );
gfx.PutPixel( 54 + x,84 + y,208,34,34 );
gfx.PutPixel( 55 + x,84 + y,208,34,34 );
gfx.PutPixel( 56 + x,84 + y,208,34,34 );
gfx.PutPixel( 57 + x,84 + y,208,34,34 );
gfx.PutPixel( 58 + x,84 + y,208,33,33 );
gfx.PutPixel( 59 + x,84 + y,207,28,28 );
gfx.PutPixel( 60 + x,84 + y,217,171,171 );
gfx.PutPixel( 61 + x,84 + y,222,230,230 );
gfx.PutPixel( 62 + x,84 + y,221,225,225 );
gfx.PutPixel( 63 + x,84 + y,220,204,204 );
gfx.PutPixel( 64 + x,84 + y,209,46,46 );
gfx.PutPixel( 65 + x,84 + y,207,19,19 );
gfx.PutPixel( 66 + x,84 + y,214,117,117 );
gfx.PutPixel( 67 + x,84 + y,222,233,233 );
gfx.PutPixel( 68 + x,84 + y,221,221,221 );
gfx.PutPixel( 69 + x,84 + y,222,233,233 );
gfx.PutPixel( 70 + x,84 + y,215,128,128 );
gfx.PutPixel( 71 + x,84 + y,207,22,22 );
gfx.PutPixel( 72 + x,84 + y,208,34,34 );
gfx.PutPixel( 73 + x,84 + y,208,34,34 );
gfx.PutPixel( 74 + x,84 + y,208,34,34 );
gfx.PutPixel( 75 + x,84 + y,208,27,27 );
gfx.PutPixel( 76 + x,84 + y,218,173,173 );
gfx.PutPixel( 77 + x,84 + y,222,230,230 );
gfx.PutPixel( 78 + x,84 + y,222,230,230 );
gfx.PutPixel( 79 + x,84 + y,218,173,173 );
gfx.PutPixel( 80 + x,84 + y,208,27,27 );
gfx.PutPixel( 81 + x,84 + y,208,34,34 );
gfx.PutPixel( 82 + x,84 + y,208,34,34 );
gfx.PutPixel( 83 + x,84 + y,208,34,34 );
gfx.PutPixel( 84 + x,84 + y,208,34,34 );
gfx.PutPixel( 85 + x,84 + y,208,34,34 );
gfx.PutPixel( 86 + x,84 + y,208,34,34 );
gfx.PutPixel( 87 + x,84 + y,208,30,30 );
gfx.PutPixel( 88 + x,84 + y,209,47,47 );
gfx.PutPixel( 89 + x,84 + y,220,208,208 );
gfx.PutPixel( 90 + x,84 + y,221,225,225 );
gfx.PutPixel( 91 + x,84 + y,222,233,233 );
gfx.PutPixel( 92 + x,84 + y,214,124,124 );
gfx.PutPixel( 93 + x,84 + y,208,36,36 );
gfx.PutPixel( 94 + x,84 + y,220,207,207 );
gfx.PutPixel( 95 + x,84 + y,221,224,224 );
gfx.PutPixel( 96 + x,84 + y,222,233,233 );
gfx.PutPixel( 97 + x,84 + y,215,129,129 );
gfx.PutPixel( 98 + x,84 + y,206,11,11 );
gfx.PutPixel( 99 + x,84 + y,215,124,124 );
gfx.PutPixel( 100 + x,84 + y,222,233,233 );
gfx.PutPixel( 101 + x,84 + y,221,225,225 );
gfx.PutPixel( 102 + x,84 + y,220,206,206 );
gfx.PutPixel( 103 + x,84 + y,208,35,35 );
gfx.PutPixel( 104 + x,84 + y,214,124,124 );
gfx.PutPixel( 105 + x,84 + y,222,233,233 );
gfx.PutPixel( 106 + x,84 + y,221,225,225 );
gfx.PutPixel( 107 + x,84 + y,220,208,208 );
gfx.PutPixel( 108 + x,84 + y,209,47,47 );
gfx.PutPixel( 109 + x,84 + y,208,30,30 );
gfx.PutPixel( 110 + x,84 + y,208,34,34 );
gfx.PutPixel( 111 + x,84 + y,208,34,34 );
gfx.PutPixel( 112 + x,84 + y,208,34,34 );
gfx.PutPixel( 113 + x,84 + y,208,34,34 );
gfx.PutPixel( 114 + x,84 + y,208,34,34 );
gfx.PutPixel( 115 + x,84 + y,208,34,34 );
gfx.PutPixel( 116 + x,84 + y,208,34,34 );
gfx.PutPixel( 117 + x,84 + y,208,34,34 );
gfx.PutPixel( 118 + x,84 + y,208,34,34 );
gfx.PutPixel( 119 + x,84 + y,208,34,34 );
gfx.PutPixel( 120 + x,84 + y,208,34,34 );
gfx.PutPixel( 121 + x,84 + y,208,34,34 );
gfx.PutPixel( 122 + x,84 + y,208,34,34 );
gfx.PutPixel( 123 + x,84 + y,208,34,34 );
gfx.PutPixel( 124 + x,84 + y,208,34,34 );
gfx.PutPixel( 125 + x,84 + y,208,34,34 );
gfx.PutPixel( 126 + x,84 + y,208,34,34 );
gfx.PutPixel( 127 + x,84 + y,208,34,34 );
gfx.PutPixel( 128 + x,84 + y,208,34,34 );
gfx.PutPixel( 129 + x,84 + y,208,34,34 );
gfx.PutPixel( 130 + x,84 + y,208,34,34 );
gfx.PutPixel( 131 + x,84 + y,208,34,34 );
gfx.PutPixel( 132 + x,84 + y,208,34,34 );
gfx.PutPixel( 133 + x,84 + y,208,34,34 );
gfx.PutPixel( 134 + x,84 + y,208,34,34 );
gfx.PutPixel( 135 + x,84 + y,208,34,34 );
gfx.PutPixel( 136 + x,84 + y,208,34,34 );
gfx.PutPixel( 137 + x,84 + y,208,34,34 );
gfx.PutPixel( 138 + x,84 + y,208,34,34 );
gfx.PutPixel( 139 + x,84 + y,208,34,34 );
gfx.PutPixel( 140 + x,84 + y,208,34,34 );
gfx.PutPixel( 141 + x,84 + y,208,34,34 );
gfx.PutPixel( 142 + x,84 + y,208,34,34 );
gfx.PutPixel( 143 + x,84 + y,208,34,34 );
gfx.PutPixel( 144 + x,84 + y,208,34,34 );
gfx.PutPixel( 145 + x,84 + y,208,34,34 );
gfx.PutPixel( 146 + x,84 + y,208,34,34 );
gfx.PutPixel( 147 + x,84 + y,208,34,34 );
gfx.PutPixel( 148 + x,84 + y,208,34,34 );
gfx.PutPixel( 149 + x,84 + y,208,34,34 );
gfx.PutPixel( 0 + x,85 + y,208,34,34 );
gfx.PutPixel( 1 + x,85 + y,208,34,34 );
gfx.PutPixel( 2 + x,85 + y,208,34,34 );
gfx.PutPixel( 3 + x,85 + y,208,34,34 );
gfx.PutPixel( 4 + x,85 + y,208,34,34 );
gfx.PutPixel( 5 + x,85 + y,208,34,34 );
gfx.PutPixel( 6 + x,85 + y,208,34,34 );
gfx.PutPixel( 7 + x,85 + y,208,34,34 );
gfx.PutPixel( 8 + x,85 + y,208,34,34 );
gfx.PutPixel( 9 + x,85 + y,208,34,34 );
gfx.PutPixel( 10 + x,85 + y,208,34,34 );
gfx.PutPixel( 11 + x,85 + y,208,34,34 );
gfx.PutPixel( 12 + x,85 + y,208,34,34 );
gfx.PutPixel( 13 + x,85 + y,208,34,34 );
gfx.PutPixel( 14 + x,85 + y,208,34,34 );
gfx.PutPixel( 15 + x,85 + y,208,34,34 );
gfx.PutPixel( 16 + x,85 + y,208,34,34 );
gfx.PutPixel( 17 + x,85 + y,208,34,34 );
gfx.PutPixel( 18 + x,85 + y,208,34,34 );
gfx.PutPixel( 19 + x,85 + y,208,34,34 );
gfx.PutPixel( 20 + x,85 + y,208,34,34 );
gfx.PutPixel( 21 + x,85 + y,208,34,34 );
gfx.PutPixel( 22 + x,85 + y,208,34,34 );
gfx.PutPixel( 23 + x,85 + y,208,34,34 );
gfx.PutPixel( 24 + x,85 + y,208,34,34 );
gfx.PutPixel( 25 + x,85 + y,208,34,34 );
gfx.PutPixel( 26 + x,85 + y,208,34,34 );
gfx.PutPixel( 27 + x,85 + y,208,34,34 );
gfx.PutPixel( 28 + x,85 + y,208,34,34 );
gfx.PutPixel( 29 + x,85 + y,208,34,34 );
gfx.PutPixel( 30 + x,85 + y,208,34,34 );
gfx.PutPixel( 31 + x,85 + y,208,34,34 );
gfx.PutPixel( 32 + x,85 + y,208,34,34 );
gfx.PutPixel( 33 + x,85 + y,208,34,34 );
gfx.PutPixel( 34 + x,85 + y,208,34,34 );
gfx.PutPixel( 35 + x,85 + y,208,34,34 );
gfx.PutPixel( 36 + x,85 + y,208,34,34 );
gfx.PutPixel( 37 + x,85 + y,208,34,34 );
gfx.PutPixel( 38 + x,85 + y,208,34,34 );
gfx.PutPixel( 39 + x,85 + y,207,26,26 );
gfx.PutPixel( 40 + x,85 + y,211,78,78 );
gfx.PutPixel( 41 + x,85 + y,221,226,226 );
gfx.PutPixel( 42 + x,85 + y,221,222,222 );
gfx.PutPixel( 43 + x,85 + y,222,229,229 );
gfx.PutPixel( 44 + x,85 + y,218,178,178 );
gfx.PutPixel( 45 + x,85 + y,208,30,30 );
gfx.PutPixel( 46 + x,85 + y,208,33,33 );
gfx.PutPixel( 47 + x,85 + y,208,34,34 );
gfx.PutPixel( 48 + x,85 + y,208,34,34 );
gfx.PutPixel( 49 + x,85 + y,208,34,34 );
gfx.PutPixel( 50 + x,85 + y,208,34,34 );
gfx.PutPixel( 51 + x,85 + y,208,34,34 );
gfx.PutPixel( 52 + x,85 + y,208,34,34 );
gfx.PutPixel( 53 + x,85 + y,208,34,34 );
gfx.PutPixel( 54 + x,85 + y,208,34,34 );
gfx.PutPixel( 55 + x,85 + y,208,34,34 );
gfx.PutPixel( 56 + x,85 + y,208,34,34 );
gfx.PutPixel( 57 + x,85 + y,208,34,34 );
gfx.PutPixel( 58 + x,85 + y,207,26,26 );
gfx.PutPixel( 59 + x,85 + y,211,71,71 );
gfx.PutPixel( 60 + x,85 + y,221,223,223 );
gfx.PutPixel( 61 + x,85 + y,221,222,222 );
gfx.PutPixel( 62 + x,85 + y,222,232,232 );
gfx.PutPixel( 63 + x,85 + y,215,133,133 );
gfx.PutPixel( 64 + x,85 + y,206,11,11 );
gfx.PutPixel( 65 + x,85 + y,207,17,17 );
gfx.PutPixel( 66 + x,85 + y,208,41,41 );
gfx.PutPixel( 67 + x,85 + y,220,206,206 );
gfx.PutPixel( 68 + x,85 + y,221,225,225 );
gfx.PutPixel( 69 + x,85 + y,221,226,226 );
gfx.PutPixel( 70 + x,85 + y,220,199,199 );
gfx.PutPixel( 71 + x,85 + y,209,41,41 );
gfx.PutPixel( 72 + x,85 + y,208,31,31 );
gfx.PutPixel( 73 + x,85 + y,208,34,34 );
gfx.PutPixel( 74 + x,85 + y,208,34,34 );
gfx.PutPixel( 75 + x,85 + y,208,27,27 );
gfx.PutPixel( 76 + x,85 + y,218,173,173 );
gfx.PutPixel( 77 + x,85 + y,222,230,230 );
gfx.PutPixel( 78 + x,85 + y,222,230,230 );
gfx.PutPixel( 79 + x,85 + y,218,173,173 );
gfx.PutPixel( 80 + x,85 + y,208,27,27 );
gfx.PutPixel( 81 + x,85 + y,208,34,34 );
gfx.PutPixel( 82 + x,85 + y,208,34,34 );
gfx.PutPixel( 83 + x,85 + y,208,34,34 );
gfx.PutPixel( 84 + x,85 + y,208,34,34 );
gfx.PutPixel( 85 + x,85 + y,208,34,34 );
gfx.PutPixel( 86 + x,85 + y,208,34,34 );
gfx.PutPixel( 87 + x,85 + y,208,30,30 );
gfx.PutPixel( 88 + x,85 + y,209,47,47 );
gfx.PutPixel( 89 + x,85 + y,220,208,208 );
gfx.PutPixel( 90 + x,85 + y,221,225,225 );
gfx.PutPixel( 91 + x,85 + y,222,233,233 );
gfx.PutPixel( 92 + x,85 + y,214,127,127 );
gfx.PutPixel( 93 + x,85 + y,206,12,12 );
gfx.PutPixel( 94 + x,85 + y,217,156,156 );
gfx.PutPixel( 95 + x,85 + y,222,232,232 );
gfx.PutPixel( 96 + x,85 + y,221,228,228 );
gfx.PutPixel( 97 + x,85 + y,219,188,188 );
gfx.PutPixel( 98 + x,85 + y,208,34,34 );
gfx.PutPixel( 99 + x,85 + y,218,183,183 );
gfx.PutPixel( 100 + x,85 + y,222,228,228 );
gfx.PutPixel( 101 + x,85 + y,222,232,232 );
gfx.PutPixel( 102 + x,85 + y,216,152,152 );
gfx.PutPixel( 103 + x,85 + y,206,12,12 );
gfx.PutPixel( 104 + x,85 + y,214,127,127 );
gfx.PutPixel( 105 + x,85 + y,222,233,233 );
gfx.PutPixel( 106 + x,85 + y,221,225,225 );
gfx.PutPixel( 107 + x,85 + y,220,208,208 );
gfx.PutPixel( 108 + x,85 + y,209,47,47 );
gfx.PutPixel( 109 + x,85 + y,208,30,30 );
gfx.PutPixel( 110 + x,85 + y,208,34,34 );
gfx.PutPixel( 111 + x,85 + y,208,34,34 );
gfx.PutPixel( 112 + x,85 + y,208,34,34 );
gfx.PutPixel( 113 + x,85 + y,208,34,34 );
gfx.PutPixel( 114 + x,85 + y,208,34,34 );
gfx.PutPixel( 115 + x,85 + y,208,34,34 );
gfx.PutPixel( 116 + x,85 + y,208,34,34 );
gfx.PutPixel( 117 + x,85 + y,208,34,34 );
gfx.PutPixel( 118 + x,85 + y,208,34,34 );
gfx.PutPixel( 119 + x,85 + y,208,34,34 );
gfx.PutPixel( 120 + x,85 + y,208,34,34 );
gfx.PutPixel( 121 + x,85 + y,208,34,34 );
gfx.PutPixel( 122 + x,85 + y,208,34,34 );
gfx.PutPixel( 123 + x,85 + y,208,34,34 );
gfx.PutPixel( 124 + x,85 + y,208,34,34 );
gfx.PutPixel( 125 + x,85 + y,208,34,34 );
gfx.PutPixel( 126 + x,85 + y,208,34,34 );
gfx.PutPixel( 127 + x,85 + y,208,34,34 );
gfx.PutPixel( 128 + x,85 + y,208,34,34 );
gfx.PutPixel( 129 + x,85 + y,208,34,34 );
gfx.PutPixel( 130 + x,85 + y,208,34,34 );
gfx.PutPixel( 131 + x,85 + y,208,34,34 );
gfx.PutPixel( 132 + x,85 + y,208,34,34 );
gfx.PutPixel( 133 + x,85 + y,208,34,34 );
gfx.PutPixel( 134 + x,85 + y,208,34,34 );
gfx.PutPixel( 135 + x,85 + y,208,34,34 );
gfx.PutPixel( 136 + x,85 + y,208,34,34 );
gfx.PutPixel( 137 + x,85 + y,208,34,34 );
gfx.PutPixel( 138 + x,85 + y,208,34,34 );
gfx.PutPixel( 139 + x,85 + y,208,34,34 );
gfx.PutPixel( 140 + x,85 + y,208,34,34 );
gfx.PutPixel( 141 + x,85 + y,208,34,34 );
gfx.PutPixel( 142 + x,85 + y,208,34,34 );
gfx.PutPixel( 143 + x,85 + y,208,34,34 );
gfx.PutPixel( 144 + x,85 + y,208,34,34 );
gfx.PutPixel( 145 + x,85 + y,208,34,34 );
gfx.PutPixel( 146 + x,85 + y,208,34,34 );
gfx.PutPixel( 147 + x,85 + y,208,34,34 );
gfx.PutPixel( 148 + x,85 + y,208,34,34 );
gfx.PutPixel( 149 + x,85 + y,208,34,34 );
gfx.PutPixel( 0 + x,86 + y,208,34,34 );
gfx.PutPixel( 1 + x,86 + y,208,34,34 );
gfx.PutPixel( 2 + x,86 + y,208,34,34 );
gfx.PutPixel( 3 + x,86 + y,208,34,34 );
gfx.PutPixel( 4 + x,86 + y,208,34,34 );
gfx.PutPixel( 5 + x,86 + y,208,34,34 );
gfx.PutPixel( 6 + x,86 + y,208,34,34 );
gfx.PutPixel( 7 + x,86 + y,208,34,34 );
gfx.PutPixel( 8 + x,86 + y,208,34,34 );
gfx.PutPixel( 9 + x,86 + y,208,34,34 );
gfx.PutPixel( 10 + x,86 + y,208,34,34 );
gfx.PutPixel( 11 + x,86 + y,208,34,34 );
gfx.PutPixel( 12 + x,86 + y,208,34,34 );
gfx.PutPixel( 13 + x,86 + y,208,34,34 );
gfx.PutPixel( 14 + x,86 + y,208,34,34 );
gfx.PutPixel( 15 + x,86 + y,208,34,34 );
gfx.PutPixel( 16 + x,86 + y,208,34,34 );
gfx.PutPixel( 17 + x,86 + y,208,34,34 );
gfx.PutPixel( 18 + x,86 + y,208,34,34 );
gfx.PutPixel( 19 + x,86 + y,208,34,34 );
gfx.PutPixel( 20 + x,86 + y,208,34,34 );
gfx.PutPixel( 21 + x,86 + y,208,34,34 );
gfx.PutPixel( 22 + x,86 + y,208,34,34 );
gfx.PutPixel( 23 + x,86 + y,208,34,34 );
gfx.PutPixel( 24 + x,86 + y,208,34,34 );
gfx.PutPixel( 25 + x,86 + y,208,34,34 );
gfx.PutPixel( 26 + x,86 + y,208,34,34 );
gfx.PutPixel( 27 + x,86 + y,208,34,34 );
gfx.PutPixel( 28 + x,86 + y,208,34,34 );
gfx.PutPixel( 29 + x,86 + y,208,34,34 );
gfx.PutPixel( 30 + x,86 + y,208,34,34 );
gfx.PutPixel( 31 + x,86 + y,208,34,34 );
gfx.PutPixel( 32 + x,86 + y,208,34,34 );
gfx.PutPixel( 33 + x,86 + y,208,34,34 );
gfx.PutPixel( 34 + x,86 + y,208,34,34 );
gfx.PutPixel( 35 + x,86 + y,208,34,34 );
gfx.PutPixel( 36 + x,86 + y,208,34,34 );
gfx.PutPixel( 37 + x,86 + y,208,34,34 );
gfx.PutPixel( 38 + x,86 + y,208,34,34 );
gfx.PutPixel( 39 + x,86 + y,208,28,28 );
gfx.PutPixel( 40 + x,86 + y,210,61,61 );
gfx.PutPixel( 41 + x,86 + y,221,217,217 );
gfx.PutPixel( 42 + x,86 + y,221,223,223 );
gfx.PutPixel( 43 + x,86 + y,221,225,225 );
gfx.PutPixel( 44 + x,86 + y,220,204,204 );
gfx.PutPixel( 45 + x,86 + y,209,45,45 );
gfx.PutPixel( 46 + x,86 + y,208,30,30 );
gfx.PutPixel( 47 + x,86 + y,208,34,34 );
gfx.PutPixel( 48 + x,86 + y,208,34,34 );
gfx.PutPixel( 49 + x,86 + y,208,34,34 );
gfx.PutPixel( 50 + x,86 + y,208,34,34 );
gfx.PutPixel( 51 + x,86 + y,208,34,34 );
gfx.PutPixel( 52 + x,86 + y,208,34,34 );
gfx.PutPixel( 53 + x,86 + y,208,34,34 );
gfx.PutPixel( 54 + x,86 + y,208,34,34 );
gfx.PutPixel( 55 + x,86 + y,208,34,34 );
gfx.PutPixel( 56 + x,86 + y,208,34,34 );
gfx.PutPixel( 57 + x,86 + y,208,34,34 );
gfx.PutPixel( 58 + x,86 + y,207,23,23 );
gfx.PutPixel( 59 + x,86 + y,216,147,147 );
gfx.PutPixel( 60 + x,86 + y,222,232,232 );
gfx.PutPixel( 61 + x,86 + y,221,221,221 );
gfx.PutPixel( 62 + x,86 + y,221,225,225 );
gfx.PutPixel( 63 + x,86 + y,216,154,154 );
gfx.PutPixel( 64 + x,86 + y,214,122,122 );
gfx.PutPixel( 65 + x,86 + y,215,128,128 );
gfx.PutPixel( 66 + x,86 + y,214,123,123 );
gfx.PutPixel( 67 + x,86 + y,219,196,196 );
gfx.PutPixel( 68 + x,86 + y,221,225,225 );
gfx.PutPixel( 69 + x,86 + y,221,221,221 );
gfx.PutPixel( 70 + x,86 + y,222,231,231 );
gfx.PutPixel( 71 + x,86 + y,213,104,104 );
gfx.PutPixel( 72 + x,86 + y,207,23,23 );
gfx.PutPixel( 73 + x,86 + y,208,34,34 );
gfx.PutPixel( 74 + x,86 + y,208,34,34 );
gfx.PutPixel( 75 + x,86 + y,208,27,27 );
gfx.PutPixel( 76 + x,86 + y,218,173,173 );
gfx.PutPixel( 77 + x,86 + y,222,230,230 );
gfx.PutPixel( 78 + x,86 + y,222,230,230 );
gfx.PutPixel( 79 + x,86 + y,218,173,173 );
gfx.PutPixel( 80 + x,86 + y,208,27,27 );
gfx.PutPixel( 81 + x,86 + y,208,34,34 );
gfx.PutPixel( 82 + x,86 + y,208,34,34 );
gfx.PutPixel( 83 + x,86 + y,208,34,34 );
gfx.PutPixel( 84 + x,86 + y,208,34,34 );
gfx.PutPixel( 85 + x,86 + y,208,34,34 );
gfx.PutPixel( 86 + x,86 + y,208,34,34 );
gfx.PutPixel( 87 + x,86 + y,208,30,30 );
gfx.PutPixel( 88 + x,86 + y,209,47,47 );
gfx.PutPixel( 89 + x,86 + y,220,208,208 );
gfx.PutPixel( 90 + x,86 + y,221,225,225 );
gfx.PutPixel( 91 + x,86 + y,222,233,233 );
gfx.PutPixel( 92 + x,86 + y,215,128,128 );
gfx.PutPixel( 93 + x,86 + y,206,12,12 );
gfx.PutPixel( 94 + x,86 + y,212,94,94 );
gfx.PutPixel( 95 + x,86 + y,222,230,230 );
gfx.PutPixel( 96 + x,86 + y,221,222,222 );
gfx.PutPixel( 97 + x,86 + y,221,218,218 );
gfx.PutPixel( 98 + x,86 + y,214,119,119 );
gfx.PutPixel( 99 + x,86 + y,221,215,215 );
gfx.PutPixel( 100 + x,86 + y,221,223,223 );
gfx.PutPixel( 101 + x,86 + y,222,228,228 );
gfx.PutPixel( 102 + x,86 + y,211,88,88 );
gfx.PutPixel( 103 + x,86 + y,206,12,12 );
gfx.PutPixel( 104 + x,86 + y,215,128,128 );
gfx.PutPixel( 105 + x,86 + y,222,233,233 );
gfx.PutPixel( 106 + x,86 + y,221,225,225 );
gfx.PutPixel( 107 + x,86 + y,220,208,208 );
gfx.PutPixel( 108 + x,86 + y,209,47,47 );
gfx.PutPixel( 109 + x,86 + y,208,30,30 );
gfx.PutPixel( 110 + x,86 + y,208,34,34 );
gfx.PutPixel( 111 + x,86 + y,208,34,34 );
gfx.PutPixel( 112 + x,86 + y,208,34,34 );
gfx.PutPixel( 113 + x,86 + y,208,34,34 );
gfx.PutPixel( 114 + x,86 + y,208,34,34 );
gfx.PutPixel( 115 + x,86 + y,208,34,34 );
gfx.PutPixel( 116 + x,86 + y,208,34,34 );
gfx.PutPixel( 117 + x,86 + y,208,34,34 );
gfx.PutPixel( 118 + x,86 + y,208,34,34 );
gfx.PutPixel( 119 + x,86 + y,208,34,34 );
gfx.PutPixel( 120 + x,86 + y,208,34,34 );
gfx.PutPixel( 121 + x,86 + y,208,34,34 );
gfx.PutPixel( 122 + x,86 + y,208,34,34 );
gfx.PutPixel( 123 + x,86 + y,208,34,34 );
gfx.PutPixel( 124 + x,86 + y,208,34,34 );
gfx.PutPixel( 125 + x,86 + y,208,34,34 );
gfx.PutPixel( 126 + x,86 + y,208,34,34 );
gfx.PutPixel( 127 + x,86 + y,208,34,34 );
gfx.PutPixel( 128 + x,86 + y,208,34,34 );
gfx.PutPixel( 129 + x,86 + y,208,34,34 );
gfx.PutPixel( 130 + x,86 + y,208,34,34 );
gfx.PutPixel( 131 + x,86 + y,208,34,34 );
gfx.PutPixel( 132 + x,86 + y,208,34,34 );
gfx.PutPixel( 133 + x,86 + y,208,34,34 );
gfx.PutPixel( 134 + x,86 + y,208,34,34 );
gfx.PutPixel( 135 + x,86 + y,208,34,34 );
gfx.PutPixel( 136 + x,86 + y,208,34,34 );
gfx.PutPixel( 137 + x,86 + y,208,34,34 );
gfx.PutPixel( 138 + x,86 + y,208,34,34 );
gfx.PutPixel( 139 + x,86 + y,208,34,34 );
gfx.PutPixel( 140 + x,86 + y,208,34,34 );
gfx.PutPixel( 141 + x,86 + y,208,34,34 );
gfx.PutPixel( 142 + x,86 + y,208,34,34 );
gfx.PutPixel( 143 + x,86 + y,208,34,34 );
gfx.PutPixel( 144 + x,86 + y,208,34,34 );
gfx.PutPixel( 145 + x,86 + y,208,34,34 );
gfx.PutPixel( 146 + x,86 + y,208,34,34 );
gfx.PutPixel( 147 + x,86 + y,208,34,34 );
gfx.PutPixel( 148 + x,86 + y,208,34,34 );
gfx.PutPixel( 149 + x,86 + y,208,34,34 );
gfx.PutPixel( 0 + x,87 + y,208,34,34 );
gfx.PutPixel( 1 + x,87 + y,208,34,34 );
gfx.PutPixel( 2 + x,87 + y,208,34,34 );
gfx.PutPixel( 3 + x,87 + y,208,34,34 );
gfx.PutPixel( 4 + x,87 + y,208,34,34 );
gfx.PutPixel( 5 + x,87 + y,208,34,34 );
gfx.PutPixel( 6 + x,87 + y,208,34,34 );
gfx.PutPixel( 7 + x,87 + y,208,34,34 );
gfx.PutPixel( 8 + x,87 + y,208,34,34 );
gfx.PutPixel( 9 + x,87 + y,208,34,34 );
gfx.PutPixel( 10 + x,87 + y,208,34,34 );
gfx.PutPixel( 11 + x,87 + y,208,34,34 );
gfx.PutPixel( 12 + x,87 + y,208,34,34 );
gfx.PutPixel( 13 + x,87 + y,208,34,34 );
gfx.PutPixel( 14 + x,87 + y,208,34,34 );
gfx.PutPixel( 15 + x,87 + y,208,34,34 );
gfx.PutPixel( 16 + x,87 + y,208,34,34 );
gfx.PutPixel( 17 + x,87 + y,208,34,34 );
gfx.PutPixel( 18 + x,87 + y,208,34,34 );
gfx.PutPixel( 19 + x,87 + y,208,34,34 );
gfx.PutPixel( 20 + x,87 + y,208,34,34 );
gfx.PutPixel( 21 + x,87 + y,208,34,34 );
gfx.PutPixel( 22 + x,87 + y,208,34,34 );
gfx.PutPixel( 23 + x,87 + y,208,34,34 );
gfx.PutPixel( 24 + x,87 + y,208,34,34 );
gfx.PutPixel( 25 + x,87 + y,208,34,34 );
gfx.PutPixel( 26 + x,87 + y,208,34,34 );
gfx.PutPixel( 27 + x,87 + y,208,34,34 );
gfx.PutPixel( 28 + x,87 + y,208,34,34 );
gfx.PutPixel( 29 + x,87 + y,208,34,34 );
gfx.PutPixel( 30 + x,87 + y,208,34,34 );
gfx.PutPixel( 31 + x,87 + y,208,34,34 );
gfx.PutPixel( 32 + x,87 + y,208,34,34 );
gfx.PutPixel( 33 + x,87 + y,208,34,34 );
gfx.PutPixel( 34 + x,87 + y,208,34,34 );
gfx.PutPixel( 35 + x,87 + y,208,34,34 );
gfx.PutPixel( 36 + x,87 + y,208,34,34 );
gfx.PutPixel( 37 + x,87 + y,208,34,34 );
gfx.PutPixel( 38 + x,87 + y,208,34,34 );
gfx.PutPixel( 39 + x,87 + y,208,32,32 );
gfx.PutPixel( 40 + x,87 + y,208,37,37 );
gfx.PutPixel( 41 + x,87 + y,219,192,192 );
gfx.PutPixel( 42 + x,87 + y,221,227,227 );
gfx.PutPixel( 43 + x,87 + y,221,221,221 );
gfx.PutPixel( 44 + x,87 + y,222,230,230 );
gfx.PutPixel( 45 + x,87 + y,213,103,103 );
gfx.PutPixel( 46 + x,87 + y,207,20,20 );
gfx.PutPixel( 47 + x,87 + y,208,34,34 );
gfx.PutPixel( 48 + x,87 + y,208,34,34 );
gfx.PutPixel( 49 + x,87 + y,208,34,34 );
gfx.PutPixel( 50 + x,87 + y,208,34,34 );
gfx.PutPixel( 51 + x,87 + y,208,35,35 );
gfx.PutPixel( 52 + x,87 + y,208,30,30 );
gfx.PutPixel( 53 + x,87 + y,207,26,26 );
gfx.PutPixel( 54 + x,87 + y,208,34,34 );
gfx.PutPixel( 55 + x,87 + y,208,34,34 );
gfx.PutPixel( 56 + x,87 + y,208,34,34 );
gfx.PutPixel( 57 + x,87 + y,208,29,29 );
gfx.PutPixel( 58 + x,87 + y,209,53,53 );
gfx.PutPixel( 59 + x,87 + y,220,211,211 );
gfx.PutPixel( 60 + x,87 + y,221,224,224 );
gfx.PutPixel( 61 + x,87 + y,221,221,221 );
gfx.PutPixel( 62 + x,87 + y,221,220,220 );
gfx.PutPixel( 63 + x,87 + y,222,229,229 );
gfx.PutPixel( 64 + x,87 + y,222,234,234 );
gfx.PutPixel( 65 + x,87 + y,222,233,233 );
gfx.PutPixel( 66 + x,87 + y,222,233,233 );
gfx.PutPixel( 67 + x,87 + y,221,224,224 );
gfx.PutPixel( 68 + x,87 + y,221,221,221 );
gfx.PutPixel( 69 + x,87 + y,221,221,221 );
gfx.PutPixel( 70 + x,87 + y,222,229,229 );
gfx.PutPixel( 71 + x,87 + y,218,181,181 );
gfx.PutPixel( 72 + x,87 + y,208,31,31 );
gfx.PutPixel( 73 + x,87 + y,208,33,33 );
gfx.PutPixel( 74 + x,87 + y,208,34,34 );
gfx.PutPixel( 75 + x,87 + y,208,27,27 );
gfx.PutPixel( 76 + x,87 + y,218,173,173 );
gfx.PutPixel( 77 + x,87 + y,222,230,230 );
gfx.PutPixel( 78 + x,87 + y,222,230,230 );
gfx.PutPixel( 79 + x,87 + y,218,173,173 );
gfx.PutPixel( 80 + x,87 + y,208,27,27 );
gfx.PutPixel( 81 + x,87 + y,208,34,34 );
gfx.PutPixel( 82 + x,87 + y,208,34,34 );
gfx.PutPixel( 83 + x,87 + y,208,34,34 );
gfx.PutPixel( 84 + x,87 + y,208,34,34 );
gfx.PutPixel( 85 + x,87 + y,208,34,34 );
gfx.PutPixel( 86 + x,87 + y,208,34,34 );
gfx.PutPixel( 87 + x,87 + y,208,30,30 );
gfx.PutPixel( 88 + x,87 + y,209,47,47 );
gfx.PutPixel( 89 + x,87 + y,220,208,208 );
gfx.PutPixel( 90 + x,87 + y,221,225,225 );
gfx.PutPixel( 91 + x,87 + y,222,233,233 );
gfx.PutPixel( 92 + x,87 + y,215,128,128 );
gfx.PutPixel( 93 + x,87 + y,207,18,18 );
gfx.PutPixel( 94 + x,87 + y,209,46,46 );
gfx.PutPixel( 95 + x,87 + y,220,204,204 );
gfx.PutPixel( 96 + x,87 + y,221,225,225 );
gfx.PutPixel( 97 + x,87 + y,221,222,222 );
gfx.PutPixel( 98 + x,87 + y,221,215,215 );
gfx.PutPixel( 99 + x,87 + y,221,222,222 );
gfx.PutPixel( 100 + x,87 + y,221,226,226 );
gfx.PutPixel( 101 + x,87 + y,219,199,199 );
gfx.PutPixel( 102 + x,87 + y,208,41,41 );
gfx.PutPixel( 103 + x,87 + y,207,19,19 );
gfx.PutPixel( 104 + x,87 + y,215,128,128 );
gfx.PutPixel( 105 + x,87 + y,222,233,233 );
gfx.PutPixel( 106 + x,87 + y,221,225,225 );
gfx.PutPixel( 107 + x,87 + y,220,208,208 );
gfx.PutPixel( 108 + x,87 + y,209,47,47 );
gfx.PutPixel( 109 + x,87 + y,208,30,30 );
gfx.PutPixel( 110 + x,87 + y,208,34,34 );
gfx.PutPixel( 111 + x,87 + y,208,34,34 );
gfx.PutPixel( 112 + x,87 + y,208,34,34 );
gfx.PutPixel( 113 + x,87 + y,208,34,34 );
gfx.PutPixel( 114 + x,87 + y,208,34,34 );
gfx.PutPixel( 115 + x,87 + y,208,34,34 );
gfx.PutPixel( 116 + x,87 + y,208,34,34 );
gfx.PutPixel( 117 + x,87 + y,208,34,34 );
gfx.PutPixel( 118 + x,87 + y,208,34,34 );
gfx.PutPixel( 119 + x,87 + y,208,34,34 );
gfx.PutPixel( 120 + x,87 + y,208,34,34 );
gfx.PutPixel( 121 + x,87 + y,208,34,34 );
gfx.PutPixel( 122 + x,87 + y,208,34,34 );
gfx.PutPixel( 123 + x,87 + y,208,34,34 );
gfx.PutPixel( 124 + x,87 + y,208,34,34 );
gfx.PutPixel( 125 + x,87 + y,208,34,34 );
gfx.PutPixel( 126 + x,87 + y,208,34,34 );
gfx.PutPixel( 127 + x,87 + y,208,34,34 );
gfx.PutPixel( 128 + x,87 + y,208,34,34 );
gfx.PutPixel( 129 + x,87 + y,208,34,34 );
gfx.PutPixel( 130 + x,87 + y,208,34,34 );
gfx.PutPixel( 131 + x,87 + y,208,34,34 );
gfx.PutPixel( 132 + x,87 + y,208,34,34 );
gfx.PutPixel( 133 + x,87 + y,208,34,34 );
gfx.PutPixel( 134 + x,87 + y,208,34,34 );
gfx.PutPixel( 135 + x,87 + y,208,34,34 );
gfx.PutPixel( 136 + x,87 + y,208,34,34 );
gfx.PutPixel( 137 + x,87 + y,208,34,34 );
gfx.PutPixel( 138 + x,87 + y,208,34,34 );
gfx.PutPixel( 139 + x,87 + y,208,34,34 );
gfx.PutPixel( 140 + x,87 + y,208,34,34 );
gfx.PutPixel( 141 + x,87 + y,208,34,34 );
gfx.PutPixel( 142 + x,87 + y,208,34,34 );
gfx.PutPixel( 143 + x,87 + y,208,34,34 );
gfx.PutPixel( 144 + x,87 + y,208,34,34 );
gfx.PutPixel( 145 + x,87 + y,208,34,34 );
gfx.PutPixel( 146 + x,87 + y,208,34,34 );
gfx.PutPixel( 147 + x,87 + y,208,34,34 );
gfx.PutPixel( 148 + x,87 + y,208,34,34 );
gfx.PutPixel( 149 + x,87 + y,208,34,34 );
gfx.PutPixel( 0 + x,88 + y,208,34,34 );
gfx.PutPixel( 1 + x,88 + y,208,34,34 );
gfx.PutPixel( 2 + x,88 + y,208,34,34 );
gfx.PutPixel( 3 + x,88 + y,208,34,34 );
gfx.PutPixel( 4 + x,88 + y,208,34,34 );
gfx.PutPixel( 5 + x,88 + y,208,34,34 );
gfx.PutPixel( 6 + x,88 + y,208,34,34 );
gfx.PutPixel( 7 + x,88 + y,208,34,34 );
gfx.PutPixel( 8 + x,88 + y,208,34,34 );
gfx.PutPixel( 9 + x,88 + y,208,34,34 );
gfx.PutPixel( 10 + x,88 + y,208,34,34 );
gfx.PutPixel( 11 + x,88 + y,208,34,34 );
gfx.PutPixel( 12 + x,88 + y,208,34,34 );
gfx.PutPixel( 13 + x,88 + y,208,34,34 );
gfx.PutPixel( 14 + x,88 + y,208,34,34 );
gfx.PutPixel( 15 + x,88 + y,208,34,34 );
gfx.PutPixel( 16 + x,88 + y,208,34,34 );
gfx.PutPixel( 17 + x,88 + y,208,34,34 );
gfx.PutPixel( 18 + x,88 + y,208,34,34 );
gfx.PutPixel( 19 + x,88 + y,208,34,34 );
gfx.PutPixel( 20 + x,88 + y,208,34,34 );
gfx.PutPixel( 21 + x,88 + y,208,34,34 );
gfx.PutPixel( 22 + x,88 + y,208,34,34 );
gfx.PutPixel( 23 + x,88 + y,208,34,34 );
gfx.PutPixel( 24 + x,88 + y,208,34,34 );
gfx.PutPixel( 25 + x,88 + y,208,34,34 );
gfx.PutPixel( 26 + x,88 + y,208,34,34 );
gfx.PutPixel( 27 + x,88 + y,208,34,34 );
gfx.PutPixel( 28 + x,88 + y,208,34,34 );
gfx.PutPixel( 29 + x,88 + y,208,34,34 );
gfx.PutPixel( 30 + x,88 + y,208,34,34 );
gfx.PutPixel( 31 + x,88 + y,208,34,34 );
gfx.PutPixel( 32 + x,88 + y,208,34,34 );
gfx.PutPixel( 33 + x,88 + y,208,34,34 );
gfx.PutPixel( 34 + x,88 + y,208,34,34 );
gfx.PutPixel( 35 + x,88 + y,208,34,34 );
gfx.PutPixel( 36 + x,88 + y,208,34,34 );
gfx.PutPixel( 37 + x,88 + y,208,34,34 );
gfx.PutPixel( 38 + x,88 + y,208,34,34 );
gfx.PutPixel( 39 + x,88 + y,208,34,34 );
gfx.PutPixel( 40 + x,88 + y,207,23,23 );
gfx.PutPixel( 41 + x,88 + y,215,132,132 );
gfx.PutPixel( 42 + x,88 + y,222,234,234 );
gfx.PutPixel( 43 + x,88 + y,221,221,221 );
gfx.PutPixel( 44 + x,88 + y,221,226,226 );
gfx.PutPixel( 45 + x,88 + y,220,203,203 );
gfx.PutPixel( 46 + x,88 + y,209,54,54 );
gfx.PutPixel( 47 + x,88 + y,207,21,21 );
gfx.PutPixel( 48 + x,88 + y,208,32,32 );
gfx.PutPixel( 49 + x,88 + y,208,34,34 );
gfx.PutPixel( 50 + x,88 + y,208,32,32 );
gfx.PutPixel( 51 + x,88 + y,207,22,22 );
gfx.PutPixel( 52 + x,88 + y,210,58,58 );
gfx.PutPixel( 53 + x,88 + y,212,85,85 );
gfx.PutPixel( 54 + x,88 + y,207,24,24 );
gfx.PutPixel( 55 + x,88 + y,208,32,32 );
gfx.PutPixel( 56 + x,88 + y,208,34,34 );
gfx.PutPixel( 57 + x,88 + y,207,22,22 );
gfx.PutPixel( 58 + x,88 + y,214,122,122 );
gfx.PutPixel( 59 + x,88 + y,222,233,233 );
gfx.PutPixel( 60 + x,88 + y,221,221,221 );
gfx.PutPixel( 61 + x,88 + y,221,222,222 );
gfx.PutPixel( 62 + x,88 + y,222,229,229 );
gfx.PutPixel( 63 + x,88 + y,222,230,230 );
gfx.PutPixel( 64 + x,88 + y,222,230,230 );
gfx.PutPixel( 65 + x,88 + y,222,230,230 );
gfx.PutPixel( 66 + x,88 + y,222,230,230 );
gfx.PutPixel( 67 + x,88 + y,222,230,230 );
gfx.PutPixel( 68 + x,88 + y,221,227,227 );
gfx.PutPixel( 69 + x,88 + y,221,221,221 );
gfx.PutPixel( 70 + x,88 + y,221,222,222 );
gfx.PutPixel( 71 + x,88 + y,222,227,227 );
gfx.PutPixel( 72 + x,88 + y,211,82,82 );
gfx.PutPixel( 73 + x,88 + y,207,25,25 );
gfx.PutPixel( 74 + x,88 + y,208,34,34 );
gfx.PutPixel( 75 + x,88 + y,208,27,27 );
gfx.PutPixel( 76 + x,88 + y,218,173,173 );
gfx.PutPixel( 77 + x,88 + y,222,230,230 );
gfx.PutPixel( 78 + x,88 + y,222,230,230 );
gfx.PutPixel( 79 + x,88 + y,218,171,171 );
gfx.PutPixel( 80 + x,88 + y,207,18,18 );
gfx.PutPixel( 81 + x,88 + y,207,25,25 );
gfx.PutPixel( 82 + x,88 + y,207,25,25 );
gfx.PutPixel( 83 + x,88 + y,207,25,25 );
gfx.PutPixel( 84 + x,88 + y,207,25,25 );
gfx.PutPixel( 85 + x,88 + y,207,25,25 );
gfx.PutPixel( 86 + x,88 + y,208,28,28 );
gfx.PutPixel( 87 + x,88 + y,208,30,30 );
gfx.PutPixel( 88 + x,88 + y,209,47,47 );
gfx.PutPixel( 89 + x,88 + y,220,208,208 );
gfx.PutPixel( 90 + x,88 + y,221,225,225 );
gfx.PutPixel( 91 + x,88 + y,222,233,233 );
gfx.PutPixel( 92 + x,88 + y,215,128,128 );
gfx.PutPixel( 93 + x,88 + y,207,22,22 );
gfx.PutPixel( 94 + x,88 + y,207,24,24 );
gfx.PutPixel( 95 + x,88 + y,217,154,154 );
gfx.PutPixel( 96 + x,88 + y,222,232,232 );
gfx.PutPixel( 97 + x,88 + y,221,221,221 );
gfx.PutPixel( 98 + x,88 + y,221,223,223 );
gfx.PutPixel( 99 + x,88 + y,221,221,221 );
gfx.PutPixel( 100 + x,88 + y,222,232,232 );
gfx.PutPixel( 101 + x,88 + y,216,142,142 );
gfx.PutPixel( 102 + x,88 + y,207,23,23 );
gfx.PutPixel( 103 + x,88 + y,207,22,22 );
gfx.PutPixel( 104 + x,88 + y,215,128,128 );
gfx.PutPixel( 105 + x,88 + y,222,233,233 );
gfx.PutPixel( 106 + x,88 + y,221,225,225 );
gfx.PutPixel( 107 + x,88 + y,220,208,208 );
gfx.PutPixel( 108 + x,88 + y,209,47,47 );
gfx.PutPixel( 109 + x,88 + y,208,30,30 );
gfx.PutPixel( 110 + x,88 + y,208,34,34 );
gfx.PutPixel( 111 + x,88 + y,208,34,34 );
gfx.PutPixel( 112 + x,88 + y,208,34,34 );
gfx.PutPixel( 113 + x,88 + y,208,34,34 );
gfx.PutPixel( 114 + x,88 + y,208,34,34 );
gfx.PutPixel( 115 + x,88 + y,208,34,34 );
gfx.PutPixel( 116 + x,88 + y,208,34,34 );
gfx.PutPixel( 117 + x,88 + y,208,34,34 );
gfx.PutPixel( 118 + x,88 + y,208,34,34 );
gfx.PutPixel( 119 + x,88 + y,208,34,34 );
gfx.PutPixel( 120 + x,88 + y,208,34,34 );
gfx.PutPixel( 121 + x,88 + y,208,34,34 );
gfx.PutPixel( 122 + x,88 + y,208,34,34 );
gfx.PutPixel( 123 + x,88 + y,208,34,34 );
gfx.PutPixel( 124 + x,88 + y,208,34,34 );
gfx.PutPixel( 125 + x,88 + y,208,34,34 );
gfx.PutPixel( 126 + x,88 + y,208,34,34 );
gfx.PutPixel( 127 + x,88 + y,208,34,34 );
gfx.PutPixel( 128 + x,88 + y,208,34,34 );
gfx.PutPixel( 129 + x,88 + y,208,34,34 );
gfx.PutPixel( 130 + x,88 + y,208,34,34 );
gfx.PutPixel( 131 + x,88 + y,208,34,34 );
gfx.PutPixel( 132 + x,88 + y,208,34,34 );
gfx.PutPixel( 133 + x,88 + y,208,34,34 );
gfx.PutPixel( 134 + x,88 + y,208,34,34 );
gfx.PutPixel( 135 + x,88 + y,208,34,34 );
gfx.PutPixel( 136 + x,88 + y,208,34,34 );
gfx.PutPixel( 137 + x,88 + y,208,34,34 );
gfx.PutPixel( 138 + x,88 + y,208,34,34 );
gfx.PutPixel( 139 + x,88 + y,208,34,34 );
gfx.PutPixel( 140 + x,88 + y,208,34,34 );
gfx.PutPixel( 141 + x,88 + y,208,34,34 );
gfx.PutPixel( 142 + x,88 + y,208,34,34 );
gfx.PutPixel( 143 + x,88 + y,208,34,34 );
gfx.PutPixel( 144 + x,88 + y,208,34,34 );
gfx.PutPixel( 145 + x,88 + y,208,34,34 );
gfx.PutPixel( 146 + x,88 + y,208,34,34 );
gfx.PutPixel( 147 + x,88 + y,208,34,34 );
gfx.PutPixel( 148 + x,88 + y,208,34,34 );
gfx.PutPixel( 149 + x,88 + y,208,34,34 );
gfx.PutPixel( 0 + x,89 + y,208,34,34 );
gfx.PutPixel( 1 + x,89 + y,208,34,34 );
gfx.PutPixel( 2 + x,89 + y,208,34,34 );
gfx.PutPixel( 3 + x,89 + y,208,34,34 );
gfx.PutPixel( 4 + x,89 + y,208,34,34 );
gfx.PutPixel( 5 + x,89 + y,208,34,34 );
gfx.PutPixel( 6 + x,89 + y,208,34,34 );
gfx.PutPixel( 7 + x,89 + y,208,34,34 );
gfx.PutPixel( 8 + x,89 + y,208,34,34 );
gfx.PutPixel( 9 + x,89 + y,208,34,34 );
gfx.PutPixel( 10 + x,89 + y,208,34,34 );
gfx.PutPixel( 11 + x,89 + y,208,34,34 );
gfx.PutPixel( 12 + x,89 + y,208,34,34 );
gfx.PutPixel( 13 + x,89 + y,208,34,34 );
gfx.PutPixel( 14 + x,89 + y,208,34,34 );
gfx.PutPixel( 15 + x,89 + y,208,34,34 );
gfx.PutPixel( 16 + x,89 + y,208,34,34 );
gfx.PutPixel( 17 + x,89 + y,208,34,34 );
gfx.PutPixel( 18 + x,89 + y,208,34,34 );
gfx.PutPixel( 19 + x,89 + y,208,34,34 );
gfx.PutPixel( 20 + x,89 + y,208,34,34 );
gfx.PutPixel( 21 + x,89 + y,208,34,34 );
gfx.PutPixel( 22 + x,89 + y,208,34,34 );
gfx.PutPixel( 23 + x,89 + y,208,34,34 );
gfx.PutPixel( 24 + x,89 + y,208,34,34 );
gfx.PutPixel( 25 + x,89 + y,208,34,34 );
gfx.PutPixel( 26 + x,89 + y,208,34,34 );
gfx.PutPixel( 27 + x,89 + y,208,34,34 );
gfx.PutPixel( 28 + x,89 + y,208,34,34 );
gfx.PutPixel( 29 + x,89 + y,208,34,34 );
gfx.PutPixel( 30 + x,89 + y,208,34,34 );
gfx.PutPixel( 31 + x,89 + y,208,34,34 );
gfx.PutPixel( 32 + x,89 + y,208,34,34 );
gfx.PutPixel( 33 + x,89 + y,208,34,34 );
gfx.PutPixel( 34 + x,89 + y,208,34,34 );
gfx.PutPixel( 35 + x,89 + y,208,34,34 );
gfx.PutPixel( 36 + x,89 + y,208,34,34 );
gfx.PutPixel( 37 + x,89 + y,208,34,34 );
gfx.PutPixel( 38 + x,89 + y,208,34,34 );
gfx.PutPixel( 39 + x,89 + y,208,34,34 );
gfx.PutPixel( 40 + x,89 + y,208,29,29 );
gfx.PutPixel( 41 + x,89 + y,209,52,52 );
gfx.PutPixel( 42 + x,89 + y,220,209,209 );
gfx.PutPixel( 43 + x,89 + y,221,227,227 );
gfx.PutPixel( 44 + x,89 + y,221,220,220 );
gfx.PutPixel( 45 + x,89 + y,222,229,229 );
gfx.PutPixel( 46 + x,89 + y,219,196,196 );
gfx.PutPixel( 47 + x,89 + y,211,84,84 );
gfx.PutPixel( 48 + x,89 + y,208,35,35 );
gfx.PutPixel( 49 + x,89 + y,208,27,27 );
gfx.PutPixel( 50 + x,89 + y,208,33,33 );
gfx.PutPixel( 51 + x,89 + y,211,76,76 );
gfx.PutPixel( 52 + x,89 + y,219,193,193 );
gfx.PutPixel( 53 + x,89 + y,222,229,229 );
gfx.PutPixel( 54 + x,89 + y,214,126,126 );
gfx.PutPixel( 55 + x,89 + y,208,31,31 );
gfx.PutPixel( 56 + x,89 + y,208,28,28 );
gfx.PutPixel( 57 + x,89 + y,208,39,39 );
gfx.PutPixel( 58 + x,89 + y,219,195,195 );
gfx.PutPixel( 59 + x,89 + y,221,227,227 );
gfx.PutPixel( 60 + x,89 + y,221,222,222 );
gfx.PutPixel( 61 + x,89 + y,221,218,218 );
gfx.PutPixel( 62 + x,89 + y,218,176,176 );
gfx.PutPixel( 63 + x,89 + y,218,172,172 );
gfx.PutPixel( 64 + x,89 + y,218,173,173 );
gfx.PutPixel( 65 + x,89 + y,218,173,173 );
gfx.PutPixel( 66 + x,89 + y,218,173,173 );
gfx.PutPixel( 67 + x,89 + y,217,170,170 );
gfx.PutPixel( 68 + x,89 + y,219,189,189 );
gfx.PutPixel( 69 + x,89 + y,221,225,225 );
gfx.PutPixel( 70 + x,89 + y,221,221,221 );
gfx.PutPixel( 71 + x,89 + y,222,232,232 );
gfx.PutPixel( 72 + x,89 + y,217,160,160 );
gfx.PutPixel( 73 + x,89 + y,207,25,25 );
gfx.PutPixel( 74 + x,89 + y,208,33,33 );
gfx.PutPixel( 75 + x,89 + y,208,27,27 );
gfx.PutPixel( 76 + x,89 + y,218,173,173 );
gfx.PutPixel( 77 + x,89 + y,222,230,230 );
gfx.PutPixel( 78 + x,89 + y,222,228,228 );
gfx.PutPixel( 79 + x,89 + y,219,185,185 );
gfx.PutPixel( 80 + x,89 + y,211,77,77 );
gfx.PutPixel( 81 + x,89 + y,211,82,82 );
gfx.PutPixel( 82 + x,89 + y,211,82,82 );
gfx.PutPixel( 83 + x,89 + y,211,82,82 );
gfx.PutPixel( 84 + x,89 + y,211,82,82 );
gfx.PutPixel( 85 + x,89 + y,212,85,85 );
gfx.PutPixel( 86 + x,89 + y,210,67,67 );
gfx.PutPixel( 87 + x,89 + y,208,28,28 );
gfx.PutPixel( 88 + x,89 + y,209,47,47 );
gfx.PutPixel( 89 + x,89 + y,220,208,208 );
gfx.PutPixel( 90 + x,89 + y,221,225,225 );
gfx.PutPixel( 91 + x,89 + y,222,233,233 );
gfx.PutPixel( 92 + x,89 + y,215,128,128 );
gfx.PutPixel( 93 + x,89 + y,207,22,22 );
gfx.PutPixel( 94 + x,89 + y,207,24,24 );
gfx.PutPixel( 95 + x,89 + y,212,92,92 );
gfx.PutPixel( 96 + x,89 + y,222,230,230 );
gfx.PutPixel( 97 + x,89 + y,221,221,221 );
gfx.PutPixel( 98 + x,89 + y,221,221,221 );
gfx.PutPixel( 99 + x,89 + y,221,222,222 );
gfx.PutPixel( 100 + x,89 + y,221,226,226 );
gfx.PutPixel( 101 + x,89 + y,211,79,79 );
gfx.PutPixel( 102 + x,89 + y,207,26,26 );
gfx.PutPixel( 103 + x,89 + y,207,22,22 );
gfx.PutPixel( 104 + x,89 + y,215,128,128 );
gfx.PutPixel( 105 + x,89 + y,222,233,233 );
gfx.PutPixel( 106 + x,89 + y,221,225,225 );
gfx.PutPixel( 107 + x,89 + y,220,208,208 );
gfx.PutPixel( 108 + x,89 + y,209,47,47 );
gfx.PutPixel( 109 + x,89 + y,208,30,30 );
gfx.PutPixel( 110 + x,89 + y,208,34,34 );
gfx.PutPixel( 111 + x,89 + y,208,34,34 );
gfx.PutPixel( 112 + x,89 + y,208,34,34 );
gfx.PutPixel( 113 + x,89 + y,208,34,34 );
gfx.PutPixel( 114 + x,89 + y,208,34,34 );
gfx.PutPixel( 115 + x,89 + y,208,34,34 );
gfx.PutPixel( 116 + x,89 + y,208,34,34 );
gfx.PutPixel( 117 + x,89 + y,208,34,34 );
gfx.PutPixel( 118 + x,89 + y,208,34,34 );
gfx.PutPixel( 119 + x,89 + y,208,34,34 );
gfx.PutPixel( 120 + x,89 + y,208,34,34 );
gfx.PutPixel( 121 + x,89 + y,208,34,34 );
gfx.PutPixel( 122 + x,89 + y,208,34,34 );
gfx.PutPixel( 123 + x,89 + y,208,34,34 );
gfx.PutPixel( 124 + x,89 + y,208,34,34 );
gfx.PutPixel( 125 + x,89 + y,208,34,34 );
gfx.PutPixel( 126 + x,89 + y,208,34,34 );
gfx.PutPixel( 127 + x,89 + y,208,34,34 );
gfx.PutPixel( 128 + x,89 + y,208,34,34 );
gfx.PutPixel( 129 + x,89 + y,208,34,34 );
gfx.PutPixel( 130 + x,89 + y,208,34,34 );
gfx.PutPixel( 131 + x,89 + y,208,34,34 );
gfx.PutPixel( 132 + x,89 + y,208,34,34 );
gfx.PutPixel( 133 + x,89 + y,208,34,34 );
gfx.PutPixel( 134 + x,89 + y,208,34,34 );
gfx.PutPixel( 135 + x,89 + y,208,34,34 );
gfx.PutPixel( 136 + x,89 + y,208,34,34 );
gfx.PutPixel( 137 + x,89 + y,208,34,34 );
gfx.PutPixel( 138 + x,89 + y,208,34,34 );
gfx.PutPixel( 139 + x,89 + y,208,34,34 );
gfx.PutPixel( 140 + x,89 + y,208,34,34 );
gfx.PutPixel( 141 + x,89 + y,208,34,34 );
gfx.PutPixel( 142 + x,89 + y,208,34,34 );
gfx.PutPixel( 143 + x,89 + y,208,34,34 );
gfx.PutPixel( 144 + x,89 + y,208,34,34 );
gfx.PutPixel( 145 + x,89 + y,208,34,34 );
gfx.PutPixel( 146 + x,89 + y,208,34,34 );
gfx.PutPixel( 147 + x,89 + y,208,34,34 );
gfx.PutPixel( 148 + x,89 + y,208,34,34 );
gfx.PutPixel( 149 + x,89 + y,208,34,34 );
gfx.PutPixel( 0 + x,90 + y,208,34,34 );
gfx.PutPixel( 1 + x,90 + y,208,34,34 );
gfx.PutPixel( 2 + x,90 + y,208,34,34 );
gfx.PutPixel( 3 + x,90 + y,208,34,34 );
gfx.PutPixel( 4 + x,90 + y,208,34,34 );
gfx.PutPixel( 5 + x,90 + y,208,34,34 );
gfx.PutPixel( 6 + x,90 + y,208,34,34 );
gfx.PutPixel( 7 + x,90 + y,208,34,34 );
gfx.PutPixel( 8 + x,90 + y,208,34,34 );
gfx.PutPixel( 9 + x,90 + y,208,34,34 );
gfx.PutPixel( 10 + x,90 + y,208,34,34 );
gfx.PutPixel( 11 + x,90 + y,208,34,34 );
gfx.PutPixel( 12 + x,90 + y,208,34,34 );
gfx.PutPixel( 13 + x,90 + y,208,34,34 );
gfx.PutPixel( 14 + x,90 + y,208,34,34 );
gfx.PutPixel( 15 + x,90 + y,208,34,34 );
gfx.PutPixel( 16 + x,90 + y,208,34,34 );
gfx.PutPixel( 17 + x,90 + y,208,34,34 );
gfx.PutPixel( 18 + x,90 + y,208,34,34 );
gfx.PutPixel( 19 + x,90 + y,208,34,34 );
gfx.PutPixel( 20 + x,90 + y,208,34,34 );
gfx.PutPixel( 21 + x,90 + y,208,34,34 );
gfx.PutPixel( 22 + x,90 + y,208,34,34 );
gfx.PutPixel( 23 + x,90 + y,208,34,34 );
gfx.PutPixel( 24 + x,90 + y,208,34,34 );
gfx.PutPixel( 25 + x,90 + y,208,34,34 );
gfx.PutPixel( 26 + x,90 + y,208,34,34 );
gfx.PutPixel( 27 + x,90 + y,208,34,34 );
gfx.PutPixel( 28 + x,90 + y,208,34,34 );
gfx.PutPixel( 29 + x,90 + y,208,34,34 );
gfx.PutPixel( 30 + x,90 + y,208,34,34 );
gfx.PutPixel( 31 + x,90 + y,208,34,34 );
gfx.PutPixel( 32 + x,90 + y,208,34,34 );
gfx.PutPixel( 33 + x,90 + y,208,34,34 );
gfx.PutPixel( 34 + x,90 + y,208,34,34 );
gfx.PutPixel( 35 + x,90 + y,208,34,34 );
gfx.PutPixel( 36 + x,90 + y,208,34,34 );
gfx.PutPixel( 37 + x,90 + y,208,34,34 );
gfx.PutPixel( 38 + x,90 + y,208,34,34 );
gfx.PutPixel( 39 + x,90 + y,208,34,34 );
gfx.PutPixel( 40 + x,90 + y,208,34,34 );
gfx.PutPixel( 41 + x,90 + y,207,24,24 );
gfx.PutPixel( 42 + x,90 + y,212,98,98 );
gfx.PutPixel( 43 + x,90 + y,222,229,229 );
gfx.PutPixel( 44 + x,90 + y,221,226,226 );
gfx.PutPixel( 45 + x,90 + y,221,220,220 );
gfx.PutPixel( 46 + x,90 + y,221,227,227 );
gfx.PutPixel( 47 + x,90 + y,221,225,225 );
gfx.PutPixel( 48 + x,90 + y,219,191,191 );
gfx.PutPixel( 49 + x,90 + y,218,172,172 );
gfx.PutPixel( 50 + x,90 + y,219,187,187 );
gfx.PutPixel( 51 + x,90 + y,221,222,222 );
gfx.PutPixel( 52 + x,90 + y,221,227,227 );
gfx.PutPixel( 53 + x,90 + y,221,223,223 );
gfx.PutPixel( 54 + x,90 + y,222,235,235 );
gfx.PutPixel( 55 + x,90 + y,217,170,170 );
gfx.PutPixel( 56 + x,90 + y,208,28,28 );
gfx.PutPixel( 57 + x,90 + y,212,95,95 );
gfx.PutPixel( 58 + x,90 + y,222,231,231 );
gfx.PutPixel( 59 + x,90 + y,221,221,221 );
gfx.PutPixel( 60 + x,90 + y,222,230,230 );
gfx.PutPixel( 61 + x,90 + y,217,167,167 );
gfx.PutPixel( 62 + x,90 + y,207,22,22 );
gfx.PutPixel( 63 + x,90 + y,208,26,26 );
gfx.PutPixel( 64 + x,90 + y,208,27,27 );
gfx.PutPixel( 65 + x,90 + y,208,27,27 );
gfx.PutPixel( 66 + x,90 + y,208,27,27 );
gfx.PutPixel( 67 + x,90 + y,207,22,22 );
gfx.PutPixel( 68 + x,90 + y,209,55,55 );
gfx.PutPixel( 69 + x,90 + y,220,214,214 );
gfx.PutPixel( 70 + x,90 + y,221,224,224 );
gfx.PutPixel( 71 + x,90 + y,221,223,223 );
gfx.PutPixel( 72 + x,90 + y,221,218,218 );
gfx.PutPixel( 73 + x,90 + y,210,62,62 );
gfx.PutPixel( 74 + x,90 + y,207,28,28 );
gfx.PutPixel( 75 + x,90 + y,208,27,27 );
gfx.PutPixel( 76 + x,90 + y,218,173,173 );
gfx.PutPixel( 77 + x,90 + y,222,230,230 );
gfx.PutPixel( 78 + x,90 + y,221,221,221 );
gfx.PutPixel( 79 + x,90 + y,221,223,223 );
gfx.PutPixel( 80 + x,90 + y,221,228,228 );
gfx.PutPixel( 81 + x,90 + y,221,228,228 );
gfx.PutPixel( 82 + x,90 + y,221,228,228 );
gfx.PutPixel( 83 + x,90 + y,221,228,228 );
gfx.PutPixel( 84 + x,90 + y,221,228,228 );
gfx.PutPixel( 85 + x,90 + y,223,238,238 );
gfx.PutPixel( 86 + x,90 + y,217,166,166 );
gfx.PutPixel( 87 + x,90 + y,207,22,22 );
gfx.PutPixel( 88 + x,90 + y,209,47,47 );
gfx.PutPixel( 89 + x,90 + y,220,208,208 );
gfx.PutPixel( 90 + x,90 + y,221,225,225 );
gfx.PutPixel( 91 + x,90 + y,222,233,233 );
gfx.PutPixel( 92 + x,90 + y,215,128,128 );
gfx.PutPixel( 93 + x,90 + y,207,22,22 );
gfx.PutPixel( 94 + x,90 + y,208,31,31 );
gfx.PutPixel( 95 + x,90 + y,209,44,44 );
gfx.PutPixel( 96 + x,90 + y,220,203,203 );
gfx.PutPixel( 97 + x,90 + y,221,226,226 );
gfx.PutPixel( 98 + x,90 + y,221,221,221 );
gfx.PutPixel( 99 + x,90 + y,221,227,227 );
gfx.PutPixel( 100 + x,90 + y,219,191,191 );
gfx.PutPixel( 101 + x,90 + y,208,36,36 );
gfx.PutPixel( 102 + x,90 + y,208,32,32 );
gfx.PutPixel( 103 + x,90 + y,207,22,22 );
gfx.PutPixel( 104 + x,90 + y,215,128,128 );
gfx.PutPixel( 105 + x,90 + y,222,233,233 );
gfx.PutPixel( 106 + x,90 + y,221,225,225 );
gfx.PutPixel( 107 + x,90 + y,220,208,208 );
gfx.PutPixel( 108 + x,90 + y,209,47,47 );
gfx.PutPixel( 109 + x,90 + y,208,30,30 );
gfx.PutPixel( 110 + x,90 + y,208,34,34 );
gfx.PutPixel( 111 + x,90 + y,208,34,34 );
gfx.PutPixel( 112 + x,90 + y,208,34,34 );
gfx.PutPixel( 113 + x,90 + y,208,34,34 );
gfx.PutPixel( 114 + x,90 + y,208,34,34 );
gfx.PutPixel( 115 + x,90 + y,208,34,34 );
gfx.PutPixel( 116 + x,90 + y,208,34,34 );
gfx.PutPixel( 117 + x,90 + y,208,34,34 );
gfx.PutPixel( 118 + x,90 + y,208,34,34 );
gfx.PutPixel( 119 + x,90 + y,208,34,34 );
gfx.PutPixel( 120 + x,90 + y,208,34,34 );
gfx.PutPixel( 121 + x,90 + y,208,34,34 );
gfx.PutPixel( 122 + x,90 + y,208,34,34 );
gfx.PutPixel( 123 + x,90 + y,208,34,34 );
gfx.PutPixel( 124 + x,90 + y,208,34,34 );
gfx.PutPixel( 125 + x,90 + y,208,34,34 );
gfx.PutPixel( 126 + x,90 + y,208,34,34 );
gfx.PutPixel( 127 + x,90 + y,208,34,34 );
gfx.PutPixel( 128 + x,90 + y,208,34,34 );
gfx.PutPixel( 129 + x,90 + y,208,34,34 );
gfx.PutPixel( 130 + x,90 + y,208,34,34 );
gfx.PutPixel( 131 + x,90 + y,208,34,34 );
gfx.PutPixel( 132 + x,90 + y,208,34,34 );
gfx.PutPixel( 133 + x,90 + y,208,34,34 );
gfx.PutPixel( 134 + x,90 + y,208,34,34 );
gfx.PutPixel( 135 + x,90 + y,208,34,34 );
gfx.PutPixel( 136 + x,90 + y,208,34,34 );
gfx.PutPixel( 137 + x,90 + y,208,34,34 );
gfx.PutPixel( 138 + x,90 + y,208,34,34 );
gfx.PutPixel( 139 + x,90 + y,208,34,34 );
gfx.PutPixel( 140 + x,90 + y,208,34,34 );
gfx.PutPixel( 141 + x,90 + y,208,34,34 );
gfx.PutPixel( 142 + x,90 + y,208,34,34 );
gfx.PutPixel( 143 + x,90 + y,208,34,34 );
gfx.PutPixel( 144 + x,90 + y,208,34,34 );
gfx.PutPixel( 145 + x,90 + y,208,34,34 );
gfx.PutPixel( 146 + x,90 + y,208,34,34 );
gfx.PutPixel( 147 + x,90 + y,208,34,34 );
gfx.PutPixel( 148 + x,90 + y,208,34,34 );
gfx.PutPixel( 149 + x,90 + y,208,34,34 );
gfx.PutPixel( 0 + x,91 + y,208,34,34 );
gfx.PutPixel( 1 + x,91 + y,208,34,34 );
gfx.PutPixel( 2 + x,91 + y,208,34,34 );
gfx.PutPixel( 3 + x,91 + y,208,34,34 );
gfx.PutPixel( 4 + x,91 + y,208,34,34 );
gfx.PutPixel( 5 + x,91 + y,208,34,34 );
gfx.PutPixel( 6 + x,91 + y,208,34,34 );
gfx.PutPixel( 7 + x,91 + y,208,34,34 );
gfx.PutPixel( 8 + x,91 + y,208,34,34 );
gfx.PutPixel( 9 + x,91 + y,208,34,34 );
gfx.PutPixel( 10 + x,91 + y,208,34,34 );
gfx.PutPixel( 11 + x,91 + y,208,34,34 );
gfx.PutPixel( 12 + x,91 + y,208,34,34 );
gfx.PutPixel( 13 + x,91 + y,208,34,34 );
gfx.PutPixel( 14 + x,91 + y,208,34,34 );
gfx.PutPixel( 15 + x,91 + y,208,34,34 );
gfx.PutPixel( 16 + x,91 + y,208,34,34 );
gfx.PutPixel( 17 + x,91 + y,208,34,34 );
gfx.PutPixel( 18 + x,91 + y,208,34,34 );
gfx.PutPixel( 19 + x,91 + y,208,34,34 );
gfx.PutPixel( 20 + x,91 + y,208,34,34 );
gfx.PutPixel( 21 + x,91 + y,208,34,34 );
gfx.PutPixel( 22 + x,91 + y,208,34,34 );
gfx.PutPixel( 23 + x,91 + y,208,34,34 );
gfx.PutPixel( 24 + x,91 + y,208,34,34 );
gfx.PutPixel( 25 + x,91 + y,208,34,34 );
gfx.PutPixel( 26 + x,91 + y,208,34,34 );
gfx.PutPixel( 27 + x,91 + y,208,34,34 );
gfx.PutPixel( 28 + x,91 + y,208,34,34 );
gfx.PutPixel( 29 + x,91 + y,208,34,34 );
gfx.PutPixel( 30 + x,91 + y,208,34,34 );
gfx.PutPixel( 31 + x,91 + y,208,34,34 );
gfx.PutPixel( 32 + x,91 + y,208,34,34 );
gfx.PutPixel( 33 + x,91 + y,208,34,34 );
gfx.PutPixel( 34 + x,91 + y,208,34,34 );
gfx.PutPixel( 35 + x,91 + y,208,34,34 );
gfx.PutPixel( 36 + x,91 + y,208,34,34 );
gfx.PutPixel( 37 + x,91 + y,208,34,34 );
gfx.PutPixel( 38 + x,91 + y,208,34,34 );
gfx.PutPixel( 39 + x,91 + y,208,34,34 );
gfx.PutPixel( 40 + x,91 + y,208,34,34 );
gfx.PutPixel( 41 + x,91 + y,208,34,34 );
gfx.PutPixel( 42 + x,91 + y,207,24,24 );
gfx.PutPixel( 43 + x,91 + y,213,107,107 );
gfx.PutPixel( 44 + x,91 + y,221,221,221 );
gfx.PutPixel( 45 + x,91 + y,222,232,232 );
gfx.PutPixel( 46 + x,91 + y,221,222,222 );
gfx.PutPixel( 47 + x,91 + y,221,222,222 );
gfx.PutPixel( 48 + x,91 + y,221,227,227 );
gfx.PutPixel( 49 + x,91 + y,222,230,230 );
gfx.PutPixel( 50 + x,91 + y,221,228,228 );
gfx.PutPixel( 51 + x,91 + y,221,222,222 );
gfx.PutPixel( 52 + x,91 + y,221,221,221 );
gfx.PutPixel( 53 + x,91 + y,221,226,226 );
gfx.PutPixel( 54 + x,91 + y,222,234,234 );
gfx.PutPixel( 55 + x,91 + y,216,141,141 );
gfx.PutPixel( 56 + x,91 + y,208,27,27 );
gfx.PutPixel( 57 + x,91 + y,218,175,175 );
gfx.PutPixel( 58 + x,91 + y,222,230,230 );
gfx.PutPixel( 59 + x,91 + y,221,222,222 );
gfx.PutPixel( 60 + x,91 + y,222,230,230 );
gfx.PutPixel( 61 + x,91 + y,212,93,93 );
gfx.PutPixel( 62 + x,91 + y,207,23,23 );
gfx.PutPixel( 63 + x,91 + y,208,34,34 );
gfx.PutPixel( 64 + x,91 + y,208,34,34 );
gfx.PutPixel( 65 + x,91 + y,208,34,34 );
gfx.PutPixel( 66 + x,91 + y,208,34,34 );
gfx.PutPixel( 67 + x,91 + y,208,33,33 );
gfx.PutPixel( 68 + x,91 + y,207,24,24 );
gfx.PutPixel( 69 + x,91 + y,216,154,154 );
gfx.PutPixel( 70 + x,91 + y,222,232,232 );
gfx.PutPixel( 71 + x,91 + y,221,221,221 );
gfx.PutPixel( 72 + x,91 + y,222,234,234 );
gfx.PutPixel( 73 + x,91 + y,215,137,137 );
gfx.PutPixel( 74 + x,91 + y,207,22,22 );
gfx.PutPixel( 75 + x,91 + y,208,27,27 );
gfx.PutPixel( 76 + x,91 + y,218,173,173 );
gfx.PutPixel( 77 + x,91 + y,222,231,231 );
gfx.PutPixel( 78 + x,91 + y,221,221,221 );
gfx.PutPixel( 79 + x,91 + y,221,222,222 );
gfx.PutPixel( 80 + x,91 + y,221,222,222 );
gfx.PutPixel( 81 + x,91 + y,221,222,222 );
gfx.PutPixel( 82 + x,91 + y,221,222,222 );
gfx.PutPixel( 83 + x,91 + y,221,222,222 );
gfx.PutPixel( 84 + x,91 + y,221,222,222 );
gfx.PutPixel( 85 + x,91 + y,222,232,232 );
gfx.PutPixel( 86 + x,91 + y,217,162,162 );
gfx.PutPixel( 87 + x,91 + y,207,22,22 );
gfx.PutPixel( 88 + x,91 + y,209,47,47 );
gfx.PutPixel( 89 + x,91 + y,220,208,208 );
gfx.PutPixel( 90 + x,91 + y,221,225,225 );
gfx.PutPixel( 91 + x,91 + y,222,234,234 );
gfx.PutPixel( 92 + x,91 + y,215,128,128 );
gfx.PutPixel( 93 + x,91 + y,207,22,22 );
gfx.PutPixel( 94 + x,91 + y,208,34,34 );
gfx.PutPixel( 95 + x,91 + y,207,24,24 );
gfx.PutPixel( 96 + x,91 + y,216,150,150 );
gfx.PutPixel( 97 + x,91 + y,222,233,233 );
gfx.PutPixel( 98 + x,91 + y,221,221,221 );
gfx.PutPixel( 99 + x,91 + y,222,233,233 );
gfx.PutPixel( 100 + x,91 + y,214,132,132 );
gfx.PutPixel( 101 + x,91 + y,207,22,22 );
gfx.PutPixel( 102 + x,91 + y,208,34,34 );
gfx.PutPixel( 103 + x,91 + y,207,22,22 );
gfx.PutPixel( 104 + x,91 + y,215,128,128 );
gfx.PutPixel( 105 + x,91 + y,222,234,234 );
gfx.PutPixel( 106 + x,91 + y,221,225,225 );
gfx.PutPixel( 107 + x,91 + y,220,208,208 );
gfx.PutPixel( 108 + x,91 + y,209,47,47 );
gfx.PutPixel( 109 + x,91 + y,208,30,30 );
gfx.PutPixel( 110 + x,91 + y,208,34,34 );
gfx.PutPixel( 111 + x,91 + y,208,34,34 );
gfx.PutPixel( 112 + x,91 + y,208,34,34 );
gfx.PutPixel( 113 + x,91 + y,208,34,34 );
gfx.PutPixel( 114 + x,91 + y,208,34,34 );
gfx.PutPixel( 115 + x,91 + y,208,34,34 );
gfx.PutPixel( 116 + x,91 + y,208,34,34 );
gfx.PutPixel( 117 + x,91 + y,208,34,34 );
gfx.PutPixel( 118 + x,91 + y,208,34,34 );
gfx.PutPixel( 119 + x,91 + y,208,34,34 );
gfx.PutPixel( 120 + x,91 + y,208,34,34 );
gfx.PutPixel( 121 + x,91 + y,208,34,34 );
gfx.PutPixel( 122 + x,91 + y,208,34,34 );
gfx.PutPixel( 123 + x,91 + y,208,34,34 );
gfx.PutPixel( 124 + x,91 + y,208,34,34 );
gfx.PutPixel( 125 + x,91 + y,208,34,34 );
gfx.PutPixel( 126 + x,91 + y,208,34,34 );
gfx.PutPixel( 127 + x,91 + y,208,34,34 );
gfx.PutPixel( 128 + x,91 + y,208,34,34 );
gfx.PutPixel( 129 + x,91 + y,208,34,34 );
gfx.PutPixel( 130 + x,91 + y,208,34,34 );
gfx.PutPixel( 131 + x,91 + y,208,34,34 );
gfx.PutPixel( 132 + x,91 + y,208,34,34 );
gfx.PutPixel( 133 + x,91 + y,208,34,34 );
gfx.PutPixel( 134 + x,91 + y,208,34,34 );
gfx.PutPixel( 135 + x,91 + y,208,34,34 );
gfx.PutPixel( 136 + x,91 + y,208,34,34 );
gfx.PutPixel( 137 + x,91 + y,208,34,34 );
gfx.PutPixel( 138 + x,91 + y,208,34,34 );
gfx.PutPixel( 139 + x,91 + y,208,34,34 );
gfx.PutPixel( 140 + x,91 + y,208,34,34 );
gfx.PutPixel( 141 + x,91 + y,208,34,34 );
gfx.PutPixel( 142 + x,91 + y,208,34,34 );
gfx.PutPixel( 143 + x,91 + y,208,34,34 );
gfx.PutPixel( 144 + x,91 + y,208,34,34 );
gfx.PutPixel( 145 + x,91 + y,208,34,34 );
gfx.PutPixel( 146 + x,91 + y,208,34,34 );
gfx.PutPixel( 147 + x,91 + y,208,34,34 );
gfx.PutPixel( 148 + x,91 + y,208,34,34 );
gfx.PutPixel( 149 + x,91 + y,208,34,34 );
gfx.PutPixel( 0 + x,92 + y,208,34,34 );
gfx.PutPixel( 1 + x,92 + y,208,34,34 );
gfx.PutPixel( 2 + x,92 + y,208,34,34 );
gfx.PutPixel( 3 + x,92 + y,208,34,34 );
gfx.PutPixel( 4 + x,92 + y,208,34,34 );
gfx.PutPixel( 5 + x,92 + y,208,34,34 );
gfx.PutPixel( 6 + x,92 + y,208,34,34 );
gfx.PutPixel( 7 + x,92 + y,208,34,34 );
gfx.PutPixel( 8 + x,92 + y,208,34,34 );
gfx.PutPixel( 9 + x,92 + y,208,34,34 );
gfx.PutPixel( 10 + x,92 + y,208,34,34 );
gfx.PutPixel( 11 + x,92 + y,208,34,34 );
gfx.PutPixel( 12 + x,92 + y,208,34,34 );
gfx.PutPixel( 13 + x,92 + y,208,34,34 );
gfx.PutPixel( 14 + x,92 + y,208,34,34 );
gfx.PutPixel( 15 + x,92 + y,208,34,34 );
gfx.PutPixel( 16 + x,92 + y,208,34,34 );
gfx.PutPixel( 17 + x,92 + y,208,34,34 );
gfx.PutPixel( 18 + x,92 + y,208,34,34 );
gfx.PutPixel( 19 + x,92 + y,208,34,34 );
gfx.PutPixel( 20 + x,92 + y,208,34,34 );
gfx.PutPixel( 21 + x,92 + y,208,34,34 );
gfx.PutPixel( 22 + x,92 + y,208,34,34 );
gfx.PutPixel( 23 + x,92 + y,208,34,34 );
gfx.PutPixel( 24 + x,92 + y,208,34,34 );
gfx.PutPixel( 25 + x,92 + y,208,34,34 );
gfx.PutPixel( 26 + x,92 + y,208,34,34 );
gfx.PutPixel( 27 + x,92 + y,208,34,34 );
gfx.PutPixel( 28 + x,92 + y,208,34,34 );
gfx.PutPixel( 29 + x,92 + y,208,34,34 );
gfx.PutPixel( 30 + x,92 + y,208,34,34 );
gfx.PutPixel( 31 + x,92 + y,208,34,34 );
gfx.PutPixel( 32 + x,92 + y,208,34,34 );
gfx.PutPixel( 33 + x,92 + y,208,34,34 );
gfx.PutPixel( 34 + x,92 + y,208,34,34 );
gfx.PutPixel( 35 + x,92 + y,208,34,34 );
gfx.PutPixel( 36 + x,92 + y,208,34,34 );
gfx.PutPixel( 37 + x,92 + y,208,34,34 );
gfx.PutPixel( 38 + x,92 + y,208,34,34 );
gfx.PutPixel( 39 + x,92 + y,208,34,34 );
gfx.PutPixel( 40 + x,92 + y,208,34,34 );
gfx.PutPixel( 41 + x,92 + y,208,34,34 );
gfx.PutPixel( 42 + x,92 + y,208,33,33 );
gfx.PutPixel( 43 + x,92 + y,207,23,23 );
gfx.PutPixel( 44 + x,92 + y,211,71,71 );
gfx.PutPixel( 45 + x,92 + y,217,170,170 );
gfx.PutPixel( 46 + x,92 + y,221,223,223 );
gfx.PutPixel( 47 + x,92 + y,222,233,233 );
gfx.PutPixel( 48 + x,92 + y,222,231,231 );
gfx.PutPixel( 49 + x,92 + y,222,230,230 );
gfx.PutPixel( 50 + x,92 + y,222,230,230 );
gfx.PutPixel( 51 + x,92 + y,222,232,232 );
gfx.PutPixel( 52 + x,92 + y,222,232,232 );
gfx.PutPixel( 53 + x,92 + y,220,206,206 );
gfx.PutPixel( 54 + x,92 + y,213,110,110 );
gfx.PutPixel( 55 + x,92 + y,207,19,19 );
gfx.PutPixel( 56 + x,92 + y,211,79,79 );
gfx.PutPixel( 57 + x,92 + y,222,231,231 );
gfx.PutPixel( 58 + x,92 + y,221,229,229 );
gfx.PutPixel( 59 + x,92 + y,222,233,233 );
gfx.PutPixel( 60 + x,92 + y,219,197,197 );
gfx.PutPixel( 61 + x,92 + y,208,39,39 );
gfx.PutPixel( 62 + x,92 + y,208,31,31 );
gfx.PutPixel( 63 + x,92 + y,208,34,34 );
gfx.PutPixel( 64 + x,92 + y,208,34,34 );
gfx.PutPixel( 65 + x,92 + y,208,34,34 );
gfx.PutPixel( 66 + x,92 + y,208,34,34 );
gfx.PutPixel( 67 + x,92 + y,208,34,34 );
gfx.PutPixel( 68 + x,92 + y,207,25,25 );
gfx.PutPixel( 69 + x,92 + y,211,79,79 );
gfx.PutPixel( 70 + x,92 + y,222,229,229 );
gfx.PutPixel( 71 + x,92 + y,221,229,229 );
gfx.PutPixel( 72 + x,92 + y,222,232,232 );
gfx.PutPixel( 73 + x,92 + y,220,212,212 );
gfx.PutPixel( 74 + x,92 + y,209,51,51 );
gfx.PutPixel( 75 + x,92 + y,207,23,23 );
gfx.PutPixel( 76 + x,92 + y,218,178,178 );
gfx.PutPixel( 77 + x,92 + y,223,237,237 );
gfx.PutPixel( 78 + x,92 + y,221,228,228 );
gfx.PutPixel( 79 + x,92 + y,221,228,228 );
gfx.PutPixel( 80 + x,92 + y,221,228,228 );
gfx.PutPixel( 81 + x,92 + y,221,228,228 );
gfx.PutPixel( 82 + x,92 + y,221,228,228 );
gfx.PutPixel( 83 + x,92 + y,221,228,228 );
gfx.PutPixel( 84 + x,92 + y,221,228,228 );
gfx.PutPixel( 85 + x,92 + y,223,238,238 );
gfx.PutPixel( 86 + x,92 + y,217,166,166 );
gfx.PutPixel( 87 + x,92 + y,207,22,22 );
gfx.PutPixel( 88 + x,92 + y,209,47,47 );
gfx.PutPixel( 89 + x,92 + y,220,214,214 );
gfx.PutPixel( 90 + x,92 + y,221,232,232 );
gfx.PutPixel( 91 + x,92 + y,223,240,240 );
gfx.PutPixel( 92 + x,92 + y,215,131,131 );
gfx.PutPixel( 93 + x,92 + y,207,22,22 );
gfx.PutPixel( 94 + x,92 + y,208,34,34 );
gfx.PutPixel( 95 + x,92 + y,207,24,24 );
gfx.PutPixel( 96 + x,92 + y,212,88,88 );
gfx.PutPixel( 97 + x,92 + y,222,233,233 );
gfx.PutPixel( 98 + x,92 + y,221,231,231 );
gfx.PutPixel( 99 + x,92 + y,221,226,226 );
gfx.PutPixel( 100 + x,92 + y,210,70,70 );
gfx.PutPixel( 101 + x,92 + y,207,27,27 );
gfx.PutPixel( 102 + x,92 + y,208,34,34 );
gfx.PutPixel( 103 + x,92 + y,207,22,22 );
gfx.PutPixel( 104 + x,92 + y,215,131,131 );
gfx.PutPixel( 105 + x,92 + y,223,240,240 );
gfx.PutPixel( 106 + x,92 + y,221,232,232 );
gfx.PutPixel( 107 + x,92 + y,220,214,214 );
gfx.PutPixel( 108 + x,92 + y,209,47,47 );
gfx.PutPixel( 109 + x,92 + y,208,30,30 );
gfx.PutPixel( 110 + x,92 + y,208,34,34 );
gfx.PutPixel( 111 + x,92 + y,208,34,34 );
gfx.PutPixel( 112 + x,92 + y,208,34,34 );
gfx.PutPixel( 113 + x,92 + y,208,34,34 );
gfx.PutPixel( 114 + x,92 + y,208,34,34 );
gfx.PutPixel( 115 + x,92 + y,208,34,34 );
gfx.PutPixel( 116 + x,92 + y,208,34,34 );
gfx.PutPixel( 117 + x,92 + y,208,34,34 );
gfx.PutPixel( 118 + x,92 + y,208,34,34 );
gfx.PutPixel( 119 + x,92 + y,208,34,34 );
gfx.PutPixel( 120 + x,92 + y,208,34,34 );
gfx.PutPixel( 121 + x,92 + y,208,34,34 );
gfx.PutPixel( 122 + x,92 + y,208,34,34 );
gfx.PutPixel( 123 + x,92 + y,208,34,34 );
gfx.PutPixel( 124 + x,92 + y,208,34,34 );
gfx.PutPixel( 125 + x,92 + y,208,34,34 );
gfx.PutPixel( 126 + x,92 + y,208,34,34 );
gfx.PutPixel( 127 + x,92 + y,208,34,34 );
gfx.PutPixel( 128 + x,92 + y,208,34,34 );
gfx.PutPixel( 129 + x,92 + y,208,34,34 );
gfx.PutPixel( 130 + x,92 + y,208,34,34 );
gfx.PutPixel( 131 + x,92 + y,208,34,34 );
gfx.PutPixel( 132 + x,92 + y,208,34,34 );
gfx.PutPixel( 133 + x,92 + y,208,34,34 );
gfx.PutPixel( 134 + x,92 + y,208,34,34 );
gfx.PutPixel( 135 + x,92 + y,208,34,34 );
gfx.PutPixel( 136 + x,92 + y,208,34,34 );
gfx.PutPixel( 137 + x,92 + y,208,34,34 );
gfx.PutPixel( 138 + x,92 + y,208,34,34 );
gfx.PutPixel( 139 + x,92 + y,208,34,34 );
gfx.PutPixel( 140 + x,92 + y,208,34,34 );
gfx.PutPixel( 141 + x,92 + y,208,34,34 );
gfx.PutPixel( 142 + x,92 + y,208,34,34 );
gfx.PutPixel( 143 + x,92 + y,208,34,34 );
gfx.PutPixel( 144 + x,92 + y,208,34,34 );
gfx.PutPixel( 145 + x,92 + y,208,34,34 );
gfx.PutPixel( 146 + x,92 + y,208,34,34 );
gfx.PutPixel( 147 + x,92 + y,208,34,34 );
gfx.PutPixel( 148 + x,92 + y,208,34,34 );
gfx.PutPixel( 149 + x,92 + y,208,34,34 );
gfx.PutPixel( 0 + x,93 + y,208,34,34 );
gfx.PutPixel( 1 + x,93 + y,208,34,34 );
gfx.PutPixel( 2 + x,93 + y,208,34,34 );
gfx.PutPixel( 3 + x,93 + y,208,34,34 );
gfx.PutPixel( 4 + x,93 + y,208,34,34 );
gfx.PutPixel( 5 + x,93 + y,208,34,34 );
gfx.PutPixel( 6 + x,93 + y,208,34,34 );
gfx.PutPixel( 7 + x,93 + y,208,34,34 );
gfx.PutPixel( 8 + x,93 + y,208,34,34 );
gfx.PutPixel( 9 + x,93 + y,208,34,34 );
gfx.PutPixel( 10 + x,93 + y,208,34,34 );
gfx.PutPixel( 11 + x,93 + y,208,34,34 );
gfx.PutPixel( 12 + x,93 + y,208,34,34 );
gfx.PutPixel( 13 + x,93 + y,208,34,34 );
gfx.PutPixel( 14 + x,93 + y,208,34,34 );
gfx.PutPixel( 15 + x,93 + y,208,34,34 );
gfx.PutPixel( 16 + x,93 + y,208,34,34 );
gfx.PutPixel( 17 + x,93 + y,208,34,34 );
gfx.PutPixel( 18 + x,93 + y,208,34,34 );
gfx.PutPixel( 19 + x,93 + y,208,34,34 );
gfx.PutPixel( 20 + x,93 + y,208,34,34 );
gfx.PutPixel( 21 + x,93 + y,208,34,34 );
gfx.PutPixel( 22 + x,93 + y,208,34,34 );
gfx.PutPixel( 23 + x,93 + y,208,34,34 );
gfx.PutPixel( 24 + x,93 + y,208,34,34 );
gfx.PutPixel( 25 + x,93 + y,208,34,34 );
gfx.PutPixel( 26 + x,93 + y,208,34,34 );
gfx.PutPixel( 27 + x,93 + y,208,34,34 );
gfx.PutPixel( 28 + x,93 + y,208,34,34 );
gfx.PutPixel( 29 + x,93 + y,208,34,34 );
gfx.PutPixel( 30 + x,93 + y,208,34,34 );
gfx.PutPixel( 31 + x,93 + y,208,34,34 );
gfx.PutPixel( 32 + x,93 + y,208,34,34 );
gfx.PutPixel( 33 + x,93 + y,208,34,34 );
gfx.PutPixel( 34 + x,93 + y,208,34,34 );
gfx.PutPixel( 35 + x,93 + y,208,34,34 );
gfx.PutPixel( 36 + x,93 + y,208,34,34 );
gfx.PutPixel( 37 + x,93 + y,208,34,34 );
gfx.PutPixel( 38 + x,93 + y,208,34,34 );
gfx.PutPixel( 39 + x,93 + y,208,34,34 );
gfx.PutPixel( 40 + x,93 + y,208,34,34 );
gfx.PutPixel( 41 + x,93 + y,208,34,34 );
gfx.PutPixel( 42 + x,93 + y,208,34,34 );
gfx.PutPixel( 43 + x,93 + y,208,34,34 );
gfx.PutPixel( 44 + x,93 + y,207,26,26 );
gfx.PutPixel( 45 + x,93 + y,208,28,28 );
gfx.PutPixel( 46 + x,93 + y,210,70,70 );
gfx.PutPixel( 47 + x,93 + y,214,120,120 );
gfx.PutPixel( 48 + x,93 + y,216,154,154 );
gfx.PutPixel( 49 + x,93 + y,217,170,170 );
gfx.PutPixel( 50 + x,93 + y,217,170,170 );
gfx.PutPixel( 51 + x,93 + y,216,148,148 );
gfx.PutPixel( 52 + x,93 + y,213,103,103 );
gfx.PutPixel( 53 + x,93 + y,209,47,47 );
gfx.PutPixel( 54 + x,93 + y,207,23,23 );
gfx.PutPixel( 55 + x,93 + y,208,30,30 );
gfx.PutPixel( 56 + x,93 + y,210,58,58 );
gfx.PutPixel( 57 + x,93 + y,212,86,86 );
gfx.PutPixel( 58 + x,93 + y,211,82,82 );
gfx.PutPixel( 59 + x,93 + y,212,85,85 );
gfx.PutPixel( 60 + x,93 + y,210,65,65 );
gfx.PutPixel( 61 + x,93 + y,208,30,30 );
gfx.PutPixel( 62 + x,93 + y,208,34,34 );
gfx.PutPixel( 63 + x,93 + y,208,34,34 );
gfx.PutPixel( 64 + x,93 + y,208,34,34 );
gfx.PutPixel( 65 + x,93 + y,208,34,34 );
gfx.PutPixel( 66 + x,93 + y,208,34,34 );
gfx.PutPixel( 67 + x,93 + y,208,34,34 );
gfx.PutPixel( 68 + x,93 + y,208,33,33 );
gfx.PutPixel( 69 + x,93 + y,208,35,35 );
gfx.PutPixel( 70 + x,93 + y,211,77,77 );
gfx.PutPixel( 71 + x,93 + y,211,83,83 );
gfx.PutPixel( 72 + x,93 + y,211,82,82 );
gfx.PutPixel( 73 + x,93 + y,212,86,86 );
gfx.PutPixel( 74 + x,93 + y,209,47,47 );
gfx.PutPixel( 75 + x,93 + y,208,30,30 );
gfx.PutPixel( 76 + x,93 + y,211,70,70 );
gfx.PutPixel( 77 + x,93 + y,212,85,85 );
gfx.PutPixel( 78 + x,93 + y,211,82,82 );
gfx.PutPixel( 79 + x,93 + y,211,82,82 );
gfx.PutPixel( 80 + x,93 + y,211,82,82 );
gfx.PutPixel( 81 + x,93 + y,211,82,82 );
gfx.PutPixel( 82 + x,93 + y,211,82,82 );
gfx.PutPixel( 83 + x,93 + y,211,82,82 );
gfx.PutPixel( 84 + x,93 + y,211,82,82 );
gfx.PutPixel( 85 + x,93 + y,212,85,85 );
gfx.PutPixel( 86 + x,93 + y,210,67,67 );
gfx.PutPixel( 87 + x,93 + y,208,31,31 );
gfx.PutPixel( 88 + x,93 + y,208,37,37 );
gfx.PutPixel( 89 + x,93 + y,211,79,79 );
gfx.PutPixel( 90 + x,93 + y,211,83,83 );
gfx.PutPixel( 91 + x,93 + y,212,85,85 );
gfx.PutPixel( 92 + x,93 + y,210,58,58 );
gfx.PutPixel( 93 + x,93 + y,208,31,31 );
gfx.PutPixel( 94 + x,93 + y,208,34,34 );
gfx.PutPixel( 95 + x,93 + y,208,33,33 );
gfx.PutPixel( 96 + x,93 + y,208,39,39 );
gfx.PutPixel( 97 + x,93 + y,211,80,80 );
gfx.PutPixel( 98 + x,93 + y,211,84,84 );
gfx.PutPixel( 99 + x,93 + y,211,77,77 );
gfx.PutPixel( 100 + x,93 + y,208,35,35 );
gfx.PutPixel( 101 + x,93 + y,208,33,33 );
gfx.PutPixel( 102 + x,93 + y,208,34,34 );
gfx.PutPixel( 103 + x,93 + y,208,31,31 );
gfx.PutPixel( 104 + x,93 + y,210,58,58 );
gfx.PutPixel( 105 + x,93 + y,212,85,85 );
gfx.PutPixel( 106 + x,93 + y,211,83,83 );
gfx.PutPixel( 107 + x,93 + y,211,79,79 );
gfx.PutPixel( 108 + x,93 + y,208,37,37 );
gfx.PutPixel( 109 + x,93 + y,208,33,33 );
gfx.PutPixel( 110 + x,93 + y,208,34,34 );
gfx.PutPixel( 111 + x,93 + y,208,34,34 );
gfx.PutPixel( 112 + x,93 + y,208,34,34 );
gfx.PutPixel( 113 + x,93 + y,208,34,34 );
gfx.PutPixel( 114 + x,93 + y,208,34,34 );
gfx.PutPixel( 115 + x,93 + y,208,34,34 );
gfx.PutPixel( 116 + x,93 + y,208,34,34 );
gfx.PutPixel( 117 + x,93 + y,208,34,34 );
gfx.PutPixel( 118 + x,93 + y,208,34,34 );
gfx.PutPixel( 119 + x,93 + y,208,34,34 );
gfx.PutPixel( 120 + x,93 + y,208,34,34 );
gfx.PutPixel( 121 + x,93 + y,208,34,34 );
gfx.PutPixel( 122 + x,93 + y,208,34,34 );
gfx.PutPixel( 123 + x,93 + y,208,34,34 );
gfx.PutPixel( 124 + x,93 + y,208,34,34 );
gfx.PutPixel( 125 + x,93 + y,208,34,34 );
gfx.PutPixel( 126 + x,93 + y,208,34,34 );
gfx.PutPixel( 127 + x,93 + y,208,34,34 );
gfx.PutPixel( 128 + x,93 + y,208,34,34 );
gfx.PutPixel( 129 + x,93 + y,208,34,34 );
gfx.PutPixel( 130 + x,93 + y,208,34,34 );
gfx.PutPixel( 131 + x,93 + y,208,34,34 );
gfx.PutPixel( 132 + x,93 + y,208,34,34 );
gfx.PutPixel( 133 + x,93 + y,208,34,34 );
gfx.PutPixel( 134 + x,93 + y,208,34,34 );
gfx.PutPixel( 135 + x,93 + y,208,34,34 );
gfx.PutPixel( 136 + x,93 + y,208,34,34 );
gfx.PutPixel( 137 + x,93 + y,208,34,34 );
gfx.PutPixel( 138 + x,93 + y,208,34,34 );
gfx.PutPixel( 139 + x,93 + y,208,34,34 );
gfx.PutPixel( 140 + x,93 + y,208,34,34 );
gfx.PutPixel( 141 + x,93 + y,208,34,34 );
gfx.PutPixel( 142 + x,93 + y,208,34,34 );
gfx.PutPixel( 143 + x,93 + y,208,34,34 );
gfx.PutPixel( 144 + x,93 + y,208,34,34 );
gfx.PutPixel( 145 + x,93 + y,208,34,34 );
gfx.PutPixel( 146 + x,93 + y,208,34,34 );
gfx.PutPixel( 147 + x,93 + y,208,34,34 );
gfx.PutPixel( 148 + x,93 + y,208,34,34 );
gfx.PutPixel( 149 + x,93 + y,208,34,34 );
gfx.PutPixel( 0 + x,94 + y,208,34,34 );
gfx.PutPixel( 1 + x,94 + y,208,34,34 );
gfx.PutPixel( 2 + x,94 + y,208,34,34 );
gfx.PutPixel( 3 + x,94 + y,208,34,34 );
gfx.PutPixel( 4 + x,94 + y,208,34,34 );
gfx.PutPixel( 5 + x,94 + y,208,34,34 );
gfx.PutPixel( 6 + x,94 + y,208,34,34 );
gfx.PutPixel( 7 + x,94 + y,208,34,34 );
gfx.PutPixel( 8 + x,94 + y,208,34,34 );
gfx.PutPixel( 9 + x,94 + y,208,34,34 );
gfx.PutPixel( 10 + x,94 + y,208,34,34 );
gfx.PutPixel( 11 + x,94 + y,208,34,34 );
gfx.PutPixel( 12 + x,94 + y,208,34,34 );
gfx.PutPixel( 13 + x,94 + y,208,34,34 );
gfx.PutPixel( 14 + x,94 + y,208,34,34 );
gfx.PutPixel( 15 + x,94 + y,208,34,34 );
gfx.PutPixel( 16 + x,94 + y,208,34,34 );
gfx.PutPixel( 17 + x,94 + y,208,34,34 );
gfx.PutPixel( 18 + x,94 + y,208,34,34 );
gfx.PutPixel( 19 + x,94 + y,208,34,34 );
gfx.PutPixel( 20 + x,94 + y,208,34,34 );
gfx.PutPixel( 21 + x,94 + y,208,34,34 );
gfx.PutPixel( 22 + x,94 + y,208,34,34 );
gfx.PutPixel( 23 + x,94 + y,208,34,34 );
gfx.PutPixel( 24 + x,94 + y,208,34,34 );
gfx.PutPixel( 25 + x,94 + y,208,34,34 );
gfx.PutPixel( 26 + x,94 + y,208,34,34 );
gfx.PutPixel( 27 + x,94 + y,208,34,34 );
gfx.PutPixel( 28 + x,94 + y,208,34,34 );
gfx.PutPixel( 29 + x,94 + y,208,34,34 );
gfx.PutPixel( 30 + x,94 + y,208,34,34 );
gfx.PutPixel( 31 + x,94 + y,208,34,34 );
gfx.PutPixel( 32 + x,94 + y,208,34,34 );
gfx.PutPixel( 33 + x,94 + y,208,34,34 );
gfx.PutPixel( 34 + x,94 + y,208,34,34 );
gfx.PutPixel( 35 + x,94 + y,208,34,34 );
gfx.PutPixel( 36 + x,94 + y,208,34,34 );
gfx.PutPixel( 37 + x,94 + y,208,34,34 );
gfx.PutPixel( 38 + x,94 + y,208,34,34 );
gfx.PutPixel( 39 + x,94 + y,208,34,34 );
gfx.PutPixel( 40 + x,94 + y,208,34,34 );
gfx.PutPixel( 41 + x,94 + y,208,34,34 );
gfx.PutPixel( 42 + x,94 + y,208,34,34 );
gfx.PutPixel( 43 + x,94 + y,208,34,34 );
gfx.PutPixel( 44 + x,94 + y,208,34,34 );
gfx.PutPixel( 45 + x,94 + y,208,33,33 );
gfx.PutPixel( 46 + x,94 + y,208,27,27 );
gfx.PutPixel( 47 + x,94 + y,207,23,23 );
gfx.PutPixel( 48 + x,94 + y,207,25,25 );
gfx.PutPixel( 49 + x,94 + y,208,27,27 );
gfx.PutPixel( 50 + x,94 + y,208,27,27 );
gfx.PutPixel( 51 + x,94 + y,207,24,24 );
gfx.PutPixel( 52 + x,94 + y,207,24,24 );
gfx.PutPixel( 53 + x,94 + y,208,30,30 );
gfx.PutPixel( 54 + x,94 + y,208,34,34 );
gfx.PutPixel( 55 + x,94 + y,208,35,35 );
gfx.PutPixel( 56 + x,94 + y,208,30,30 );
gfx.PutPixel( 57 + x,94 + y,207,25,25 );
gfx.PutPixel( 58 + x,94 + y,207,25,25 );
gfx.PutPixel( 59 + x,94 + y,207,25,25 );
gfx.PutPixel( 60 + x,94 + y,208,28,28 );
gfx.PutPixel( 61 + x,94 + y,208,34,34 );
gfx.PutPixel( 62 + x,94 + y,208,34,34 );
gfx.PutPixel( 63 + x,94 + y,208,34,34 );
gfx.PutPixel( 64 + x,94 + y,208,34,34 );
gfx.PutPixel( 65 + x,94 + y,208,34,34 );
gfx.PutPixel( 66 + x,94 + y,208,34,34 );
gfx.PutPixel( 67 + x,94 + y,208,34,34 );
gfx.PutPixel( 68 + x,94 + y,208,34,34 );
gfx.PutPixel( 69 + x,94 + y,208,33,33 );
gfx.PutPixel( 70 + x,94 + y,207,26,26 );
gfx.PutPixel( 71 + x,94 + y,207,25,25 );
gfx.PutPixel( 72 + x,94 + y,207,25,25 );
gfx.PutPixel( 73 + x,94 + y,207,25,25 );
gfx.PutPixel( 74 + x,94 + y,208,32,32 );
gfx.PutPixel( 75 + x,94 + y,208,35,35 );
gfx.PutPixel( 76 + x,94 + y,208,28,28 );
gfx.PutPixel( 77 + x,94 + y,207,25,25 );
gfx.PutPixel( 78 + x,94 + y,207,25,25 );
gfx.PutPixel( 79 + x,94 + y,207,25,25 );
gfx.PutPixel( 80 + x,94 + y,207,25,25 );
gfx.PutPixel( 81 + x,94 + y,207,25,25 );
gfx.PutPixel( 82 + x,94 + y,207,25,25 );
gfx.PutPixel( 83 + x,94 + y,207,25,25 );
gfx.PutPixel( 84 + x,94 + y,207,25,25 );
gfx.PutPixel( 85 + x,94 + y,207,25,25 );
gfx.PutPixel( 86 + x,94 + y,208,28,28 );
gfx.PutPixel( 87 + x,94 + y,208,35,35 );
gfx.PutPixel( 88 + x,94 + y,208,33,33 );
gfx.PutPixel( 89 + x,94 + y,207,26,26 );
gfx.PutPixel( 90 + x,94 + y,207,25,25 );
gfx.PutPixel( 91 + x,94 + y,207,25,25 );
gfx.PutPixel( 92 + x,94 + y,208,30,30 );
gfx.PutPixel( 93 + x,94 + y,208,35,35 );
gfx.PutPixel( 94 + x,94 + y,208,34,34 );
gfx.PutPixel( 95 + x,94 + y,208,34,34 );
gfx.PutPixel( 96 + x,94 + y,208,33,33 );
gfx.PutPixel( 97 + x,94 + y,207,25,25 );
gfx.PutPixel( 98 + x,94 + y,207,25,25 );
gfx.PutPixel( 99 + x,94 + y,207,26,26 );
gfx.PutPixel( 100 + x,94 + y,208,33,33 );
gfx.PutPixel( 101 + x,94 + y,208,34,34 );
gfx.PutPixel( 102 + x,94 + y,208,34,34 );
gfx.PutPixel( 103 + x,94 + y,208,35,35 );
gfx.PutPixel( 104 + x,94 + y,208,30,30 );
gfx.PutPixel( 105 + x,94 + y,207,25,25 );
gfx.PutPixel( 106 + x,94 + y,207,25,25 );
gfx.PutPixel( 107 + x,94 + y,207,26,26 );
gfx.PutPixel( 108 + x,94 + y,208,33,33 );
gfx.PutPixel( 109 + x,94 + y,208,34,34 );
gfx.PutPixel( 110 + x,94 + y,208,34,34 );
gfx.PutPixel( 111 + x,94 + y,208,34,34 );
gfx.PutPixel( 112 + x,94 + y,208,34,34 );
gfx.PutPixel( 113 + x,94 + y,208,34,34 );
gfx.PutPixel( 114 + x,94 + y,208,34,34 );
gfx.PutPixel( 115 + x,94 + y,208,34,34 );
gfx.PutPixel( 116 + x,94 + y,208,34,34 );
gfx.PutPixel( 117 + x,94 + y,208,34,34 );
gfx.PutPixel( 118 + x,94 + y,208,34,34 );
gfx.PutPixel( 119 + x,94 + y,208,34,34 );
gfx.PutPixel( 120 + x,94 + y,208,34,34 );
gfx.PutPixel( 121 + x,94 + y,208,34,34 );
gfx.PutPixel( 122 + x,94 + y,208,34,34 );
gfx.PutPixel( 123 + x,94 + y,208,34,34 );
gfx.PutPixel( 124 + x,94 + y,208,34,34 );
gfx.PutPixel( 125 + x,94 + y,208,34,34 );
gfx.PutPixel( 126 + x,94 + y,208,34,34 );
gfx.PutPixel( 127 + x,94 + y,208,34,34 );
gfx.PutPixel( 128 + x,94 + y,208,34,34 );
gfx.PutPixel( 129 + x,94 + y,208,34,34 );
gfx.PutPixel( 130 + x,94 + y,208,34,34 );
gfx.PutPixel( 131 + x,94 + y,208,34,34 );
gfx.PutPixel( 132 + x,94 + y,208,34,34 );
gfx.PutPixel( 133 + x,94 + y,208,34,34 );
gfx.PutPixel( 134 + x,94 + y,208,34,34 );
gfx.PutPixel( 135 + x,94 + y,208,34,34 );
gfx.PutPixel( 136 + x,94 + y,208,34,34 );
gfx.PutPixel( 137 + x,94 + y,208,34,34 );
gfx.PutPixel( 138 + x,94 + y,208,34,34 );
gfx.PutPixel( 139 + x,94 + y,208,34,34 );
gfx.PutPixel( 140 + x,94 + y,208,34,34 );
gfx.PutPixel( 141 + x,94 + y,208,34,34 );
gfx.PutPixel( 142 + x,94 + y,208,34,34 );
gfx.PutPixel( 143 + x,94 + y,208,34,34 );
gfx.PutPixel( 144 + x,94 + y,208,34,34 );
gfx.PutPixel( 145 + x,94 + y,208,34,34 );
gfx.PutPixel( 146 + x,94 + y,208,34,34 );
gfx.PutPixel( 147 + x,94 + y,208,34,34 );
gfx.PutPixel( 148 + x,94 + y,208,34,34 );
gfx.PutPixel( 149 + x,94 + y,208,34,34 );
gfx.PutPixel( 0 + x,95 + y,208,34,34 );
gfx.PutPixel( 1 + x,95 + y,208,34,34 );
gfx.PutPixel( 2 + x,95 + y,208,34,34 );
gfx.PutPixel( 3 + x,95 + y,208,34,34 );
gfx.PutPixel( 4 + x,95 + y,208,34,34 );
gfx.PutPixel( 5 + x,95 + y,208,34,34 );
gfx.PutPixel( 6 + x,95 + y,208,34,34 );
gfx.PutPixel( 7 + x,95 + y,208,34,34 );
gfx.PutPixel( 8 + x,95 + y,208,34,34 );
gfx.PutPixel( 9 + x,95 + y,208,34,34 );
gfx.PutPixel( 10 + x,95 + y,208,34,34 );
gfx.PutPixel( 11 + x,95 + y,208,34,34 );
gfx.PutPixel( 12 + x,95 + y,208,34,34 );
gfx.PutPixel( 13 + x,95 + y,208,34,34 );
gfx.PutPixel( 14 + x,95 + y,208,34,34 );
gfx.PutPixel( 15 + x,95 + y,208,34,34 );
gfx.PutPixel( 16 + x,95 + y,208,34,34 );
gfx.PutPixel( 17 + x,95 + y,208,34,34 );
gfx.PutPixel( 18 + x,95 + y,208,34,34 );
gfx.PutPixel( 19 + x,95 + y,208,34,34 );
gfx.PutPixel( 20 + x,95 + y,208,34,34 );
gfx.PutPixel( 21 + x,95 + y,208,34,34 );
gfx.PutPixel( 22 + x,95 + y,208,34,34 );
gfx.PutPixel( 23 + x,95 + y,208,34,34 );
gfx.PutPixel( 24 + x,95 + y,208,34,34 );
gfx.PutPixel( 25 + x,95 + y,208,34,34 );
gfx.PutPixel( 26 + x,95 + y,208,34,34 );
gfx.PutPixel( 27 + x,95 + y,208,34,34 );
gfx.PutPixel( 28 + x,95 + y,208,34,34 );
gfx.PutPixel( 29 + x,95 + y,208,34,34 );
gfx.PutPixel( 30 + x,95 + y,208,34,34 );
gfx.PutPixel( 31 + x,95 + y,208,34,34 );
gfx.PutPixel( 32 + x,95 + y,208,34,34 );
gfx.PutPixel( 33 + x,95 + y,208,34,34 );
gfx.PutPixel( 34 + x,95 + y,208,34,34 );
gfx.PutPixel( 35 + x,95 + y,208,34,34 );
gfx.PutPixel( 36 + x,95 + y,208,34,34 );
gfx.PutPixel( 37 + x,95 + y,208,34,34 );
gfx.PutPixel( 38 + x,95 + y,208,34,34 );
gfx.PutPixel( 39 + x,95 + y,208,34,34 );
gfx.PutPixel( 40 + x,95 + y,208,34,34 );
gfx.PutPixel( 41 + x,95 + y,208,34,34 );
gfx.PutPixel( 42 + x,95 + y,208,34,34 );
gfx.PutPixel( 43 + x,95 + y,208,34,34 );
gfx.PutPixel( 44 + x,95 + y,208,34,34 );
gfx.PutPixel( 45 + x,95 + y,208,34,34 );
gfx.PutPixel( 46 + x,95 + y,208,34,34 );
gfx.PutPixel( 47 + x,95 + y,208,34,34 );
gfx.PutPixel( 48 + x,95 + y,208,34,34 );
gfx.PutPixel( 49 + x,95 + y,208,34,34 );
gfx.PutPixel( 50 + x,95 + y,208,34,34 );
gfx.PutPixel( 51 + x,95 + y,208,34,34 );
gfx.PutPixel( 52 + x,95 + y,208,34,34 );
gfx.PutPixel( 53 + x,95 + y,208,34,34 );
gfx.PutPixel( 54 + x,95 + y,208,34,34 );
gfx.PutPixel( 55 + x,95 + y,208,34,34 );
gfx.PutPixel( 56 + x,95 + y,208,34,34 );
gfx.PutPixel( 57 + x,95 + y,208,34,34 );
gfx.PutPixel( 58 + x,95 + y,208,34,34 );
gfx.PutPixel( 59 + x,95 + y,208,34,34 );
gfx.PutPixel( 60 + x,95 + y,208,34,34 );
gfx.PutPixel( 61 + x,95 + y,208,34,34 );
gfx.PutPixel( 62 + x,95 + y,208,34,34 );
gfx.PutPixel( 63 + x,95 + y,208,34,34 );
gfx.PutPixel( 64 + x,95 + y,208,34,34 );
gfx.PutPixel( 65 + x,95 + y,208,34,34 );
gfx.PutPixel( 66 + x,95 + y,208,34,34 );
gfx.PutPixel( 67 + x,95 + y,208,34,34 );
gfx.PutPixel( 68 + x,95 + y,208,34,34 );
gfx.PutPixel( 69 + x,95 + y,208,34,34 );
gfx.PutPixel( 70 + x,95 + y,208,34,34 );
gfx.PutPixel( 71 + x,95 + y,208,34,34 );
gfx.PutPixel( 72 + x,95 + y,208,34,34 );
gfx.PutPixel( 73 + x,95 + y,208,34,34 );
gfx.PutPixel( 74 + x,95 + y,208,34,34 );
gfx.PutPixel( 75 + x,95 + y,208,34,34 );
gfx.PutPixel( 76 + x,95 + y,208,34,34 );
gfx.PutPixel( 77 + x,95 + y,208,34,34 );
gfx.PutPixel( 78 + x,95 + y,208,34,34 );
gfx.PutPixel( 79 + x,95 + y,208,34,34 );
gfx.PutPixel( 80 + x,95 + y,208,34,34 );
gfx.PutPixel( 81 + x,95 + y,208,34,34 );
gfx.PutPixel( 82 + x,95 + y,208,34,34 );
gfx.PutPixel( 83 + x,95 + y,208,34,34 );
gfx.PutPixel( 84 + x,95 + y,208,34,34 );
gfx.PutPixel( 85 + x,95 + y,208,34,34 );
gfx.PutPixel( 86 + x,95 + y,208,34,34 );
gfx.PutPixel( 87 + x,95 + y,208,34,34 );
gfx.PutPixel( 88 + x,95 + y,208,34,34 );
gfx.PutPixel( 89 + x,95 + y,208,34,34 );
gfx.PutPixel( 90 + x,95 + y,208,34,34 );
gfx.PutPixel( 91 + x,95 + y,208,34,34 );
gfx.PutPixel( 92 + x,95 + y,208,34,34 );
gfx.PutPixel( 93 + x,95 + y,208,34,34 );
gfx.PutPixel( 94 + x,95 + y,208,34,34 );
gfx.PutPixel( 95 + x,95 + y,208,34,34 );
gfx.PutPixel( 96 + x,95 + y,208,34,34 );
gfx.PutPixel( 97 + x,95 + y,208,34,34 );
gfx.PutPixel( 98 + x,95 + y,208,34,34 );
gfx.PutPixel( 99 + x,95 + y,208,34,34 );
gfx.PutPixel( 100 + x,95 + y,208,34,34 );
gfx.PutPixel( 101 + x,95 + y,208,34,34 );
gfx.PutPixel( 102 + x,95 + y,208,34,34 );
gfx.PutPixel( 103 + x,95 + y,208,34,34 );
gfx.PutPixel( 104 + x,95 + y,208,34,34 );
gfx.PutPixel( 105 + x,95 + y,208,34,34 );
gfx.PutPixel( 106 + x,95 + y,208,34,34 );
gfx.PutPixel( 107 + x,95 + y,208,34,34 );
gfx.PutPixel( 108 + x,95 + y,208,34,34 );
gfx.PutPixel( 109 + x,95 + y,208,34,34 );
gfx.PutPixel( 110 + x,95 + y,208,34,34 );
gfx.PutPixel( 111 + x,95 + y,208,34,34 );
gfx.PutPixel( 112 + x,95 + y,208,34,34 );
gfx.PutPixel( 113 + x,95 + y,208,34,34 );
gfx.PutPixel( 114 + x,95 + y,208,34,34 );
gfx.PutPixel( 115 + x,95 + y,208,34,34 );
gfx.PutPixel( 116 + x,95 + y,208,34,34 );
gfx.PutPixel( 117 + x,95 + y,208,34,34 );
gfx.PutPixel( 118 + x,95 + y,208,34,34 );
gfx.PutPixel( 119 + x,95 + y,208,34,34 );
gfx.PutPixel( 120 + x,95 + y,208,34,34 );
gfx.PutPixel( 121 + x,95 + y,208,34,34 );
gfx.PutPixel( 122 + x,95 + y,208,34,34 );
gfx.PutPixel( 123 + x,95 + y,208,34,34 );
gfx.PutPixel( 124 + x,95 + y,208,34,34 );
gfx.PutPixel( 125 + x,95 + y,208,34,34 );
gfx.PutPixel( 126 + x,95 + y,208,34,34 );
gfx.PutPixel( 127 + x,95 + y,208,34,34 );
gfx.PutPixel( 128 + x,95 + y,208,34,34 );
gfx.PutPixel( 129 + x,95 + y,208,34,34 );
gfx.PutPixel( 130 + x,95 + y,208,34,34 );
gfx.PutPixel( 131 + x,95 + y,208,34,34 );
gfx.PutPixel( 132 + x,95 + y,208,34,34 );
gfx.PutPixel( 133 + x,95 + y,208,34,34 );
gfx.PutPixel( 134 + x,95 + y,208,34,34 );
gfx.PutPixel( 135 + x,95 + y,208,34,34 );
gfx.PutPixel( 136 + x,95 + y,208,34,34 );
gfx.PutPixel( 137 + x,95 + y,208,34,34 );
gfx.PutPixel( 138 + x,95 + y,208,34,34 );
gfx.PutPixel( 139 + x,95 + y,208,34,34 );
gfx.PutPixel( 140 + x,95 + y,208,34,34 );
gfx.PutPixel( 141 + x,95 + y,208,34,34 );
gfx.PutPixel( 142 + x,95 + y,208,34,34 );
gfx.PutPixel( 143 + x,95 + y,208,34,34 );
gfx.PutPixel( 144 + x,95 + y,208,34,34 );
gfx.PutPixel( 145 + x,95 + y,208,34,34 );
gfx.PutPixel( 146 + x,95 + y,208,34,34 );
gfx.PutPixel( 147 + x,95 + y,208,34,34 );
gfx.PutPixel( 148 + x,95 + y,208,34,34 );
gfx.PutPixel( 149 + x,95 + y,208,34,34 );
gfx.PutPixel( 0 + x,96 + y,208,34,34 );
gfx.PutPixel( 1 + x,96 + y,208,34,34 );
gfx.PutPixel( 2 + x,96 + y,208,34,34 );
gfx.PutPixel( 3 + x,96 + y,208,34,34 );
gfx.PutPixel( 4 + x,96 + y,208,34,34 );
gfx.PutPixel( 5 + x,96 + y,208,34,34 );
gfx.PutPixel( 6 + x,96 + y,208,34,34 );
gfx.PutPixel( 7 + x,96 + y,208,34,34 );
gfx.PutPixel( 8 + x,96 + y,208,34,34 );
gfx.PutPixel( 9 + x,96 + y,208,34,34 );
gfx.PutPixel( 10 + x,96 + y,208,34,34 );
gfx.PutPixel( 11 + x,96 + y,208,34,34 );
gfx.PutPixel( 12 + x,96 + y,208,34,34 );
gfx.PutPixel( 13 + x,96 + y,208,34,34 );
gfx.PutPixel( 14 + x,96 + y,208,34,34 );
gfx.PutPixel( 15 + x,96 + y,208,34,34 );
gfx.PutPixel( 16 + x,96 + y,208,34,34 );
gfx.PutPixel( 17 + x,96 + y,208,34,34 );
gfx.PutPixel( 18 + x,96 + y,208,34,34 );
gfx.PutPixel( 19 + x,96 + y,208,34,34 );
gfx.PutPixel( 20 + x,96 + y,208,34,34 );
gfx.PutPixel( 21 + x,96 + y,208,34,34 );
gfx.PutPixel( 22 + x,96 + y,208,34,34 );
gfx.PutPixel( 23 + x,96 + y,208,34,34 );
gfx.PutPixel( 24 + x,96 + y,208,34,34 );
gfx.PutPixel( 25 + x,96 + y,208,34,34 );
gfx.PutPixel( 26 + x,96 + y,208,34,34 );
gfx.PutPixel( 27 + x,96 + y,208,34,34 );
gfx.PutPixel( 28 + x,96 + y,208,34,34 );
gfx.PutPixel( 29 + x,96 + y,208,34,34 );
gfx.PutPixel( 30 + x,96 + y,208,34,34 );
gfx.PutPixel( 31 + x,96 + y,208,34,34 );
gfx.PutPixel( 32 + x,96 + y,208,34,34 );
gfx.PutPixel( 33 + x,96 + y,208,34,34 );
gfx.PutPixel( 34 + x,96 + y,208,34,34 );
gfx.PutPixel( 35 + x,96 + y,208,34,34 );
gfx.PutPixel( 36 + x,96 + y,208,34,34 );
gfx.PutPixel( 37 + x,96 + y,208,34,34 );
gfx.PutPixel( 38 + x,96 + y,208,34,34 );
gfx.PutPixel( 39 + x,96 + y,208,34,34 );
gfx.PutPixel( 40 + x,96 + y,208,34,34 );
gfx.PutPixel( 41 + x,96 + y,208,34,34 );
gfx.PutPixel( 42 + x,96 + y,208,34,34 );
gfx.PutPixel( 43 + x,96 + y,208,34,34 );
gfx.PutPixel( 44 + x,96 + y,208,34,34 );
gfx.PutPixel( 45 + x,96 + y,208,34,34 );
gfx.PutPixel( 46 + x,96 + y,208,34,34 );
gfx.PutPixel( 47 + x,96 + y,208,34,34 );
gfx.PutPixel( 48 + x,96 + y,208,34,34 );
gfx.PutPixel( 49 + x,96 + y,208,34,34 );
gfx.PutPixel( 50 + x,96 + y,208,34,34 );
gfx.PutPixel( 51 + x,96 + y,208,34,34 );
gfx.PutPixel( 52 + x,96 + y,208,34,34 );
gfx.PutPixel( 53 + x,96 + y,208,34,34 );
gfx.PutPixel( 54 + x,96 + y,208,34,34 );
gfx.PutPixel( 55 + x,96 + y,208,34,34 );
gfx.PutPixel( 56 + x,96 + y,208,34,34 );
gfx.PutPixel( 57 + x,96 + y,208,34,34 );
gfx.PutPixel( 58 + x,96 + y,208,34,34 );
gfx.PutPixel( 59 + x,96 + y,208,34,34 );
gfx.PutPixel( 60 + x,96 + y,208,34,34 );
gfx.PutPixel( 61 + x,96 + y,208,34,34 );
gfx.PutPixel( 62 + x,96 + y,208,34,34 );
gfx.PutPixel( 63 + x,96 + y,208,34,34 );
gfx.PutPixel( 64 + x,96 + y,208,34,34 );
gfx.PutPixel( 65 + x,96 + y,208,34,34 );
gfx.PutPixel( 66 + x,96 + y,208,34,34 );
gfx.PutPixel( 67 + x,96 + y,208,34,34 );
gfx.PutPixel( 68 + x,96 + y,208,34,34 );
gfx.PutPixel( 69 + x,96 + y,208,34,34 );
gfx.PutPixel( 70 + x,96 + y,208,34,34 );
gfx.PutPixel( 71 + x,96 + y,208,34,34 );
gfx.PutPixel( 72 + x,96 + y,208,34,34 );
gfx.PutPixel( 73 + x,96 + y,208,34,34 );
gfx.PutPixel( 74 + x,96 + y,208,34,34 );
gfx.PutPixel( 75 + x,96 + y,208,34,34 );
gfx.PutPixel( 76 + x,96 + y,208,34,34 );
gfx.PutPixel( 77 + x,96 + y,208,34,34 );
gfx.PutPixel( 78 + x,96 + y,208,34,34 );
gfx.PutPixel( 79 + x,96 + y,208,34,34 );
gfx.PutPixel( 80 + x,96 + y,208,34,34 );
gfx.PutPixel( 81 + x,96 + y,208,34,34 );
gfx.PutPixel( 82 + x,96 + y,208,34,34 );
gfx.PutPixel( 83 + x,96 + y,208,34,34 );
gfx.PutPixel( 84 + x,96 + y,208,34,34 );
gfx.PutPixel( 85 + x,96 + y,208,34,34 );
gfx.PutPixel( 86 + x,96 + y,208,34,34 );
gfx.PutPixel( 87 + x,96 + y,208,34,34 );
gfx.PutPixel( 88 + x,96 + y,208,34,34 );
gfx.PutPixel( 89 + x,96 + y,208,34,34 );
gfx.PutPixel( 90 + x,96 + y,208,34,34 );
gfx.PutPixel( 91 + x,96 + y,208,34,34 );
gfx.PutPixel( 92 + x,96 + y,208,34,34 );
gfx.PutPixel( 93 + x,96 + y,208,34,34 );
gfx.PutPixel( 94 + x,96 + y,208,34,34 );
gfx.PutPixel( 95 + x,96 + y,208,34,34 );
gfx.PutPixel( 96 + x,96 + y,208,34,34 );
gfx.PutPixel( 97 + x,96 + y,208,34,34 );
gfx.PutPixel( 98 + x,96 + y,208,34,34 );
gfx.PutPixel( 99 + x,96 + y,208,34,34 );
gfx.PutPixel( 100 + x,96 + y,208,34,34 );
gfx.PutPixel( 101 + x,96 + y,208,34,34 );
gfx.PutPixel( 102 + x,96 + y,208,34,34 );
gfx.PutPixel( 103 + x,96 + y,208,34,34 );
gfx.PutPixel( 104 + x,96 + y,208,34,34 );
gfx.PutPixel( 105 + x,96 + y,208,34,34 );
gfx.PutPixel( 106 + x,96 + y,208,34,34 );
gfx.PutPixel( 107 + x,96 + y,208,34,34 );
gfx.PutPixel( 108 + x,96 + y,208,34,34 );
gfx.PutPixel( 109 + x,96 + y,208,34,34 );
gfx.PutPixel( 110 + x,96 + y,208,34,34 );
gfx.PutPixel( 111 + x,96 + y,208,34,34 );
gfx.PutPixel( 112 + x,96 + y,208,34,34 );
gfx.PutPixel( 113 + x,96 + y,208,34,34 );
gfx.PutPixel( 114 + x,96 + y,208,34,34 );
gfx.PutPixel( 115 + x,96 + y,208,34,34 );
gfx.PutPixel( 116 + x,96 + y,208,34,34 );
gfx.PutPixel( 117 + x,96 + y,208,34,34 );
gfx.PutPixel( 118 + x,96 + y,208,34,34 );
gfx.PutPixel( 119 + x,96 + y,208,34,34 );
gfx.PutPixel( 120 + x,96 + y,208,34,34 );
gfx.PutPixel( 121 + x,96 + y,208,34,34 );
gfx.PutPixel( 122 + x,96 + y,208,34,34 );
gfx.PutPixel( 123 + x,96 + y,208,34,34 );
gfx.PutPixel( 124 + x,96 + y,208,34,34 );
gfx.PutPixel( 125 + x,96 + y,208,34,34 );
gfx.PutPixel( 126 + x,96 + y,208,34,34 );
gfx.PutPixel( 127 + x,96 + y,208,34,34 );
gfx.PutPixel( 128 + x,96 + y,208,34,34 );
gfx.PutPixel( 129 + x,96 + y,208,34,34 );
gfx.PutPixel( 130 + x,96 + y,208,34,34 );
gfx.PutPixel( 131 + x,96 + y,208,34,34 );
gfx.PutPixel( 132 + x,96 + y,208,34,34 );
gfx.PutPixel( 133 + x,96 + y,208,34,34 );
gfx.PutPixel( 134 + x,96 + y,208,34,34 );
gfx.PutPixel( 135 + x,96 + y,208,34,34 );
gfx.PutPixel( 136 + x,96 + y,208,34,34 );
gfx.PutPixel( 137 + x,96 + y,208,34,34 );
gfx.PutPixel( 138 + x,96 + y,208,34,34 );
gfx.PutPixel( 139 + x,96 + y,208,34,34 );
gfx.PutPixel( 140 + x,96 + y,208,34,34 );
gfx.PutPixel( 141 + x,96 + y,208,34,34 );
gfx.PutPixel( 142 + x,96 + y,208,34,34 );
gfx.PutPixel( 143 + x,96 + y,208,34,34 );
gfx.PutPixel( 144 + x,96 + y,208,34,34 );
gfx.PutPixel( 145 + x,96 + y,208,34,34 );
gfx.PutPixel( 146 + x,96 + y,208,34,34 );
gfx.PutPixel( 147 + x,96 + y,208,34,34 );
gfx.PutPixel( 148 + x,96 + y,208,34,34 );
gfx.PutPixel( 149 + x,96 + y,208,34,34 );
gfx.PutPixel( 0 + x,97 + y,208,34,34 );
gfx.PutPixel( 1 + x,97 + y,208,34,34 );
gfx.PutPixel( 2 + x,97 + y,208,34,34 );
gfx.PutPixel( 3 + x,97 + y,208,34,34 );
gfx.PutPixel( 4 + x,97 + y,208,34,34 );
gfx.PutPixel( 5 + x,97 + y,208,34,34 );
gfx.PutPixel( 6 + x,97 + y,208,34,34 );
gfx.PutPixel( 7 + x,97 + y,208,34,34 );
gfx.PutPixel( 8 + x,97 + y,208,34,34 );
gfx.PutPixel( 9 + x,97 + y,208,34,34 );
gfx.PutPixel( 10 + x,97 + y,208,34,34 );
gfx.PutPixel( 11 + x,97 + y,208,34,34 );
gfx.PutPixel( 12 + x,97 + y,208,34,34 );
gfx.PutPixel( 13 + x,97 + y,208,34,34 );
gfx.PutPixel( 14 + x,97 + y,208,34,34 );
gfx.PutPixel( 15 + x,97 + y,208,34,34 );
gfx.PutPixel( 16 + x,97 + y,208,34,34 );
gfx.PutPixel( 17 + x,97 + y,208,34,34 );
gfx.PutPixel( 18 + x,97 + y,208,34,34 );
gfx.PutPixel( 19 + x,97 + y,208,34,34 );
gfx.PutPixel( 20 + x,97 + y,208,34,34 );
gfx.PutPixel( 21 + x,97 + y,208,34,34 );
gfx.PutPixel( 22 + x,97 + y,208,34,34 );
gfx.PutPixel( 23 + x,97 + y,208,34,34 );
gfx.PutPixel( 24 + x,97 + y,208,34,34 );
gfx.PutPixel( 25 + x,97 + y,208,34,34 );
gfx.PutPixel( 26 + x,97 + y,208,34,34 );
gfx.PutPixel( 27 + x,97 + y,208,34,34 );
gfx.PutPixel( 28 + x,97 + y,208,34,34 );
gfx.PutPixel( 29 + x,97 + y,208,34,34 );
gfx.PutPixel( 30 + x,97 + y,208,34,34 );
gfx.PutPixel( 31 + x,97 + y,208,34,34 );
gfx.PutPixel( 32 + x,97 + y,208,34,34 );
gfx.PutPixel( 33 + x,97 + y,208,34,34 );
gfx.PutPixel( 34 + x,97 + y,208,34,34 );
gfx.PutPixel( 35 + x,97 + y,208,34,34 );
gfx.PutPixel( 36 + x,97 + y,208,34,34 );
gfx.PutPixel( 37 + x,97 + y,208,34,34 );
gfx.PutPixel( 38 + x,97 + y,208,34,34 );
gfx.PutPixel( 39 + x,97 + y,208,34,34 );
gfx.PutPixel( 40 + x,97 + y,208,34,34 );
gfx.PutPixel( 41 + x,97 + y,208,34,34 );
gfx.PutPixel( 42 + x,97 + y,208,34,34 );
gfx.PutPixel( 43 + x,97 + y,208,34,34 );
gfx.PutPixel( 44 + x,97 + y,208,34,34 );
gfx.PutPixel( 45 + x,97 + y,208,34,34 );
gfx.PutPixel( 46 + x,97 + y,208,34,34 );
gfx.PutPixel( 47 + x,97 + y,208,34,34 );
gfx.PutPixel( 48 + x,97 + y,208,34,34 );
gfx.PutPixel( 49 + x,97 + y,208,34,34 );
gfx.PutPixel( 50 + x,97 + y,208,34,34 );
gfx.PutPixel( 51 + x,97 + y,208,34,34 );
gfx.PutPixel( 52 + x,97 + y,208,34,34 );
gfx.PutPixel( 53 + x,97 + y,208,34,34 );
gfx.PutPixel( 54 + x,97 + y,208,34,34 );
gfx.PutPixel( 55 + x,97 + y,208,34,34 );
gfx.PutPixel( 56 + x,97 + y,208,34,34 );
gfx.PutPixel( 57 + x,97 + y,208,34,34 );
gfx.PutPixel( 58 + x,97 + y,208,34,34 );
gfx.PutPixel( 59 + x,97 + y,208,34,34 );
gfx.PutPixel( 60 + x,97 + y,208,34,34 );
gfx.PutPixel( 61 + x,97 + y,208,34,34 );
gfx.PutPixel( 62 + x,97 + y,208,34,34 );
gfx.PutPixel( 63 + x,97 + y,208,34,34 );
gfx.PutPixel( 64 + x,97 + y,208,34,34 );
gfx.PutPixel( 65 + x,97 + y,208,34,34 );
gfx.PutPixel( 66 + x,97 + y,208,34,34 );
gfx.PutPixel( 67 + x,97 + y,208,34,34 );
gfx.PutPixel( 68 + x,97 + y,208,34,34 );
gfx.PutPixel( 69 + x,97 + y,208,34,34 );
gfx.PutPixel( 70 + x,97 + y,208,34,34 );
gfx.PutPixel( 71 + x,97 + y,208,34,34 );
gfx.PutPixel( 72 + x,97 + y,208,34,34 );
gfx.PutPixel( 73 + x,97 + y,208,34,34 );
gfx.PutPixel( 74 + x,97 + y,208,34,34 );
gfx.PutPixel( 75 + x,97 + y,208,34,34 );
gfx.PutPixel( 76 + x,97 + y,208,34,34 );
gfx.PutPixel( 77 + x,97 + y,208,34,34 );
gfx.PutPixel( 78 + x,97 + y,208,34,34 );
gfx.PutPixel( 79 + x,97 + y,208,34,34 );
gfx.PutPixel( 80 + x,97 + y,208,34,34 );
gfx.PutPixel( 81 + x,97 + y,208,34,34 );
gfx.PutPixel( 82 + x,97 + y,208,34,34 );
gfx.PutPixel( 83 + x,97 + y,208,34,34 );
gfx.PutPixel( 84 + x,97 + y,208,34,34 );
gfx.PutPixel( 85 + x,97 + y,208,34,34 );
gfx.PutPixel( 86 + x,97 + y,208,34,34 );
gfx.PutPixel( 87 + x,97 + y,208,34,34 );
gfx.PutPixel( 88 + x,97 + y,208,34,34 );
gfx.PutPixel( 89 + x,97 + y,208,34,34 );
gfx.PutPixel( 90 + x,97 + y,208,34,34 );
gfx.PutPixel( 91 + x,97 + y,208,34,34 );
gfx.PutPixel( 92 + x,97 + y,208,34,34 );
gfx.PutPixel( 93 + x,97 + y,208,34,34 );
gfx.PutPixel( 94 + x,97 + y,208,34,34 );
gfx.PutPixel( 95 + x,97 + y,208,34,34 );
gfx.PutPixel( 96 + x,97 + y,208,34,34 );
gfx.PutPixel( 97 + x,97 + y,208,34,34 );
gfx.PutPixel( 98 + x,97 + y,208,34,34 );
gfx.PutPixel( 99 + x,97 + y,208,34,34 );
gfx.PutPixel( 100 + x,97 + y,208,34,34 );
gfx.PutPixel( 101 + x,97 + y,208,34,34 );
gfx.PutPixel( 102 + x,97 + y,208,34,34 );
gfx.PutPixel( 103 + x,97 + y,208,34,34 );
gfx.PutPixel( 104 + x,97 + y,208,34,34 );
gfx.PutPixel( 105 + x,97 + y,208,34,34 );
gfx.PutPixel( 106 + x,97 + y,208,34,34 );
gfx.PutPixel( 107 + x,97 + y,208,34,34 );
gfx.PutPixel( 108 + x,97 + y,208,34,34 );
gfx.PutPixel( 109 + x,97 + y,208,34,34 );
gfx.PutPixel( 110 + x,97 + y,208,34,34 );
gfx.PutPixel( 111 + x,97 + y,208,34,34 );
gfx.PutPixel( 112 + x,97 + y,208,34,34 );
gfx.PutPixel( 113 + x,97 + y,208,34,34 );
gfx.PutPixel( 114 + x,97 + y,208,34,34 );
gfx.PutPixel( 115 + x,97 + y,208,34,34 );
gfx.PutPixel( 116 + x,97 + y,208,34,34 );
gfx.PutPixel( 117 + x,97 + y,208,34,34 );
gfx.PutPixel( 118 + x,97 + y,208,34,34 );
gfx.PutPixel( 119 + x,97 + y,208,34,34 );
gfx.PutPixel( 120 + x,97 + y,208,34,34 );
gfx.PutPixel( 121 + x,97 + y,208,34,34 );
gfx.PutPixel( 122 + x,97 + y,208,34,34 );
gfx.PutPixel( 123 + x,97 + y,208,34,34 );
gfx.PutPixel( 124 + x,97 + y,208,34,34 );
gfx.PutPixel( 125 + x,97 + y,208,34,34 );
gfx.PutPixel( 126 + x,97 + y,208,34,34 );
gfx.PutPixel( 127 + x,97 + y,208,34,34 );
gfx.PutPixel( 128 + x,97 + y,208,34,34 );
gfx.PutPixel( 129 + x,97 + y,208,34,34 );
gfx.PutPixel( 130 + x,97 + y,208,34,34 );
gfx.PutPixel( 131 + x,97 + y,208,34,34 );
gfx.PutPixel( 132 + x,97 + y,208,34,34 );
gfx.PutPixel( 133 + x,97 + y,208,34,34 );
gfx.PutPixel( 134 + x,97 + y,208,34,34 );
gfx.PutPixel( 135 + x,97 + y,208,34,34 );
gfx.PutPixel( 136 + x,97 + y,208,34,34 );
gfx.PutPixel( 137 + x,97 + y,208,34,34 );
gfx.PutPixel( 138 + x,97 + y,208,34,34 );
gfx.PutPixel( 139 + x,97 + y,208,34,34 );
gfx.PutPixel( 140 + x,97 + y,208,34,34 );
gfx.PutPixel( 141 + x,97 + y,208,34,34 );
gfx.PutPixel( 142 + x,97 + y,208,34,34 );
gfx.PutPixel( 143 + x,97 + y,208,34,34 );
gfx.PutPixel( 144 + x,97 + y,208,34,34 );
gfx.PutPixel( 145 + x,97 + y,208,34,34 );
gfx.PutPixel( 146 + x,97 + y,208,34,34 );
gfx.PutPixel( 147 + x,97 + y,208,34,34 );
gfx.PutPixel( 148 + x,97 + y,208,34,34 );
gfx.PutPixel( 149 + x,97 + y,208,34,34 );
gfx.PutPixel( 0 + x,98 + y,208,34,34 );
gfx.PutPixel( 1 + x,98 + y,208,34,34 );
gfx.PutPixel( 2 + x,98 + y,208,34,34 );
gfx.PutPixel( 3 + x,98 + y,208,34,34 );
gfx.PutPixel( 4 + x,98 + y,208,34,34 );
gfx.PutPixel( 5 + x,98 + y,208,34,34 );
gfx.PutPixel( 6 + x,98 + y,208,34,34 );
gfx.PutPixel( 7 + x,98 + y,208,34,34 );
gfx.PutPixel( 8 + x,98 + y,208,34,34 );
gfx.PutPixel( 9 + x,98 + y,208,34,34 );
gfx.PutPixel( 10 + x,98 + y,208,34,34 );
gfx.PutPixel( 11 + x,98 + y,208,34,34 );
gfx.PutPixel( 12 + x,98 + y,208,34,34 );
gfx.PutPixel( 13 + x,98 + y,208,34,34 );
gfx.PutPixel( 14 + x,98 + y,208,34,34 );
gfx.PutPixel( 15 + x,98 + y,208,34,34 );
gfx.PutPixel( 16 + x,98 + y,208,34,34 );
gfx.PutPixel( 17 + x,98 + y,208,34,34 );
gfx.PutPixel( 18 + x,98 + y,208,34,34 );
gfx.PutPixel( 19 + x,98 + y,208,34,34 );
gfx.PutPixel( 20 + x,98 + y,208,34,34 );
gfx.PutPixel( 21 + x,98 + y,208,34,34 );
gfx.PutPixel( 22 + x,98 + y,208,34,34 );
gfx.PutPixel( 23 + x,98 + y,208,34,34 );
gfx.PutPixel( 24 + x,98 + y,208,34,34 );
gfx.PutPixel( 25 + x,98 + y,208,34,34 );
gfx.PutPixel( 26 + x,98 + y,208,34,34 );
gfx.PutPixel( 27 + x,98 + y,208,34,34 );
gfx.PutPixel( 28 + x,98 + y,208,34,34 );
gfx.PutPixel( 29 + x,98 + y,208,34,34 );
gfx.PutPixel( 30 + x,98 + y,208,34,34 );
gfx.PutPixel( 31 + x,98 + y,208,34,34 );
gfx.PutPixel( 32 + x,98 + y,208,34,34 );
gfx.PutPixel( 33 + x,98 + y,208,34,34 );
gfx.PutPixel( 34 + x,98 + y,208,34,34 );
gfx.PutPixel( 35 + x,98 + y,208,34,34 );
gfx.PutPixel( 36 + x,98 + y,208,34,34 );
gfx.PutPixel( 37 + x,98 + y,208,34,34 );
gfx.PutPixel( 38 + x,98 + y,208,34,34 );
gfx.PutPixel( 39 + x,98 + y,208,34,34 );
gfx.PutPixel( 40 + x,98 + y,208,34,34 );
gfx.PutPixel( 41 + x,98 + y,208,34,34 );
gfx.PutPixel( 42 + x,98 + y,208,34,34 );
gfx.PutPixel( 43 + x,98 + y,208,34,34 );
gfx.PutPixel( 44 + x,98 + y,208,34,34 );
gfx.PutPixel( 45 + x,98 + y,208,34,34 );
gfx.PutPixel( 46 + x,98 + y,208,34,34 );
gfx.PutPixel( 47 + x,98 + y,208,34,34 );
gfx.PutPixel( 48 + x,98 + y,208,34,34 );
gfx.PutPixel( 49 + x,98 + y,208,34,34 );
gfx.PutPixel( 50 + x,98 + y,208,34,34 );
gfx.PutPixel( 51 + x,98 + y,208,34,34 );
gfx.PutPixel( 52 + x,98 + y,208,34,34 );
gfx.PutPixel( 53 + x,98 + y,208,34,34 );
gfx.PutPixel( 54 + x,98 + y,208,34,34 );
gfx.PutPixel( 55 + x,98 + y,208,34,34 );
gfx.PutPixel( 56 + x,98 + y,208,34,34 );
gfx.PutPixel( 57 + x,98 + y,208,34,34 );
gfx.PutPixel( 58 + x,98 + y,208,34,34 );
gfx.PutPixel( 59 + x,98 + y,208,34,34 );
gfx.PutPixel( 60 + x,98 + y,208,34,34 );
gfx.PutPixel( 61 + x,98 + y,208,34,34 );
gfx.PutPixel( 62 + x,98 + y,208,34,34 );
gfx.PutPixel( 63 + x,98 + y,208,34,34 );
gfx.PutPixel( 64 + x,98 + y,208,34,34 );
gfx.PutPixel( 65 + x,98 + y,208,27,27 );
gfx.PutPixel( 66 + x,98 + y,207,26,26 );
gfx.PutPixel( 67 + x,98 + y,208,34,34 );
gfx.PutPixel( 68 + x,98 + y,208,34,34 );
gfx.PutPixel( 69 + x,98 + y,208,34,34 );
gfx.PutPixel( 70 + x,98 + y,208,33,33 );
gfx.PutPixel( 71 + x,98 + y,207,26,26 );
gfx.PutPixel( 72 + x,98 + y,207,25,25 );
gfx.PutPixel( 73 + x,98 + y,208,29,29 );
gfx.PutPixel( 74 + x,98 + y,208,34,34 );
gfx.PutPixel( 75 + x,98 + y,208,34,34 );
gfx.PutPixel( 76 + x,98 + y,208,32,32 );
gfx.PutPixel( 77 + x,98 + y,207,24,24 );
gfx.PutPixel( 78 + x,98 + y,208,30,30 );
gfx.PutPixel( 79 + x,98 + y,208,34,34 );
gfx.PutPixel( 80 + x,98 + y,207,26,26 );
gfx.PutPixel( 81 + x,98 + y,207,25,25 );
gfx.PutPixel( 82 + x,98 + y,207,25,25 );
gfx.PutPixel( 83 + x,98 + y,207,27,27 );
gfx.PutPixel( 84 + x,98 + y,208,31,31 );
gfx.PutPixel( 85 + x,98 + y,208,34,34 );
gfx.PutPixel( 86 + x,98 + y,208,34,34 );
gfx.PutPixel( 87 + x,98 + y,208,34,34 );
gfx.PutPixel( 88 + x,98 + y,208,34,34 );
gfx.PutPixel( 89 + x,98 + y,208,34,34 );
gfx.PutPixel( 90 + x,98 + y,208,34,34 );
gfx.PutPixel( 91 + x,98 + y,208,34,34 );
gfx.PutPixel( 92 + x,98 + y,208,34,34 );
gfx.PutPixel( 93 + x,98 + y,208,34,34 );
gfx.PutPixel( 94 + x,98 + y,208,34,34 );
gfx.PutPixel( 95 + x,98 + y,208,34,34 );
gfx.PutPixel( 96 + x,98 + y,208,34,34 );
gfx.PutPixel( 97 + x,98 + y,208,34,34 );
gfx.PutPixel( 98 + x,98 + y,208,34,34 );
gfx.PutPixel( 99 + x,98 + y,208,34,34 );
gfx.PutPixel( 100 + x,98 + y,208,34,34 );
gfx.PutPixel( 101 + x,98 + y,208,34,34 );
gfx.PutPixel( 102 + x,98 + y,208,34,34 );
gfx.PutPixel( 103 + x,98 + y,208,34,34 );
gfx.PutPixel( 104 + x,98 + y,208,34,34 );
gfx.PutPixel( 105 + x,98 + y,208,34,34 );
gfx.PutPixel( 106 + x,98 + y,208,34,34 );
gfx.PutPixel( 107 + x,98 + y,208,34,34 );
gfx.PutPixel( 108 + x,98 + y,208,34,34 );
gfx.PutPixel( 109 + x,98 + y,208,34,34 );
gfx.PutPixel( 110 + x,98 + y,208,34,34 );
gfx.PutPixel( 111 + x,98 + y,208,34,34 );
gfx.PutPixel( 112 + x,98 + y,208,34,34 );
gfx.PutPixel( 113 + x,98 + y,208,34,34 );
gfx.PutPixel( 114 + x,98 + y,208,34,34 );
gfx.PutPixel( 115 + x,98 + y,208,34,34 );
gfx.PutPixel( 116 + x,98 + y,208,34,34 );
gfx.PutPixel( 117 + x,98 + y,208,34,34 );
gfx.PutPixel( 118 + x,98 + y,208,34,34 );
gfx.PutPixel( 119 + x,98 + y,208,34,34 );
gfx.PutPixel( 120 + x,98 + y,208,34,34 );
gfx.PutPixel( 121 + x,98 + y,208,34,34 );
gfx.PutPixel( 122 + x,98 + y,208,34,34 );
gfx.PutPixel( 123 + x,98 + y,208,34,34 );
gfx.PutPixel( 124 + x,98 + y,208,34,34 );
gfx.PutPixel( 125 + x,98 + y,208,34,34 );
gfx.PutPixel( 126 + x,98 + y,208,34,34 );
gfx.PutPixel( 127 + x,98 + y,208,34,34 );
gfx.PutPixel( 128 + x,98 + y,208,34,34 );
gfx.PutPixel( 129 + x,98 + y,208,34,34 );
gfx.PutPixel( 130 + x,98 + y,208,34,34 );
gfx.PutPixel( 131 + x,98 + y,208,34,34 );
gfx.PutPixel( 132 + x,98 + y,208,34,34 );
gfx.PutPixel( 133 + x,98 + y,208,34,34 );
gfx.PutPixel( 134 + x,98 + y,208,34,34 );
gfx.PutPixel( 135 + x,98 + y,208,34,34 );
gfx.PutPixel( 136 + x,98 + y,208,34,34 );
gfx.PutPixel( 137 + x,98 + y,208,34,34 );
gfx.PutPixel( 138 + x,98 + y,208,34,34 );
gfx.PutPixel( 139 + x,98 + y,208,34,34 );
gfx.PutPixel( 140 + x,98 + y,208,34,34 );
gfx.PutPixel( 141 + x,98 + y,208,34,34 );
gfx.PutPixel( 142 + x,98 + y,208,34,34 );
gfx.PutPixel( 143 + x,98 + y,208,34,34 );
gfx.PutPixel( 144 + x,98 + y,208,34,34 );
gfx.PutPixel( 145 + x,98 + y,208,34,34 );
gfx.PutPixel( 146 + x,98 + y,208,34,34 );
gfx.PutPixel( 147 + x,98 + y,208,34,34 );
gfx.PutPixel( 148 + x,98 + y,208,34,34 );
gfx.PutPixel( 149 + x,98 + y,208,34,34 );
gfx.PutPixel( 0 + x,99 + y,208,34,34 );
gfx.PutPixel( 1 + x,99 + y,208,34,34 );
gfx.PutPixel( 2 + x,99 + y,208,34,34 );
gfx.PutPixel( 3 + x,99 + y,208,34,34 );
gfx.PutPixel( 4 + x,99 + y,208,34,34 );
gfx.PutPixel( 5 + x,99 + y,208,34,34 );
gfx.PutPixel( 6 + x,99 + y,208,34,34 );
gfx.PutPixel( 7 + x,99 + y,208,34,34 );
gfx.PutPixel( 8 + x,99 + y,208,34,34 );
gfx.PutPixel( 9 + x,99 + y,208,34,34 );
gfx.PutPixel( 10 + x,99 + y,208,34,34 );
gfx.PutPixel( 11 + x,99 + y,208,34,34 );
gfx.PutPixel( 12 + x,99 + y,208,34,34 );
gfx.PutPixel( 13 + x,99 + y,208,34,34 );
gfx.PutPixel( 14 + x,99 + y,208,34,34 );
gfx.PutPixel( 15 + x,99 + y,208,34,34 );
gfx.PutPixel( 16 + x,99 + y,208,34,34 );
gfx.PutPixel( 17 + x,99 + y,208,34,34 );
gfx.PutPixel( 18 + x,99 + y,208,34,34 );
gfx.PutPixel( 19 + x,99 + y,208,34,34 );
gfx.PutPixel( 20 + x,99 + y,208,34,34 );
gfx.PutPixel( 21 + x,99 + y,208,34,34 );
gfx.PutPixel( 22 + x,99 + y,208,34,34 );
gfx.PutPixel( 23 + x,99 + y,208,34,34 );
gfx.PutPixel( 24 + x,99 + y,208,34,34 );
gfx.PutPixel( 25 + x,99 + y,208,34,34 );
gfx.PutPixel( 26 + x,99 + y,208,34,34 );
gfx.PutPixel( 27 + x,99 + y,208,34,34 );
gfx.PutPixel( 28 + x,99 + y,208,34,34 );
gfx.PutPixel( 29 + x,99 + y,208,34,34 );
gfx.PutPixel( 30 + x,99 + y,208,34,34 );
gfx.PutPixel( 31 + x,99 + y,208,34,34 );
gfx.PutPixel( 32 + x,99 + y,208,34,34 );
gfx.PutPixel( 33 + x,99 + y,208,34,34 );
gfx.PutPixel( 34 + x,99 + y,208,34,34 );
gfx.PutPixel( 35 + x,99 + y,208,34,34 );
gfx.PutPixel( 36 + x,99 + y,208,34,34 );
gfx.PutPixel( 37 + x,99 + y,208,34,34 );
gfx.PutPixel( 38 + x,99 + y,208,34,34 );
gfx.PutPixel( 39 + x,99 + y,208,34,34 );
gfx.PutPixel( 40 + x,99 + y,208,34,34 );
gfx.PutPixel( 41 + x,99 + y,208,34,34 );
gfx.PutPixel( 42 + x,99 + y,208,34,34 );
gfx.PutPixel( 43 + x,99 + y,208,34,34 );
gfx.PutPixel( 44 + x,99 + y,208,34,34 );
gfx.PutPixel( 45 + x,99 + y,208,34,34 );
gfx.PutPixel( 46 + x,99 + y,208,34,34 );
gfx.PutPixel( 47 + x,99 + y,208,34,34 );
gfx.PutPixel( 48 + x,99 + y,208,34,34 );
gfx.PutPixel( 49 + x,99 + y,208,34,34 );
gfx.PutPixel( 50 + x,99 + y,208,34,34 );
gfx.PutPixel( 51 + x,99 + y,208,34,34 );
gfx.PutPixel( 52 + x,99 + y,208,34,34 );
gfx.PutPixel( 53 + x,99 + y,208,34,34 );
gfx.PutPixel( 54 + x,99 + y,208,34,34 );
gfx.PutPixel( 55 + x,99 + y,208,34,34 );
gfx.PutPixel( 56 + x,99 + y,208,34,34 );
gfx.PutPixel( 57 + x,99 + y,208,34,34 );
gfx.PutPixel( 58 + x,99 + y,208,34,34 );
gfx.PutPixel( 59 + x,99 + y,208,34,34 );
gfx.PutPixel( 60 + x,99 + y,208,34,34 );
gfx.PutPixel( 61 + x,99 + y,208,34,34 );
gfx.PutPixel( 62 + x,99 + y,208,34,34 );
gfx.PutPixel( 63 + x,99 + y,208,34,34 );
gfx.PutPixel( 64 + x,99 + y,208,30,30 );
gfx.PutPixel( 65 + x,99 + y,210,69,69 );
gfx.PutPixel( 66 + x,99 + y,211,75,75 );
gfx.PutPixel( 67 + x,99 + y,208,32,32 );
gfx.PutPixel( 68 + x,99 + y,208,34,34 );
gfx.PutPixel( 69 + x,99 + y,208,33,33 );
gfx.PutPixel( 70 + x,99 + y,208,37,37 );
gfx.PutPixel( 71 + x,99 + y,211,79,79 );
gfx.PutPixel( 72 + x,99 + y,212,86,86 );
gfx.PutPixel( 73 + x,99 + y,209,54,54 );
gfx.PutPixel( 74 + x,99 + y,208,29,29 );
gfx.PutPixel( 75 + x,99 + y,208,32,32 );
gfx.PutPixel( 76 + x,99 + y,209,46,46 );
gfx.PutPixel( 77 + x,99 + y,212,87,87 );
gfx.PutPixel( 78 + x,99 + y,210,57,57 );
gfx.PutPixel( 79 + x,99 + y,208,34,34 );
gfx.PutPixel( 80 + x,99 + y,211,79,79 );
gfx.PutPixel( 81 + x,99 + y,211,84,84 );
gfx.PutPixel( 82 + x,99 + y,211,83,83 );
gfx.PutPixel( 83 + x,99 + y,211,72,72 );
gfx.PutPixel( 84 + x,99 + y,209,44,44 );
gfx.PutPixel( 85 + x,99 + y,207,24,24 );
gfx.PutPixel( 86 + x,99 + y,208,33,33 );
gfx.PutPixel( 87 + x,99 + y,208,34,34 );
gfx.PutPixel( 88 + x,99 + y,208,34,34 );
gfx.PutPixel( 89 + x,99 + y,208,34,34 );
gfx.PutPixel( 90 + x,99 + y,208,34,34 );
gfx.PutPixel( 91 + x,99 + y,208,34,34 );
gfx.PutPixel( 92 + x,99 + y,208,34,34 );
gfx.PutPixel( 93 + x,99 + y,208,34,34 );
gfx.PutPixel( 94 + x,99 + y,208,34,34 );
gfx.PutPixel( 95 + x,99 + y,208,34,34 );
gfx.PutPixel( 96 + x,99 + y,208,34,34 );
gfx.PutPixel( 97 + x,99 + y,208,34,34 );
gfx.PutPixel( 98 + x,99 + y,208,34,34 );
gfx.PutPixel( 99 + x,99 + y,208,34,34 );
gfx.PutPixel( 100 + x,99 + y,208,34,34 );
gfx.PutPixel( 101 + x,99 + y,208,34,34 );
gfx.PutPixel( 102 + x,99 + y,208,34,34 );
gfx.PutPixel( 103 + x,99 + y,208,34,34 );
gfx.PutPixel( 104 + x,99 + y,208,34,34 );
gfx.PutPixel( 105 + x,99 + y,208,34,34 );
gfx.PutPixel( 106 + x,99 + y,208,34,34 );
gfx.PutPixel( 107 + x,99 + y,208,34,34 );
gfx.PutPixel( 108 + x,99 + y,208,34,34 );
gfx.PutPixel( 109 + x,99 + y,208,34,34 );
gfx.PutPixel( 110 + x,99 + y,208,34,34 );
gfx.PutPixel( 111 + x,99 + y,208,34,34 );
gfx.PutPixel( 112 + x,99 + y,208,34,34 );
gfx.PutPixel( 113 + x,99 + y,208,34,34 );
gfx.PutPixel( 114 + x,99 + y,208,34,34 );
gfx.PutPixel( 115 + x,99 + y,208,34,34 );
gfx.PutPixel( 116 + x,99 + y,208,34,34 );
gfx.PutPixel( 117 + x,99 + y,208,34,34 );
gfx.PutPixel( 118 + x,99 + y,208,34,34 );
gfx.PutPixel( 119 + x,99 + y,208,34,34 );
gfx.PutPixel( 120 + x,99 + y,208,34,34 );
gfx.PutPixel( 121 + x,99 + y,208,34,34 );
gfx.PutPixel( 122 + x,99 + y,208,34,34 );
gfx.PutPixel( 123 + x,99 + y,208,34,34 );
gfx.PutPixel( 124 + x,99 + y,208,34,34 );
gfx.PutPixel( 125 + x,99 + y,208,34,34 );
gfx.PutPixel( 126 + x,99 + y,208,34,34 );
gfx.PutPixel( 127 + x,99 + y,208,34,34 );
gfx.PutPixel( 128 + x,99 + y,208,34,34 );
gfx.PutPixel( 129 + x,99 + y,208,34,34 );
gfx.PutPixel( 130 + x,99 + y,208,34,34 );
gfx.PutPixel( 131 + x,99 + y,208,34,34 );
gfx.PutPixel( 132 + x,99 + y,208,34,34 );
gfx.PutPixel( 133 + x,99 + y,208,34,34 );
gfx.PutPixel( 134 + x,99 + y,208,34,34 );
gfx.PutPixel( 135 + x,99 + y,208,34,34 );
gfx.PutPixel( 136 + x,99 + y,208,34,34 );
gfx.PutPixel( 137 + x,99 + y,208,34,34 );
gfx.PutPixel( 138 + x,99 + y,208,34,34 );
gfx.PutPixel( 139 + x,99 + y,208,34,34 );
gfx.PutPixel( 140 + x,99 + y,208,34,34 );
gfx.PutPixel( 141 + x,99 + y,208,34,34 );
gfx.PutPixel( 142 + x,99 + y,208,34,34 );
gfx.PutPixel( 143 + x,99 + y,208,34,34 );
gfx.PutPixel( 144 + x,99 + y,208,34,34 );
gfx.PutPixel( 145 + x,99 + y,208,34,34 );
gfx.PutPixel( 146 + x,99 + y,208,34,34 );
gfx.PutPixel( 147 + x,99 + y,208,34,34 );
gfx.PutPixel( 148 + x,99 + y,208,34,34 );
gfx.PutPixel( 149 + x,99 + y,208,34,34 );
gfx.PutPixel( 0 + x,100 + y,208,34,34 );
gfx.PutPixel( 1 + x,100 + y,208,34,34 );
gfx.PutPixel( 2 + x,100 + y,208,34,34 );
gfx.PutPixel( 3 + x,100 + y,208,34,34 );
gfx.PutPixel( 4 + x,100 + y,208,34,34 );
gfx.PutPixel( 5 + x,100 + y,208,34,34 );
gfx.PutPixel( 6 + x,100 + y,208,34,34 );
gfx.PutPixel( 7 + x,100 + y,208,34,34 );
gfx.PutPixel( 8 + x,100 + y,208,34,34 );
gfx.PutPixel( 9 + x,100 + y,208,34,34 );
gfx.PutPixel( 10 + x,100 + y,208,34,34 );
gfx.PutPixel( 11 + x,100 + y,208,34,34 );
gfx.PutPixel( 12 + x,100 + y,208,34,34 );
gfx.PutPixel( 13 + x,100 + y,208,34,34 );
gfx.PutPixel( 14 + x,100 + y,208,34,34 );
gfx.PutPixel( 15 + x,100 + y,208,34,34 );
gfx.PutPixel( 16 + x,100 + y,208,34,34 );
gfx.PutPixel( 17 + x,100 + y,208,34,34 );
gfx.PutPixel( 18 + x,100 + y,208,34,34 );
gfx.PutPixel( 19 + x,100 + y,208,34,34 );
gfx.PutPixel( 20 + x,100 + y,208,34,34 );
gfx.PutPixel( 21 + x,100 + y,208,34,34 );
gfx.PutPixel( 22 + x,100 + y,208,34,34 );
gfx.PutPixel( 23 + x,100 + y,208,34,34 );
gfx.PutPixel( 24 + x,100 + y,208,34,34 );
gfx.PutPixel( 25 + x,100 + y,208,34,34 );
gfx.PutPixel( 26 + x,100 + y,208,34,34 );
gfx.PutPixel( 27 + x,100 + y,208,34,34 );
gfx.PutPixel( 28 + x,100 + y,208,34,34 );
gfx.PutPixel( 29 + x,100 + y,208,34,34 );
gfx.PutPixel( 30 + x,100 + y,208,34,34 );
gfx.PutPixel( 31 + x,100 + y,208,34,34 );
gfx.PutPixel( 32 + x,100 + y,208,34,34 );
gfx.PutPixel( 33 + x,100 + y,208,34,34 );
gfx.PutPixel( 34 + x,100 + y,208,34,34 );
gfx.PutPixel( 35 + x,100 + y,208,34,34 );
gfx.PutPixel( 36 + x,100 + y,208,34,34 );
gfx.PutPixel( 37 + x,100 + y,208,34,34 );
gfx.PutPixel( 38 + x,100 + y,208,34,34 );
gfx.PutPixel( 39 + x,100 + y,208,34,34 );
gfx.PutPixel( 40 + x,100 + y,208,34,34 );
gfx.PutPixel( 41 + x,100 + y,208,34,34 );
gfx.PutPixel( 42 + x,100 + y,208,34,34 );
gfx.PutPixel( 43 + x,100 + y,208,34,34 );
gfx.PutPixel( 44 + x,100 + y,208,34,34 );
gfx.PutPixel( 45 + x,100 + y,208,34,34 );
gfx.PutPixel( 46 + x,100 + y,208,34,34 );
gfx.PutPixel( 47 + x,100 + y,208,34,34 );
gfx.PutPixel( 48 + x,100 + y,208,34,34 );
gfx.PutPixel( 49 + x,100 + y,208,34,34 );
gfx.PutPixel( 50 + x,100 + y,208,34,34 );
gfx.PutPixel( 51 + x,100 + y,208,34,34 );
gfx.PutPixel( 52 + x,100 + y,208,34,34 );
gfx.PutPixel( 53 + x,100 + y,208,34,34 );
gfx.PutPixel( 54 + x,100 + y,208,34,34 );
gfx.PutPixel( 55 + x,100 + y,208,34,34 );
gfx.PutPixel( 56 + x,100 + y,208,34,34 );
gfx.PutPixel( 57 + x,100 + y,208,34,34 );
gfx.PutPixel( 58 + x,100 + y,208,34,34 );
gfx.PutPixel( 59 + x,100 + y,208,34,34 );
gfx.PutPixel( 60 + x,100 + y,208,34,34 );
gfx.PutPixel( 61 + x,100 + y,208,34,34 );
gfx.PutPixel( 62 + x,100 + y,208,34,34 );
gfx.PutPixel( 63 + x,100 + y,208,31,31 );
gfx.PutPixel( 64 + x,100 + y,208,45,45 );
gfx.PutPixel( 65 + x,100 + y,220,209,209 );
gfx.PutPixel( 66 + x,100 + y,221,225,225 );
gfx.PutPixel( 67 + x,100 + y,210,60,60 );
gfx.PutPixel( 68 + x,100 + y,208,28,28 );
gfx.PutPixel( 69 + x,100 + y,208,30,30 );
gfx.PutPixel( 70 + x,100 + y,209,47,47 );
gfx.PutPixel( 71 + x,100 + y,220,214,214 );
gfx.PutPixel( 72 + x,100 + y,222,239,239 );
gfx.PutPixel( 73 + x,100 + y,219,185,185 );
gfx.PutPixel( 74 + x,100 + y,208,35,35 );
gfx.PutPixel( 75 + x,100 + y,207,22,22 );
gfx.PutPixel( 76 + x,100 + y,211,84,84 );
gfx.PutPixel( 77 + x,100 + y,223,247,247 );
gfx.PutPixel( 78 + x,100 + y,214,127,127 );
gfx.PutPixel( 79 + x,100 + y,208,35,35 );
gfx.PutPixel( 80 + x,100 + y,220,214,214 );
gfx.PutPixel( 81 + x,100 + y,222,234,234 );
gfx.PutPixel( 82 + x,100 + y,222,234,234 );
gfx.PutPixel( 83 + x,100 + y,222,232,232 );
gfx.PutPixel( 84 + x,100 + y,220,210,210 );
gfx.PutPixel( 85 + x,100 + y,214,119,119 );
gfx.PutPixel( 86 + x,100 + y,208,29,29 );
gfx.PutPixel( 87 + x,100 + y,208,33,33 );
gfx.PutPixel( 88 + x,100 + y,208,34,34 );
gfx.PutPixel( 89 + x,100 + y,208,34,34 );
gfx.PutPixel( 90 + x,100 + y,208,34,34 );
gfx.PutPixel( 91 + x,100 + y,208,34,34 );
gfx.PutPixel( 92 + x,100 + y,208,34,34 );
gfx.PutPixel( 93 + x,100 + y,208,34,34 );
gfx.PutPixel( 94 + x,100 + y,208,34,34 );
gfx.PutPixel( 95 + x,100 + y,208,34,34 );
gfx.PutPixel( 96 + x,100 + y,208,34,34 );
gfx.PutPixel( 97 + x,100 + y,208,34,34 );
gfx.PutPixel( 98 + x,100 + y,208,34,34 );
gfx.PutPixel( 99 + x,100 + y,208,34,34 );
gfx.PutPixel( 100 + x,100 + y,208,34,34 );
gfx.PutPixel( 101 + x,100 + y,208,34,34 );
gfx.PutPixel( 102 + x,100 + y,208,34,34 );
gfx.PutPixel( 103 + x,100 + y,208,34,34 );
gfx.PutPixel( 104 + x,100 + y,208,34,34 );
gfx.PutPixel( 105 + x,100 + y,208,34,34 );
gfx.PutPixel( 106 + x,100 + y,208,34,34 );
gfx.PutPixel( 107 + x,100 + y,208,34,34 );
gfx.PutPixel( 108 + x,100 + y,208,34,34 );
gfx.PutPixel( 109 + x,100 + y,208,34,34 );
gfx.PutPixel( 110 + x,100 + y,208,34,34 );
gfx.PutPixel( 111 + x,100 + y,208,34,34 );
gfx.PutPixel( 112 + x,100 + y,208,34,34 );
gfx.PutPixel( 113 + x,100 + y,208,34,34 );
gfx.PutPixel( 114 + x,100 + y,208,34,34 );
gfx.PutPixel( 115 + x,100 + y,208,34,34 );
gfx.PutPixel( 116 + x,100 + y,208,34,34 );
gfx.PutPixel( 117 + x,100 + y,208,34,34 );
gfx.PutPixel( 118 + x,100 + y,208,34,34 );
gfx.PutPixel( 119 + x,100 + y,208,34,34 );
gfx.PutPixel( 120 + x,100 + y,208,34,34 );
gfx.PutPixel( 121 + x,100 + y,208,34,34 );
gfx.PutPixel( 122 + x,100 + y,208,34,34 );
gfx.PutPixel( 123 + x,100 + y,208,34,34 );
gfx.PutPixel( 124 + x,100 + y,208,34,34 );
gfx.PutPixel( 125 + x,100 + y,208,34,34 );
gfx.PutPixel( 126 + x,100 + y,208,34,34 );
gfx.PutPixel( 127 + x,100 + y,208,34,34 );
gfx.PutPixel( 128 + x,100 + y,208,34,34 );
gfx.PutPixel( 129 + x,100 + y,208,34,34 );
gfx.PutPixel( 130 + x,100 + y,208,34,34 );
gfx.PutPixel( 131 + x,100 + y,208,34,34 );
gfx.PutPixel( 132 + x,100 + y,208,34,34 );
gfx.PutPixel( 133 + x,100 + y,208,34,34 );
gfx.PutPixel( 134 + x,100 + y,208,34,34 );
gfx.PutPixel( 135 + x,100 + y,208,34,34 );
gfx.PutPixel( 136 + x,100 + y,208,34,34 );
gfx.PutPixel( 137 + x,100 + y,208,34,34 );
gfx.PutPixel( 138 + x,100 + y,208,34,34 );
gfx.PutPixel( 139 + x,100 + y,208,34,34 );
gfx.PutPixel( 140 + x,100 + y,208,34,34 );
gfx.PutPixel( 141 + x,100 + y,208,34,34 );
gfx.PutPixel( 142 + x,100 + y,208,34,34 );
gfx.PutPixel( 143 + x,100 + y,208,34,34 );
gfx.PutPixel( 144 + x,100 + y,208,34,34 );
gfx.PutPixel( 145 + x,100 + y,208,34,34 );
gfx.PutPixel( 146 + x,100 + y,208,34,34 );
gfx.PutPixel( 147 + x,100 + y,208,34,34 );
gfx.PutPixel( 148 + x,100 + y,208,34,34 );
gfx.PutPixel( 149 + x,100 + y,208,34,34 );
gfx.PutPixel( 0 + x,101 + y,208,34,34 );
gfx.PutPixel( 1 + x,101 + y,208,34,34 );
gfx.PutPixel( 2 + x,101 + y,208,34,34 );
gfx.PutPixel( 3 + x,101 + y,208,34,34 );
gfx.PutPixel( 4 + x,101 + y,208,34,34 );
gfx.PutPixel( 5 + x,101 + y,208,34,34 );
gfx.PutPixel( 6 + x,101 + y,208,34,34 );
gfx.PutPixel( 7 + x,101 + y,208,34,34 );
gfx.PutPixel( 8 + x,101 + y,208,34,34 );
gfx.PutPixel( 9 + x,101 + y,208,34,34 );
gfx.PutPixel( 10 + x,101 + y,208,34,34 );
gfx.PutPixel( 11 + x,101 + y,208,34,34 );
gfx.PutPixel( 12 + x,101 + y,208,34,34 );
gfx.PutPixel( 13 + x,101 + y,208,34,34 );
gfx.PutPixel( 14 + x,101 + y,208,34,34 );
gfx.PutPixel( 15 + x,101 + y,208,34,34 );
gfx.PutPixel( 16 + x,101 + y,208,34,34 );
gfx.PutPixel( 17 + x,101 + y,208,34,34 );
gfx.PutPixel( 18 + x,101 + y,208,34,34 );
gfx.PutPixel( 19 + x,101 + y,208,34,34 );
gfx.PutPixel( 20 + x,101 + y,208,34,34 );
gfx.PutPixel( 21 + x,101 + y,208,34,34 );
gfx.PutPixel( 22 + x,101 + y,208,34,34 );
gfx.PutPixel( 23 + x,101 + y,208,34,34 );
gfx.PutPixel( 24 + x,101 + y,208,34,34 );
gfx.PutPixel( 25 + x,101 + y,208,34,34 );
gfx.PutPixel( 26 + x,101 + y,208,34,34 );
gfx.PutPixel( 27 + x,101 + y,208,34,34 );
gfx.PutPixel( 28 + x,101 + y,208,34,34 );
gfx.PutPixel( 29 + x,101 + y,208,34,34 );
gfx.PutPixel( 30 + x,101 + y,208,34,34 );
gfx.PutPixel( 31 + x,101 + y,208,34,34 );
gfx.PutPixel( 32 + x,101 + y,208,34,34 );
gfx.PutPixel( 33 + x,101 + y,208,34,34 );
gfx.PutPixel( 34 + x,101 + y,208,34,34 );
gfx.PutPixel( 35 + x,101 + y,208,34,34 );
gfx.PutPixel( 36 + x,101 + y,208,34,34 );
gfx.PutPixel( 37 + x,101 + y,208,34,34 );
gfx.PutPixel( 38 + x,101 + y,208,34,34 );
gfx.PutPixel( 39 + x,101 + y,208,34,34 );
gfx.PutPixel( 40 + x,101 + y,208,34,34 );
gfx.PutPixel( 41 + x,101 + y,208,34,34 );
gfx.PutPixel( 42 + x,101 + y,208,34,34 );
gfx.PutPixel( 43 + x,101 + y,208,34,34 );
gfx.PutPixel( 44 + x,101 + y,208,34,34 );
gfx.PutPixel( 45 + x,101 + y,208,34,34 );
gfx.PutPixel( 46 + x,101 + y,208,34,34 );
gfx.PutPixel( 47 + x,101 + y,208,34,34 );
gfx.PutPixel( 48 + x,101 + y,208,34,34 );
gfx.PutPixel( 49 + x,101 + y,208,34,34 );
gfx.PutPixel( 50 + x,101 + y,208,34,34 );
gfx.PutPixel( 51 + x,101 + y,208,34,34 );
gfx.PutPixel( 52 + x,101 + y,208,34,34 );
gfx.PutPixel( 53 + x,101 + y,208,34,34 );
gfx.PutPixel( 54 + x,101 + y,208,34,34 );
gfx.PutPixel( 55 + x,101 + y,208,34,34 );
gfx.PutPixel( 56 + x,101 + y,208,34,34 );
gfx.PutPixel( 57 + x,101 + y,208,34,34 );
gfx.PutPixel( 58 + x,101 + y,208,34,34 );
gfx.PutPixel( 59 + x,101 + y,208,34,34 );
gfx.PutPixel( 60 + x,101 + y,208,34,34 );
gfx.PutPixel( 61 + x,101 + y,208,34,34 );
gfx.PutPixel( 62 + x,101 + y,208,34,34 );
gfx.PutPixel( 63 + x,101 + y,207,22,22 );
gfx.PutPixel( 64 + x,101 + y,213,110,110 );
gfx.PutPixel( 65 + x,101 + y,222,233,233 );
gfx.PutPixel( 66 + x,101 + y,222,234,234 );
gfx.PutPixel( 67 + x,101 + y,215,134,134 );
gfx.PutPixel( 68 + x,101 + y,207,22,22 );
gfx.PutPixel( 69 + x,101 + y,208,30,30 );
gfx.PutPixel( 70 + x,101 + y,209,47,47 );
gfx.PutPixel( 71 + x,101 + y,220,208,208 );
gfx.PutPixel( 72 + x,101 + y,221,226,226 );
gfx.PutPixel( 73 + x,101 + y,222,236,236 );
gfx.PutPixel( 74 + x,101 + y,214,125,125 );
gfx.PutPixel( 75 + x,101 + y,207,13,13 );
gfx.PutPixel( 76 + x,101 + y,211,82,82 );
gfx.PutPixel( 77 + x,101 + y,222,241,241 );
gfx.PutPixel( 78 + x,101 + y,214,124,124 );
gfx.PutPixel( 79 + x,101 + y,208,35,35 );
gfx.PutPixel( 80 + x,101 + y,221,214,214 );
gfx.PutPixel( 81 + x,101 + y,219,189,189 );
gfx.PutPixel( 82 + x,101 + y,211,76,76 );
gfx.PutPixel( 83 + x,101 + y,213,101,101 );
gfx.PutPixel( 84 + x,101 + y,219,191,191 );
gfx.PutPixel( 85 + x,101 + y,222,242,242 );
gfx.PutPixel( 86 + x,101 + y,214,113,113 );
gfx.PutPixel( 87 + x,101 + y,207,24,24 );
gfx.PutPixel( 88 + x,101 + y,208,34,34 );
gfx.PutPixel( 89 + x,101 + y,208,34,34 );
gfx.PutPixel( 90 + x,101 + y,208,34,34 );
gfx.PutPixel( 91 + x,101 + y,208,34,34 );
gfx.PutPixel( 92 + x,101 + y,208,34,34 );
gfx.PutPixel( 93 + x,101 + y,208,34,34 );
gfx.PutPixel( 94 + x,101 + y,208,34,34 );
gfx.PutPixel( 95 + x,101 + y,208,34,34 );
gfx.PutPixel( 96 + x,101 + y,208,34,34 );
gfx.PutPixel( 97 + x,101 + y,208,34,34 );
gfx.PutPixel( 98 + x,101 + y,208,34,34 );
gfx.PutPixel( 99 + x,101 + y,208,34,34 );
gfx.PutPixel( 100 + x,101 + y,208,34,34 );
gfx.PutPixel( 101 + x,101 + y,208,34,34 );
gfx.PutPixel( 102 + x,101 + y,208,34,34 );
gfx.PutPixel( 103 + x,101 + y,208,34,34 );
gfx.PutPixel( 104 + x,101 + y,208,34,34 );
gfx.PutPixel( 105 + x,101 + y,208,34,34 );
gfx.PutPixel( 106 + x,101 + y,208,34,34 );
gfx.PutPixel( 107 + x,101 + y,208,34,34 );
gfx.PutPixel( 108 + x,101 + y,208,34,34 );
gfx.PutPixel( 109 + x,101 + y,208,34,34 );
gfx.PutPixel( 110 + x,101 + y,208,34,34 );
gfx.PutPixel( 111 + x,101 + y,208,34,34 );
gfx.PutPixel( 112 + x,101 + y,208,34,34 );
gfx.PutPixel( 113 + x,101 + y,208,34,34 );
gfx.PutPixel( 114 + x,101 + y,208,34,34 );
gfx.PutPixel( 115 + x,101 + y,208,34,34 );
gfx.PutPixel( 116 + x,101 + y,208,34,34 );
gfx.PutPixel( 117 + x,101 + y,208,34,34 );
gfx.PutPixel( 118 + x,101 + y,208,34,34 );
gfx.PutPixel( 119 + x,101 + y,208,34,34 );
gfx.PutPixel( 120 + x,101 + y,208,34,34 );
gfx.PutPixel( 121 + x,101 + y,208,34,34 );
gfx.PutPixel( 122 + x,101 + y,208,34,34 );
gfx.PutPixel( 123 + x,101 + y,208,34,34 );
gfx.PutPixel( 124 + x,101 + y,208,34,34 );
gfx.PutPixel( 125 + x,101 + y,208,34,34 );
gfx.PutPixel( 126 + x,101 + y,208,34,34 );
gfx.PutPixel( 127 + x,101 + y,208,34,34 );
gfx.PutPixel( 128 + x,101 + y,208,34,34 );
gfx.PutPixel( 129 + x,101 + y,208,34,34 );
gfx.PutPixel( 130 + x,101 + y,208,34,34 );
gfx.PutPixel( 131 + x,101 + y,208,34,34 );
gfx.PutPixel( 132 + x,101 + y,208,34,34 );
gfx.PutPixel( 133 + x,101 + y,208,34,34 );
gfx.PutPixel( 134 + x,101 + y,208,34,34 );
gfx.PutPixel( 135 + x,101 + y,208,34,34 );
gfx.PutPixel( 136 + x,101 + y,208,34,34 );
gfx.PutPixel( 137 + x,101 + y,208,34,34 );
gfx.PutPixel( 138 + x,101 + y,208,34,34 );
gfx.PutPixel( 139 + x,101 + y,208,34,34 );
gfx.PutPixel( 140 + x,101 + y,208,34,34 );
gfx.PutPixel( 141 + x,101 + y,208,34,34 );
gfx.PutPixel( 142 + x,101 + y,208,34,34 );
gfx.PutPixel( 143 + x,101 + y,208,34,34 );
gfx.PutPixel( 144 + x,101 + y,208,34,34 );
gfx.PutPixel( 145 + x,101 + y,208,34,34 );
gfx.PutPixel( 146 + x,101 + y,208,34,34 );
gfx.PutPixel( 147 + x,101 + y,208,34,34 );
gfx.PutPixel( 148 + x,101 + y,208,34,34 );
gfx.PutPixel( 149 + x,101 + y,208,34,34 );
gfx.PutPixel( 0 + x,102 + y,208,34,34 );
gfx.PutPixel( 1 + x,102 + y,208,34,34 );
gfx.PutPixel( 2 + x,102 + y,208,34,34 );
gfx.PutPixel( 3 + x,102 + y,208,34,34 );
gfx.PutPixel( 4 + x,102 + y,208,34,34 );
gfx.PutPixel( 5 + x,102 + y,208,34,34 );
gfx.PutPixel( 6 + x,102 + y,208,34,34 );
gfx.PutPixel( 7 + x,102 + y,208,34,34 );
gfx.PutPixel( 8 + x,102 + y,208,34,34 );
gfx.PutPixel( 9 + x,102 + y,208,34,34 );
gfx.PutPixel( 10 + x,102 + y,208,34,34 );
gfx.PutPixel( 11 + x,102 + y,208,34,34 );
gfx.PutPixel( 12 + x,102 + y,208,34,34 );
gfx.PutPixel( 13 + x,102 + y,208,34,34 );
gfx.PutPixel( 14 + x,102 + y,208,34,34 );
gfx.PutPixel( 15 + x,102 + y,208,34,34 );
gfx.PutPixel( 16 + x,102 + y,208,34,34 );
gfx.PutPixel( 17 + x,102 + y,208,34,34 );
gfx.PutPixel( 18 + x,102 + y,208,34,34 );
gfx.PutPixel( 19 + x,102 + y,208,34,34 );
gfx.PutPixel( 20 + x,102 + y,208,34,34 );
gfx.PutPixel( 21 + x,102 + y,208,34,34 );
gfx.PutPixel( 22 + x,102 + y,208,34,34 );
gfx.PutPixel( 23 + x,102 + y,208,34,34 );
gfx.PutPixel( 24 + x,102 + y,208,34,34 );
gfx.PutPixel( 25 + x,102 + y,208,34,34 );
gfx.PutPixel( 26 + x,102 + y,208,34,34 );
gfx.PutPixel( 27 + x,102 + y,208,34,34 );
gfx.PutPixel( 28 + x,102 + y,208,34,34 );
gfx.PutPixel( 29 + x,102 + y,208,34,34 );
gfx.PutPixel( 30 + x,102 + y,208,34,34 );
gfx.PutPixel( 31 + x,102 + y,208,34,34 );
gfx.PutPixel( 32 + x,102 + y,208,34,34 );
gfx.PutPixel( 33 + x,102 + y,208,34,34 );
gfx.PutPixel( 34 + x,102 + y,208,34,34 );
gfx.PutPixel( 35 + x,102 + y,208,34,34 );
gfx.PutPixel( 36 + x,102 + y,208,34,34 );
gfx.PutPixel( 37 + x,102 + y,208,34,34 );
gfx.PutPixel( 38 + x,102 + y,208,34,34 );
gfx.PutPixel( 39 + x,102 + y,208,34,34 );
gfx.PutPixel( 40 + x,102 + y,208,34,34 );
gfx.PutPixel( 41 + x,102 + y,208,34,34 );
gfx.PutPixel( 42 + x,102 + y,208,34,34 );
gfx.PutPixel( 43 + x,102 + y,208,34,34 );
gfx.PutPixel( 44 + x,102 + y,208,34,34 );
gfx.PutPixel( 45 + x,102 + y,208,34,34 );
gfx.PutPixel( 46 + x,102 + y,208,34,34 );
gfx.PutPixel( 47 + x,102 + y,208,34,34 );
gfx.PutPixel( 48 + x,102 + y,208,34,34 );
gfx.PutPixel( 49 + x,102 + y,208,34,34 );
gfx.PutPixel( 50 + x,102 + y,208,34,34 );
gfx.PutPixel( 51 + x,102 + y,208,34,34 );
gfx.PutPixel( 52 + x,102 + y,208,34,34 );
gfx.PutPixel( 53 + x,102 + y,208,34,34 );
gfx.PutPixel( 54 + x,102 + y,208,34,34 );
gfx.PutPixel( 55 + x,102 + y,208,34,34 );
gfx.PutPixel( 56 + x,102 + y,208,34,34 );
gfx.PutPixel( 57 + x,102 + y,208,34,34 );
gfx.PutPixel( 58 + x,102 + y,208,34,34 );
gfx.PutPixel( 59 + x,102 + y,208,34,34 );
gfx.PutPixel( 60 + x,102 + y,208,34,34 );
gfx.PutPixel( 61 + x,102 + y,208,34,34 );
gfx.PutPixel( 62 + x,102 + y,208,32,32 );
gfx.PutPixel( 63 + x,102 + y,208,33,33 );
gfx.PutPixel( 64 + x,102 + y,219,194,194 );
gfx.PutPixel( 65 + x,102 + y,218,175,175 );
gfx.PutPixel( 66 + x,102 + y,217,169,169 );
gfx.PutPixel( 67 + x,102 + y,220,212,212 );
gfx.PutPixel( 68 + x,102 + y,209,45,45 );
gfx.PutPixel( 69 + x,102 + y,207,27,27 );
gfx.PutPixel( 70 + x,102 + y,209,47,47 );
gfx.PutPixel( 71 + x,102 + y,221,213,213 );
gfx.PutPixel( 72 + x,102 + y,219,186,186 );
gfx.PutPixel( 73 + x,102 + y,219,190,190 );
gfx.PutPixel( 74 + x,102 + y,221,225,225 );
gfx.PutPixel( 75 + x,102 + y,210,56,56 );
gfx.PutPixel( 76 + x,102 + y,211,74,74 );
gfx.PutPixel( 77 + x,102 + y,222,240,240 );
gfx.PutPixel( 78 + x,102 + y,214,124,124 );
gfx.PutPixel( 79 + x,102 + y,208,35,35 );
gfx.PutPixel( 80 + x,102 + y,221,216,216 );
gfx.PutPixel( 81 + x,102 + y,218,174,174 );
gfx.PutPixel( 82 + x,102 + y,207,18,18 );
gfx.PutPixel( 83 + x,102 + y,207,19,19 );
gfx.PutPixel( 84 + x,102 + y,209,50,50 );
gfx.PutPixel( 85 + x,102 + y,221,213,213 );
gfx.PutPixel( 86 + x,102 + y,219,195,195 );
gfx.PutPixel( 87 + x,102 + y,208,35,35 );
gfx.PutPixel( 88 + x,102 + y,208,32,32 );
gfx.PutPixel( 89 + x,102 + y,208,34,34 );
gfx.PutPixel( 90 + x,102 + y,208,34,34 );
gfx.PutPixel( 91 + x,102 + y,208,34,34 );
gfx.PutPixel( 92 + x,102 + y,208,34,34 );
gfx.PutPixel( 93 + x,102 + y,208,34,34 );
gfx.PutPixel( 94 + x,102 + y,208,34,34 );
gfx.PutPixel( 95 + x,102 + y,208,34,34 );
gfx.PutPixel( 96 + x,102 + y,208,34,34 );
gfx.PutPixel( 97 + x,102 + y,208,34,34 );
gfx.PutPixel( 98 + x,102 + y,208,34,34 );
gfx.PutPixel( 99 + x,102 + y,208,34,34 );
gfx.PutPixel( 100 + x,102 + y,208,34,34 );
gfx.PutPixel( 101 + x,102 + y,208,34,34 );
gfx.PutPixel( 102 + x,102 + y,208,34,34 );
gfx.PutPixel( 103 + x,102 + y,208,34,34 );
gfx.PutPixel( 104 + x,102 + y,208,34,34 );
gfx.PutPixel( 105 + x,102 + y,208,34,34 );
gfx.PutPixel( 106 + x,102 + y,208,34,34 );
gfx.PutPixel( 107 + x,102 + y,208,34,34 );
gfx.PutPixel( 108 + x,102 + y,208,34,34 );
gfx.PutPixel( 109 + x,102 + y,208,34,34 );
gfx.PutPixel( 110 + x,102 + y,208,34,34 );
gfx.PutPixel( 111 + x,102 + y,208,34,34 );
gfx.PutPixel( 112 + x,102 + y,208,34,34 );
gfx.PutPixel( 113 + x,102 + y,208,34,34 );
gfx.PutPixel( 114 + x,102 + y,208,34,34 );
gfx.PutPixel( 115 + x,102 + y,208,34,34 );
gfx.PutPixel( 116 + x,102 + y,208,34,34 );
gfx.PutPixel( 117 + x,102 + y,208,34,34 );
gfx.PutPixel( 118 + x,102 + y,208,34,34 );
gfx.PutPixel( 119 + x,102 + y,208,34,34 );
gfx.PutPixel( 120 + x,102 + y,208,34,34 );
gfx.PutPixel( 121 + x,102 + y,208,34,34 );
gfx.PutPixel( 122 + x,102 + y,208,34,34 );
gfx.PutPixel( 123 + x,102 + y,208,34,34 );
gfx.PutPixel( 124 + x,102 + y,208,34,34 );
gfx.PutPixel( 125 + x,102 + y,208,34,34 );
gfx.PutPixel( 126 + x,102 + y,208,34,34 );
gfx.PutPixel( 127 + x,102 + y,208,34,34 );
gfx.PutPixel( 128 + x,102 + y,208,34,34 );
gfx.PutPixel( 129 + x,102 + y,208,34,34 );
gfx.PutPixel( 130 + x,102 + y,208,34,34 );
gfx.PutPixel( 131 + x,102 + y,208,34,34 );
gfx.PutPixel( 132 + x,102 + y,208,34,34 );
gfx.PutPixel( 133 + x,102 + y,208,34,34 );
gfx.PutPixel( 134 + x,102 + y,208,34,34 );
gfx.PutPixel( 135 + x,102 + y,208,34,34 );
gfx.PutPixel( 136 + x,102 + y,208,34,34 );
gfx.PutPixel( 137 + x,102 + y,208,34,34 );
gfx.PutPixel( 138 + x,102 + y,208,34,34 );
gfx.PutPixel( 139 + x,102 + y,208,34,34 );
gfx.PutPixel( 140 + x,102 + y,208,34,34 );
gfx.PutPixel( 141 + x,102 + y,208,34,34 );
gfx.PutPixel( 142 + x,102 + y,208,34,34 );
gfx.PutPixel( 143 + x,102 + y,208,34,34 );
gfx.PutPixel( 144 + x,102 + y,208,34,34 );
gfx.PutPixel( 145 + x,102 + y,208,34,34 );
gfx.PutPixel( 146 + x,102 + y,208,34,34 );
gfx.PutPixel( 147 + x,102 + y,208,34,34 );
gfx.PutPixel( 148 + x,102 + y,208,34,34 );
gfx.PutPixel( 149 + x,102 + y,208,34,34 );
gfx.PutPixel( 0 + x,103 + y,208,34,34 );
gfx.PutPixel( 1 + x,103 + y,208,34,34 );
gfx.PutPixel( 2 + x,103 + y,208,34,34 );
gfx.PutPixel( 3 + x,103 + y,208,34,34 );
gfx.PutPixel( 4 + x,103 + y,208,34,34 );
gfx.PutPixel( 5 + x,103 + y,208,34,34 );
gfx.PutPixel( 6 + x,103 + y,208,34,34 );
gfx.PutPixel( 7 + x,103 + y,208,34,34 );
gfx.PutPixel( 8 + x,103 + y,208,34,34 );
gfx.PutPixel( 9 + x,103 + y,208,34,34 );
gfx.PutPixel( 10 + x,103 + y,208,34,34 );
gfx.PutPixel( 11 + x,103 + y,208,34,34 );
gfx.PutPixel( 12 + x,103 + y,208,34,34 );
gfx.PutPixel( 13 + x,103 + y,208,34,34 );
gfx.PutPixel( 14 + x,103 + y,208,34,34 );
gfx.PutPixel( 15 + x,103 + y,208,34,34 );
gfx.PutPixel( 16 + x,103 + y,208,34,34 );
gfx.PutPixel( 17 + x,103 + y,208,34,34 );
gfx.PutPixel( 18 + x,103 + y,208,34,34 );
gfx.PutPixel( 19 + x,103 + y,208,34,34 );
gfx.PutPixel( 20 + x,103 + y,208,34,34 );
gfx.PutPixel( 21 + x,103 + y,208,34,34 );
gfx.PutPixel( 22 + x,103 + y,208,34,34 );
gfx.PutPixel( 23 + x,103 + y,208,34,34 );
gfx.PutPixel( 24 + x,103 + y,208,34,34 );
gfx.PutPixel( 25 + x,103 + y,208,34,34 );
gfx.PutPixel( 26 + x,103 + y,208,34,34 );
gfx.PutPixel( 27 + x,103 + y,208,34,34 );
gfx.PutPixel( 28 + x,103 + y,208,34,34 );
gfx.PutPixel( 29 + x,103 + y,208,34,34 );
gfx.PutPixel( 30 + x,103 + y,208,34,34 );
gfx.PutPixel( 31 + x,103 + y,208,34,34 );
gfx.PutPixel( 32 + x,103 + y,208,34,34 );
gfx.PutPixel( 33 + x,103 + y,208,34,34 );
gfx.PutPixel( 34 + x,103 + y,208,34,34 );
gfx.PutPixel( 35 + x,103 + y,208,34,34 );
gfx.PutPixel( 36 + x,103 + y,208,34,34 );
gfx.PutPixel( 37 + x,103 + y,208,34,34 );
gfx.PutPixel( 38 + x,103 + y,208,34,34 );
gfx.PutPixel( 39 + x,103 + y,208,34,34 );
gfx.PutPixel( 40 + x,103 + y,208,34,34 );
gfx.PutPixel( 41 + x,103 + y,208,34,34 );
gfx.PutPixel( 42 + x,103 + y,208,34,34 );
gfx.PutPixel( 43 + x,103 + y,208,34,34 );
gfx.PutPixel( 44 + x,103 + y,208,34,34 );
gfx.PutPixel( 45 + x,103 + y,208,34,34 );
gfx.PutPixel( 46 + x,103 + y,208,34,34 );
gfx.PutPixel( 47 + x,103 + y,208,34,34 );
gfx.PutPixel( 48 + x,103 + y,208,34,34 );
gfx.PutPixel( 49 + x,103 + y,208,34,34 );
gfx.PutPixel( 50 + x,103 + y,208,34,34 );
gfx.PutPixel( 51 + x,103 + y,208,34,34 );
gfx.PutPixel( 52 + x,103 + y,208,34,34 );
gfx.PutPixel( 53 + x,103 + y,208,34,34 );
gfx.PutPixel( 54 + x,103 + y,208,34,34 );
gfx.PutPixel( 55 + x,103 + y,208,34,34 );
gfx.PutPixel( 56 + x,103 + y,208,34,34 );
gfx.PutPixel( 57 + x,103 + y,208,34,34 );
gfx.PutPixel( 58 + x,103 + y,208,34,34 );
gfx.PutPixel( 59 + x,103 + y,208,34,34 );
gfx.PutPixel( 60 + x,103 + y,208,34,34 );
gfx.PutPixel( 61 + x,103 + y,208,34,34 );
gfx.PutPixel( 62 + x,103 + y,207,24,24 );
gfx.PutPixel( 63 + x,103 + y,212,88,88 );
gfx.PutPixel( 64 + x,103 + y,222,236,236 );
gfx.PutPixel( 65 + x,103 + y,212,86,86 );
gfx.PutPixel( 66 + x,103 + y,211,77,77 );
gfx.PutPixel( 67 + x,103 + y,222,239,239 );
gfx.PutPixel( 68 + x,103 + y,213,112,112 );
gfx.PutPixel( 69 + x,103 + y,207,19,19 );
gfx.PutPixel( 70 + x,103 + y,209,47,47 );
gfx.PutPixel( 71 + x,103 + y,221,216,216 );
gfx.PutPixel( 72 + x,103 + y,217,166,166 );
gfx.PutPixel( 73 + x,103 + y,211,82,82 );
gfx.PutPixel( 74 + x,103 + y,222,237,237 );
gfx.PutPixel( 75 + x,103 + y,217,166,166 );
gfx.PutPixel( 76 + x,103 + y,211,78,78 );
gfx.PutPixel( 77 + x,103 + y,222,238,238 );
gfx.PutPixel( 78 + x,103 + y,214,124,124 );
gfx.PutPixel( 79 + x,103 + y,208,35,35 );
gfx.PutPixel( 80 + x,103 + y,221,216,216 );
gfx.PutPixel( 81 + x,103 + y,218,176,176 );
gfx.PutPixel( 82 + x,103 + y,208,27,27 );
gfx.PutPixel( 83 + x,103 + y,208,33,33 );
gfx.PutPixel( 84 + x,103 + y,208,25,25 );
gfx.PutPixel( 85 + x,103 + y,218,176,176 );
gfx.PutPixel( 86 + x,103 + y,220,217,217 );
gfx.PutPixel( 87 + x,103 + y,209,47,47 );
gfx.PutPixel( 88 + x,103 + y,208,31,31 );
gfx.PutPixel( 89 + x,103 + y,208,34,34 );
gfx.PutPixel( 90 + x,103 + y,208,34,34 );
gfx.PutPixel( 91 + x,103 + y,208,34,34 );
gfx.PutPixel( 92 + x,103 + y,208,34,34 );
gfx.PutPixel( 93 + x,103 + y,208,34,34 );
gfx.PutPixel( 94 + x,103 + y,208,34,34 );
gfx.PutPixel( 95 + x,103 + y,208,34,34 );
gfx.PutPixel( 96 + x,103 + y,208,34,34 );
gfx.PutPixel( 97 + x,103 + y,208,34,34 );
gfx.PutPixel( 98 + x,103 + y,208,34,34 );
gfx.PutPixel( 99 + x,103 + y,208,34,34 );
gfx.PutPixel( 100 + x,103 + y,208,34,34 );
gfx.PutPixel( 101 + x,103 + y,208,34,34 );
gfx.PutPixel( 102 + x,103 + y,208,34,34 );
gfx.PutPixel( 103 + x,103 + y,208,34,34 );
gfx.PutPixel( 104 + x,103 + y,208,34,34 );
gfx.PutPixel( 105 + x,103 + y,208,34,34 );
gfx.PutPixel( 106 + x,103 + y,208,34,34 );
gfx.PutPixel( 107 + x,103 + y,208,34,34 );
gfx.PutPixel( 108 + x,103 + y,208,34,34 );
gfx.PutPixel( 109 + x,103 + y,208,34,34 );
gfx.PutPixel( 110 + x,103 + y,208,34,34 );
gfx.PutPixel( 111 + x,103 + y,208,34,34 );
gfx.PutPixel( 112 + x,103 + y,208,34,34 );
gfx.PutPixel( 113 + x,103 + y,208,34,34 );
gfx.PutPixel( 114 + x,103 + y,208,34,34 );
gfx.PutPixel( 115 + x,103 + y,208,34,34 );
gfx.PutPixel( 116 + x,103 + y,208,34,34 );
gfx.PutPixel( 117 + x,103 + y,208,34,34 );
gfx.PutPixel( 118 + x,103 + y,208,34,34 );
gfx.PutPixel( 119 + x,103 + y,208,34,34 );
gfx.PutPixel( 120 + x,103 + y,208,34,34 );
gfx.PutPixel( 121 + x,103 + y,208,34,34 );
gfx.PutPixel( 122 + x,103 + y,208,34,34 );
gfx.PutPixel( 123 + x,103 + y,208,34,34 );
gfx.PutPixel( 124 + x,103 + y,208,34,34 );
gfx.PutPixel( 125 + x,103 + y,208,34,34 );
gfx.PutPixel( 126 + x,103 + y,208,34,34 );
gfx.PutPixel( 127 + x,103 + y,208,34,34 );
gfx.PutPixel( 128 + x,103 + y,208,34,34 );
gfx.PutPixel( 129 + x,103 + y,208,34,34 );
gfx.PutPixel( 130 + x,103 + y,208,34,34 );
gfx.PutPixel( 131 + x,103 + y,208,34,34 );
gfx.PutPixel( 132 + x,103 + y,208,34,34 );
gfx.PutPixel( 133 + x,103 + y,208,34,34 );
gfx.PutPixel( 134 + x,103 + y,208,34,34 );
gfx.PutPixel( 135 + x,103 + y,208,34,34 );
gfx.PutPixel( 136 + x,103 + y,208,34,34 );
gfx.PutPixel( 137 + x,103 + y,208,34,34 );
gfx.PutPixel( 138 + x,103 + y,208,34,34 );
gfx.PutPixel( 139 + x,103 + y,208,34,34 );
gfx.PutPixel( 140 + x,103 + y,208,34,34 );
gfx.PutPixel( 141 + x,103 + y,208,34,34 );
gfx.PutPixel( 142 + x,103 + y,208,34,34 );
gfx.PutPixel( 143 + x,103 + y,208,34,34 );
gfx.PutPixel( 144 + x,103 + y,208,34,34 );
gfx.PutPixel( 145 + x,103 + y,208,34,34 );
gfx.PutPixel( 146 + x,103 + y,208,34,34 );
gfx.PutPixel( 147 + x,103 + y,208,34,34 );
gfx.PutPixel( 148 + x,103 + y,208,34,34 );
gfx.PutPixel( 149 + x,103 + y,208,34,34 );
gfx.PutPixel( 0 + x,104 + y,208,34,34 );
gfx.PutPixel( 1 + x,104 + y,208,34,34 );
gfx.PutPixel( 2 + x,104 + y,208,34,34 );
gfx.PutPixel( 3 + x,104 + y,208,34,34 );
gfx.PutPixel( 4 + x,104 + y,208,34,34 );
gfx.PutPixel( 5 + x,104 + y,208,34,34 );
gfx.PutPixel( 6 + x,104 + y,208,34,34 );
gfx.PutPixel( 7 + x,104 + y,208,34,34 );
gfx.PutPixel( 8 + x,104 + y,208,34,34 );
gfx.PutPixel( 9 + x,104 + y,208,34,34 );
gfx.PutPixel( 10 + x,104 + y,208,34,34 );
gfx.PutPixel( 11 + x,104 + y,208,34,34 );
gfx.PutPixel( 12 + x,104 + y,208,34,34 );
gfx.PutPixel( 13 + x,104 + y,208,34,34 );
gfx.PutPixel( 14 + x,104 + y,208,34,34 );
gfx.PutPixel( 15 + x,104 + y,208,34,34 );
gfx.PutPixel( 16 + x,104 + y,208,34,34 );
gfx.PutPixel( 17 + x,104 + y,208,34,34 );
gfx.PutPixel( 18 + x,104 + y,208,34,34 );
gfx.PutPixel( 19 + x,104 + y,208,34,34 );
gfx.PutPixel( 20 + x,104 + y,208,34,34 );
gfx.PutPixel( 21 + x,104 + y,208,34,34 );
gfx.PutPixel( 22 + x,104 + y,208,34,34 );
gfx.PutPixel( 23 + x,104 + y,208,34,34 );
gfx.PutPixel( 24 + x,104 + y,208,34,34 );
gfx.PutPixel( 25 + x,104 + y,208,34,34 );
gfx.PutPixel( 26 + x,104 + y,208,34,34 );
gfx.PutPixel( 27 + x,104 + y,208,34,34 );
gfx.PutPixel( 28 + x,104 + y,208,34,34 );
gfx.PutPixel( 29 + x,104 + y,208,34,34 );
gfx.PutPixel( 30 + x,104 + y,208,34,34 );
gfx.PutPixel( 31 + x,104 + y,208,34,34 );
gfx.PutPixel( 32 + x,104 + y,208,34,34 );
gfx.PutPixel( 33 + x,104 + y,208,34,34 );
gfx.PutPixel( 34 + x,104 + y,208,34,34 );
gfx.PutPixel( 35 + x,104 + y,208,34,34 );
gfx.PutPixel( 36 + x,104 + y,208,34,34 );
gfx.PutPixel( 37 + x,104 + y,208,34,34 );
gfx.PutPixel( 38 + x,104 + y,208,34,34 );
gfx.PutPixel( 39 + x,104 + y,208,34,34 );
gfx.PutPixel( 40 + x,104 + y,208,34,34 );
gfx.PutPixel( 41 + x,104 + y,208,34,34 );
gfx.PutPixel( 42 + x,104 + y,208,34,34 );
gfx.PutPixel( 43 + x,104 + y,208,34,34 );
gfx.PutPixel( 44 + x,104 + y,208,34,34 );
gfx.PutPixel( 45 + x,104 + y,208,34,34 );
gfx.PutPixel( 46 + x,104 + y,208,34,34 );
gfx.PutPixel( 47 + x,104 + y,208,34,34 );
gfx.PutPixel( 48 + x,104 + y,208,34,34 );
gfx.PutPixel( 49 + x,104 + y,208,34,34 );
gfx.PutPixel( 50 + x,104 + y,208,34,34 );
gfx.PutPixel( 51 + x,104 + y,208,34,34 );
gfx.PutPixel( 52 + x,104 + y,208,34,34 );
gfx.PutPixel( 53 + x,104 + y,208,34,34 );
gfx.PutPixel( 54 + x,104 + y,208,34,34 );
gfx.PutPixel( 55 + x,104 + y,208,34,34 );
gfx.PutPixel( 56 + x,104 + y,208,34,34 );
gfx.PutPixel( 57 + x,104 + y,208,34,34 );
gfx.PutPixel( 58 + x,104 + y,208,34,34 );
gfx.PutPixel( 59 + x,104 + y,208,34,34 );
gfx.PutPixel( 60 + x,104 + y,208,34,34 );
gfx.PutPixel( 61 + x,104 + y,208,34,34 );
gfx.PutPixel( 62 + x,104 + y,207,26,26 );
gfx.PutPixel( 63 + x,104 + y,217,165,165 );
gfx.PutPixel( 64 + x,104 + y,222,235,235 );
gfx.PutPixel( 65 + x,104 + y,219,186,186 );
gfx.PutPixel( 66 + x,104 + y,218,185,185 );
gfx.PutPixel( 67 + x,104 + y,222,232,232 );
gfx.PutPixel( 68 + x,104 + y,219,188,188 );
gfx.PutPixel( 69 + x,104 + y,208,30,30 );
gfx.PutPixel( 70 + x,104 + y,209,45,45 );
gfx.PutPixel( 71 + x,104 + y,221,216,216 );
gfx.PutPixel( 72 + x,104 + y,218,176,176 );
gfx.PutPixel( 73 + x,104 + y,207,18,18 );
gfx.PutPixel( 74 + x,104 + y,216,155,155 );
gfx.PutPixel( 75 + x,104 + y,222,235,235 );
gfx.PutPixel( 76 + x,104 + y,217,160,160 );
gfx.PutPixel( 77 + x,104 + y,222,231,231 );
gfx.PutPixel( 78 + x,104 + y,214,124,124 );
gfx.PutPixel( 79 + x,104 + y,208,35,35 );
gfx.PutPixel( 80 + x,104 + y,221,216,216 );
gfx.PutPixel( 81 + x,104 + y,218,175,175 );
gfx.PutPixel( 82 + x,104 + y,208,23,23 );
gfx.PutPixel( 83 + x,104 + y,207,24,24 );
gfx.PutPixel( 84 + x,104 + y,208,34,34 );
gfx.PutPixel( 85 + x,104 + y,220,200,200 );
gfx.PutPixel( 86 + x,104 + y,220,204,204 );
gfx.PutPixel( 87 + x,104 + y,209,39,39 );
gfx.PutPixel( 88 + x,104 + y,208,32,32 );
gfx.PutPixel( 89 + x,104 + y,208,34,34 );
gfx.PutPixel( 90 + x,104 + y,208,34,34 );
gfx.PutPixel( 91 + x,104 + y,208,34,34 );
gfx.PutPixel( 92 + x,104 + y,208,34,34 );
gfx.PutPixel( 93 + x,104 + y,208,34,34 );
gfx.PutPixel( 94 + x,104 + y,208,34,34 );
gfx.PutPixel( 95 + x,104 + y,208,34,34 );
gfx.PutPixel( 96 + x,104 + y,208,34,34 );
gfx.PutPixel( 97 + x,104 + y,208,34,34 );
gfx.PutPixel( 98 + x,104 + y,208,34,34 );
gfx.PutPixel( 99 + x,104 + y,208,34,34 );
gfx.PutPixel( 100 + x,104 + y,208,34,34 );
gfx.PutPixel( 101 + x,104 + y,208,34,34 );
gfx.PutPixel( 102 + x,104 + y,208,34,34 );
gfx.PutPixel( 103 + x,104 + y,208,34,34 );
gfx.PutPixel( 104 + x,104 + y,208,34,34 );
gfx.PutPixel( 105 + x,104 + y,208,34,34 );
gfx.PutPixel( 106 + x,104 + y,208,34,34 );
gfx.PutPixel( 107 + x,104 + y,208,34,34 );
gfx.PutPixel( 108 + x,104 + y,208,34,34 );
gfx.PutPixel( 109 + x,104 + y,208,34,34 );
gfx.PutPixel( 110 + x,104 + y,208,34,34 );
gfx.PutPixel( 111 + x,104 + y,208,34,34 );
gfx.PutPixel( 112 + x,104 + y,208,34,34 );
gfx.PutPixel( 113 + x,104 + y,208,34,34 );
gfx.PutPixel( 114 + x,104 + y,208,34,34 );
gfx.PutPixel( 115 + x,104 + y,208,34,34 );
gfx.PutPixel( 116 + x,104 + y,208,34,34 );
gfx.PutPixel( 117 + x,104 + y,208,34,34 );
gfx.PutPixel( 118 + x,104 + y,208,34,34 );
gfx.PutPixel( 119 + x,104 + y,208,34,34 );
gfx.PutPixel( 120 + x,104 + y,208,34,34 );
gfx.PutPixel( 121 + x,104 + y,208,34,34 );
gfx.PutPixel( 122 + x,104 + y,208,34,34 );
gfx.PutPixel( 123 + x,104 + y,208,34,34 );
gfx.PutPixel( 124 + x,104 + y,208,34,34 );
gfx.PutPixel( 125 + x,104 + y,208,34,34 );
gfx.PutPixel( 126 + x,104 + y,208,34,34 );
gfx.PutPixel( 127 + x,104 + y,208,34,34 );
gfx.PutPixel( 128 + x,104 + y,208,34,34 );
gfx.PutPixel( 129 + x,104 + y,208,34,34 );
gfx.PutPixel( 130 + x,104 + y,208,34,34 );
gfx.PutPixel( 131 + x,104 + y,208,34,34 );
gfx.PutPixel( 132 + x,104 + y,208,34,34 );
gfx.PutPixel( 133 + x,104 + y,208,34,34 );
gfx.PutPixel( 134 + x,104 + y,208,34,34 );
gfx.PutPixel( 135 + x,104 + y,208,34,34 );
gfx.PutPixel( 136 + x,104 + y,208,34,34 );
gfx.PutPixel( 137 + x,104 + y,208,34,34 );
gfx.PutPixel( 138 + x,104 + y,208,34,34 );
gfx.PutPixel( 139 + x,104 + y,208,34,34 );
gfx.PutPixel( 140 + x,104 + y,208,34,34 );
gfx.PutPixel( 141 + x,104 + y,208,34,34 );
gfx.PutPixel( 142 + x,104 + y,208,34,34 );
gfx.PutPixel( 143 + x,104 + y,208,34,34 );
gfx.PutPixel( 144 + x,104 + y,208,34,34 );
gfx.PutPixel( 145 + x,104 + y,208,34,34 );
gfx.PutPixel( 146 + x,104 + y,208,34,34 );
gfx.PutPixel( 147 + x,104 + y,208,34,34 );
gfx.PutPixel( 148 + x,104 + y,208,34,34 );
gfx.PutPixel( 149 + x,104 + y,208,34,34 );
gfx.PutPixel( 0 + x,105 + y,208,34,34 );
gfx.PutPixel( 1 + x,105 + y,208,34,34 );
gfx.PutPixel( 2 + x,105 + y,208,34,34 );
gfx.PutPixel( 3 + x,105 + y,208,34,34 );
gfx.PutPixel( 4 + x,105 + y,208,34,34 );
gfx.PutPixel( 5 + x,105 + y,208,34,34 );
gfx.PutPixel( 6 + x,105 + y,208,34,34 );
gfx.PutPixel( 7 + x,105 + y,208,34,34 );
gfx.PutPixel( 8 + x,105 + y,208,34,34 );
gfx.PutPixel( 9 + x,105 + y,208,34,34 );
gfx.PutPixel( 10 + x,105 + y,208,34,34 );
gfx.PutPixel( 11 + x,105 + y,208,34,34 );
gfx.PutPixel( 12 + x,105 + y,208,34,34 );
gfx.PutPixel( 13 + x,105 + y,208,34,34 );
gfx.PutPixel( 14 + x,105 + y,208,34,34 );
gfx.PutPixel( 15 + x,105 + y,208,34,34 );
gfx.PutPixel( 16 + x,105 + y,208,34,34 );
gfx.PutPixel( 17 + x,105 + y,208,34,34 );
gfx.PutPixel( 18 + x,105 + y,208,34,34 );
gfx.PutPixel( 19 + x,105 + y,208,34,34 );
gfx.PutPixel( 20 + x,105 + y,208,34,34 );
gfx.PutPixel( 21 + x,105 + y,208,34,34 );
gfx.PutPixel( 22 + x,105 + y,208,34,34 );
gfx.PutPixel( 23 + x,105 + y,208,34,34 );
gfx.PutPixel( 24 + x,105 + y,208,34,34 );
gfx.PutPixel( 25 + x,105 + y,208,34,34 );
gfx.PutPixel( 26 + x,105 + y,208,34,34 );
gfx.PutPixel( 27 + x,105 + y,208,34,34 );
gfx.PutPixel( 28 + x,105 + y,208,34,34 );
gfx.PutPixel( 29 + x,105 + y,208,34,34 );
gfx.PutPixel( 30 + x,105 + y,208,34,34 );
gfx.PutPixel( 31 + x,105 + y,208,34,34 );
gfx.PutPixel( 32 + x,105 + y,208,34,34 );
gfx.PutPixel( 33 + x,105 + y,208,34,34 );
gfx.PutPixel( 34 + x,105 + y,208,34,34 );
gfx.PutPixel( 35 + x,105 + y,208,34,34 );
gfx.PutPixel( 36 + x,105 + y,208,34,34 );
gfx.PutPixel( 37 + x,105 + y,208,34,34 );
gfx.PutPixel( 38 + x,105 + y,208,34,34 );
gfx.PutPixel( 39 + x,105 + y,208,34,34 );
gfx.PutPixel( 40 + x,105 + y,208,34,34 );
gfx.PutPixel( 41 + x,105 + y,208,34,34 );
gfx.PutPixel( 42 + x,105 + y,208,34,34 );
gfx.PutPixel( 43 + x,105 + y,208,34,34 );
gfx.PutPixel( 44 + x,105 + y,208,34,34 );
gfx.PutPixel( 45 + x,105 + y,208,34,34 );
gfx.PutPixel( 46 + x,105 + y,208,34,34 );
gfx.PutPixel( 47 + x,105 + y,208,34,34 );
gfx.PutPixel( 48 + x,105 + y,208,34,34 );
gfx.PutPixel( 49 + x,105 + y,208,34,34 );
gfx.PutPixel( 50 + x,105 + y,208,34,34 );
gfx.PutPixel( 51 + x,105 + y,208,34,34 );
gfx.PutPixel( 52 + x,105 + y,208,34,34 );
gfx.PutPixel( 53 + x,105 + y,208,34,34 );
gfx.PutPixel( 54 + x,105 + y,208,34,34 );
gfx.PutPixel( 55 + x,105 + y,208,34,34 );
gfx.PutPixel( 56 + x,105 + y,208,34,34 );
gfx.PutPixel( 57 + x,105 + y,208,34,34 );
gfx.PutPixel( 58 + x,105 + y,208,34,34 );
gfx.PutPixel( 59 + x,105 + y,208,34,34 );
gfx.PutPixel( 60 + x,105 + y,208,34,34 );
gfx.PutPixel( 61 + x,105 + y,207,27,27 );
gfx.PutPixel( 62 + x,105 + y,210,66,66 );
gfx.PutPixel( 63 + x,105 + y,221,224,224 );
gfx.PutPixel( 64 + x,105 + y,219,199,199 );
gfx.PutPixel( 65 + x,105 + y,218,177,177 );
gfx.PutPixel( 66 + x,105 + y,218,177,177 );
gfx.PutPixel( 67 + x,105 + y,219,194,194 );
gfx.PutPixel( 68 + x,105 + y,222,232,232 );
gfx.PutPixel( 69 + x,105 + y,212,85,85 );
gfx.PutPixel( 70 + x,105 + y,208,37,37 );
gfx.PutPixel( 71 + x,105 + y,221,216,216 );
gfx.PutPixel( 72 + x,105 + y,218,176,176 );
gfx.PutPixel( 73 + x,105 + y,207,21,21 );
gfx.PutPixel( 74 + x,105 + y,209,52,52 );
gfx.PutPixel( 75 + x,105 + y,220,210,210 );
gfx.PutPixel( 76 + x,105 + y,222,229,229 );
gfx.PutPixel( 77 + x,105 + y,222,232,232 );
gfx.PutPixel( 78 + x,105 + y,214,124,124 );
gfx.PutPixel( 79 + x,105 + y,208,35,35 );
gfx.PutPixel( 80 + x,105 + y,221,215,215 );
gfx.PutPixel( 81 + x,105 + y,218,179,179 );
gfx.PutPixel( 82 + x,105 + y,208,40,40 );
gfx.PutPixel( 83 + x,105 + y,210,58,58 );
gfx.PutPixel( 84 + x,105 + y,216,149,149 );
gfx.PutPixel( 85 + x,105 + y,222,244,244 );
gfx.PutPixel( 86 + x,105 + y,215,131,131 );
gfx.PutPixel( 87 + x,105 + y,207,25,25 );
gfx.PutPixel( 88 + x,105 + y,208,34,34 );
gfx.PutPixel( 89 + x,105 + y,208,34,34 );
gfx.PutPixel( 90 + x,105 + y,208,34,34 );
gfx.PutPixel( 91 + x,105 + y,208,34,34 );
gfx.PutPixel( 92 + x,105 + y,208,34,34 );
gfx.PutPixel( 93 + x,105 + y,208,34,34 );
gfx.PutPixel( 94 + x,105 + y,208,34,34 );
gfx.PutPixel( 95 + x,105 + y,208,34,34 );
gfx.PutPixel( 96 + x,105 + y,208,34,34 );
gfx.PutPixel( 97 + x,105 + y,208,34,34 );
gfx.PutPixel( 98 + x,105 + y,208,34,34 );
gfx.PutPixel( 99 + x,105 + y,208,34,34 );
gfx.PutPixel( 100 + x,105 + y,208,34,34 );
gfx.PutPixel( 101 + x,105 + y,208,34,34 );
gfx.PutPixel( 102 + x,105 + y,208,34,34 );
gfx.PutPixel( 103 + x,105 + y,208,34,34 );
gfx.PutPixel( 104 + x,105 + y,208,34,34 );
gfx.PutPixel( 105 + x,105 + y,208,34,34 );
gfx.PutPixel( 106 + x,105 + y,208,34,34 );
gfx.PutPixel( 107 + x,105 + y,208,34,34 );
gfx.PutPixel( 108 + x,105 + y,208,34,34 );
gfx.PutPixel( 109 + x,105 + y,208,34,34 );
gfx.PutPixel( 110 + x,105 + y,208,34,34 );
gfx.PutPixel( 111 + x,105 + y,208,34,34 );
gfx.PutPixel( 112 + x,105 + y,208,34,34 );
gfx.PutPixel( 113 + x,105 + y,208,34,34 );
gfx.PutPixel( 114 + x,105 + y,208,34,34 );
gfx.PutPixel( 115 + x,105 + y,208,34,34 );
gfx.PutPixel( 116 + x,105 + y,208,34,34 );
gfx.PutPixel( 117 + x,105 + y,208,34,34 );
gfx.PutPixel( 118 + x,105 + y,208,34,34 );
gfx.PutPixel( 119 + x,105 + y,208,34,34 );
gfx.PutPixel( 120 + x,105 + y,208,34,34 );
gfx.PutPixel( 121 + x,105 + y,208,34,34 );
gfx.PutPixel( 122 + x,105 + y,208,34,34 );
gfx.PutPixel( 123 + x,105 + y,208,34,34 );
gfx.PutPixel( 124 + x,105 + y,208,34,34 );
gfx.PutPixel( 125 + x,105 + y,208,34,34 );
gfx.PutPixel( 126 + x,105 + y,208,34,34 );
gfx.PutPixel( 127 + x,105 + y,208,34,34 );
gfx.PutPixel( 128 + x,105 + y,208,34,34 );
gfx.PutPixel( 129 + x,105 + y,208,34,34 );
gfx.PutPixel( 130 + x,105 + y,208,34,34 );
gfx.PutPixel( 131 + x,105 + y,208,34,34 );
gfx.PutPixel( 132 + x,105 + y,208,34,34 );
gfx.PutPixel( 133 + x,105 + y,208,34,34 );
gfx.PutPixel( 134 + x,105 + y,208,34,34 );
gfx.PutPixel( 135 + x,105 + y,208,34,34 );
gfx.PutPixel( 136 + x,105 + y,208,34,34 );
gfx.PutPixel( 137 + x,105 + y,208,34,34 );
gfx.PutPixel( 138 + x,105 + y,208,34,34 );
gfx.PutPixel( 139 + x,105 + y,208,34,34 );
gfx.PutPixel( 140 + x,105 + y,208,34,34 );
gfx.PutPixel( 141 + x,105 + y,208,34,34 );
gfx.PutPixel( 142 + x,105 + y,208,34,34 );
gfx.PutPixel( 143 + x,105 + y,208,34,34 );
gfx.PutPixel( 144 + x,105 + y,208,34,34 );
gfx.PutPixel( 145 + x,105 + y,208,34,34 );
gfx.PutPixel( 146 + x,105 + y,208,34,34 );
gfx.PutPixel( 147 + x,105 + y,208,34,34 );
gfx.PutPixel( 148 + x,105 + y,208,34,34 );
gfx.PutPixel( 149 + x,105 + y,208,34,34 );
gfx.PutPixel( 0 + x,106 + y,208,34,34 );
gfx.PutPixel( 1 + x,106 + y,208,34,34 );
gfx.PutPixel( 2 + x,106 + y,208,34,34 );
gfx.PutPixel( 3 + x,106 + y,208,34,34 );
gfx.PutPixel( 4 + x,106 + y,208,34,34 );
gfx.PutPixel( 5 + x,106 + y,208,34,34 );
gfx.PutPixel( 6 + x,106 + y,208,34,34 );
gfx.PutPixel( 7 + x,106 + y,208,34,34 );
gfx.PutPixel( 8 + x,106 + y,208,34,34 );
gfx.PutPixel( 9 + x,106 + y,208,34,34 );
gfx.PutPixel( 10 + x,106 + y,208,34,34 );
gfx.PutPixel( 11 + x,106 + y,208,34,34 );
gfx.PutPixel( 12 + x,106 + y,208,34,34 );
gfx.PutPixel( 13 + x,106 + y,208,34,34 );
gfx.PutPixel( 14 + x,106 + y,208,34,34 );
gfx.PutPixel( 15 + x,106 + y,208,34,34 );
gfx.PutPixel( 16 + x,106 + y,208,34,34 );
gfx.PutPixel( 17 + x,106 + y,208,34,34 );
gfx.PutPixel( 18 + x,106 + y,208,34,34 );
gfx.PutPixel( 19 + x,106 + y,208,34,34 );
gfx.PutPixel( 20 + x,106 + y,208,34,34 );
gfx.PutPixel( 21 + x,106 + y,208,34,34 );
gfx.PutPixel( 22 + x,106 + y,208,34,34 );
gfx.PutPixel( 23 + x,106 + y,208,34,34 );
gfx.PutPixel( 24 + x,106 + y,208,34,34 );
gfx.PutPixel( 25 + x,106 + y,208,34,34 );
gfx.PutPixel( 26 + x,106 + y,208,34,34 );
gfx.PutPixel( 27 + x,106 + y,208,34,34 );
gfx.PutPixel( 28 + x,106 + y,208,34,34 );
gfx.PutPixel( 29 + x,106 + y,208,34,34 );
gfx.PutPixel( 30 + x,106 + y,208,34,34 );
gfx.PutPixel( 31 + x,106 + y,208,34,34 );
gfx.PutPixel( 32 + x,106 + y,208,34,34 );
gfx.PutPixel( 33 + x,106 + y,208,34,34 );
gfx.PutPixel( 34 + x,106 + y,208,34,34 );
gfx.PutPixel( 35 + x,106 + y,208,34,34 );
gfx.PutPixel( 36 + x,106 + y,208,34,34 );
gfx.PutPixel( 37 + x,106 + y,208,34,34 );
gfx.PutPixel( 38 + x,106 + y,208,34,34 );
gfx.PutPixel( 39 + x,106 + y,208,34,34 );
gfx.PutPixel( 40 + x,106 + y,208,34,34 );
gfx.PutPixel( 41 + x,106 + y,208,34,34 );
gfx.PutPixel( 42 + x,106 + y,208,34,34 );
gfx.PutPixel( 43 + x,106 + y,208,34,34 );
gfx.PutPixel( 44 + x,106 + y,208,34,34 );
gfx.PutPixel( 45 + x,106 + y,208,34,34 );
gfx.PutPixel( 46 + x,106 + y,208,34,34 );
gfx.PutPixel( 47 + x,106 + y,208,34,34 );
gfx.PutPixel( 48 + x,106 + y,208,34,34 );
gfx.PutPixel( 49 + x,106 + y,208,34,34 );
gfx.PutPixel( 50 + x,106 + y,208,34,34 );
gfx.PutPixel( 51 + x,106 + y,208,34,34 );
gfx.PutPixel( 52 + x,106 + y,208,34,34 );
gfx.PutPixel( 53 + x,106 + y,208,34,34 );
gfx.PutPixel( 54 + x,106 + y,208,34,34 );
gfx.PutPixel( 55 + x,106 + y,208,34,34 );
gfx.PutPixel( 56 + x,106 + y,208,34,34 );
gfx.PutPixel( 57 + x,106 + y,208,34,34 );
gfx.PutPixel( 58 + x,106 + y,208,34,34 );
gfx.PutPixel( 59 + x,106 + y,208,34,34 );
gfx.PutPixel( 60 + x,106 + y,208,34,34 );
gfx.PutPixel( 61 + x,106 + y,207,25,25 );
gfx.PutPixel( 62 + x,106 + y,217,155,155 );
gfx.PutPixel( 63 + x,106 + y,223,248,248 );
gfx.PutPixel( 64 + x,106 + y,211,82,82 );
gfx.PutPixel( 65 + x,106 + y,207,18,18 );
gfx.PutPixel( 66 + x,106 + y,207,20,20 );
gfx.PutPixel( 67 + x,106 + y,210,67,67 );
gfx.PutPixel( 68 + x,106 + y,222,239,239 );
gfx.PutPixel( 69 + x,106 + y,218,178,178 );
gfx.PutPixel( 70 + x,106 + y,209,45,45 );
gfx.PutPixel( 71 + x,106 + y,222,227,227 );
gfx.PutPixel( 72 + x,106 + y,219,185,185 );
gfx.PutPixel( 73 + x,106 + y,208,27,27 );
gfx.PutPixel( 74 + x,106 + y,207,21,21 );
gfx.PutPixel( 75 + x,106 + y,213,109,109 );
gfx.PutPixel( 76 + x,106 + y,222,239,239 );
gfx.PutPixel( 77 + x,106 + y,223,247,247 );
gfx.PutPixel( 78 + x,106 + y,214,130,130 );
gfx.PutPixel( 79 + x,106 + y,208,35,35 );
gfx.PutPixel( 80 + x,106 + y,221,220,220 );
gfx.PutPixel( 81 + x,106 + y,222,234,234 );
gfx.PutPixel( 82 + x,106 + y,221,219,219 );
gfx.PutPixel( 83 + x,106 + y,222,229,229 );
gfx.PutPixel( 84 + x,106 + y,222,234,234 );
gfx.PutPixel( 85 + x,106 + y,216,150,150 );
gfx.PutPixel( 86 + x,106 + y,208,35,35 );
gfx.PutPixel( 87 + x,106 + y,208,32,32 );
gfx.PutPixel( 88 + x,106 + y,208,34,34 );
gfx.PutPixel( 89 + x,106 + y,208,34,34 );
gfx.PutPixel( 90 + x,106 + y,208,34,34 );
gfx.PutPixel( 91 + x,106 + y,208,34,34 );
gfx.PutPixel( 92 + x,106 + y,208,34,34 );
gfx.PutPixel( 93 + x,106 + y,208,34,34 );
gfx.PutPixel( 94 + x,106 + y,208,34,34 );
gfx.PutPixel( 95 + x,106 + y,208,34,34 );
gfx.PutPixel( 96 + x,106 + y,208,34,34 );
gfx.PutPixel( 97 + x,106 + y,208,34,34 );
gfx.PutPixel( 98 + x,106 + y,208,34,34 );
gfx.PutPixel( 99 + x,106 + y,208,34,34 );
gfx.PutPixel( 100 + x,106 + y,208,34,34 );
gfx.PutPixel( 101 + x,106 + y,208,34,34 );
gfx.PutPixel( 102 + x,106 + y,208,34,34 );
gfx.PutPixel( 103 + x,106 + y,208,34,34 );
gfx.PutPixel( 104 + x,106 + y,208,34,34 );
gfx.PutPixel( 105 + x,106 + y,208,34,34 );
gfx.PutPixel( 106 + x,106 + y,208,34,34 );
gfx.PutPixel( 107 + x,106 + y,208,34,34 );
gfx.PutPixel( 108 + x,106 + y,208,34,34 );
gfx.PutPixel( 109 + x,106 + y,208,34,34 );
gfx.PutPixel( 110 + x,106 + y,208,34,34 );
gfx.PutPixel( 111 + x,106 + y,208,34,34 );
gfx.PutPixel( 112 + x,106 + y,208,34,34 );
gfx.PutPixel( 113 + x,106 + y,208,34,34 );
gfx.PutPixel( 114 + x,106 + y,208,34,34 );
gfx.PutPixel( 115 + x,106 + y,208,34,34 );
gfx.PutPixel( 116 + x,106 + y,208,34,34 );
gfx.PutPixel( 117 + x,106 + y,208,34,34 );
gfx.PutPixel( 118 + x,106 + y,208,34,34 );
gfx.PutPixel( 119 + x,106 + y,208,34,34 );
gfx.PutPixel( 120 + x,106 + y,208,34,34 );
gfx.PutPixel( 121 + x,106 + y,208,34,34 );
gfx.PutPixel( 122 + x,106 + y,208,34,34 );
gfx.PutPixel( 123 + x,106 + y,208,34,34 );
gfx.PutPixel( 124 + x,106 + y,208,34,34 );
gfx.PutPixel( 125 + x,106 + y,208,34,34 );
gfx.PutPixel( 126 + x,106 + y,208,34,34 );
gfx.PutPixel( 127 + x,106 + y,208,34,34 );
gfx.PutPixel( 128 + x,106 + y,208,34,34 );
gfx.PutPixel( 129 + x,106 + y,208,34,34 );
gfx.PutPixel( 130 + x,106 + y,208,34,34 );
gfx.PutPixel( 131 + x,106 + y,208,34,34 );
gfx.PutPixel( 132 + x,106 + y,208,34,34 );
gfx.PutPixel( 133 + x,106 + y,208,34,34 );
gfx.PutPixel( 134 + x,106 + y,208,34,34 );
gfx.PutPixel( 135 + x,106 + y,208,34,34 );
gfx.PutPixel( 136 + x,106 + y,208,34,34 );
gfx.PutPixel( 137 + x,106 + y,208,34,34 );
gfx.PutPixel( 138 + x,106 + y,208,34,34 );
gfx.PutPixel( 139 + x,106 + y,208,34,34 );
gfx.PutPixel( 140 + x,106 + y,208,34,34 );
gfx.PutPixel( 141 + x,106 + y,208,34,34 );
gfx.PutPixel( 142 + x,106 + y,208,34,34 );
gfx.PutPixel( 143 + x,106 + y,208,34,34 );
gfx.PutPixel( 144 + x,106 + y,208,34,34 );
gfx.PutPixel( 145 + x,106 + y,208,34,34 );
gfx.PutPixel( 146 + x,106 + y,208,34,34 );
gfx.PutPixel( 147 + x,106 + y,208,34,34 );
gfx.PutPixel( 148 + x,106 + y,208,34,34 );
gfx.PutPixel( 149 + x,106 + y,208,34,34 );
gfx.PutPixel( 0 + x,107 + y,208,34,34 );
gfx.PutPixel( 1 + x,107 + y,208,34,34 );
gfx.PutPixel( 2 + x,107 + y,208,34,34 );
gfx.PutPixel( 3 + x,107 + y,208,34,34 );
gfx.PutPixel( 4 + x,107 + y,208,34,34 );
gfx.PutPixel( 5 + x,107 + y,208,34,34 );
gfx.PutPixel( 6 + x,107 + y,208,34,34 );
gfx.PutPixel( 7 + x,107 + y,208,34,34 );
gfx.PutPixel( 8 + x,107 + y,208,34,34 );
gfx.PutPixel( 9 + x,107 + y,208,34,34 );
gfx.PutPixel( 10 + x,107 + y,208,34,34 );
gfx.PutPixel( 11 + x,107 + y,208,34,34 );
gfx.PutPixel( 12 + x,107 + y,208,34,34 );
gfx.PutPixel( 13 + x,107 + y,208,34,34 );
gfx.PutPixel( 14 + x,107 + y,208,34,34 );
gfx.PutPixel( 15 + x,107 + y,208,34,34 );
gfx.PutPixel( 16 + x,107 + y,208,34,34 );
gfx.PutPixel( 17 + x,107 + y,208,34,34 );
gfx.PutPixel( 18 + x,107 + y,208,34,34 );
gfx.PutPixel( 19 + x,107 + y,208,34,34 );
gfx.PutPixel( 20 + x,107 + y,208,34,34 );
gfx.PutPixel( 21 + x,107 + y,208,34,34 );
gfx.PutPixel( 22 + x,107 + y,208,34,34 );
gfx.PutPixel( 23 + x,107 + y,208,34,34 );
gfx.PutPixel( 24 + x,107 + y,208,34,34 );
gfx.PutPixel( 25 + x,107 + y,208,34,34 );
gfx.PutPixel( 26 + x,107 + y,208,34,34 );
gfx.PutPixel( 27 + x,107 + y,208,34,34 );
gfx.PutPixel( 28 + x,107 + y,208,34,34 );
gfx.PutPixel( 29 + x,107 + y,208,34,34 );
gfx.PutPixel( 30 + x,107 + y,208,34,34 );
gfx.PutPixel( 31 + x,107 + y,208,34,34 );
gfx.PutPixel( 32 + x,107 + y,208,34,34 );
gfx.PutPixel( 33 + x,107 + y,208,34,34 );
gfx.PutPixel( 34 + x,107 + y,208,34,34 );
gfx.PutPixel( 35 + x,107 + y,208,34,34 );
gfx.PutPixel( 36 + x,107 + y,208,34,34 );
gfx.PutPixel( 37 + x,107 + y,208,34,34 );
gfx.PutPixel( 38 + x,107 + y,208,34,34 );
gfx.PutPixel( 39 + x,107 + y,208,34,34 );
gfx.PutPixel( 40 + x,107 + y,208,34,34 );
gfx.PutPixel( 41 + x,107 + y,208,34,34 );
gfx.PutPixel( 42 + x,107 + y,208,34,34 );
gfx.PutPixel( 43 + x,107 + y,208,34,34 );
gfx.PutPixel( 44 + x,107 + y,208,34,34 );
gfx.PutPixel( 45 + x,107 + y,208,34,34 );
gfx.PutPixel( 46 + x,107 + y,208,34,34 );
gfx.PutPixel( 47 + x,107 + y,208,34,34 );
gfx.PutPixel( 48 + x,107 + y,208,34,34 );
gfx.PutPixel( 49 + x,107 + y,208,34,34 );
gfx.PutPixel( 50 + x,107 + y,208,34,34 );
gfx.PutPixel( 51 + x,107 + y,208,34,34 );
gfx.PutPixel( 52 + x,107 + y,208,34,34 );
gfx.PutPixel( 53 + x,107 + y,208,34,34 );
gfx.PutPixel( 54 + x,107 + y,208,34,34 );
gfx.PutPixel( 55 + x,107 + y,208,34,34 );
gfx.PutPixel( 56 + x,107 + y,208,34,34 );
gfx.PutPixel( 57 + x,107 + y,208,34,34 );
gfx.PutPixel( 58 + x,107 + y,208,34,34 );
gfx.PutPixel( 59 + x,107 + y,208,34,34 );
gfx.PutPixel( 60 + x,107 + y,208,33,33 );
gfx.PutPixel( 61 + x,107 + y,208,36,36 );
gfx.PutPixel( 62 + x,107 + y,214,118,118 );
gfx.PutPixel( 63 + x,107 + y,214,122,122 );
gfx.PutPixel( 64 + x,107 + y,208,38,38 );
gfx.PutPixel( 65 + x,107 + y,208,32,32 );
gfx.PutPixel( 66 + x,107 + y,208,33,33 );
gfx.PutPixel( 67 + x,107 + y,208,33,33 );
gfx.PutPixel( 68 + x,107 + y,214,113,113 );
gfx.PutPixel( 69 + x,107 + y,214,126,126 );
gfx.PutPixel( 70 + x,107 + y,209,51,51 );
gfx.PutPixel( 71 + x,107 + y,214,123,123 );
gfx.PutPixel( 72 + x,107 + y,213,105,105 );
gfx.PutPixel( 73 + x,107 + y,208,31,31 );
gfx.PutPixel( 74 + x,107 + y,208,32,32 );
gfx.PutPixel( 75 + x,107 + y,208,36,36 );
gfx.PutPixel( 76 + x,107 + y,214,117,117 );
gfx.PutPixel( 77 + x,107 + y,215,136,136 );
gfx.PutPixel( 78 + x,107 + y,211,79,79 );
gfx.PutPixel( 79 + x,107 + y,208,35,35 );
gfx.PutPixel( 80 + x,107 + y,214,121,121 );
gfx.PutPixel( 81 + x,107 + y,215,130,130 );
gfx.PutPixel( 82 + x,107 + y,215,132,132 );
gfx.PutPixel( 83 + x,107 + y,214,118,118 );
gfx.PutPixel( 84 + x,107 + y,211,72,72 );
gfx.PutPixel( 85 + x,107 + y,208,27,27 );
gfx.PutPixel( 86 + x,107 + y,208,31,31 );
gfx.PutPixel( 87 + x,107 + y,208,34,34 );
gfx.PutPixel( 88 + x,107 + y,208,34,34 );
gfx.PutPixel( 89 + x,107 + y,208,34,34 );
gfx.PutPixel( 90 + x,107 + y,208,34,34 );
gfx.PutPixel( 91 + x,107 + y,208,34,34 );
gfx.PutPixel( 92 + x,107 + y,208,34,34 );
gfx.PutPixel( 93 + x,107 + y,208,34,34 );
gfx.PutPixel( 94 + x,107 + y,208,34,34 );
gfx.PutPixel( 95 + x,107 + y,208,34,34 );
gfx.PutPixel( 96 + x,107 + y,208,34,34 );
gfx.PutPixel( 97 + x,107 + y,208,34,34 );
gfx.PutPixel( 98 + x,107 + y,208,34,34 );
gfx.PutPixel( 99 + x,107 + y,208,34,34 );
gfx.PutPixel( 100 + x,107 + y,208,34,34 );
gfx.PutPixel( 101 + x,107 + y,208,34,34 );
gfx.PutPixel( 102 + x,107 + y,208,34,34 );
gfx.PutPixel( 103 + x,107 + y,208,34,34 );
gfx.PutPixel( 104 + x,107 + y,208,34,34 );
gfx.PutPixel( 105 + x,107 + y,208,34,34 );
gfx.PutPixel( 106 + x,107 + y,208,34,34 );
gfx.PutPixel( 107 + x,107 + y,208,34,34 );
gfx.PutPixel( 108 + x,107 + y,208,34,34 );
gfx.PutPixel( 109 + x,107 + y,208,34,34 );
gfx.PutPixel( 110 + x,107 + y,208,34,34 );
gfx.PutPixel( 111 + x,107 + y,208,34,34 );
gfx.PutPixel( 112 + x,107 + y,208,34,34 );
gfx.PutPixel( 113 + x,107 + y,208,34,34 );
gfx.PutPixel( 114 + x,107 + y,208,34,34 );
gfx.PutPixel( 115 + x,107 + y,208,34,34 );
gfx.PutPixel( 116 + x,107 + y,208,34,34 );
gfx.PutPixel( 117 + x,107 + y,208,34,34 );
gfx.PutPixel( 118 + x,107 + y,208,34,34 );
gfx.PutPixel( 119 + x,107 + y,208,34,34 );
gfx.PutPixel( 120 + x,107 + y,208,34,34 );
gfx.PutPixel( 121 + x,107 + y,208,34,34 );
gfx.PutPixel( 122 + x,107 + y,208,34,34 );
gfx.PutPixel( 123 + x,107 + y,208,34,34 );
gfx.PutPixel( 124 + x,107 + y,208,34,34 );
gfx.PutPixel( 125 + x,107 + y,208,34,34 );
gfx.PutPixel( 126 + x,107 + y,208,34,34 );
gfx.PutPixel( 127 + x,107 + y,208,34,34 );
gfx.PutPixel( 128 + x,107 + y,208,34,34 );
gfx.PutPixel( 129 + x,107 + y,208,34,34 );
gfx.PutPixel( 130 + x,107 + y,208,34,34 );
gfx.PutPixel( 131 + x,107 + y,208,34,34 );
gfx.PutPixel( 132 + x,107 + y,208,34,34 );
gfx.PutPixel( 133 + x,107 + y,208,34,34 );
gfx.PutPixel( 134 + x,107 + y,208,34,34 );
gfx.PutPixel( 135 + x,107 + y,208,34,34 );
gfx.PutPixel( 136 + x,107 + y,208,34,34 );
gfx.PutPixel( 137 + x,107 + y,208,34,34 );
gfx.PutPixel( 138 + x,107 + y,208,34,34 );
gfx.PutPixel( 139 + x,107 + y,208,34,34 );
gfx.PutPixel( 140 + x,107 + y,208,34,34 );
gfx.PutPixel( 141 + x,107 + y,208,34,34 );
gfx.PutPixel( 142 + x,107 + y,208,34,34 );
gfx.PutPixel( 143 + x,107 + y,208,34,34 );
gfx.PutPixel( 144 + x,107 + y,208,34,34 );
gfx.PutPixel( 145 + x,107 + y,208,34,34 );
gfx.PutPixel( 146 + x,107 + y,208,34,34 );
gfx.PutPixel( 147 + x,107 + y,208,34,34 );
gfx.PutPixel( 148 + x,107 + y,208,34,34 );
gfx.PutPixel( 149 + x,107 + y,208,34,34 );
gfx.PutPixel( 0 + x,108 + y,208,34,34 );
gfx.PutPixel( 1 + x,108 + y,208,34,34 );
gfx.PutPixel( 2 + x,108 + y,208,34,34 );
gfx.PutPixel( 3 + x,108 + y,208,34,34 );
gfx.PutPixel( 4 + x,108 + y,208,34,34 );
gfx.PutPixel( 5 + x,108 + y,208,34,34 );
gfx.PutPixel( 6 + x,108 + y,208,34,34 );
gfx.PutPixel( 7 + x,108 + y,208,34,34 );
gfx.PutPixel( 8 + x,108 + y,208,34,34 );
gfx.PutPixel( 9 + x,108 + y,208,34,34 );
gfx.PutPixel( 10 + x,108 + y,208,34,34 );
gfx.PutPixel( 11 + x,108 + y,208,34,34 );
gfx.PutPixel( 12 + x,108 + y,208,34,34 );
gfx.PutPixel( 13 + x,108 + y,208,34,34 );
gfx.PutPixel( 14 + x,108 + y,208,34,34 );
gfx.PutPixel( 15 + x,108 + y,208,34,34 );
gfx.PutPixel( 16 + x,108 + y,208,34,34 );
gfx.PutPixel( 17 + x,108 + y,208,34,34 );
gfx.PutPixel( 18 + x,108 + y,208,34,34 );
gfx.PutPixel( 19 + x,108 + y,208,34,34 );
gfx.PutPixel( 20 + x,108 + y,208,34,34 );
gfx.PutPixel( 21 + x,108 + y,208,34,34 );
gfx.PutPixel( 22 + x,108 + y,208,34,34 );
gfx.PutPixel( 23 + x,108 + y,208,34,34 );
gfx.PutPixel( 24 + x,108 + y,208,34,34 );
gfx.PutPixel( 25 + x,108 + y,208,34,34 );
gfx.PutPixel( 26 + x,108 + y,208,34,34 );
gfx.PutPixel( 27 + x,108 + y,208,34,34 );
gfx.PutPixel( 28 + x,108 + y,208,34,34 );
gfx.PutPixel( 29 + x,108 + y,208,34,34 );
gfx.PutPixel( 30 + x,108 + y,208,34,34 );
gfx.PutPixel( 31 + x,108 + y,208,34,34 );
gfx.PutPixel( 32 + x,108 + y,208,34,34 );
gfx.PutPixel( 33 + x,108 + y,208,34,34 );
gfx.PutPixel( 34 + x,108 + y,208,34,34 );
gfx.PutPixel( 35 + x,108 + y,208,34,34 );
gfx.PutPixel( 36 + x,108 + y,208,34,34 );
gfx.PutPixel( 37 + x,108 + y,208,34,34 );
gfx.PutPixel( 38 + x,108 + y,208,34,34 );
gfx.PutPixel( 39 + x,108 + y,208,34,34 );
gfx.PutPixel( 40 + x,108 + y,208,34,34 );
gfx.PutPixel( 41 + x,108 + y,208,34,34 );
gfx.PutPixel( 42 + x,108 + y,208,34,34 );
gfx.PutPixel( 43 + x,108 + y,208,34,34 );
gfx.PutPixel( 44 + x,108 + y,208,34,34 );
gfx.PutPixel( 45 + x,108 + y,208,34,34 );
gfx.PutPixel( 46 + x,108 + y,208,34,34 );
gfx.PutPixel( 47 + x,108 + y,208,34,34 );
gfx.PutPixel( 48 + x,108 + y,208,34,34 );
gfx.PutPixel( 49 + x,108 + y,208,34,34 );
gfx.PutPixel( 50 + x,108 + y,208,34,34 );
gfx.PutPixel( 51 + x,108 + y,208,34,34 );
gfx.PutPixel( 52 + x,108 + y,208,34,34 );
gfx.PutPixel( 53 + x,108 + y,208,34,34 );
gfx.PutPixel( 54 + x,108 + y,208,34,34 );
gfx.PutPixel( 55 + x,108 + y,208,34,34 );
gfx.PutPixel( 56 + x,108 + y,208,34,34 );
gfx.PutPixel( 57 + x,108 + y,208,34,34 );
gfx.PutPixel( 58 + x,108 + y,208,34,34 );
gfx.PutPixel( 59 + x,108 + y,208,34,34 );
gfx.PutPixel( 60 + x,108 + y,208,34,34 );
gfx.PutPixel( 61 + x,108 + y,208,34,34 );
gfx.PutPixel( 62 + x,108 + y,207,24,24 );
gfx.PutPixel( 63 + x,108 + y,207,22,22 );
gfx.PutPixel( 64 + x,108 + y,208,33,33 );
gfx.PutPixel( 65 + x,108 + y,208,34,34 );
gfx.PutPixel( 66 + x,108 + y,208,34,34 );
gfx.PutPixel( 67 + x,108 + y,208,34,34 );
gfx.PutPixel( 68 + x,108 + y,207,23,23 );
gfx.PutPixel( 69 + x,108 + y,207,23,23 );
gfx.PutPixel( 70 + x,108 + y,208,32,32 );
gfx.PutPixel( 71 + x,108 + y,207,22,22 );
gfx.PutPixel( 72 + x,108 + y,207,25,25 );
gfx.PutPixel( 73 + x,108 + y,208,34,34 );
gfx.PutPixel( 74 + x,108 + y,208,34,34 );
gfx.PutPixel( 75 + x,108 + y,208,33,33 );
gfx.PutPixel( 76 + x,108 + y,207,23,23 );
gfx.PutPixel( 77 + x,108 + y,207,21,21 );
gfx.PutPixel( 78 + x,108 + y,208,28,28 );
gfx.PutPixel( 79 + x,108 + y,208,34,34 );
gfx.PutPixel( 80 + x,108 + y,207,23,23 );
gfx.PutPixel( 81 + x,108 + y,207,22,22 );
gfx.PutPixel( 82 + x,108 + y,207,22,22 );
gfx.PutPixel( 83 + x,108 + y,207,23,23 );
gfx.PutPixel( 84 + x,108 + y,208,27,27 );
gfx.PutPixel( 85 + x,108 + y,208,33,33 );
gfx.PutPixel( 86 + x,108 + y,208,34,34 );
gfx.PutPixel( 87 + x,108 + y,208,34,34 );
gfx.PutPixel( 88 + x,108 + y,208,34,34 );
gfx.PutPixel( 89 + x,108 + y,208,34,34 );
gfx.PutPixel( 90 + x,108 + y,208,34,34 );
gfx.PutPixel( 91 + x,108 + y,208,34,34 );
gfx.PutPixel( 92 + x,108 + y,208,34,34 );
gfx.PutPixel( 93 + x,108 + y,208,34,34 );
gfx.PutPixel( 94 + x,108 + y,208,34,34 );
gfx.PutPixel( 95 + x,108 + y,208,34,34 );
gfx.PutPixel( 96 + x,108 + y,208,34,34 );
gfx.PutPixel( 97 + x,108 + y,208,34,34 );
gfx.PutPixel( 98 + x,108 + y,208,34,34 );
gfx.PutPixel( 99 + x,108 + y,208,34,34 );
gfx.PutPixel( 100 + x,108 + y,208,34,34 );
gfx.PutPixel( 101 + x,108 + y,208,34,34 );
gfx.PutPixel( 102 + x,108 + y,208,34,34 );
gfx.PutPixel( 103 + x,108 + y,208,34,34 );
gfx.PutPixel( 104 + x,108 + y,208,34,34 );
gfx.PutPixel( 105 + x,108 + y,208,34,34 );
gfx.PutPixel( 106 + x,108 + y,208,34,34 );
gfx.PutPixel( 107 + x,108 + y,208,34,34 );
gfx.PutPixel( 108 + x,108 + y,208,34,34 );
gfx.PutPixel( 109 + x,108 + y,208,34,34 );
gfx.PutPixel( 110 + x,108 + y,208,34,34 );
gfx.PutPixel( 111 + x,108 + y,208,34,34 );
gfx.PutPixel( 112 + x,108 + y,208,34,34 );
gfx.PutPixel( 113 + x,108 + y,208,34,34 );
gfx.PutPixel( 114 + x,108 + y,208,34,34 );
gfx.PutPixel( 115 + x,108 + y,208,34,34 );
gfx.PutPixel( 116 + x,108 + y,208,34,34 );
gfx.PutPixel( 117 + x,108 + y,208,34,34 );
gfx.PutPixel( 118 + x,108 + y,208,34,34 );
gfx.PutPixel( 119 + x,108 + y,208,34,34 );
gfx.PutPixel( 120 + x,108 + y,208,34,34 );
gfx.PutPixel( 121 + x,108 + y,208,34,34 );
gfx.PutPixel( 122 + x,108 + y,208,34,34 );
gfx.PutPixel( 123 + x,108 + y,208,34,34 );
gfx.PutPixel( 124 + x,108 + y,208,34,34 );
gfx.PutPixel( 125 + x,108 + y,208,34,34 );
gfx.PutPixel( 126 + x,108 + y,208,34,34 );
gfx.PutPixel( 127 + x,108 + y,208,34,34 );
gfx.PutPixel( 128 + x,108 + y,208,34,34 );
gfx.PutPixel( 129 + x,108 + y,208,34,34 );
gfx.PutPixel( 130 + x,108 + y,208,34,34 );
gfx.PutPixel( 131 + x,108 + y,208,34,34 );
gfx.PutPixel( 132 + x,108 + y,208,34,34 );
gfx.PutPixel( 133 + x,108 + y,208,34,34 );
gfx.PutPixel( 134 + x,108 + y,208,34,34 );
gfx.PutPixel( 135 + x,108 + y,208,34,34 );
gfx.PutPixel( 136 + x,108 + y,208,34,34 );
gfx.PutPixel( 137 + x,108 + y,208,34,34 );
gfx.PutPixel( 138 + x,108 + y,208,34,34 );
gfx.PutPixel( 139 + x,108 + y,208,34,34 );
gfx.PutPixel( 140 + x,108 + y,208,34,34 );
gfx.PutPixel( 141 + x,108 + y,208,34,34 );
gfx.PutPixel( 142 + x,108 + y,208,34,34 );
gfx.PutPixel( 143 + x,108 + y,208,34,34 );
gfx.PutPixel( 144 + x,108 + y,208,34,34 );
gfx.PutPixel( 145 + x,108 + y,208,34,34 );
gfx.PutPixel( 146 + x,108 + y,208,34,34 );
gfx.PutPixel( 147 + x,108 + y,208,34,34 );
gfx.PutPixel( 148 + x,108 + y,208,34,34 );
gfx.PutPixel( 149 + x,108 + y,208,34,34 );
gfx.PutPixel( 0 + x,109 + y,208,34,34 );
gfx.PutPixel( 1 + x,109 + y,208,34,34 );
gfx.PutPixel( 2 + x,109 + y,208,34,34 );
gfx.PutPixel( 3 + x,109 + y,208,34,34 );
gfx.PutPixel( 4 + x,109 + y,208,34,34 );
gfx.PutPixel( 5 + x,109 + y,208,34,34 );
gfx.PutPixel( 6 + x,109 + y,208,34,34 );
gfx.PutPixel( 7 + x,109 + y,208,34,34 );
gfx.PutPixel( 8 + x,109 + y,208,34,34 );
gfx.PutPixel( 9 + x,109 + y,208,34,34 );
gfx.PutPixel( 10 + x,109 + y,208,34,34 );
gfx.PutPixel( 11 + x,109 + y,208,34,34 );
gfx.PutPixel( 12 + x,109 + y,208,34,34 );
gfx.PutPixel( 13 + x,109 + y,208,34,34 );
gfx.PutPixel( 14 + x,109 + y,208,34,34 );
gfx.PutPixel( 15 + x,109 + y,208,34,34 );
gfx.PutPixel( 16 + x,109 + y,208,34,34 );
gfx.PutPixel( 17 + x,109 + y,208,34,34 );
gfx.PutPixel( 18 + x,109 + y,208,34,34 );
gfx.PutPixel( 19 + x,109 + y,208,34,34 );
gfx.PutPixel( 20 + x,109 + y,208,34,34 );
gfx.PutPixel( 21 + x,109 + y,208,34,34 );
gfx.PutPixel( 22 + x,109 + y,208,34,34 );
gfx.PutPixel( 23 + x,109 + y,208,34,34 );
gfx.PutPixel( 24 + x,109 + y,208,34,34 );
gfx.PutPixel( 25 + x,109 + y,208,34,34 );
gfx.PutPixel( 26 + x,109 + y,208,34,34 );
gfx.PutPixel( 27 + x,109 + y,208,34,34 );
gfx.PutPixel( 28 + x,109 + y,208,34,34 );
gfx.PutPixel( 29 + x,109 + y,208,34,34 );
gfx.PutPixel( 30 + x,109 + y,208,34,34 );
gfx.PutPixel( 31 + x,109 + y,208,34,34 );
gfx.PutPixel( 32 + x,109 + y,208,34,34 );
gfx.PutPixel( 33 + x,109 + y,208,34,34 );
gfx.PutPixel( 34 + x,109 + y,208,34,34 );
gfx.PutPixel( 35 + x,109 + y,208,34,34 );
gfx.PutPixel( 36 + x,109 + y,208,34,34 );
gfx.PutPixel( 37 + x,109 + y,208,34,34 );
gfx.PutPixel( 38 + x,109 + y,208,34,34 );
gfx.PutPixel( 39 + x,109 + y,208,34,34 );
gfx.PutPixel( 40 + x,109 + y,208,34,34 );
gfx.PutPixel( 41 + x,109 + y,208,34,34 );
gfx.PutPixel( 42 + x,109 + y,208,34,34 );
gfx.PutPixel( 43 + x,109 + y,208,34,34 );
gfx.PutPixel( 44 + x,109 + y,208,34,34 );
gfx.PutPixel( 45 + x,109 + y,208,34,34 );
gfx.PutPixel( 46 + x,109 + y,208,34,34 );
gfx.PutPixel( 47 + x,109 + y,208,34,34 );
gfx.PutPixel( 48 + x,109 + y,208,34,34 );
gfx.PutPixel( 49 + x,109 + y,208,34,34 );
gfx.PutPixel( 50 + x,109 + y,208,34,34 );
gfx.PutPixel( 51 + x,109 + y,208,34,34 );
gfx.PutPixel( 52 + x,109 + y,208,34,34 );
gfx.PutPixel( 53 + x,109 + y,208,34,34 );
gfx.PutPixel( 54 + x,109 + y,208,34,34 );
gfx.PutPixel( 55 + x,109 + y,208,34,34 );
gfx.PutPixel( 56 + x,109 + y,208,34,34 );
gfx.PutPixel( 57 + x,109 + y,208,34,34 );
gfx.PutPixel( 58 + x,109 + y,208,34,34 );
gfx.PutPixel( 59 + x,109 + y,208,34,34 );
gfx.PutPixel( 60 + x,109 + y,208,34,34 );
gfx.PutPixel( 61 + x,109 + y,208,34,34 );
gfx.PutPixel( 62 + x,109 + y,208,34,34 );
gfx.PutPixel( 63 + x,109 + y,208,34,34 );
gfx.PutPixel( 64 + x,109 + y,208,34,34 );
gfx.PutPixel( 65 + x,109 + y,208,34,34 );
gfx.PutPixel( 66 + x,109 + y,208,34,34 );
gfx.PutPixel( 67 + x,109 + y,208,34,34 );
gfx.PutPixel( 68 + x,109 + y,208,34,34 );
gfx.PutPixel( 69 + x,109 + y,208,34,34 );
gfx.PutPixel( 70 + x,109 + y,208,34,34 );
gfx.PutPixel( 71 + x,109 + y,208,34,34 );
gfx.PutPixel( 72 + x,109 + y,208,34,34 );
gfx.PutPixel( 73 + x,109 + y,208,34,34 );
gfx.PutPixel( 74 + x,109 + y,208,34,34 );
gfx.PutPixel( 75 + x,109 + y,208,34,34 );
gfx.PutPixel( 76 + x,109 + y,208,34,34 );
gfx.PutPixel( 77 + x,109 + y,208,34,34 );
gfx.PutPixel( 78 + x,109 + y,208,34,34 );
gfx.PutPixel( 79 + x,109 + y,208,34,34 );
gfx.PutPixel( 80 + x,109 + y,208,34,34 );
gfx.PutPixel( 81 + x,109 + y,208,34,34 );
gfx.PutPixel( 82 + x,109 + y,208,34,34 );
gfx.PutPixel( 83 + x,109 + y,208,34,34 );
gfx.PutPixel( 84 + x,109 + y,208,34,34 );
gfx.PutPixel( 85 + x,109 + y,208,34,34 );
gfx.PutPixel( 86 + x,109 + y,208,34,34 );
gfx.PutPixel( 87 + x,109 + y,208,34,34 );
gfx.PutPixel( 88 + x,109 + y,208,34,34 );
gfx.PutPixel( 89 + x,109 + y,208,34,34 );
gfx.PutPixel( 90 + x,109 + y,208,34,34 );
gfx.PutPixel( 91 + x,109 + y,208,34,34 );
gfx.PutPixel( 92 + x,109 + y,208,34,34 );
gfx.PutPixel( 93 + x,109 + y,208,34,34 );
gfx.PutPixel( 94 + x,109 + y,208,34,34 );
gfx.PutPixel( 95 + x,109 + y,208,34,34 );
gfx.PutPixel( 96 + x,109 + y,208,34,34 );
gfx.PutPixel( 97 + x,109 + y,208,34,34 );
gfx.PutPixel( 98 + x,109 + y,208,34,34 );
gfx.PutPixel( 99 + x,109 + y,208,34,34 );
gfx.PutPixel( 100 + x,109 + y,208,34,34 );
gfx.PutPixel( 101 + x,109 + y,208,34,34 );
gfx.PutPixel( 102 + x,109 + y,208,34,34 );
gfx.PutPixel( 103 + x,109 + y,208,34,34 );
gfx.PutPixel( 104 + x,109 + y,208,34,34 );
gfx.PutPixel( 105 + x,109 + y,208,34,34 );
gfx.PutPixel( 106 + x,109 + y,208,34,34 );
gfx.PutPixel( 107 + x,109 + y,208,34,34 );
gfx.PutPixel( 108 + x,109 + y,208,34,34 );
gfx.PutPixel( 109 + x,109 + y,208,34,34 );
gfx.PutPixel( 110 + x,109 + y,208,34,34 );
gfx.PutPixel( 111 + x,109 + y,208,34,34 );
gfx.PutPixel( 112 + x,109 + y,208,34,34 );
gfx.PutPixel( 113 + x,109 + y,208,34,34 );
gfx.PutPixel( 114 + x,109 + y,208,34,34 );
gfx.PutPixel( 115 + x,109 + y,208,34,34 );
gfx.PutPixel( 116 + x,109 + y,208,34,34 );
gfx.PutPixel( 117 + x,109 + y,208,34,34 );
gfx.PutPixel( 118 + x,109 + y,208,34,34 );
gfx.PutPixel( 119 + x,109 + y,208,34,34 );
gfx.PutPixel( 120 + x,109 + y,208,34,34 );
gfx.PutPixel( 121 + x,109 + y,208,34,34 );
gfx.PutPixel( 122 + x,109 + y,208,34,34 );
gfx.PutPixel( 123 + x,109 + y,208,34,34 );
gfx.PutPixel( 124 + x,109 + y,208,34,34 );
gfx.PutPixel( 125 + x,109 + y,208,34,34 );
gfx.PutPixel( 126 + x,109 + y,208,34,34 );
gfx.PutPixel( 127 + x,109 + y,208,34,34 );
gfx.PutPixel( 128 + x,109 + y,208,34,34 );
gfx.PutPixel( 129 + x,109 + y,208,34,34 );
gfx.PutPixel( 130 + x,109 + y,208,34,34 );
gfx.PutPixel( 131 + x,109 + y,208,34,34 );
gfx.PutPixel( 132 + x,109 + y,208,34,34 );
gfx.PutPixel( 133 + x,109 + y,208,34,34 );
gfx.PutPixel( 134 + x,109 + y,208,34,34 );
gfx.PutPixel( 135 + x,109 + y,208,34,34 );
gfx.PutPixel( 136 + x,109 + y,208,34,34 );
gfx.PutPixel( 137 + x,109 + y,208,34,34 );
gfx.PutPixel( 138 + x,109 + y,208,34,34 );
gfx.PutPixel( 139 + x,109 + y,208,34,34 );
gfx.PutPixel( 140 + x,109 + y,208,34,34 );
gfx.PutPixel( 141 + x,109 + y,208,34,34 );
gfx.PutPixel( 142 + x,109 + y,208,34,34 );
gfx.PutPixel( 143 + x,109 + y,208,34,34 );
gfx.PutPixel( 144 + x,109 + y,208,34,34 );
gfx.PutPixel( 145 + x,109 + y,208,34,34 );
gfx.PutPixel( 146 + x,109 + y,208,34,34 );
gfx.PutPixel( 147 + x,109 + y,208,34,34 );
gfx.PutPixel( 148 + x,109 + y,208,34,34 );
gfx.PutPixel( 149 + x,109 + y,208,34,34 );
gfx.PutPixel( 0 + x,110 + y,208,34,34 );
gfx.PutPixel( 1 + x,110 + y,208,34,34 );
gfx.PutPixel( 2 + x,110 + y,208,34,34 );
gfx.PutPixel( 3 + x,110 + y,208,34,34 );
gfx.PutPixel( 4 + x,110 + y,208,34,34 );
gfx.PutPixel( 5 + x,110 + y,208,34,34 );
gfx.PutPixel( 6 + x,110 + y,208,34,34 );
gfx.PutPixel( 7 + x,110 + y,208,34,34 );
gfx.PutPixel( 8 + x,110 + y,208,34,34 );
gfx.PutPixel( 9 + x,110 + y,208,34,34 );
gfx.PutPixel( 10 + x,110 + y,208,34,34 );
gfx.PutPixel( 11 + x,110 + y,208,34,34 );
gfx.PutPixel( 12 + x,110 + y,208,34,34 );
gfx.PutPixel( 13 + x,110 + y,208,34,34 );
gfx.PutPixel( 14 + x,110 + y,208,34,34 );
gfx.PutPixel( 15 + x,110 + y,208,34,34 );
gfx.PutPixel( 16 + x,110 + y,208,34,34 );
gfx.PutPixel( 17 + x,110 + y,208,34,34 );
gfx.PutPixel( 18 + x,110 + y,208,34,34 );
gfx.PutPixel( 19 + x,110 + y,208,34,34 );
gfx.PutPixel( 20 + x,110 + y,208,34,34 );
gfx.PutPixel( 21 + x,110 + y,208,34,34 );
gfx.PutPixel( 22 + x,110 + y,208,34,34 );
gfx.PutPixel( 23 + x,110 + y,208,34,34 );
gfx.PutPixel( 24 + x,110 + y,208,34,34 );
gfx.PutPixel( 25 + x,110 + y,208,34,34 );
gfx.PutPixel( 26 + x,110 + y,208,34,34 );
gfx.PutPixel( 27 + x,110 + y,208,34,34 );
gfx.PutPixel( 28 + x,110 + y,208,34,34 );
gfx.PutPixel( 29 + x,110 + y,208,34,34 );
gfx.PutPixel( 30 + x,110 + y,208,34,34 );
gfx.PutPixel( 31 + x,110 + y,208,34,34 );
gfx.PutPixel( 32 + x,110 + y,208,34,34 );
gfx.PutPixel( 33 + x,110 + y,208,34,34 );
gfx.PutPixel( 34 + x,110 + y,208,34,34 );
gfx.PutPixel( 35 + x,110 + y,208,34,34 );
gfx.PutPixel( 36 + x,110 + y,208,34,34 );
gfx.PutPixel( 37 + x,110 + y,208,34,34 );
gfx.PutPixel( 38 + x,110 + y,208,34,34 );
gfx.PutPixel( 39 + x,110 + y,208,34,34 );
gfx.PutPixel( 40 + x,110 + y,208,34,34 );
gfx.PutPixel( 41 + x,110 + y,208,34,34 );
gfx.PutPixel( 42 + x,110 + y,208,34,34 );
gfx.PutPixel( 43 + x,110 + y,208,34,34 );
gfx.PutPixel( 44 + x,110 + y,208,34,34 );
gfx.PutPixel( 45 + x,110 + y,208,34,34 );
gfx.PutPixel( 46 + x,110 + y,208,34,34 );
gfx.PutPixel( 47 + x,110 + y,208,34,34 );
gfx.PutPixel( 48 + x,110 + y,208,34,34 );
gfx.PutPixel( 49 + x,110 + y,208,34,34 );
gfx.PutPixel( 50 + x,110 + y,208,34,34 );
gfx.PutPixel( 51 + x,110 + y,208,34,34 );
gfx.PutPixel( 52 + x,110 + y,208,34,34 );
gfx.PutPixel( 53 + x,110 + y,208,34,34 );
gfx.PutPixel( 54 + x,110 + y,208,34,34 );
gfx.PutPixel( 55 + x,110 + y,208,34,34 );
gfx.PutPixel( 56 + x,110 + y,208,34,34 );
gfx.PutPixel( 57 + x,110 + y,208,34,34 );
gfx.PutPixel( 58 + x,110 + y,208,34,34 );
gfx.PutPixel( 59 + x,110 + y,208,34,34 );
gfx.PutPixel( 60 + x,110 + y,208,34,34 );
gfx.PutPixel( 61 + x,110 + y,208,34,34 );
gfx.PutPixel( 62 + x,110 + y,208,34,34 );
gfx.PutPixel( 63 + x,110 + y,208,34,34 );
gfx.PutPixel( 64 + x,110 + y,208,34,34 );
gfx.PutPixel( 65 + x,110 + y,208,34,34 );
gfx.PutPixel( 66 + x,110 + y,208,34,34 );
gfx.PutPixel( 67 + x,110 + y,208,34,34 );
gfx.PutPixel( 68 + x,110 + y,208,34,34 );
gfx.PutPixel( 69 + x,110 + y,208,34,34 );
gfx.PutPixel( 70 + x,110 + y,208,34,34 );
gfx.PutPixel( 71 + x,110 + y,208,34,34 );
gfx.PutPixel( 72 + x,110 + y,208,34,34 );
gfx.PutPixel( 73 + x,110 + y,208,34,34 );
gfx.PutPixel( 74 + x,110 + y,208,34,34 );
gfx.PutPixel( 75 + x,110 + y,208,34,34 );
gfx.PutPixel( 76 + x,110 + y,208,34,34 );
gfx.PutPixel( 77 + x,110 + y,208,34,34 );
gfx.PutPixel( 78 + x,110 + y,208,34,34 );
gfx.PutPixel( 79 + x,110 + y,208,34,34 );
gfx.PutPixel( 80 + x,110 + y,208,34,34 );
gfx.PutPixel( 81 + x,110 + y,208,34,34 );
gfx.PutPixel( 82 + x,110 + y,208,34,34 );
gfx.PutPixel( 83 + x,110 + y,208,34,34 );
gfx.PutPixel( 84 + x,110 + y,208,34,34 );
gfx.PutPixel( 85 + x,110 + y,208,34,34 );
gfx.PutPixel( 86 + x,110 + y,208,34,34 );
gfx.PutPixel( 87 + x,110 + y,208,34,34 );
gfx.PutPixel( 88 + x,110 + y,208,34,34 );
gfx.PutPixel( 89 + x,110 + y,208,34,34 );
gfx.PutPixel( 90 + x,110 + y,208,34,34 );
gfx.PutPixel( 91 + x,110 + y,208,34,34 );
gfx.PutPixel( 92 + x,110 + y,208,34,34 );
gfx.PutPixel( 93 + x,110 + y,208,34,34 );
gfx.PutPixel( 94 + x,110 + y,208,34,34 );
gfx.PutPixel( 95 + x,110 + y,208,34,34 );
gfx.PutPixel( 96 + x,110 + y,208,34,34 );
gfx.PutPixel( 97 + x,110 + y,208,34,34 );
gfx.PutPixel( 98 + x,110 + y,208,34,34 );
gfx.PutPixel( 99 + x,110 + y,208,34,34 );
gfx.PutPixel( 100 + x,110 + y,208,34,34 );
gfx.PutPixel( 101 + x,110 + y,208,34,34 );
gfx.PutPixel( 102 + x,110 + y,208,34,34 );
gfx.PutPixel( 103 + x,110 + y,208,34,34 );
gfx.PutPixel( 104 + x,110 + y,208,34,34 );
gfx.PutPixel( 105 + x,110 + y,208,34,34 );
gfx.PutPixel( 106 + x,110 + y,208,34,34 );
gfx.PutPixel( 107 + x,110 + y,208,34,34 );
gfx.PutPixel( 108 + x,110 + y,208,34,34 );
gfx.PutPixel( 109 + x,110 + y,208,34,34 );
gfx.PutPixel( 110 + x,110 + y,208,34,34 );
gfx.PutPixel( 111 + x,110 + y,208,34,34 );
gfx.PutPixel( 112 + x,110 + y,208,34,34 );
gfx.PutPixel( 113 + x,110 + y,208,34,34 );
gfx.PutPixel( 114 + x,110 + y,208,34,34 );
gfx.PutPixel( 115 + x,110 + y,208,34,34 );
gfx.PutPixel( 116 + x,110 + y,208,34,34 );
gfx.PutPixel( 117 + x,110 + y,208,34,34 );
gfx.PutPixel( 118 + x,110 + y,208,34,34 );
gfx.PutPixel( 119 + x,110 + y,208,34,34 );
gfx.PutPixel( 120 + x,110 + y,208,34,34 );
gfx.PutPixel( 121 + x,110 + y,208,34,34 );
gfx.PutPixel( 122 + x,110 + y,208,34,34 );
gfx.PutPixel( 123 + x,110 + y,208,34,34 );
gfx.PutPixel( 124 + x,110 + y,208,34,34 );
gfx.PutPixel( 125 + x,110 + y,208,34,34 );
gfx.PutPixel( 126 + x,110 + y,208,34,34 );
gfx.PutPixel( 127 + x,110 + y,208,34,34 );
gfx.PutPixel( 128 + x,110 + y,208,34,34 );
gfx.PutPixel( 129 + x,110 + y,208,34,34 );
gfx.PutPixel( 130 + x,110 + y,208,34,34 );
gfx.PutPixel( 131 + x,110 + y,208,34,34 );
gfx.PutPixel( 132 + x,110 + y,208,34,34 );
gfx.PutPixel( 133 + x,110 + y,208,34,34 );
gfx.PutPixel( 134 + x,110 + y,208,34,34 );
gfx.PutPixel( 135 + x,110 + y,208,34,34 );
gfx.PutPixel( 136 + x,110 + y,208,34,34 );
gfx.PutPixel( 137 + x,110 + y,208,34,34 );
gfx.PutPixel( 138 + x,110 + y,208,34,34 );
gfx.PutPixel( 139 + x,110 + y,208,34,34 );
gfx.PutPixel( 140 + x,110 + y,208,34,34 );
gfx.PutPixel( 141 + x,110 + y,208,34,34 );
gfx.PutPixel( 142 + x,110 + y,208,34,34 );
gfx.PutPixel( 143 + x,110 + y,208,34,34 );
gfx.PutPixel( 144 + x,110 + y,208,34,34 );
gfx.PutPixel( 145 + x,110 + y,208,34,34 );
gfx.PutPixel( 146 + x,110 + y,208,34,34 );
gfx.PutPixel( 147 + x,110 + y,208,34,34 );
gfx.PutPixel( 148 + x,110 + y,208,34,34 );
gfx.PutPixel( 149 + x,110 + y,208,34,34 );
gfx.PutPixel( 0 + x,111 + y,208,34,34 );
gfx.PutPixel( 1 + x,111 + y,208,34,34 );
gfx.PutPixel( 2 + x,111 + y,208,34,34 );
gfx.PutPixel( 3 + x,111 + y,208,34,34 );
gfx.PutPixel( 4 + x,111 + y,208,34,34 );
gfx.PutPixel( 5 + x,111 + y,208,34,34 );
gfx.PutPixel( 6 + x,111 + y,208,34,34 );
gfx.PutPixel( 7 + x,111 + y,208,34,34 );
gfx.PutPixel( 8 + x,111 + y,208,34,34 );
gfx.PutPixel( 9 + x,111 + y,208,34,34 );
gfx.PutPixel( 10 + x,111 + y,208,34,34 );
gfx.PutPixel( 11 + x,111 + y,208,34,34 );
gfx.PutPixel( 12 + x,111 + y,208,34,34 );
gfx.PutPixel( 13 + x,111 + y,208,34,34 );
gfx.PutPixel( 14 + x,111 + y,208,34,34 );
gfx.PutPixel( 15 + x,111 + y,208,34,34 );
gfx.PutPixel( 16 + x,111 + y,208,34,34 );
gfx.PutPixel( 17 + x,111 + y,208,34,34 );
gfx.PutPixel( 18 + x,111 + y,208,34,34 );
gfx.PutPixel( 19 + x,111 + y,208,34,34 );
gfx.PutPixel( 20 + x,111 + y,208,34,34 );
gfx.PutPixel( 21 + x,111 + y,208,34,34 );
gfx.PutPixel( 22 + x,111 + y,208,34,34 );
gfx.PutPixel( 23 + x,111 + y,208,34,34 );
gfx.PutPixel( 24 + x,111 + y,208,34,34 );
gfx.PutPixel( 25 + x,111 + y,208,34,34 );
gfx.PutPixel( 26 + x,111 + y,208,34,34 );
gfx.PutPixel( 27 + x,111 + y,208,34,34 );
gfx.PutPixel( 28 + x,111 + y,208,34,34 );
gfx.PutPixel( 29 + x,111 + y,208,34,34 );
gfx.PutPixel( 30 + x,111 + y,208,34,34 );
gfx.PutPixel( 31 + x,111 + y,208,34,34 );
gfx.PutPixel( 32 + x,111 + y,208,34,34 );
gfx.PutPixel( 33 + x,111 + y,208,34,34 );
gfx.PutPixel( 34 + x,111 + y,208,34,34 );
gfx.PutPixel( 35 + x,111 + y,208,34,34 );
gfx.PutPixel( 36 + x,111 + y,208,34,34 );
gfx.PutPixel( 37 + x,111 + y,208,34,34 );
gfx.PutPixel( 38 + x,111 + y,208,34,34 );
gfx.PutPixel( 39 + x,111 + y,208,34,34 );
gfx.PutPixel( 40 + x,111 + y,208,34,34 );
gfx.PutPixel( 41 + x,111 + y,208,34,34 );
gfx.PutPixel( 42 + x,111 + y,208,34,34 );
gfx.PutPixel( 43 + x,111 + y,208,34,34 );
gfx.PutPixel( 44 + x,111 + y,208,34,34 );
gfx.PutPixel( 45 + x,111 + y,208,34,34 );
gfx.PutPixel( 46 + x,111 + y,208,34,34 );
gfx.PutPixel( 47 + x,111 + y,208,34,34 );
gfx.PutPixel( 48 + x,111 + y,208,34,34 );
gfx.PutPixel( 49 + x,111 + y,208,34,34 );
gfx.PutPixel( 50 + x,111 + y,208,34,34 );
gfx.PutPixel( 51 + x,111 + y,208,34,34 );
gfx.PutPixel( 52 + x,111 + y,208,34,34 );
gfx.PutPixel( 53 + x,111 + y,208,34,34 );
gfx.PutPixel( 54 + x,111 + y,208,34,34 );
gfx.PutPixel( 55 + x,111 + y,208,34,34 );
gfx.PutPixel( 56 + x,111 + y,208,34,34 );
gfx.PutPixel( 57 + x,111 + y,208,34,34 );
gfx.PutPixel( 58 + x,111 + y,208,34,34 );
gfx.PutPixel( 59 + x,111 + y,208,34,34 );
gfx.PutPixel( 60 + x,111 + y,208,34,34 );
gfx.PutPixel( 61 + x,111 + y,208,34,34 );
gfx.PutPixel( 62 + x,111 + y,208,34,34 );
gfx.PutPixel( 63 + x,111 + y,208,34,34 );
gfx.PutPixel( 64 + x,111 + y,208,34,34 );
gfx.PutPixel( 65 + x,111 + y,208,34,34 );
gfx.PutPixel( 66 + x,111 + y,208,34,34 );
gfx.PutPixel( 67 + x,111 + y,208,34,34 );
gfx.PutPixel( 68 + x,111 + y,208,34,34 );
gfx.PutPixel( 69 + x,111 + y,208,34,34 );
gfx.PutPixel( 70 + x,111 + y,208,34,34 );
gfx.PutPixel( 71 + x,111 + y,208,34,34 );
gfx.PutPixel( 72 + x,111 + y,208,34,34 );
gfx.PutPixel( 73 + x,111 + y,208,34,34 );
gfx.PutPixel( 74 + x,111 + y,208,34,34 );
gfx.PutPixel( 75 + x,111 + y,208,34,34 );
gfx.PutPixel( 76 + x,111 + y,208,34,34 );
gfx.PutPixel( 77 + x,111 + y,208,34,34 );
gfx.PutPixel( 78 + x,111 + y,208,34,34 );
gfx.PutPixel( 79 + x,111 + y,208,34,34 );
gfx.PutPixel( 80 + x,111 + y,208,34,34 );
gfx.PutPixel( 81 + x,111 + y,208,34,34 );
gfx.PutPixel( 82 + x,111 + y,208,34,34 );
gfx.PutPixel( 83 + x,111 + y,208,34,34 );
gfx.PutPixel( 84 + x,111 + y,208,34,34 );
gfx.PutPixel( 85 + x,111 + y,208,34,34 );
gfx.PutPixel( 86 + x,111 + y,208,34,34 );
gfx.PutPixel( 87 + x,111 + y,208,34,34 );
gfx.PutPixel( 88 + x,111 + y,208,34,34 );
gfx.PutPixel( 89 + x,111 + y,208,34,34 );
gfx.PutPixel( 90 + x,111 + y,208,34,34 );
gfx.PutPixel( 91 + x,111 + y,208,34,34 );
gfx.PutPixel( 92 + x,111 + y,208,34,34 );
gfx.PutPixel( 93 + x,111 + y,208,34,34 );
gfx.PutPixel( 94 + x,111 + y,208,34,34 );
gfx.PutPixel( 95 + x,111 + y,208,34,34 );
gfx.PutPixel( 96 + x,111 + y,208,34,34 );
gfx.PutPixel( 97 + x,111 + y,208,34,34 );
gfx.PutPixel( 98 + x,111 + y,208,34,34 );
gfx.PutPixel( 99 + x,111 + y,208,34,34 );
gfx.PutPixel( 100 + x,111 + y,208,34,34 );
gfx.PutPixel( 101 + x,111 + y,208,34,34 );
gfx.PutPixel( 102 + x,111 + y,208,34,34 );
gfx.PutPixel( 103 + x,111 + y,208,34,34 );
gfx.PutPixel( 104 + x,111 + y,208,34,34 );
gfx.PutPixel( 105 + x,111 + y,208,34,34 );
gfx.PutPixel( 106 + x,111 + y,208,34,34 );
gfx.PutPixel( 107 + x,111 + y,208,34,34 );
gfx.PutPixel( 108 + x,111 + y,208,34,34 );
gfx.PutPixel( 109 + x,111 + y,208,34,34 );
gfx.PutPixel( 110 + x,111 + y,208,34,34 );
gfx.PutPixel( 111 + x,111 + y,208,34,34 );
gfx.PutPixel( 112 + x,111 + y,208,34,34 );
gfx.PutPixel( 113 + x,111 + y,208,34,34 );
gfx.PutPixel( 114 + x,111 + y,208,34,34 );
gfx.PutPixel( 115 + x,111 + y,208,34,34 );
gfx.PutPixel( 116 + x,111 + y,208,34,34 );
gfx.PutPixel( 117 + x,111 + y,208,34,34 );
gfx.PutPixel( 118 + x,111 + y,208,34,34 );
gfx.PutPixel( 119 + x,111 + y,208,34,34 );
gfx.PutPixel( 120 + x,111 + y,208,34,34 );
gfx.PutPixel( 121 + x,111 + y,208,34,34 );
gfx.PutPixel( 122 + x,111 + y,208,34,34 );
gfx.PutPixel( 123 + x,111 + y,208,34,34 );
gfx.PutPixel( 124 + x,111 + y,208,34,34 );
gfx.PutPixel( 125 + x,111 + y,208,34,34 );
gfx.PutPixel( 126 + x,111 + y,208,34,34 );
gfx.PutPixel( 127 + x,111 + y,208,34,34 );
gfx.PutPixel( 128 + x,111 + y,208,34,34 );
gfx.PutPixel( 129 + x,111 + y,208,34,34 );
gfx.PutPixel( 130 + x,111 + y,208,34,34 );
gfx.PutPixel( 131 + x,111 + y,208,34,34 );
gfx.PutPixel( 132 + x,111 + y,208,34,34 );
gfx.PutPixel( 133 + x,111 + y,208,34,34 );
gfx.PutPixel( 134 + x,111 + y,208,34,34 );
gfx.PutPixel( 135 + x,111 + y,208,34,34 );
gfx.PutPixel( 136 + x,111 + y,208,34,34 );
gfx.PutPixel( 137 + x,111 + y,208,34,34 );
gfx.PutPixel( 138 + x,111 + y,208,34,34 );
gfx.PutPixel( 139 + x,111 + y,208,34,34 );
gfx.PutPixel( 140 + x,111 + y,208,34,34 );
gfx.PutPixel( 141 + x,111 + y,208,34,34 );
gfx.PutPixel( 142 + x,111 + y,208,34,34 );
gfx.PutPixel( 143 + x,111 + y,208,34,34 );
gfx.PutPixel( 144 + x,111 + y,208,34,34 );
gfx.PutPixel( 145 + x,111 + y,208,34,34 );
gfx.PutPixel( 146 + x,111 + y,208,34,34 );
gfx.PutPixel( 147 + x,111 + y,208,34,34 );
gfx.PutPixel( 148 + x,111 + y,208,34,34 );
gfx.PutPixel( 149 + x,111 + y,208,34,34 );
gfx.PutPixel( 0 + x,112 + y,208,34,34 );
gfx.PutPixel( 1 + x,112 + y,208,34,34 );
gfx.PutPixel( 2 + x,112 + y,208,34,34 );
gfx.PutPixel( 3 + x,112 + y,208,34,34 );
gfx.PutPixel( 4 + x,112 + y,208,34,34 );
gfx.PutPixel( 5 + x,112 + y,208,34,34 );
gfx.PutPixel( 6 + x,112 + y,208,34,34 );
gfx.PutPixel( 7 + x,112 + y,208,34,34 );
gfx.PutPixel( 8 + x,112 + y,208,34,34 );
gfx.PutPixel( 9 + x,112 + y,208,34,34 );
gfx.PutPixel( 10 + x,112 + y,208,34,34 );
gfx.PutPixel( 11 + x,112 + y,208,34,34 );
gfx.PutPixel( 12 + x,112 + y,208,34,34 );
gfx.PutPixel( 13 + x,112 + y,208,34,34 );
gfx.PutPixel( 14 + x,112 + y,208,34,34 );
gfx.PutPixel( 15 + x,112 + y,208,34,34 );
gfx.PutPixel( 16 + x,112 + y,208,34,34 );
gfx.PutPixel( 17 + x,112 + y,208,34,34 );
gfx.PutPixel( 18 + x,112 + y,208,34,34 );
gfx.PutPixel( 19 + x,112 + y,208,34,34 );
gfx.PutPixel( 20 + x,112 + y,208,34,34 );
gfx.PutPixel( 21 + x,112 + y,208,34,34 );
gfx.PutPixel( 22 + x,112 + y,208,34,34 );
gfx.PutPixel( 23 + x,112 + y,208,34,34 );
gfx.PutPixel( 24 + x,112 + y,208,34,34 );
gfx.PutPixel( 25 + x,112 + y,208,34,34 );
gfx.PutPixel( 26 + x,112 + y,208,34,34 );
gfx.PutPixel( 27 + x,112 + y,208,34,34 );
gfx.PutPixel( 28 + x,112 + y,208,34,34 );
gfx.PutPixel( 29 + x,112 + y,208,34,34 );
gfx.PutPixel( 30 + x,112 + y,208,34,34 );
gfx.PutPixel( 31 + x,112 + y,208,34,34 );
gfx.PutPixel( 32 + x,112 + y,208,34,34 );
gfx.PutPixel( 33 + x,112 + y,208,32,32 );
gfx.PutPixel( 34 + x,112 + y,208,30,30 );
gfx.PutPixel( 35 + x,112 + y,208,30,30 );
gfx.PutPixel( 36 + x,112 + y,208,30,30 );
gfx.PutPixel( 37 + x,112 + y,208,30,30 );
gfx.PutPixel( 38 + x,112 + y,208,30,30 );
gfx.PutPixel( 39 + x,112 + y,208,30,30 );
gfx.PutPixel( 40 + x,112 + y,208,30,30 );
gfx.PutPixel( 41 + x,112 + y,208,30,30 );
gfx.PutPixel( 42 + x,112 + y,208,30,30 );
gfx.PutPixel( 43 + x,112 + y,208,30,30 );
gfx.PutPixel( 44 + x,112 + y,208,31,31 );
gfx.PutPixel( 45 + x,112 + y,208,34,34 );
gfx.PutPixel( 46 + x,112 + y,208,34,34 );
gfx.PutPixel( 47 + x,112 + y,208,34,34 );
gfx.PutPixel( 48 + x,112 + y,208,34,34 );
gfx.PutPixel( 49 + x,112 + y,208,34,34 );
gfx.PutPixel( 50 + x,112 + y,208,34,34 );
gfx.PutPixel( 51 + x,112 + y,208,34,34 );
gfx.PutPixel( 52 + x,112 + y,208,34,34 );
gfx.PutPixel( 53 + x,112 + y,208,33,33 );
gfx.PutPixel( 54 + x,112 + y,208,30,30 );
gfx.PutPixel( 55 + x,112 + y,208,30,30 );
gfx.PutPixel( 56 + x,112 + y,208,31,31 );
gfx.PutPixel( 57 + x,112 + y,208,34,34 );
gfx.PutPixel( 58 + x,112 + y,208,34,34 );
gfx.PutPixel( 59 + x,112 + y,208,34,34 );
gfx.PutPixel( 60 + x,112 + y,208,34,34 );
gfx.PutPixel( 61 + x,112 + y,208,34,34 );
gfx.PutPixel( 62 + x,112 + y,208,32,32 );
gfx.PutPixel( 63 + x,112 + y,208,30,30 );
gfx.PutPixel( 64 + x,112 + y,208,30,30 );
gfx.PutPixel( 65 + x,112 + y,208,30,30 );
gfx.PutPixel( 66 + x,112 + y,208,30,30 );
gfx.PutPixel( 67 + x,112 + y,208,30,30 );
gfx.PutPixel( 68 + x,112 + y,208,30,30 );
gfx.PutPixel( 69 + x,112 + y,208,30,30 );
gfx.PutPixel( 70 + x,112 + y,208,30,30 );
gfx.PutPixel( 71 + x,112 + y,208,30,30 );
gfx.PutPixel( 72 + x,112 + y,208,30,30 );
gfx.PutPixel( 73 + x,112 + y,208,30,30 );
gfx.PutPixel( 74 + x,112 + y,208,30,30 );
gfx.PutPixel( 75 + x,112 + y,208,32,32 );
gfx.PutPixel( 76 + x,112 + y,208,34,34 );
gfx.PutPixel( 77 + x,112 + y,208,34,34 );
gfx.PutPixel( 78 + x,112 + y,208,34,34 );
gfx.PutPixel( 79 + x,112 + y,208,34,34 );
gfx.PutPixel( 80 + x,112 + y,208,34,34 );
gfx.PutPixel( 81 + x,112 + y,208,34,34 );
gfx.PutPixel( 82 + x,112 + y,208,34,34 );
gfx.PutPixel( 83 + x,112 + y,208,34,34 );
gfx.PutPixel( 84 + x,112 + y,208,32,32 );
gfx.PutPixel( 85 + x,112 + y,208,30,30 );
gfx.PutPixel( 86 + x,112 + y,208,30,30 );
gfx.PutPixel( 87 + x,112 + y,208,30,30 );
gfx.PutPixel( 88 + x,112 + y,208,30,30 );
gfx.PutPixel( 89 + x,112 + y,208,30,30 );
gfx.PutPixel( 90 + x,112 + y,208,31,31 );
gfx.PutPixel( 91 + x,112 + y,208,31,31 );
gfx.PutPixel( 92 + x,112 + y,208,33,33 );
gfx.PutPixel( 93 + x,112 + y,208,34,34 );
gfx.PutPixel( 94 + x,112 + y,208,34,34 );
gfx.PutPixel( 95 + x,112 + y,208,34,34 );
gfx.PutPixel( 96 + x,112 + y,208,34,34 );
gfx.PutPixel( 97 + x,112 + y,208,34,34 );
gfx.PutPixel( 98 + x,112 + y,208,34,34 );
gfx.PutPixel( 99 + x,112 + y,208,34,34 );
gfx.PutPixel( 100 + x,112 + y,208,34,34 );
gfx.PutPixel( 101 + x,112 + y,208,34,34 );
gfx.PutPixel( 102 + x,112 + y,208,34,34 );
gfx.PutPixel( 103 + x,112 + y,208,34,34 );
gfx.PutPixel( 104 + x,112 + y,208,34,34 );
gfx.PutPixel( 105 + x,112 + y,208,34,34 );
gfx.PutPixel( 106 + x,112 + y,208,34,34 );
gfx.PutPixel( 107 + x,112 + y,208,34,34 );
gfx.PutPixel( 108 + x,112 + y,208,31,31 );
gfx.PutPixel( 109 + x,112 + y,208,30,30 );
gfx.PutPixel( 110 + x,112 + y,208,30,30 );
gfx.PutPixel( 111 + x,112 + y,208,32,32 );
gfx.PutPixel( 112 + x,112 + y,208,34,34 );
gfx.PutPixel( 113 + x,112 + y,208,34,34 );
gfx.PutPixel( 114 + x,112 + y,208,34,34 );
gfx.PutPixel( 115 + x,112 + y,208,34,34 );
gfx.PutPixel( 116 + x,112 + y,208,34,34 );
gfx.PutPixel( 117 + x,112 + y,208,34,34 );
gfx.PutPixel( 118 + x,112 + y,208,34,34 );
gfx.PutPixel( 119 + x,112 + y,208,34,34 );
gfx.PutPixel( 120 + x,112 + y,208,34,34 );
gfx.PutPixel( 121 + x,112 + y,208,34,34 );
gfx.PutPixel( 122 + x,112 + y,208,34,34 );
gfx.PutPixel( 123 + x,112 + y,208,34,34 );
gfx.PutPixel( 124 + x,112 + y,208,34,34 );
gfx.PutPixel( 125 + x,112 + y,208,34,34 );
gfx.PutPixel( 126 + x,112 + y,208,34,34 );
gfx.PutPixel( 127 + x,112 + y,208,34,34 );
gfx.PutPixel( 128 + x,112 + y,208,34,34 );
gfx.PutPixel( 129 + x,112 + y,208,34,34 );
gfx.PutPixel( 130 + x,112 + y,208,34,34 );
gfx.PutPixel( 131 + x,112 + y,208,34,34 );
gfx.PutPixel( 132 + x,112 + y,208,34,34 );
gfx.PutPixel( 133 + x,112 + y,208,34,34 );
gfx.PutPixel( 134 + x,112 + y,208,34,34 );
gfx.PutPixel( 135 + x,112 + y,208,34,34 );
gfx.PutPixel( 136 + x,112 + y,208,34,34 );
gfx.PutPixel( 137 + x,112 + y,208,34,34 );
gfx.PutPixel( 138 + x,112 + y,208,34,34 );
gfx.PutPixel( 139 + x,112 + y,208,34,34 );
gfx.PutPixel( 140 + x,112 + y,208,34,34 );
gfx.PutPixel( 141 + x,112 + y,208,34,34 );
gfx.PutPixel( 142 + x,112 + y,208,34,34 );
gfx.PutPixel( 143 + x,112 + y,208,34,34 );
gfx.PutPixel( 144 + x,112 + y,208,34,34 );
gfx.PutPixel( 145 + x,112 + y,208,34,34 );
gfx.PutPixel( 146 + x,112 + y,208,34,34 );
gfx.PutPixel( 147 + x,112 + y,208,34,34 );
gfx.PutPixel( 148 + x,112 + y,208,34,34 );
gfx.PutPixel( 149 + x,112 + y,208,34,34 );
gfx.PutPixel( 0 + x,113 + y,208,34,34 );
gfx.PutPixel( 1 + x,113 + y,208,34,34 );
gfx.PutPixel( 2 + x,113 + y,208,34,34 );
gfx.PutPixel( 3 + x,113 + y,208,34,34 );
gfx.PutPixel( 4 + x,113 + y,208,34,34 );
gfx.PutPixel( 5 + x,113 + y,208,34,34 );
gfx.PutPixel( 6 + x,113 + y,208,34,34 );
gfx.PutPixel( 7 + x,113 + y,208,34,34 );
gfx.PutPixel( 8 + x,113 + y,208,34,34 );
gfx.PutPixel( 9 + x,113 + y,208,34,34 );
gfx.PutPixel( 10 + x,113 + y,208,34,34 );
gfx.PutPixel( 11 + x,113 + y,208,34,34 );
gfx.PutPixel( 12 + x,113 + y,208,34,34 );
gfx.PutPixel( 13 + x,113 + y,208,34,34 );
gfx.PutPixel( 14 + x,113 + y,208,34,34 );
gfx.PutPixel( 15 + x,113 + y,208,34,34 );
gfx.PutPixel( 16 + x,113 + y,208,34,34 );
gfx.PutPixel( 17 + x,113 + y,208,34,34 );
gfx.PutPixel( 18 + x,113 + y,208,34,34 );
gfx.PutPixel( 19 + x,113 + y,208,34,34 );
gfx.PutPixel( 20 + x,113 + y,208,34,34 );
gfx.PutPixel( 21 + x,113 + y,208,34,34 );
gfx.PutPixel( 22 + x,113 + y,208,34,34 );
gfx.PutPixel( 23 + x,113 + y,208,34,34 );
gfx.PutPixel( 24 + x,113 + y,208,34,34 );
gfx.PutPixel( 25 + x,113 + y,208,34,34 );
gfx.PutPixel( 26 + x,113 + y,208,34,34 );
gfx.PutPixel( 27 + x,113 + y,208,34,34 );
gfx.PutPixel( 28 + x,113 + y,208,34,34 );
gfx.PutPixel( 29 + x,113 + y,208,34,34 );
gfx.PutPixel( 30 + x,113 + y,208,34,34 );
gfx.PutPixel( 31 + x,113 + y,208,34,34 );
gfx.PutPixel( 32 + x,113 + y,208,33,33 );
gfx.PutPixel( 33 + x,113 + y,208,41,41 );
gfx.PutPixel( 34 + x,113 + y,209,48,48 );
gfx.PutPixel( 35 + x,113 + y,209,47,47 );
gfx.PutPixel( 36 + x,113 + y,209,47,47 );
gfx.PutPixel( 37 + x,113 + y,209,47,47 );
gfx.PutPixel( 38 + x,113 + y,209,47,47 );
gfx.PutPixel( 39 + x,113 + y,209,47,47 );
gfx.PutPixel( 40 + x,113 + y,209,47,47 );
gfx.PutPixel( 41 + x,113 + y,209,47,47 );
gfx.PutPixel( 42 + x,113 + y,209,47,47 );
gfx.PutPixel( 43 + x,113 + y,209,48,48 );
gfx.PutPixel( 44 + x,113 + y,209,44,44 );
gfx.PutPixel( 45 + x,113 + y,208,34,34 );
gfx.PutPixel( 46 + x,113 + y,208,34,34 );
gfx.PutPixel( 47 + x,113 + y,208,34,34 );
gfx.PutPixel( 48 + x,113 + y,208,34,34 );
gfx.PutPixel( 49 + x,113 + y,208,34,34 );
gfx.PutPixel( 50 + x,113 + y,208,34,34 );
gfx.PutPixel( 51 + x,113 + y,208,34,34 );
gfx.PutPixel( 52 + x,113 + y,208,34,34 );
gfx.PutPixel( 53 + x,113 + y,208,34,34 );
gfx.PutPixel( 54 + x,113 + y,209,47,47 );
gfx.PutPixel( 55 + x,113 + y,209,48,48 );
gfx.PutPixel( 56 + x,113 + y,209,45,45 );
gfx.PutPixel( 57 + x,113 + y,208,32,32 );
gfx.PutPixel( 58 + x,113 + y,208,34,34 );
gfx.PutPixel( 59 + x,113 + y,208,34,34 );
gfx.PutPixel( 60 + x,113 + y,208,34,34 );
gfx.PutPixel( 61 + x,113 + y,208,33,33 );
gfx.PutPixel( 62 + x,113 + y,209,42,42 );
gfx.PutPixel( 63 + x,113 + y,209,48,48 );
gfx.PutPixel( 64 + x,113 + y,209,47,47 );
gfx.PutPixel( 65 + x,113 + y,209,47,47 );
gfx.PutPixel( 66 + x,113 + y,209,47,47 );
gfx.PutPixel( 67 + x,113 + y,209,47,47 );
gfx.PutPixel( 68 + x,113 + y,209,47,47 );
gfx.PutPixel( 69 + x,113 + y,209,47,47 );
gfx.PutPixel( 70 + x,113 + y,209,47,47 );
gfx.PutPixel( 71 + x,113 + y,209,47,47 );
gfx.PutPixel( 72 + x,113 + y,209,47,47 );
gfx.PutPixel( 73 + x,113 + y,209,47,47 );
gfx.PutPixel( 74 + x,113 + y,209,48,48 );
gfx.PutPixel( 75 + x,113 + y,209,42,42 );
gfx.PutPixel( 76 + x,113 + y,208,33,33 );
gfx.PutPixel( 77 + x,113 + y,208,34,34 );
gfx.PutPixel( 78 + x,113 + y,208,34,34 );
gfx.PutPixel( 79 + x,113 + y,208,34,34 );
gfx.PutPixel( 80 + x,113 + y,208,34,34 );
gfx.PutPixel( 81 + x,113 + y,208,34,34 );
gfx.PutPixel( 82 + x,113 + y,208,34,34 );
gfx.PutPixel( 83 + x,113 + y,208,33,33 );
gfx.PutPixel( 84 + x,113 + y,208,41,41 );
gfx.PutPixel( 85 + x,113 + y,209,48,48 );
gfx.PutPixel( 86 + x,113 + y,209,47,47 );
gfx.PutPixel( 87 + x,113 + y,209,47,47 );
gfx.PutPixel( 88 + x,113 + y,209,47,47 );
gfx.PutPixel( 89 + x,113 + y,209,47,47 );
gfx.PutPixel( 90 + x,113 + y,209,47,47 );
gfx.PutPixel( 91 + x,113 + y,209,43,43 );
gfx.PutPixel( 92 + x,113 + y,208,34,34 );
gfx.PutPixel( 93 + x,113 + y,207,25,25 );
gfx.PutPixel( 94 + x,113 + y,207,23,23 );
gfx.PutPixel( 95 + x,113 + y,208,29,29 );
gfx.PutPixel( 96 + x,113 + y,208,34,34 );
gfx.PutPixel( 97 + x,113 + y,208,34,34 );
gfx.PutPixel( 98 + x,113 + y,208,34,34 );
gfx.PutPixel( 99 + x,113 + y,208,34,34 );
gfx.PutPixel( 100 + x,113 + y,208,34,34 );
gfx.PutPixel( 101 + x,113 + y,208,34,34 );
gfx.PutPixel( 102 + x,113 + y,208,34,34 );
gfx.PutPixel( 103 + x,113 + y,208,34,34 );
gfx.PutPixel( 104 + x,113 + y,208,34,34 );
gfx.PutPixel( 105 + x,113 + y,208,34,34 );
gfx.PutPixel( 106 + x,113 + y,208,34,34 );
gfx.PutPixel( 107 + x,113 + y,208,32,32 );
gfx.PutPixel( 108 + x,113 + y,208,41,41 );
gfx.PutPixel( 109 + x,113 + y,209,48,48 );
gfx.PutPixel( 110 + x,113 + y,209,48,48 );
gfx.PutPixel( 111 + x,113 + y,208,37,37 );
gfx.PutPixel( 112 + x,113 + y,208,33,33 );
gfx.PutPixel( 113 + x,113 + y,208,34,34 );
gfx.PutPixel( 114 + x,113 + y,208,34,34 );
gfx.PutPixel( 115 + x,113 + y,208,34,34 );
gfx.PutPixel( 116 + x,113 + y,208,34,34 );
gfx.PutPixel( 117 + x,113 + y,208,34,34 );
gfx.PutPixel( 118 + x,113 + y,208,34,34 );
gfx.PutPixel( 119 + x,113 + y,208,34,34 );
gfx.PutPixel( 120 + x,113 + y,208,34,34 );
gfx.PutPixel( 121 + x,113 + y,208,34,34 );
gfx.PutPixel( 122 + x,113 + y,208,34,34 );
gfx.PutPixel( 123 + x,113 + y,208,34,34 );
gfx.PutPixel( 124 + x,113 + y,208,34,34 );
gfx.PutPixel( 125 + x,113 + y,208,34,34 );
gfx.PutPixel( 126 + x,113 + y,208,34,34 );
gfx.PutPixel( 127 + x,113 + y,208,34,34 );
gfx.PutPixel( 128 + x,113 + y,208,34,34 );
gfx.PutPixel( 129 + x,113 + y,208,34,34 );
gfx.PutPixel( 130 + x,113 + y,208,34,34 );
gfx.PutPixel( 131 + x,113 + y,208,34,34 );
gfx.PutPixel( 132 + x,113 + y,208,34,34 );
gfx.PutPixel( 133 + x,113 + y,208,34,34 );
gfx.PutPixel( 134 + x,113 + y,208,34,34 );
gfx.PutPixel( 135 + x,113 + y,208,34,34 );
gfx.PutPixel( 136 + x,113 + y,208,34,34 );
gfx.PutPixel( 137 + x,113 + y,208,34,34 );
gfx.PutPixel( 138 + x,113 + y,208,34,34 );
gfx.PutPixel( 139 + x,113 + y,208,34,34 );
gfx.PutPixel( 140 + x,113 + y,208,34,34 );
gfx.PutPixel( 141 + x,113 + y,208,34,34 );
gfx.PutPixel( 142 + x,113 + y,208,34,34 );
gfx.PutPixel( 143 + x,113 + y,208,34,34 );
gfx.PutPixel( 144 + x,113 + y,208,34,34 );
gfx.PutPixel( 145 + x,113 + y,208,34,34 );
gfx.PutPixel( 146 + x,113 + y,208,34,34 );
gfx.PutPixel( 147 + x,113 + y,208,34,34 );
gfx.PutPixel( 148 + x,113 + y,208,34,34 );
gfx.PutPixel( 149 + x,113 + y,208,34,34 );
gfx.PutPixel( 0 + x,114 + y,208,34,34 );
gfx.PutPixel( 1 + x,114 + y,208,34,34 );
gfx.PutPixel( 2 + x,114 + y,208,34,34 );
gfx.PutPixel( 3 + x,114 + y,208,34,34 );
gfx.PutPixel( 4 + x,114 + y,208,34,34 );
gfx.PutPixel( 5 + x,114 + y,208,34,34 );
gfx.PutPixel( 6 + x,114 + y,208,34,34 );
gfx.PutPixel( 7 + x,114 + y,208,34,34 );
gfx.PutPixel( 8 + x,114 + y,208,34,34 );
gfx.PutPixel( 9 + x,114 + y,208,34,34 );
gfx.PutPixel( 10 + x,114 + y,208,34,34 );
gfx.PutPixel( 11 + x,114 + y,208,34,34 );
gfx.PutPixel( 12 + x,114 + y,208,34,34 );
gfx.PutPixel( 13 + x,114 + y,208,34,34 );
gfx.PutPixel( 14 + x,114 + y,208,34,34 );
gfx.PutPixel( 15 + x,114 + y,208,34,34 );
gfx.PutPixel( 16 + x,114 + y,208,34,34 );
gfx.PutPixel( 17 + x,114 + y,208,34,34 );
gfx.PutPixel( 18 + x,114 + y,208,34,34 );
gfx.PutPixel( 19 + x,114 + y,208,34,34 );
gfx.PutPixel( 20 + x,114 + y,208,34,34 );
gfx.PutPixel( 21 + x,114 + y,208,34,34 );
gfx.PutPixel( 22 + x,114 + y,208,34,34 );
gfx.PutPixel( 23 + x,114 + y,208,34,34 );
gfx.PutPixel( 24 + x,114 + y,208,34,34 );
gfx.PutPixel( 25 + x,114 + y,208,34,34 );
gfx.PutPixel( 26 + x,114 + y,208,34,34 );
gfx.PutPixel( 27 + x,114 + y,208,34,34 );
gfx.PutPixel( 28 + x,114 + y,208,34,34 );
gfx.PutPixel( 29 + x,114 + y,208,34,34 );
gfx.PutPixel( 30 + x,114 + y,208,34,34 );
gfx.PutPixel( 31 + x,114 + y,208,34,34 );
gfx.PutPixel( 32 + x,114 + y,207,23,23 );
gfx.PutPixel( 33 + x,114 + y,215,121,121 );
gfx.PutPixel( 34 + x,114 + y,221,219,219 );
gfx.PutPixel( 35 + x,114 + y,220,208,208 );
gfx.PutPixel( 36 + x,114 + y,220,208,208 );
gfx.PutPixel( 37 + x,114 + y,220,208,208 );
gfx.PutPixel( 38 + x,114 + y,220,208,208 );
gfx.PutPixel( 39 + x,114 + y,220,208,208 );
gfx.PutPixel( 40 + x,114 + y,220,208,208 );
gfx.PutPixel( 41 + x,114 + y,220,208,208 );
gfx.PutPixel( 42 + x,114 + y,220,208,208 );
gfx.PutPixel( 43 + x,114 + y,221,215,215 );
gfx.PutPixel( 44 + x,114 + y,217,169,169 );
gfx.PutPixel( 45 + x,114 + y,208,31,31 );
gfx.PutPixel( 46 + x,114 + y,208,33,33 );
gfx.PutPixel( 47 + x,114 + y,208,34,34 );
gfx.PutPixel( 48 + x,114 + y,208,34,34 );
gfx.PutPixel( 49 + x,114 + y,208,34,34 );
gfx.PutPixel( 50 + x,114 + y,208,34,34 );
gfx.PutPixel( 51 + x,114 + y,208,34,34 );
gfx.PutPixel( 52 + x,114 + y,207,23,23 );
gfx.PutPixel( 53 + x,114 + y,213,105,105 );
gfx.PutPixel( 54 + x,114 + y,221,217,217 );
gfx.PutPixel( 55 + x,114 + y,220,210,210 );
gfx.PutPixel( 56 + x,114 + y,220,206,206 );
gfx.PutPixel( 57 + x,114 + y,210,64,64 );
gfx.PutPixel( 58 + x,114 + y,207,28,28 );
gfx.PutPixel( 59 + x,114 + y,208,34,34 );
gfx.PutPixel( 60 + x,114 + y,208,34,34 );
gfx.PutPixel( 61 + x,114 + y,207,25,25 );
gfx.PutPixel( 62 + x,114 + y,215,137,137 );
gfx.PutPixel( 63 + x,114 + y,221,218,218 );
gfx.PutPixel( 64 + x,114 + y,220,208,208 );
gfx.PutPixel( 65 + x,114 + y,220,208,208 );
gfx.PutPixel( 66 + x,114 + y,220,208,208 );
gfx.PutPixel( 67 + x,114 + y,220,208,208 );
gfx.PutPixel( 68 + x,114 + y,220,208,208 );
gfx.PutPixel( 69 + x,114 + y,220,208,208 );
gfx.PutPixel( 70 + x,114 + y,220,208,208 );
gfx.PutPixel( 71 + x,114 + y,220,208,208 );
gfx.PutPixel( 72 + x,114 + y,220,208,208 );
gfx.PutPixel( 73 + x,114 + y,220,208,208 );
gfx.PutPixel( 74 + x,114 + y,221,218,218 );
gfx.PutPixel( 75 + x,114 + y,215,137,137 );
gfx.PutPixel( 76 + x,114 + y,207,25,25 );
gfx.PutPixel( 77 + x,114 + y,208,34,34 );
gfx.PutPixel( 78 + x,114 + y,208,34,34 );
gfx.PutPixel( 79 + x,114 + y,208,34,34 );
gfx.PutPixel( 80 + x,114 + y,208,34,34 );
gfx.PutPixel( 81 + x,114 + y,208,34,34 );
gfx.PutPixel( 82 + x,114 + y,208,34,34 );
gfx.PutPixel( 83 + x,114 + y,207,23,23 );
gfx.PutPixel( 84 + x,114 + y,215,121,121 );
gfx.PutPixel( 85 + x,114 + y,221,219,219 );
gfx.PutPixel( 86 + x,114 + y,220,208,208 );
gfx.PutPixel( 87 + x,114 + y,220,208,208 );
gfx.PutPixel( 88 + x,114 + y,220,208,208 );
gfx.PutPixel( 89 + x,114 + y,220,208,208 );
gfx.PutPixel( 90 + x,114 + y,220,207,207 );
gfx.PutPixel( 91 + x,114 + y,220,200,200 );
gfx.PutPixel( 92 + x,114 + y,218,185,185 );
gfx.PutPixel( 93 + x,114 + y,217,157,157 );
gfx.PutPixel( 94 + x,114 + y,213,111,111 );
gfx.PutPixel( 95 + x,114 + y,209,54,54 );
gfx.PutPixel( 96 + x,114 + y,207,23,23 );
gfx.PutPixel( 97 + x,114 + y,208,31,31 );
gfx.PutPixel( 98 + x,114 + y,208,34,34 );
gfx.PutPixel( 99 + x,114 + y,208,34,34 );
gfx.PutPixel( 100 + x,114 + y,208,34,34 );
gfx.PutPixel( 101 + x,114 + y,208,34,34 );
gfx.PutPixel( 102 + x,114 + y,208,34,34 );
gfx.PutPixel( 103 + x,114 + y,208,34,34 );
gfx.PutPixel( 104 + x,114 + y,208,34,34 );
gfx.PutPixel( 105 + x,114 + y,208,34,34 );
gfx.PutPixel( 106 + x,114 + y,208,31,31 );
gfx.PutPixel( 107 + x,114 + y,208,38,38 );
gfx.PutPixel( 108 + x,114 + y,218,182,182 );
gfx.PutPixel( 109 + x,114 + y,220,213,213 );
gfx.PutPixel( 110 + x,114 + y,221,217,217 );
gfx.PutPixel( 111 + x,114 + y,216,144,144 );
gfx.PutPixel( 112 + x,114 + y,207,25,25 );
gfx.PutPixel( 113 + x,114 + y,208,34,34 );
gfx.PutPixel( 114 + x,114 + y,208,34,34 );
gfx.PutPixel( 115 + x,114 + y,208,34,34 );
gfx.PutPixel( 116 + x,114 + y,208,34,34 );
gfx.PutPixel( 117 + x,114 + y,208,34,34 );
gfx.PutPixel( 118 + x,114 + y,208,34,34 );
gfx.PutPixel( 119 + x,114 + y,208,34,34 );
gfx.PutPixel( 120 + x,114 + y,208,34,34 );
gfx.PutPixel( 121 + x,114 + y,208,34,34 );
gfx.PutPixel( 122 + x,114 + y,208,34,34 );
gfx.PutPixel( 123 + x,114 + y,208,34,34 );
gfx.PutPixel( 124 + x,114 + y,208,34,34 );
gfx.PutPixel( 125 + x,114 + y,208,34,34 );
gfx.PutPixel( 126 + x,114 + y,208,34,34 );
gfx.PutPixel( 127 + x,114 + y,208,34,34 );
gfx.PutPixel( 128 + x,114 + y,208,34,34 );
gfx.PutPixel( 129 + x,114 + y,208,34,34 );
gfx.PutPixel( 130 + x,114 + y,208,34,34 );
gfx.PutPixel( 131 + x,114 + y,208,34,34 );
gfx.PutPixel( 132 + x,114 + y,208,34,34 );
gfx.PutPixel( 133 + x,114 + y,208,34,34 );
gfx.PutPixel( 134 + x,114 + y,208,34,34 );
gfx.PutPixel( 135 + x,114 + y,208,34,34 );
gfx.PutPixel( 136 + x,114 + y,208,34,34 );
gfx.PutPixel( 137 + x,114 + y,208,34,34 );
gfx.PutPixel( 138 + x,114 + y,208,34,34 );
gfx.PutPixel( 139 + x,114 + y,208,34,34 );
gfx.PutPixel( 140 + x,114 + y,208,34,34 );
gfx.PutPixel( 141 + x,114 + y,208,34,34 );
gfx.PutPixel( 142 + x,114 + y,208,34,34 );
gfx.PutPixel( 143 + x,114 + y,208,34,34 );
gfx.PutPixel( 144 + x,114 + y,208,34,34 );
gfx.PutPixel( 145 + x,114 + y,208,34,34 );
gfx.PutPixel( 146 + x,114 + y,208,34,34 );
gfx.PutPixel( 147 + x,114 + y,208,34,34 );
gfx.PutPixel( 148 + x,114 + y,208,34,34 );
gfx.PutPixel( 149 + x,114 + y,208,34,34 );
gfx.PutPixel( 0 + x,115 + y,208,34,34 );
gfx.PutPixel( 1 + x,115 + y,208,34,34 );
gfx.PutPixel( 2 + x,115 + y,208,34,34 );
gfx.PutPixel( 3 + x,115 + y,208,34,34 );
gfx.PutPixel( 4 + x,115 + y,208,34,34 );
gfx.PutPixel( 5 + x,115 + y,208,34,34 );
gfx.PutPixel( 6 + x,115 + y,208,34,34 );
gfx.PutPixel( 7 + x,115 + y,208,34,34 );
gfx.PutPixel( 8 + x,115 + y,208,34,34 );
gfx.PutPixel( 9 + x,115 + y,208,34,34 );
gfx.PutPixel( 10 + x,115 + y,208,34,34 );
gfx.PutPixel( 11 + x,115 + y,208,34,34 );
gfx.PutPixel( 12 + x,115 + y,208,34,34 );
gfx.PutPixel( 13 + x,115 + y,208,34,34 );
gfx.PutPixel( 14 + x,115 + y,208,34,34 );
gfx.PutPixel( 15 + x,115 + y,208,34,34 );
gfx.PutPixel( 16 + x,115 + y,208,34,34 );
gfx.PutPixel( 17 + x,115 + y,208,34,34 );
gfx.PutPixel( 18 + x,115 + y,208,34,34 );
gfx.PutPixel( 19 + x,115 + y,208,34,34 );
gfx.PutPixel( 20 + x,115 + y,208,34,34 );
gfx.PutPixel( 21 + x,115 + y,208,34,34 );
gfx.PutPixel( 22 + x,115 + y,208,34,34 );
gfx.PutPixel( 23 + x,115 + y,208,34,34 );
gfx.PutPixel( 24 + x,115 + y,208,34,34 );
gfx.PutPixel( 25 + x,115 + y,208,34,34 );
gfx.PutPixel( 26 + x,115 + y,208,34,34 );
gfx.PutPixel( 27 + x,115 + y,208,34,34 );
gfx.PutPixel( 28 + x,115 + y,208,34,34 );
gfx.PutPixel( 29 + x,115 + y,208,34,34 );
gfx.PutPixel( 30 + x,115 + y,208,34,34 );
gfx.PutPixel( 31 + x,115 + y,208,34,34 );
gfx.PutPixel( 32 + x,115 + y,207,22,22 );
gfx.PutPixel( 33 + x,115 + y,215,130,130 );
gfx.PutPixel( 34 + x,115 + y,222,237,237 );
gfx.PutPixel( 35 + x,115 + y,221,225,225 );
gfx.PutPixel( 36 + x,115 + y,221,225,225 );
gfx.PutPixel( 37 + x,115 + y,221,225,225 );
gfx.PutPixel( 38 + x,115 + y,221,225,225 );
gfx.PutPixel( 39 + x,115 + y,221,225,225 );
gfx.PutPixel( 40 + x,115 + y,221,225,225 );
gfx.PutPixel( 41 + x,115 + y,221,225,225 );
gfx.PutPixel( 42 + x,115 + y,221,225,225 );
gfx.PutPixel( 43 + x,115 + y,222,233,233 );
gfx.PutPixel( 44 + x,115 + y,218,182,182 );
gfx.PutPixel( 45 + x,115 + y,208,31,31 );
gfx.PutPixel( 46 + x,115 + y,208,33,33 );
gfx.PutPixel( 47 + x,115 + y,208,34,34 );
gfx.PutPixel( 48 + x,115 + y,208,34,34 );
gfx.PutPixel( 49 + x,115 + y,208,34,34 );
gfx.PutPixel( 50 + x,115 + y,208,34,34 );
gfx.PutPixel( 51 + x,115 + y,208,32,32 );
gfx.PutPixel( 52 + x,115 + y,208,32,32 );
gfx.PutPixel( 53 + x,115 + y,218,185,185 );
gfx.PutPixel( 54 + x,115 + y,222,232,232 );
gfx.PutPixel( 55 + x,115 + y,221,224,224 );
gfx.PutPixel( 56 + x,115 + y,222,236,236 );
gfx.PutPixel( 57 + x,115 + y,215,140,140 );
gfx.PutPixel( 58 + x,115 + y,207,22,22 );
gfx.PutPixel( 59 + x,115 + y,208,34,34 );
gfx.PutPixel( 60 + x,115 + y,208,34,34 );
gfx.PutPixel( 61 + x,115 + y,207,24,24 );
gfx.PutPixel( 62 + x,115 + y,216,147,147 );
gfx.PutPixel( 63 + x,115 + y,222,236,236 );
gfx.PutPixel( 64 + x,115 + y,221,225,225 );
gfx.PutPixel( 65 + x,115 + y,221,225,225 );
gfx.PutPixel( 66 + x,115 + y,221,225,225 );
gfx.PutPixel( 67 + x,115 + y,221,225,225 );
gfx.PutPixel( 68 + x,115 + y,221,225,225 );
gfx.PutPixel( 69 + x,115 + y,221,225,225 );
gfx.PutPixel( 70 + x,115 + y,221,225,225 );
gfx.PutPixel( 71 + x,115 + y,221,225,225 );
gfx.PutPixel( 72 + x,115 + y,221,225,225 );
gfx.PutPixel( 73 + x,115 + y,221,225,225 );
gfx.PutPixel( 74 + x,115 + y,222,236,236 );
gfx.PutPixel( 75 + x,115 + y,216,147,147 );
gfx.PutPixel( 76 + x,115 + y,207,24,24 );
gfx.PutPixel( 77 + x,115 + y,208,34,34 );
gfx.PutPixel( 78 + x,115 + y,208,34,34 );
gfx.PutPixel( 79 + x,115 + y,208,34,34 );
gfx.PutPixel( 80 + x,115 + y,208,34,34 );
gfx.PutPixel( 81 + x,115 + y,208,34,34 );
gfx.PutPixel( 82 + x,115 + y,208,34,34 );
gfx.PutPixel( 83 + x,115 + y,207,22,22 );
gfx.PutPixel( 84 + x,115 + y,215,130,130 );
gfx.PutPixel( 85 + x,115 + y,222,237,237 );
gfx.PutPixel( 86 + x,115 + y,221,225,225 );
gfx.PutPixel( 87 + x,115 + y,221,225,225 );
gfx.PutPixel( 88 + x,115 + y,221,225,225 );
gfx.PutPixel( 89 + x,115 + y,221,225,225 );
gfx.PutPixel( 90 + x,115 + y,221,225,225 );
gfx.PutPixel( 91 + x,115 + y,221,226,226 );
gfx.PutPixel( 92 + x,115 + y,221,228,228 );
gfx.PutPixel( 93 + x,115 + y,222,231,231 );
gfx.PutPixel( 94 + x,115 + y,222,233,233 );
gfx.PutPixel( 95 + x,115 + y,221,213,213 );
gfx.PutPixel( 96 + x,115 + y,215,136,136 );
gfx.PutPixel( 97 + x,115 + y,208,39,39 );
gfx.PutPixel( 98 + x,115 + y,208,27,27 );
gfx.PutPixel( 99 + x,115 + y,208,35,35 );
gfx.PutPixel( 100 + x,115 + y,208,34,34 );
gfx.PutPixel( 101 + x,115 + y,208,34,34 );
gfx.PutPixel( 102 + x,115 + y,208,34,34 );
gfx.PutPixel( 103 + x,115 + y,208,34,34 );
gfx.PutPixel( 104 + x,115 + y,208,34,34 );
gfx.PutPixel( 105 + x,115 + y,208,34,34 );
gfx.PutPixel( 106 + x,115 + y,207,23,23 );
gfx.PutPixel( 107 + x,115 + y,212,96,96 );
gfx.PutPixel( 108 + x,115 + y,222,233,233 );
gfx.PutPixel( 109 + x,115 + y,221,225,225 );
gfx.PutPixel( 110 + x,115 + y,221,228,228 );
gfx.PutPixel( 111 + x,115 + y,221,215,215 );
gfx.PutPixel( 112 + x,115 + y,209,55,55 );
gfx.PutPixel( 113 + x,115 + y,208,29,29 );
gfx.PutPixel( 114 + x,115 + y,208,34,34 );
gfx.PutPixel( 115 + x,115 + y,208,34,34 );
gfx.PutPixel( 116 + x,115 + y,208,34,34 );
gfx.PutPixel( 117 + x,115 + y,208,34,34 );
gfx.PutPixel( 118 + x,115 + y,208,34,34 );
gfx.PutPixel( 119 + x,115 + y,208,34,34 );
gfx.PutPixel( 120 + x,115 + y,208,34,34 );
gfx.PutPixel( 121 + x,115 + y,208,34,34 );
gfx.PutPixel( 122 + x,115 + y,208,34,34 );
gfx.PutPixel( 123 + x,115 + y,208,34,34 );
gfx.PutPixel( 124 + x,115 + y,208,34,34 );
gfx.PutPixel( 125 + x,115 + y,208,34,34 );
gfx.PutPixel( 126 + x,115 + y,208,34,34 );
gfx.PutPixel( 127 + x,115 + y,208,34,34 );
gfx.PutPixel( 128 + x,115 + y,208,34,34 );
gfx.PutPixel( 129 + x,115 + y,208,34,34 );
gfx.PutPixel( 130 + x,115 + y,208,34,34 );
gfx.PutPixel( 131 + x,115 + y,208,34,34 );
gfx.PutPixel( 132 + x,115 + y,208,34,34 );
gfx.PutPixel( 133 + x,115 + y,208,34,34 );
gfx.PutPixel( 134 + x,115 + y,208,34,34 );
gfx.PutPixel( 135 + x,115 + y,208,34,34 );
gfx.PutPixel( 136 + x,115 + y,208,34,34 );
gfx.PutPixel( 137 + x,115 + y,208,34,34 );
gfx.PutPixel( 138 + x,115 + y,208,34,34 );
gfx.PutPixel( 139 + x,115 + y,208,34,34 );
gfx.PutPixel( 140 + x,115 + y,208,34,34 );
gfx.PutPixel( 141 + x,115 + y,208,34,34 );
gfx.PutPixel( 142 + x,115 + y,208,34,34 );
gfx.PutPixel( 143 + x,115 + y,208,34,34 );
gfx.PutPixel( 144 + x,115 + y,208,34,34 );
gfx.PutPixel( 145 + x,115 + y,208,34,34 );
gfx.PutPixel( 146 + x,115 + y,208,34,34 );
gfx.PutPixel( 147 + x,115 + y,208,34,34 );
gfx.PutPixel( 148 + x,115 + y,208,34,34 );
gfx.PutPixel( 149 + x,115 + y,208,34,34 );
gfx.PutPixel( 0 + x,116 + y,208,34,34 );
gfx.PutPixel( 1 + x,116 + y,208,34,34 );
gfx.PutPixel( 2 + x,116 + y,208,34,34 );
gfx.PutPixel( 3 + x,116 + y,208,34,34 );
gfx.PutPixel( 4 + x,116 + y,208,34,34 );
gfx.PutPixel( 5 + x,116 + y,208,34,34 );
gfx.PutPixel( 6 + x,116 + y,208,34,34 );
gfx.PutPixel( 7 + x,116 + y,208,34,34 );
gfx.PutPixel( 8 + x,116 + y,208,34,34 );
gfx.PutPixel( 9 + x,116 + y,208,34,34 );
gfx.PutPixel( 10 + x,116 + y,208,34,34 );
gfx.PutPixel( 11 + x,116 + y,208,34,34 );
gfx.PutPixel( 12 + x,116 + y,208,34,34 );
gfx.PutPixel( 13 + x,116 + y,208,34,34 );
gfx.PutPixel( 14 + x,116 + y,208,34,34 );
gfx.PutPixel( 15 + x,116 + y,208,34,34 );
gfx.PutPixel( 16 + x,116 + y,208,34,34 );
gfx.PutPixel( 17 + x,116 + y,208,34,34 );
gfx.PutPixel( 18 + x,116 + y,208,34,34 );
gfx.PutPixel( 19 + x,116 + y,208,34,34 );
gfx.PutPixel( 20 + x,116 + y,208,34,34 );
gfx.PutPixel( 21 + x,116 + y,208,34,34 );
gfx.PutPixel( 22 + x,116 + y,208,34,34 );
gfx.PutPixel( 23 + x,116 + y,208,34,34 );
gfx.PutPixel( 24 + x,116 + y,208,34,34 );
gfx.PutPixel( 25 + x,116 + y,208,34,34 );
gfx.PutPixel( 26 + x,116 + y,208,34,34 );
gfx.PutPixel( 27 + x,116 + y,208,34,34 );
gfx.PutPixel( 28 + x,116 + y,208,34,34 );
gfx.PutPixel( 29 + x,116 + y,208,34,34 );
gfx.PutPixel( 30 + x,116 + y,208,34,34 );
gfx.PutPixel( 31 + x,116 + y,208,34,34 );
gfx.PutPixel( 32 + x,116 + y,207,22,22 );
gfx.PutPixel( 33 + x,116 + y,215,128,128 );
gfx.PutPixel( 34 + x,116 + y,222,233,233 );
gfx.PutPixel( 35 + x,116 + y,221,221,221 );
gfx.PutPixel( 36 + x,116 + y,221,222,222 );
gfx.PutPixel( 37 + x,116 + y,222,232,232 );
gfx.PutPixel( 38 + x,116 + y,222,233,233 );
gfx.PutPixel( 39 + x,116 + y,222,233,233 );
gfx.PutPixel( 40 + x,116 + y,222,233,233 );
gfx.PutPixel( 41 + x,116 + y,222,233,233 );
gfx.PutPixel( 42 + x,116 + y,222,233,233 );
gfx.PutPixel( 43 + x,116 + y,223,242,242 );
gfx.PutPixel( 44 + x,116 + y,219,188,188 );
gfx.PutPixel( 45 + x,116 + y,208,31,31 );
gfx.PutPixel( 46 + x,116 + y,208,33,33 );
gfx.PutPixel( 47 + x,116 + y,208,34,34 );
gfx.PutPixel( 48 + x,116 + y,208,34,34 );
gfx.PutPixel( 49 + x,116 + y,208,34,34 );
gfx.PutPixel( 50 + x,116 + y,208,34,34 );
gfx.PutPixel( 51 + x,116 + y,207,24,24 );
gfx.PutPixel( 52 + x,116 + y,212,85,85 );
gfx.PutPixel( 53 + x,116 + y,222,227,227 );
gfx.PutPixel( 54 + x,116 + y,221,222,222 );
gfx.PutPixel( 55 + x,116 + y,221,221,221 );
gfx.PutPixel( 56 + x,116 + y,221,225,225 );
gfx.PutPixel( 57 + x,116 + y,220,207,207 );
gfx.PutPixel( 58 + x,116 + y,209,48,48 );
gfx.PutPixel( 59 + x,116 + y,208,30,30 );
gfx.PutPixel( 60 + x,116 + y,208,34,34 );
gfx.PutPixel( 61 + x,116 + y,207,23,23 );
gfx.PutPixel( 62 + x,116 + y,217,152,152 );
gfx.PutPixel( 63 + x,116 + y,223,245,245 );
gfx.PutPixel( 64 + x,116 + y,222,233,233 );
gfx.PutPixel( 65 + x,116 + y,222,233,233 );
gfx.PutPixel( 66 + x,116 + y,222,234,234 );
gfx.PutPixel( 67 + x,116 + y,221,224,224 );
gfx.PutPixel( 68 + x,116 + y,221,220,220 );
gfx.PutPixel( 69 + x,116 + y,221,220,220 );
gfx.PutPixel( 70 + x,116 + y,221,224,224 );
gfx.PutPixel( 71 + x,116 + y,222,234,234 );
gfx.PutPixel( 72 + x,116 + y,222,233,233 );
gfx.PutPixel( 73 + x,116 + y,222,233,233 );
gfx.PutPixel( 74 + x,116 + y,223,245,245 );
gfx.PutPixel( 75 + x,116 + y,217,152,152 );
gfx.PutPixel( 76 + x,116 + y,207,23,23 );
gfx.PutPixel( 77 + x,116 + y,208,34,34 );
gfx.PutPixel( 78 + x,116 + y,208,34,34 );
gfx.PutPixel( 79 + x,116 + y,208,34,34 );
gfx.PutPixel( 80 + x,116 + y,208,34,34 );
gfx.PutPixel( 81 + x,116 + y,208,34,34 );
gfx.PutPixel( 82 + x,116 + y,208,34,34 );
gfx.PutPixel( 83 + x,116 + y,207,22,22 );
gfx.PutPixel( 84 + x,116 + y,215,128,128 );
gfx.PutPixel( 85 + x,116 + y,222,233,233 );
gfx.PutPixel( 86 + x,116 + y,221,221,221 );
gfx.PutPixel( 87 + x,116 + y,221,222,222 );
gfx.PutPixel( 88 + x,116 + y,222,232,232 );
gfx.PutPixel( 89 + x,116 + y,222,233,233 );
gfx.PutPixel( 90 + x,116 + y,222,233,233 );
gfx.PutPixel( 91 + x,116 + y,222,232,232 );
gfx.PutPixel( 92 + x,116 + y,222,229,229 );
gfx.PutPixel( 93 + x,116 + y,221,223,223 );
gfx.PutPixel( 94 + x,116 + y,221,221,221 );
gfx.PutPixel( 95 + x,116 + y,221,225,225 );
gfx.PutPixel( 96 + x,116 + y,222,235,235 );
gfx.PutPixel( 97 + x,116 + y,218,183,183 );
gfx.PutPixel( 98 + x,116 + y,209,48,48 );
gfx.PutPixel( 99 + x,116 + y,208,28,28 );
gfx.PutPixel( 100 + x,116 + y,208,34,34 );
gfx.PutPixel( 101 + x,116 + y,208,34,34 );
gfx.PutPixel( 102 + x,116 + y,208,34,34 );
gfx.PutPixel( 103 + x,116 + y,208,34,34 );
gfx.PutPixel( 104 + x,116 + y,208,34,34 );
gfx.PutPixel( 105 + x,116 + y,208,33,33 );
gfx.PutPixel( 106 + x,116 + y,207,28,28 );
gfx.PutPixel( 107 + x,116 + y,218,174,174 );
gfx.PutPixel( 108 + x,116 + y,222,230,230 );
gfx.PutPixel( 109 + x,116 + y,221,221,221 );
gfx.PutPixel( 110 + x,116 + y,221,221,221 );
gfx.PutPixel( 111 + x,116 + y,222,233,233 );
gfx.PutPixel( 112 + x,116 + y,215,128,128 );
gfx.PutPixel( 113 + x,116 + y,207,22,22 );
gfx.PutPixel( 114 + x,116 + y,208,34,34 );
gfx.PutPixel( 115 + x,116 + y,208,34,34 );
gfx.PutPixel( 116 + x,116 + y,208,34,34 );
gfx.PutPixel( 117 + x,116 + y,208,34,34 );
gfx.PutPixel( 118 + x,116 + y,208,34,34 );
gfx.PutPixel( 119 + x,116 + y,208,34,34 );
gfx.PutPixel( 120 + x,116 + y,208,34,34 );
gfx.PutPixel( 121 + x,116 + y,208,34,34 );
gfx.PutPixel( 122 + x,116 + y,208,34,34 );
gfx.PutPixel( 123 + x,116 + y,208,34,34 );
gfx.PutPixel( 124 + x,116 + y,208,34,34 );
gfx.PutPixel( 125 + x,116 + y,208,34,34 );
gfx.PutPixel( 126 + x,116 + y,208,34,34 );
gfx.PutPixel( 127 + x,116 + y,208,34,34 );
gfx.PutPixel( 128 + x,116 + y,208,34,34 );
gfx.PutPixel( 129 + x,116 + y,208,34,34 );
gfx.PutPixel( 130 + x,116 + y,208,34,34 );
gfx.PutPixel( 131 + x,116 + y,208,34,34 );
gfx.PutPixel( 132 + x,116 + y,208,34,34 );
gfx.PutPixel( 133 + x,116 + y,208,34,34 );
gfx.PutPixel( 134 + x,116 + y,208,34,34 );
gfx.PutPixel( 135 + x,116 + y,208,34,34 );
gfx.PutPixel( 136 + x,116 + y,208,34,34 );
gfx.PutPixel( 137 + x,116 + y,208,34,34 );
gfx.PutPixel( 138 + x,116 + y,208,34,34 );
gfx.PutPixel( 139 + x,116 + y,208,34,34 );
gfx.PutPixel( 140 + x,116 + y,208,34,34 );
gfx.PutPixel( 141 + x,116 + y,208,34,34 );
gfx.PutPixel( 142 + x,116 + y,208,34,34 );
gfx.PutPixel( 143 + x,116 + y,208,34,34 );
gfx.PutPixel( 144 + x,116 + y,208,34,34 );
gfx.PutPixel( 145 + x,116 + y,208,34,34 );
gfx.PutPixel( 146 + x,116 + y,208,34,34 );
gfx.PutPixel( 147 + x,116 + y,208,34,34 );
gfx.PutPixel( 148 + x,116 + y,208,34,34 );
gfx.PutPixel( 149 + x,116 + y,208,34,34 );
gfx.PutPixel( 0 + x,117 + y,208,34,34 );
gfx.PutPixel( 1 + x,117 + y,208,34,34 );
gfx.PutPixel( 2 + x,117 + y,208,34,34 );
gfx.PutPixel( 3 + x,117 + y,208,34,34 );
gfx.PutPixel( 4 + x,117 + y,208,34,34 );
gfx.PutPixel( 5 + x,117 + y,208,34,34 );
gfx.PutPixel( 6 + x,117 + y,208,34,34 );
gfx.PutPixel( 7 + x,117 + y,208,34,34 );
gfx.PutPixel( 8 + x,117 + y,208,34,34 );
gfx.PutPixel( 9 + x,117 + y,208,34,34 );
gfx.PutPixel( 10 + x,117 + y,208,34,34 );
gfx.PutPixel( 11 + x,117 + y,208,34,34 );
gfx.PutPixel( 12 + x,117 + y,208,34,34 );
gfx.PutPixel( 13 + x,117 + y,208,34,34 );
gfx.PutPixel( 14 + x,117 + y,208,34,34 );
gfx.PutPixel( 15 + x,117 + y,208,34,34 );
gfx.PutPixel( 16 + x,117 + y,208,34,34 );
gfx.PutPixel( 17 + x,117 + y,208,34,34 );
gfx.PutPixel( 18 + x,117 + y,208,34,34 );
gfx.PutPixel( 19 + x,117 + y,208,34,34 );
gfx.PutPixel( 20 + x,117 + y,208,34,34 );
gfx.PutPixel( 21 + x,117 + y,208,34,34 );
gfx.PutPixel( 22 + x,117 + y,208,34,34 );
gfx.PutPixel( 23 + x,117 + y,208,34,34 );
gfx.PutPixel( 24 + x,117 + y,208,34,34 );
gfx.PutPixel( 25 + x,117 + y,208,34,34 );
gfx.PutPixel( 26 + x,117 + y,208,34,34 );
gfx.PutPixel( 27 + x,117 + y,208,34,34 );
gfx.PutPixel( 28 + x,117 + y,208,34,34 );
gfx.PutPixel( 29 + x,117 + y,208,34,34 );
gfx.PutPixel( 30 + x,117 + y,208,34,34 );
gfx.PutPixel( 31 + x,117 + y,208,34,34 );
gfx.PutPixel( 32 + x,117 + y,207,22,22 );
gfx.PutPixel( 33 + x,117 + y,215,128,128 );
gfx.PutPixel( 34 + x,117 + y,222,233,233 );
gfx.PutPixel( 35 + x,117 + y,221,223,223 );
gfx.PutPixel( 36 + x,117 + y,221,215,215 );
gfx.PutPixel( 37 + x,117 + y,215,134,134 );
gfx.PutPixel( 38 + x,117 + y,215,126,126 );
gfx.PutPixel( 39 + x,117 + y,215,128,128 );
gfx.PutPixel( 40 + x,117 + y,215,128,128 );
gfx.PutPixel( 41 + x,117 + y,215,128,128 );
gfx.PutPixel( 42 + x,117 + y,215,128,128 );
gfx.PutPixel( 43 + x,117 + y,215,132,132 );
gfx.PutPixel( 44 + x,117 + y,213,107,107 );
gfx.PutPixel( 45 + x,117 + y,208,33,33 );
gfx.PutPixel( 46 + x,117 + y,208,34,34 );
gfx.PutPixel( 47 + x,117 + y,208,34,34 );
gfx.PutPixel( 48 + x,117 + y,208,34,34 );
gfx.PutPixel( 49 + x,117 + y,208,34,34 );
gfx.PutPixel( 50 + x,117 + y,208,34,34 );
gfx.PutPixel( 51 + x,117 + y,207,26,26 );
gfx.PutPixel( 52 + x,117 + y,217,162,162 );
gfx.PutPixel( 53 + x,117 + y,222,231,231 );
gfx.PutPixel( 54 + x,117 + y,221,221,221 );
gfx.PutPixel( 55 + x,117 + y,221,221,221 );
gfx.PutPixel( 56 + x,117 + y,221,221,221 );
gfx.PutPixel( 57 + x,117 + y,222,233,233 );
gfx.PutPixel( 58 + x,117 + y,214,116,116 );
gfx.PutPixel( 59 + x,117 + y,207,22,22 );
gfx.PutPixel( 60 + x,117 + y,208,34,34 );
gfx.PutPixel( 61 + x,117 + y,208,29,29 );
gfx.PutPixel( 62 + x,117 + y,212,90,90 );
gfx.PutPixel( 63 + x,117 + y,215,133,133 );
gfx.PutPixel( 64 + x,117 + y,215,128,128 );
gfx.PutPixel( 65 + x,117 + y,215,128,128 );
gfx.PutPixel( 66 + x,117 + y,215,124,124 );
gfx.PutPixel( 67 + x,117 + y,220,197,197 );
gfx.PutPixel( 68 + x,117 + y,222,226,226 );
gfx.PutPixel( 69 + x,117 + y,222,226,226 );
gfx.PutPixel( 70 + x,117 + y,220,197,197 );
gfx.PutPixel( 71 + x,117 + y,215,124,124 );
gfx.PutPixel( 72 + x,117 + y,215,128,128 );
gfx.PutPixel( 73 + x,117 + y,215,128,128 );
gfx.PutPixel( 74 + x,117 + y,215,133,133 );
gfx.PutPixel( 75 + x,117 + y,212,90,90 );
gfx.PutPixel( 76 + x,117 + y,208,29,29 );
gfx.PutPixel( 77 + x,117 + y,208,34,34 );
gfx.PutPixel( 78 + x,117 + y,208,34,34 );
gfx.PutPixel( 79 + x,117 + y,208,34,34 );
gfx.PutPixel( 80 + x,117 + y,208,34,34 );
gfx.PutPixel( 81 + x,117 + y,208,34,34 );
gfx.PutPixel( 82 + x,117 + y,208,34,34 );
gfx.PutPixel( 83 + x,117 + y,207,22,22 );
gfx.PutPixel( 84 + x,117 + y,215,128,128 );
gfx.PutPixel( 85 + x,117 + y,222,233,233 );
gfx.PutPixel( 86 + x,117 + y,221,223,223 );
gfx.PutPixel( 87 + x,117 + y,221,215,215 );
gfx.PutPixel( 88 + x,117 + y,215,134,134 );
gfx.PutPixel( 89 + x,117 + y,215,125,125 );
gfx.PutPixel( 90 + x,117 + y,215,128,128 );
gfx.PutPixel( 91 + x,117 + y,216,143,143 );
gfx.PutPixel( 92 + x,117 + y,218,178,178 );
gfx.PutPixel( 93 + x,117 + y,221,219,219 );
gfx.PutPixel( 94 + x,117 + y,222,230,230 );
gfx.PutPixel( 95 + x,117 + y,221,221,221 );
gfx.PutPixel( 96 + x,117 + y,221,221,221 );
gfx.PutPixel( 97 + x,117 + y,222,234,234 );
gfx.PutPixel( 98 + x,117 + y,218,173,173 );
gfx.PutPixel( 99 + x,117 + y,208,32,32 );
gfx.PutPixel( 100 + x,117 + y,208,32,32 );
gfx.PutPixel( 101 + x,117 + y,208,34,34 );
gfx.PutPixel( 102 + x,117 + y,208,34,34 );
gfx.PutPixel( 103 + x,117 + y,208,34,34 );
gfx.PutPixel( 104 + x,117 + y,208,34,34 );
gfx.PutPixel( 105 + x,117 + y,207,26,26 );
gfx.PutPixel( 106 + x,117 + y,211,74,74 );
gfx.PutPixel( 107 + x,117 + y,221,224,224 );
gfx.PutPixel( 108 + x,117 + y,221,222,222 );
gfx.PutPixel( 109 + x,117 + y,221,221,221 );
gfx.PutPixel( 110 + x,117 + y,221,221,221 );
gfx.PutPixel( 111 + x,117 + y,221,226,226 );
gfx.PutPixel( 112 + x,117 + y,220,199,199 );
gfx.PutPixel( 113 + x,117 + y,209,41,41 );
gfx.PutPixel( 114 + x,117 + y,208,31,31 );
gfx.PutPixel( 115 + x,117 + y,208,34,34 );
gfx.PutPixel( 116 + x,117 + y,208,34,34 );
gfx.PutPixel( 117 + x,117 + y,208,34,34 );
gfx.PutPixel( 118 + x,117 + y,208,34,34 );
gfx.PutPixel( 119 + x,117 + y,208,34,34 );
gfx.PutPixel( 120 + x,117 + y,208,34,34 );
gfx.PutPixel( 121 + x,117 + y,208,34,34 );
gfx.PutPixel( 122 + x,117 + y,208,34,34 );
gfx.PutPixel( 123 + x,117 + y,208,34,34 );
gfx.PutPixel( 124 + x,117 + y,208,34,34 );
gfx.PutPixel( 125 + x,117 + y,208,34,34 );
gfx.PutPixel( 126 + x,117 + y,208,34,34 );
gfx.PutPixel( 127 + x,117 + y,208,34,34 );
gfx.PutPixel( 128 + x,117 + y,208,34,34 );
gfx.PutPixel( 129 + x,117 + y,208,34,34 );
gfx.PutPixel( 130 + x,117 + y,208,34,34 );
gfx.PutPixel( 131 + x,117 + y,208,34,34 );
gfx.PutPixel( 132 + x,117 + y,208,34,34 );
gfx.PutPixel( 133 + x,117 + y,208,34,34 );
gfx.PutPixel( 134 + x,117 + y,208,34,34 );
gfx.PutPixel( 135 + x,117 + y,208,34,34 );
gfx.PutPixel( 136 + x,117 + y,208,34,34 );
gfx.PutPixel( 137 + x,117 + y,208,34,34 );
gfx.PutPixel( 138 + x,117 + y,208,34,34 );
gfx.PutPixel( 139 + x,117 + y,208,34,34 );
gfx.PutPixel( 140 + x,117 + y,208,34,34 );
gfx.PutPixel( 141 + x,117 + y,208,34,34 );
gfx.PutPixel( 142 + x,117 + y,208,34,34 );
gfx.PutPixel( 143 + x,117 + y,208,34,34 );
gfx.PutPixel( 144 + x,117 + y,208,34,34 );
gfx.PutPixel( 145 + x,117 + y,208,34,34 );
gfx.PutPixel( 146 + x,117 + y,208,34,34 );
gfx.PutPixel( 147 + x,117 + y,208,34,34 );
gfx.PutPixel( 148 + x,117 + y,208,34,34 );
gfx.PutPixel( 149 + x,117 + y,208,34,34 );
gfx.PutPixel( 0 + x,118 + y,208,34,34 );
gfx.PutPixel( 1 + x,118 + y,208,34,34 );
gfx.PutPixel( 2 + x,118 + y,208,34,34 );
gfx.PutPixel( 3 + x,118 + y,208,34,34 );
gfx.PutPixel( 4 + x,118 + y,208,34,34 );
gfx.PutPixel( 5 + x,118 + y,208,34,34 );
gfx.PutPixel( 6 + x,118 + y,208,34,34 );
gfx.PutPixel( 7 + x,118 + y,208,34,34 );
gfx.PutPixel( 8 + x,118 + y,208,34,34 );
gfx.PutPixel( 9 + x,118 + y,208,34,34 );
gfx.PutPixel( 10 + x,118 + y,208,34,34 );
gfx.PutPixel( 11 + x,118 + y,208,34,34 );
gfx.PutPixel( 12 + x,118 + y,208,34,34 );
gfx.PutPixel( 13 + x,118 + y,208,34,34 );
gfx.PutPixel( 14 + x,118 + y,208,34,34 );
gfx.PutPixel( 15 + x,118 + y,208,34,34 );
gfx.PutPixel( 16 + x,118 + y,208,34,34 );
gfx.PutPixel( 17 + x,118 + y,208,34,34 );
gfx.PutPixel( 18 + x,118 + y,208,34,34 );
gfx.PutPixel( 19 + x,118 + y,208,34,34 );
gfx.PutPixel( 20 + x,118 + y,208,34,34 );
gfx.PutPixel( 21 + x,118 + y,208,34,34 );
gfx.PutPixel( 22 + x,118 + y,208,34,34 );
gfx.PutPixel( 23 + x,118 + y,208,34,34 );
gfx.PutPixel( 24 + x,118 + y,208,34,34 );
gfx.PutPixel( 25 + x,118 + y,208,34,34 );
gfx.PutPixel( 26 + x,118 + y,208,34,34 );
gfx.PutPixel( 27 + x,118 + y,208,34,34 );
gfx.PutPixel( 28 + x,118 + y,208,34,34 );
gfx.PutPixel( 29 + x,118 + y,208,34,34 );
gfx.PutPixel( 30 + x,118 + y,208,34,34 );
gfx.PutPixel( 31 + x,118 + y,208,34,34 );
gfx.PutPixel( 32 + x,118 + y,207,22,22 );
gfx.PutPixel( 33 + x,118 + y,215,128,128 );
gfx.PutPixel( 34 + x,118 + y,222,233,233 );
gfx.PutPixel( 35 + x,118 + y,221,225,225 );
gfx.PutPixel( 36 + x,118 + y,220,207,207 );
gfx.PutPixel( 37 + x,118 + y,208,36,36 );
gfx.PutPixel( 38 + x,118 + y,207,18,18 );
gfx.PutPixel( 39 + x,118 + y,207,22,22 );
gfx.PutPixel( 40 + x,118 + y,207,22,22 );
gfx.PutPixel( 41 + x,118 + y,207,22,22 );
gfx.PutPixel( 42 + x,118 + y,207,22,22 );
gfx.PutPixel( 43 + x,118 + y,207,21,21 );
gfx.PutPixel( 44 + x,118 + y,207,25,25 );
gfx.PutPixel( 45 + x,118 + y,208,34,34 );
gfx.PutPixel( 46 + x,118 + y,208,34,34 );
gfx.PutPixel( 47 + x,118 + y,208,34,34 );
gfx.PutPixel( 48 + x,118 + y,208,34,34 );
gfx.PutPixel( 49 + x,118 + y,208,34,34 );
gfx.PutPixel( 50 + x,118 + y,207,27,27 );
gfx.PutPixel( 51 + x,118 + y,210,64,64 );
gfx.PutPixel( 52 + x,118 + y,221,219,219 );
gfx.PutPixel( 53 + x,118 + y,221,223,223 );
gfx.PutPixel( 54 + x,118 + y,221,222,222 );
gfx.PutPixel( 55 + x,118 + y,221,225,225 );
gfx.PutPixel( 56 + x,118 + y,221,221,221 );
gfx.PutPixel( 57 + x,118 + y,221,228,228 );
gfx.PutPixel( 58 + x,118 + y,219,190,190 );
gfx.PutPixel( 59 + x,118 + y,208,36,36 );
gfx.PutPixel( 60 + x,118 + y,208,32,32 );
gfx.PutPixel( 61 + x,118 + y,208,35,35 );
gfx.PutPixel( 62 + x,118 + y,207,27,27 );
gfx.PutPixel( 63 + x,118 + y,207,21,21 );
gfx.PutPixel( 64 + x,118 + y,207,22,22 );
gfx.PutPixel( 65 + x,118 + y,207,22,22 );
gfx.PutPixel( 66 + x,118 + y,207,14,14 );
gfx.PutPixel( 67 + x,118 + y,218,170,170 );
gfx.PutPixel( 68 + x,118 + y,222,231,231 );
gfx.PutPixel( 69 + x,118 + y,222,231,231 );
gfx.PutPixel( 70 + x,118 + y,218,170,170 );
gfx.PutPixel( 71 + x,118 + y,207,14,14 );
gfx.PutPixel( 72 + x,118 + y,207,22,22 );
gfx.PutPixel( 73 + x,118 + y,207,22,22 );
gfx.PutPixel( 74 + x,118 + y,207,21,21 );
gfx.PutPixel( 75 + x,118 + y,207,27,27 );
gfx.PutPixel( 76 + x,118 + y,208,35,35 );
gfx.PutPixel( 77 + x,118 + y,208,34,34 );
gfx.PutPixel( 78 + x,118 + y,208,34,34 );
gfx.PutPixel( 79 + x,118 + y,208,34,34 );
gfx.PutPixel( 80 + x,118 + y,208,34,34 );
gfx.PutPixel( 81 + x,118 + y,208,34,34 );
gfx.PutPixel( 82 + x,118 + y,208,34,34 );
gfx.PutPixel( 83 + x,118 + y,207,22,22 );
gfx.PutPixel( 84 + x,118 + y,215,128,128 );
gfx.PutPixel( 85 + x,118 + y,222,233,233 );
gfx.PutPixel( 86 + x,118 + y,221,225,225 );
gfx.PutPixel( 87 + x,118 + y,220,207,207 );
gfx.PutPixel( 88 + x,118 + y,208,36,36 );
gfx.PutPixel( 89 + x,118 + y,207,18,18 );
gfx.PutPixel( 90 + x,118 + y,207,22,22 );
gfx.PutPixel( 91 + x,118 + y,207,23,23 );
gfx.PutPixel( 92 + x,118 + y,208,29,29 );
gfx.PutPixel( 93 + x,118 + y,210,65,65 );
gfx.PutPixel( 94 + x,118 + y,217,168,168 );
gfx.PutPixel( 95 + x,118 + y,222,230,230 );
gfx.PutPixel( 96 + x,118 + y,221,221,221 );
gfx.PutPixel( 97 + x,118 + y,221,221,221 );
gfx.PutPixel( 98 + x,118 + y,222,233,233 );
gfx.PutPixel( 99 + x,118 + y,213,105,105 );
gfx.PutPixel( 100 + x,118 + y,207,24,24 );
gfx.PutPixel( 101 + x,118 + y,208,34,34 );
gfx.PutPixel( 102 + x,118 + y,208,34,34 );
gfx.PutPixel( 103 + x,118 + y,208,34,34 );
gfx.PutPixel( 104 + x,118 + y,208,34,34 );
gfx.PutPixel( 105 + x,118 + y,207,24,24 );
gfx.PutPixel( 106 + x,118 + y,216,150,150 );
gfx.PutPixel( 107 + x,118 + y,222,232,232 );
gfx.PutPixel( 108 + x,118 + y,221,221,221 );
gfx.PutPixel( 109 + x,118 + y,221,225,225 );
gfx.PutPixel( 110 + x,118 + y,221,222,222 );
gfx.PutPixel( 111 + x,118 + y,221,221,221 );
gfx.PutPixel( 112 + x,118 + y,222,231,231 );
gfx.PutPixel( 113 + x,118 + y,213,104,104 );
gfx.PutPixel( 114 + x,118 + y,207,23,23 );
gfx.PutPixel( 115 + x,118 + y,208,34,34 );
gfx.PutPixel( 116 + x,118 + y,208,34,34 );
gfx.PutPixel( 117 + x,118 + y,208,34,34 );
gfx.PutPixel( 118 + x,118 + y,208,34,34 );
gfx.PutPixel( 119 + x,118 + y,208,34,34 );
gfx.PutPixel( 120 + x,118 + y,208,34,34 );
gfx.PutPixel( 121 + x,118 + y,208,34,34 );
gfx.PutPixel( 122 + x,118 + y,208,34,34 );
gfx.PutPixel( 123 + x,118 + y,208,34,34 );
gfx.PutPixel( 124 + x,118 + y,208,34,34 );
gfx.PutPixel( 125 + x,118 + y,208,34,34 );
gfx.PutPixel( 126 + x,118 + y,208,34,34 );
gfx.PutPixel( 127 + x,118 + y,208,34,34 );
gfx.PutPixel( 128 + x,118 + y,208,34,34 );
gfx.PutPixel( 129 + x,118 + y,208,34,34 );
gfx.PutPixel( 130 + x,118 + y,208,34,34 );
gfx.PutPixel( 131 + x,118 + y,208,34,34 );
gfx.PutPixel( 132 + x,118 + y,208,34,34 );
gfx.PutPixel( 133 + x,118 + y,208,34,34 );
gfx.PutPixel( 134 + x,118 + y,208,34,34 );
gfx.PutPixel( 135 + x,118 + y,208,34,34 );
gfx.PutPixel( 136 + x,118 + y,208,34,34 );
gfx.PutPixel( 137 + x,118 + y,208,34,34 );
gfx.PutPixel( 138 + x,118 + y,208,34,34 );
gfx.PutPixel( 139 + x,118 + y,208,34,34 );
gfx.PutPixel( 140 + x,118 + y,208,34,34 );
gfx.PutPixel( 141 + x,118 + y,208,34,34 );
gfx.PutPixel( 142 + x,118 + y,208,34,34 );
gfx.PutPixel( 143 + x,118 + y,208,34,34 );
gfx.PutPixel( 144 + x,118 + y,208,34,34 );
gfx.PutPixel( 145 + x,118 + y,208,34,34 );
gfx.PutPixel( 146 + x,118 + y,208,34,34 );
gfx.PutPixel( 147 + x,118 + y,208,34,34 );
gfx.PutPixel( 148 + x,118 + y,208,34,34 );
gfx.PutPixel( 149 + x,118 + y,208,34,34 );
gfx.PutPixel( 0 + x,119 + y,208,34,34 );
gfx.PutPixel( 1 + x,119 + y,208,34,34 );
gfx.PutPixel( 2 + x,119 + y,208,34,34 );
gfx.PutPixel( 3 + x,119 + y,208,34,34 );
gfx.PutPixel( 4 + x,119 + y,208,34,34 );
gfx.PutPixel( 5 + x,119 + y,208,34,34 );
gfx.PutPixel( 6 + x,119 + y,208,34,34 );
gfx.PutPixel( 7 + x,119 + y,208,34,34 );
gfx.PutPixel( 8 + x,119 + y,208,34,34 );
gfx.PutPixel( 9 + x,119 + y,208,34,34 );
gfx.PutPixel( 10 + x,119 + y,208,34,34 );
gfx.PutPixel( 11 + x,119 + y,208,34,34 );
gfx.PutPixel( 12 + x,119 + y,208,34,34 );
gfx.PutPixel( 13 + x,119 + y,208,34,34 );
gfx.PutPixel( 14 + x,119 + y,208,34,34 );
gfx.PutPixel( 15 + x,119 + y,208,34,34 );
gfx.PutPixel( 16 + x,119 + y,208,34,34 );
gfx.PutPixel( 17 + x,119 + y,208,34,34 );
gfx.PutPixel( 18 + x,119 + y,208,34,34 );
gfx.PutPixel( 19 + x,119 + y,208,34,34 );
gfx.PutPixel( 20 + x,119 + y,208,34,34 );
gfx.PutPixel( 21 + x,119 + y,208,34,34 );
gfx.PutPixel( 22 + x,119 + y,208,34,34 );
gfx.PutPixel( 23 + x,119 + y,208,34,34 );
gfx.PutPixel( 24 + x,119 + y,208,34,34 );
gfx.PutPixel( 25 + x,119 + y,208,34,34 );
gfx.PutPixel( 26 + x,119 + y,208,34,34 );
gfx.PutPixel( 27 + x,119 + y,208,34,34 );
gfx.PutPixel( 28 + x,119 + y,208,34,34 );
gfx.PutPixel( 29 + x,119 + y,208,34,34 );
gfx.PutPixel( 30 + x,119 + y,208,34,34 );
gfx.PutPixel( 31 + x,119 + y,208,34,34 );
gfx.PutPixel( 32 + x,119 + y,207,22,22 );
gfx.PutPixel( 33 + x,119 + y,215,128,128 );
gfx.PutPixel( 34 + x,119 + y,222,233,233 );
gfx.PutPixel( 35 + x,119 + y,221,225,225 );
gfx.PutPixel( 36 + x,119 + y,220,207,207 );
gfx.PutPixel( 37 + x,119 + y,208,36,36 );
gfx.PutPixel( 38 + x,119 + y,207,18,18 );
gfx.PutPixel( 39 + x,119 + y,207,22,22 );
gfx.PutPixel( 40 + x,119 + y,207,22,22 );
gfx.PutPixel( 41 + x,119 + y,207,22,22 );
gfx.PutPixel( 42 + x,119 + y,207,22,22 );
gfx.PutPixel( 43 + x,119 + y,207,21,21 );
gfx.PutPixel( 44 + x,119 + y,208,29,29 );
gfx.PutPixel( 45 + x,119 + y,208,35,35 );
gfx.PutPixel( 46 + x,119 + y,208,34,34 );
gfx.PutPixel( 47 + x,119 + y,208,34,34 );
gfx.PutPixel( 48 + x,119 + y,208,34,34 );
gfx.PutPixel( 49 + x,119 + y,208,34,34 );
gfx.PutPixel( 50 + x,119 + y,207,22,22 );
gfx.PutPixel( 51 + x,119 + y,215,138,138 );
gfx.PutPixel( 52 + x,119 + y,222,233,233 );
gfx.PutPixel( 53 + x,119 + y,221,224,224 );
gfx.PutPixel( 54 + x,119 + y,220,203,203 );
gfx.PutPixel( 55 + x,119 + y,217,158,158 );
gfx.PutPixel( 56 + x,119 + y,222,228,228 );
gfx.PutPixel( 57 + x,119 + y,221,221,221 );
gfx.PutPixel( 58 + x,119 + y,222,229,229 );
gfx.PutPixel( 59 + x,119 + y,212,92,92 );
gfx.PutPixel( 60 + x,119 + y,207,24,24 );
gfx.PutPixel( 61 + x,119 + y,208,34,34 );
gfx.PutPixel( 62 + x,119 + y,208,34,34 );
gfx.PutPixel( 63 + x,119 + y,208,34,34 );
gfx.PutPixel( 64 + x,119 + y,208,34,34 );
gfx.PutPixel( 65 + x,119 + y,208,34,34 );
gfx.PutPixel( 66 + x,119 + y,208,27,27 );
gfx.PutPixel( 67 + x,119 + y,218,173,173 );
gfx.PutPixel( 68 + x,119 + y,222,230,230 );
gfx.PutPixel( 69 + x,119 + y,222,230,230 );
gfx.PutPixel( 70 + x,119 + y,218,173,173 );
gfx.PutPixel( 71 + x,119 + y,208,27,27 );
gfx.PutPixel( 72 + x,119 + y,208,34,34 );
gfx.PutPixel( 73 + x,119 + y,208,34,34 );
gfx.PutPixel( 74 + x,119 + y,208,34,34 );
gfx.PutPixel( 75 + x,119 + y,208,34,34 );
gfx.PutPixel( 76 + x,119 + y,208,34,34 );
gfx.PutPixel( 77 + x,119 + y,208,34,34 );
gfx.PutPixel( 78 + x,119 + y,208,34,34 );
gfx.PutPixel( 79 + x,119 + y,208,34,34 );
gfx.PutPixel( 80 + x,119 + y,208,34,34 );
gfx.PutPixel( 81 + x,119 + y,208,34,34 );
gfx.PutPixel( 82 + x,119 + y,208,34,34 );
gfx.PutPixel( 83 + x,119 + y,207,22,22 );
gfx.PutPixel( 84 + x,119 + y,215,128,128 );
gfx.PutPixel( 85 + x,119 + y,222,233,233 );
gfx.PutPixel( 86 + x,119 + y,221,225,225 );
gfx.PutPixel( 87 + x,119 + y,220,208,208 );
gfx.PutPixel( 88 + x,119 + y,209,47,47 );
gfx.PutPixel( 89 + x,119 + y,208,30,30 );
gfx.PutPixel( 90 + x,119 + y,208,34,34 );
gfx.PutPixel( 91 + x,119 + y,208,34,34 );
gfx.PutPixel( 92 + x,119 + y,208,33,33 );
gfx.PutPixel( 93 + x,119 + y,207,25,25 );
gfx.PutPixel( 94 + x,119 + y,207,29,29 );
gfx.PutPixel( 95 + x,119 + y,217,164,164 );
gfx.PutPixel( 96 + x,119 + y,222,230,230 );
gfx.PutPixel( 97 + x,119 + y,221,221,221 );
gfx.PutPixel( 98 + x,119 + y,222,229,229 );
gfx.PutPixel( 99 + x,119 + y,218,180,180 );
gfx.PutPixel( 100 + x,119 + y,208,31,31 );
gfx.PutPixel( 101 + x,119 + y,208,33,33 );
gfx.PutPixel( 102 + x,119 + y,208,34,34 );
gfx.PutPixel( 103 + x,119 + y,208,34,34 );
gfx.PutPixel( 104 + x,119 + y,208,29,29 );
gfx.PutPixel( 105 + x,119 + y,209,55,55 );
gfx.PutPixel( 106 + x,119 + y,220,213,213 );
gfx.PutPixel( 107 + x,119 + y,221,224,224 );
gfx.PutPixel( 108 + x,119 + y,222,228,228 );
gfx.PutPixel( 109 + x,119 + y,217,159,159 );
gfx.PutPixel( 110 + x,119 + y,220,200,200 );
gfx.PutPixel( 111 + x,119 + y,221,224,224 );
gfx.PutPixel( 112 + x,119 + y,222,229,229 );
gfx.PutPixel( 113 + x,119 + y,218,181,181 );
gfx.PutPixel( 114 + x,119 + y,208,31,31 );
gfx.PutPixel( 115 + x,119 + y,208,33,33 );
gfx.PutPixel( 116 + x,119 + y,208,34,34 );
gfx.PutPixel( 117 + x,119 + y,208,34,34 );
gfx.PutPixel( 118 + x,119 + y,208,34,34 );
gfx.PutPixel( 119 + x,119 + y,208,34,34 );
gfx.PutPixel( 120 + x,119 + y,208,34,34 );
gfx.PutPixel( 121 + x,119 + y,208,34,34 );
gfx.PutPixel( 122 + x,119 + y,208,34,34 );
gfx.PutPixel( 123 + x,119 + y,208,34,34 );
gfx.PutPixel( 124 + x,119 + y,208,34,34 );
gfx.PutPixel( 125 + x,119 + y,208,34,34 );
gfx.PutPixel( 126 + x,119 + y,208,34,34 );
gfx.PutPixel( 127 + x,119 + y,208,34,34 );
gfx.PutPixel( 128 + x,119 + y,208,34,34 );
gfx.PutPixel( 129 + x,119 + y,208,34,34 );
gfx.PutPixel( 130 + x,119 + y,208,34,34 );
gfx.PutPixel( 131 + x,119 + y,208,34,34 );
gfx.PutPixel( 132 + x,119 + y,208,34,34 );
gfx.PutPixel( 133 + x,119 + y,208,34,34 );
gfx.PutPixel( 134 + x,119 + y,208,34,34 );
gfx.PutPixel( 135 + x,119 + y,208,34,34 );
gfx.PutPixel( 136 + x,119 + y,208,34,34 );
gfx.PutPixel( 137 + x,119 + y,208,34,34 );
gfx.PutPixel( 138 + x,119 + y,208,34,34 );
gfx.PutPixel( 139 + x,119 + y,208,34,34 );
gfx.PutPixel( 140 + x,119 + y,208,34,34 );
gfx.PutPixel( 141 + x,119 + y,208,34,34 );
gfx.PutPixel( 142 + x,119 + y,208,34,34 );
gfx.PutPixel( 143 + x,119 + y,208,34,34 );
gfx.PutPixel( 144 + x,119 + y,208,34,34 );
gfx.PutPixel( 145 + x,119 + y,208,34,34 );
gfx.PutPixel( 146 + x,119 + y,208,34,34 );
gfx.PutPixel( 147 + x,119 + y,208,34,34 );
gfx.PutPixel( 148 + x,119 + y,208,34,34 );
gfx.PutPixel( 149 + x,119 + y,208,34,34 );
gfx.PutPixel( 0 + x,120 + y,208,34,34 );
gfx.PutPixel( 1 + x,120 + y,208,34,34 );
gfx.PutPixel( 2 + x,120 + y,208,34,34 );
gfx.PutPixel( 3 + x,120 + y,208,34,34 );
gfx.PutPixel( 4 + x,120 + y,208,34,34 );
gfx.PutPixel( 5 + x,120 + y,208,34,34 );
gfx.PutPixel( 6 + x,120 + y,208,34,34 );
gfx.PutPixel( 7 + x,120 + y,208,34,34 );
gfx.PutPixel( 8 + x,120 + y,208,34,34 );
gfx.PutPixel( 9 + x,120 + y,208,34,34 );
gfx.PutPixel( 10 + x,120 + y,208,34,34 );
gfx.PutPixel( 11 + x,120 + y,208,34,34 );
gfx.PutPixel( 12 + x,120 + y,208,34,34 );
gfx.PutPixel( 13 + x,120 + y,208,34,34 );
gfx.PutPixel( 14 + x,120 + y,208,34,34 );
gfx.PutPixel( 15 + x,120 + y,208,34,34 );
gfx.PutPixel( 16 + x,120 + y,208,34,34 );
gfx.PutPixel( 17 + x,120 + y,208,34,34 );
gfx.PutPixel( 18 + x,120 + y,208,34,34 );
gfx.PutPixel( 19 + x,120 + y,208,34,34 );
gfx.PutPixel( 20 + x,120 + y,208,34,34 );
gfx.PutPixel( 21 + x,120 + y,208,34,34 );
gfx.PutPixel( 22 + x,120 + y,208,34,34 );
gfx.PutPixel( 23 + x,120 + y,208,34,34 );
gfx.PutPixel( 24 + x,120 + y,208,34,34 );
gfx.PutPixel( 25 + x,120 + y,208,34,34 );
gfx.PutPixel( 26 + x,120 + y,208,34,34 );
gfx.PutPixel( 27 + x,120 + y,208,34,34 );
gfx.PutPixel( 28 + x,120 + y,208,34,34 );
gfx.PutPixel( 29 + x,120 + y,208,34,34 );
gfx.PutPixel( 30 + x,120 + y,208,34,34 );
gfx.PutPixel( 31 + x,120 + y,208,34,34 );
gfx.PutPixel( 32 + x,120 + y,207,22,22 );
gfx.PutPixel( 33 + x,120 + y,215,128,128 );
gfx.PutPixel( 34 + x,120 + y,222,233,233 );
gfx.PutPixel( 35 + x,120 + y,221,223,223 );
gfx.PutPixel( 36 + x,120 + y,221,215,215 );
gfx.PutPixel( 37 + x,120 + y,215,134,134 );
gfx.PutPixel( 38 + x,120 + y,215,126,126 );
gfx.PutPixel( 39 + x,120 + y,215,128,128 );
gfx.PutPixel( 40 + x,120 + y,215,128,128 );
gfx.PutPixel( 41 + x,120 + y,215,128,128 );
gfx.PutPixel( 42 + x,120 + y,215,128,128 );
gfx.PutPixel( 43 + x,120 + y,215,132,132 );
gfx.PutPixel( 44 + x,120 + y,211,69,69 );
gfx.PutPixel( 45 + x,120 + y,208,29,29 );
gfx.PutPixel( 46 + x,120 + y,208,34,34 );
gfx.PutPixel( 47 + x,120 + y,208,34,34 );
gfx.PutPixel( 48 + x,120 + y,208,34,34 );
gfx.PutPixel( 49 + x,120 + y,208,30,30 );
gfx.PutPixel( 50 + x,120 + y,209,47,47 );
gfx.PutPixel( 51 + x,120 + y,220,206,206 );
gfx.PutPixel( 52 + x,120 + y,221,225,225 );
gfx.PutPixel( 53 + x,120 + y,222,232,232 );
gfx.PutPixel( 54 + x,120 + y,216,151,151 );
gfx.PutPixel( 55 + x,120 + y,209,56,56 );
gfx.PutPixel( 56 + x,120 + y,221,219,219 );
gfx.PutPixel( 57 + x,120 + y,221,223,223 );
gfx.PutPixel( 58 + x,120 + y,222,231,231 );
gfx.PutPixel( 59 + x,120 + y,217,170,170 );
gfx.PutPixel( 60 + x,120 + y,207,28,28 );
gfx.PutPixel( 61 + x,120 + y,208,33,33 );
gfx.PutPixel( 62 + x,120 + y,208,34,34 );
gfx.PutPixel( 63 + x,120 + y,208,34,34 );
gfx.PutPixel( 64 + x,120 + y,208,34,34 );
gfx.PutPixel( 65 + x,120 + y,208,34,34 );
gfx.PutPixel( 66 + x,120 + y,208,27,27 );
gfx.PutPixel( 67 + x,120 + y,218,173,173 );
gfx.PutPixel( 68 + x,120 + y,222,230,230 );
gfx.PutPixel( 69 + x,120 + y,222,230,230 );
gfx.PutPixel( 70 + x,120 + y,218,173,173 );
gfx.PutPixel( 71 + x,120 + y,208,27,27 );
gfx.PutPixel( 72 + x,120 + y,208,34,34 );
gfx.PutPixel( 73 + x,120 + y,208,34,34 );
gfx.PutPixel( 74 + x,120 + y,208,34,34 );
gfx.PutPixel( 75 + x,120 + y,208,34,34 );
gfx.PutPixel( 76 + x,120 + y,208,34,34 );
gfx.PutPixel( 77 + x,120 + y,208,34,34 );
gfx.PutPixel( 78 + x,120 + y,208,34,34 );
gfx.PutPixel( 79 + x,120 + y,208,34,34 );
gfx.PutPixel( 80 + x,120 + y,208,34,34 );
gfx.PutPixel( 81 + x,120 + y,208,34,34 );
gfx.PutPixel( 82 + x,120 + y,208,34,34 );
gfx.PutPixel( 83 + x,120 + y,207,22,22 );
gfx.PutPixel( 84 + x,120 + y,215,128,128 );
gfx.PutPixel( 85 + x,120 + y,222,233,233 );
gfx.PutPixel( 86 + x,120 + y,221,225,225 );
gfx.PutPixel( 87 + x,120 + y,220,208,208 );
gfx.PutPixel( 88 + x,120 + y,209,47,47 );
gfx.PutPixel( 89 + x,120 + y,208,30,30 );
gfx.PutPixel( 90 + x,120 + y,208,34,34 );
gfx.PutPixel( 91 + x,120 + y,208,34,34 );
gfx.PutPixel( 92 + x,120 + y,208,34,34 );
gfx.PutPixel( 93 + x,120 + y,208,34,34 );
gfx.PutPixel( 94 + x,120 + y,208,25,25 );
gfx.PutPixel( 95 + x,120 + y,210,61,61 );
gfx.PutPixel( 96 + x,120 + y,221,216,216 );
gfx.PutPixel( 97 + x,120 + y,221,223,223 );
gfx.PutPixel( 98 + x,120 + y,221,224,224 );
gfx.PutPixel( 99 + x,120 + y,221,213,213 );
gfx.PutPixel( 100 + x,120 + y,209,56,56 );
gfx.PutPixel( 101 + x,120 + y,208,29,29 );
gfx.PutPixel( 102 + x,120 + y,208,34,34 );
gfx.PutPixel( 103 + x,120 + y,208,34,34 );
gfx.PutPixel( 104 + x,120 + y,207,22,22 );
gfx.PutPixel( 105 + x,120 + y,214,125,125 );
gfx.PutPixel( 106 + x,120 + y,222,233,233 );
gfx.PutPixel( 107 + x,120 + y,221,222,222 );
gfx.PutPixel( 108 + x,120 + y,221,222,222 );
gfx.PutPixel( 109 + x,120 + y,210,59,59 );
gfx.PutPixel( 110 + x,120 + y,216,145,145 );
gfx.PutPixel( 111 + x,120 + y,222,232,232 );
gfx.PutPixel( 112 + x,120 + y,221,222,222 );
gfx.PutPixel( 113 + x,120 + y,222,227,227 );
gfx.PutPixel( 114 + x,120 + y,211,82,82 );
gfx.PutPixel( 115 + x,120 + y,207,25,25 );
gfx.PutPixel( 116 + x,120 + y,208,34,34 );
gfx.PutPixel( 117 + x,120 + y,208,34,34 );
gfx.PutPixel( 118 + x,120 + y,208,34,34 );
gfx.PutPixel( 119 + x,120 + y,208,34,34 );
gfx.PutPixel( 120 + x,120 + y,208,34,34 );
gfx.PutPixel( 121 + x,120 + y,208,34,34 );
gfx.PutPixel( 122 + x,120 + y,208,34,34 );
gfx.PutPixel( 123 + x,120 + y,208,34,34 );
gfx.PutPixel( 124 + x,120 + y,208,34,34 );
gfx.PutPixel( 125 + x,120 + y,208,34,34 );
gfx.PutPixel( 126 + x,120 + y,208,34,34 );
gfx.PutPixel( 127 + x,120 + y,208,34,34 );
gfx.PutPixel( 128 + x,120 + y,208,34,34 );
gfx.PutPixel( 129 + x,120 + y,208,34,34 );
gfx.PutPixel( 130 + x,120 + y,208,34,34 );
gfx.PutPixel( 131 + x,120 + y,208,34,34 );
gfx.PutPixel( 132 + x,120 + y,208,34,34 );
gfx.PutPixel( 133 + x,120 + y,208,34,34 );
gfx.PutPixel( 134 + x,120 + y,208,34,34 );
gfx.PutPixel( 135 + x,120 + y,208,34,34 );
gfx.PutPixel( 136 + x,120 + y,208,34,34 );
gfx.PutPixel( 137 + x,120 + y,208,34,34 );
gfx.PutPixel( 138 + x,120 + y,208,34,34 );
gfx.PutPixel( 139 + x,120 + y,208,34,34 );
gfx.PutPixel( 140 + x,120 + y,208,34,34 );
gfx.PutPixel( 141 + x,120 + y,208,34,34 );
gfx.PutPixel( 142 + x,120 + y,208,34,34 );
gfx.PutPixel( 143 + x,120 + y,208,34,34 );
gfx.PutPixel( 144 + x,120 + y,208,34,34 );
gfx.PutPixel( 145 + x,120 + y,208,34,34 );
gfx.PutPixel( 146 + x,120 + y,208,34,34 );
gfx.PutPixel( 147 + x,120 + y,208,34,34 );
gfx.PutPixel( 148 + x,120 + y,208,34,34 );
gfx.PutPixel( 149 + x,120 + y,208,34,34 );
gfx.PutPixel( 0 + x,121 + y,208,34,34 );
gfx.PutPixel( 1 + x,121 + y,208,34,34 );
gfx.PutPixel( 2 + x,121 + y,208,34,34 );
gfx.PutPixel( 3 + x,121 + y,208,34,34 );
gfx.PutPixel( 4 + x,121 + y,208,34,34 );
gfx.PutPixel( 5 + x,121 + y,208,34,34 );
gfx.PutPixel( 6 + x,121 + y,208,34,34 );
gfx.PutPixel( 7 + x,121 + y,208,34,34 );
gfx.PutPixel( 8 + x,121 + y,208,34,34 );
gfx.PutPixel( 9 + x,121 + y,208,34,34 );
gfx.PutPixel( 10 + x,121 + y,208,34,34 );
gfx.PutPixel( 11 + x,121 + y,208,34,34 );
gfx.PutPixel( 12 + x,121 + y,208,34,34 );
gfx.PutPixel( 13 + x,121 + y,208,34,34 );
gfx.PutPixel( 14 + x,121 + y,208,34,34 );
gfx.PutPixel( 15 + x,121 + y,208,34,34 );
gfx.PutPixel( 16 + x,121 + y,208,34,34 );
gfx.PutPixel( 17 + x,121 + y,208,34,34 );
gfx.PutPixel( 18 + x,121 + y,208,34,34 );
gfx.PutPixel( 19 + x,121 + y,208,34,34 );
gfx.PutPixel( 20 + x,121 + y,208,34,34 );
gfx.PutPixel( 21 + x,121 + y,208,34,34 );
gfx.PutPixel( 22 + x,121 + y,208,34,34 );
gfx.PutPixel( 23 + x,121 + y,208,34,34 );
gfx.PutPixel( 24 + x,121 + y,208,34,34 );
gfx.PutPixel( 25 + x,121 + y,208,34,34 );
gfx.PutPixel( 26 + x,121 + y,208,34,34 );
gfx.PutPixel( 27 + x,121 + y,208,34,34 );
gfx.PutPixel( 28 + x,121 + y,208,34,34 );
gfx.PutPixel( 29 + x,121 + y,208,34,34 );
gfx.PutPixel( 30 + x,121 + y,208,34,34 );
gfx.PutPixel( 31 + x,121 + y,208,34,34 );
gfx.PutPixel( 32 + x,121 + y,207,22,22 );
gfx.PutPixel( 33 + x,121 + y,215,128,128 );
gfx.PutPixel( 34 + x,121 + y,222,233,233 );
gfx.PutPixel( 35 + x,121 + y,221,221,221 );
gfx.PutPixel( 36 + x,121 + y,221,222,222 );
gfx.PutPixel( 37 + x,121 + y,222,232,232 );
gfx.PutPixel( 38 + x,121 + y,222,233,233 );
gfx.PutPixel( 39 + x,121 + y,222,233,233 );
gfx.PutPixel( 40 + x,121 + y,222,233,233 );
gfx.PutPixel( 41 + x,121 + y,222,233,233 );
gfx.PutPixel( 42 + x,121 + y,222,233,233 );
gfx.PutPixel( 43 + x,121 + y,223,243,243 );
gfx.PutPixel( 44 + x,121 + y,213,109,109 );
gfx.PutPixel( 45 + x,121 + y,207,23,23 );
gfx.PutPixel( 46 + x,121 + y,208,34,34 );
gfx.PutPixel( 47 + x,121 + y,208,34,34 );
gfx.PutPixel( 48 + x,121 + y,208,34,34 );
gfx.PutPixel( 49 + x,121 + y,207,22,22 );
gfx.PutPixel( 50 + x,121 + y,213,113,113 );
gfx.PutPixel( 51 + x,121 + y,222,232,232 );
gfx.PutPixel( 52 + x,121 + y,221,222,222 );
gfx.PutPixel( 53 + x,121 + y,222,228,228 );
gfx.PutPixel( 54 + x,121 + y,212,86,86 );
gfx.PutPixel( 55 + x,121 + y,207,18,18 );
gfx.PutPixel( 56 + x,121 + y,218,171,171 );
gfx.PutPixel( 57 + x,121 + y,222,230,230 );
gfx.PutPixel( 58 + x,121 + y,221,222,222 );
gfx.PutPixel( 59 + x,121 + y,221,223,223 );
gfx.PutPixel( 60 + x,121 + y,211,71,71 );
gfx.PutPixel( 61 + x,121 + y,207,26,26 );
gfx.PutPixel( 62 + x,121 + y,208,34,34 );
gfx.PutPixel( 63 + x,121 + y,208,34,34 );
gfx.PutPixel( 64 + x,121 + y,208,34,34 );
gfx.PutPixel( 65 + x,121 + y,208,34,34 );
gfx.PutPixel( 66 + x,121 + y,208,27,27 );
gfx.PutPixel( 67 + x,121 + y,218,173,173 );
gfx.PutPixel( 68 + x,121 + y,222,230,230 );
gfx.PutPixel( 69 + x,121 + y,222,230,230 );
gfx.PutPixel( 70 + x,121 + y,218,173,173 );
gfx.PutPixel( 71 + x,121 + y,208,27,27 );
gfx.PutPixel( 72 + x,121 + y,208,34,34 );
gfx.PutPixel( 73 + x,121 + y,208,34,34 );
gfx.PutPixel( 74 + x,121 + y,208,34,34 );
gfx.PutPixel( 75 + x,121 + y,208,34,34 );
gfx.PutPixel( 76 + x,121 + y,208,34,34 );
gfx.PutPixel( 77 + x,121 + y,208,34,34 );
gfx.PutPixel( 78 + x,121 + y,208,34,34 );
gfx.PutPixel( 79 + x,121 + y,208,34,34 );
gfx.PutPixel( 80 + x,121 + y,208,34,34 );
gfx.PutPixel( 81 + x,121 + y,208,34,34 );
gfx.PutPixel( 82 + x,121 + y,208,34,34 );
gfx.PutPixel( 83 + x,121 + y,207,22,22 );
gfx.PutPixel( 84 + x,121 + y,215,128,128 );
gfx.PutPixel( 85 + x,121 + y,222,233,233 );
gfx.PutPixel( 86 + x,121 + y,221,225,225 );
gfx.PutPixel( 87 + x,121 + y,220,208,208 );
gfx.PutPixel( 88 + x,121 + y,209,47,47 );
gfx.PutPixel( 89 + x,121 + y,208,30,30 );
gfx.PutPixel( 90 + x,121 + y,208,34,34 );
gfx.PutPixel( 91 + x,121 + y,208,34,34 );
gfx.PutPixel( 92 + x,121 + y,208,34,34 );
gfx.PutPixel( 93 + x,121 + y,208,34,34 );
gfx.PutPixel( 94 + x,121 + y,208,33,33 );
gfx.PutPixel( 95 + x,121 + y,208,31,31 );
gfx.PutPixel( 96 + x,121 + y,218,183,183 );
gfx.PutPixel( 97 + x,121 + y,222,228,228 );
gfx.PutPixel( 98 + x,121 + y,221,222,222 );
gfx.PutPixel( 99 + x,121 + y,221,224,224 );
gfx.PutPixel( 100 + x,121 + y,211,75,75 );
gfx.PutPixel( 101 + x,121 + y,207,26,26 );
gfx.PutPixel( 102 + x,121 + y,208,34,34 );
gfx.PutPixel( 103 + x,121 + y,208,31,31 );
gfx.PutPixel( 104 + x,121 + y,209,40,40 );
gfx.PutPixel( 105 + x,121 + y,220,197,197 );
gfx.PutPixel( 106 + x,121 + y,221,226,226 );
gfx.PutPixel( 107 + x,121 + y,222,229,229 );
gfx.PutPixel( 108 + x,121 + y,218,176,176 );
gfx.PutPixel( 109 + x,121 + y,207,20,20 );
gfx.PutPixel( 110 + x,121 + y,211,81,81 );
gfx.PutPixel( 111 + x,121 + y,222,227,227 );
gfx.PutPixel( 112 + x,121 + y,221,221,221 );
gfx.PutPixel( 113 + x,121 + y,222,232,232 );
gfx.PutPixel( 114 + x,121 + y,217,159,159 );
gfx.PutPixel( 115 + x,121 + y,207,25,25 );
gfx.PutPixel( 116 + x,121 + y,208,34,34 );
gfx.PutPixel( 117 + x,121 + y,208,34,34 );
gfx.PutPixel( 118 + x,121 + y,208,34,34 );
gfx.PutPixel( 119 + x,121 + y,208,34,34 );
gfx.PutPixel( 120 + x,121 + y,208,34,34 );
gfx.PutPixel( 121 + x,121 + y,208,34,34 );
gfx.PutPixel( 122 + x,121 + y,208,34,34 );
gfx.PutPixel( 123 + x,121 + y,208,34,34 );
gfx.PutPixel( 124 + x,121 + y,208,34,34 );
gfx.PutPixel( 125 + x,121 + y,208,34,34 );
gfx.PutPixel( 126 + x,121 + y,208,34,34 );
gfx.PutPixel( 127 + x,121 + y,208,34,34 );
gfx.PutPixel( 128 + x,121 + y,208,34,34 );
gfx.PutPixel( 129 + x,121 + y,208,34,34 );
gfx.PutPixel( 130 + x,121 + y,208,34,34 );
gfx.PutPixel( 131 + x,121 + y,208,34,34 );
gfx.PutPixel( 132 + x,121 + y,208,34,34 );
gfx.PutPixel( 133 + x,121 + y,208,34,34 );
gfx.PutPixel( 134 + x,121 + y,208,34,34 );
gfx.PutPixel( 135 + x,121 + y,208,34,34 );
gfx.PutPixel( 136 + x,121 + y,208,34,34 );
gfx.PutPixel( 137 + x,121 + y,208,34,34 );
gfx.PutPixel( 138 + x,121 + y,208,34,34 );
gfx.PutPixel( 139 + x,121 + y,208,34,34 );
gfx.PutPixel( 140 + x,121 + y,208,34,34 );
gfx.PutPixel( 141 + x,121 + y,208,34,34 );
gfx.PutPixel( 142 + x,121 + y,208,34,34 );
gfx.PutPixel( 143 + x,121 + y,208,34,34 );
gfx.PutPixel( 144 + x,121 + y,208,34,34 );
gfx.PutPixel( 145 + x,121 + y,208,34,34 );
gfx.PutPixel( 146 + x,121 + y,208,34,34 );
gfx.PutPixel( 147 + x,121 + y,208,34,34 );
gfx.PutPixel( 148 + x,121 + y,208,34,34 );
gfx.PutPixel( 149 + x,121 + y,208,34,34 );
gfx.PutPixel( 0 + x,122 + y,208,34,34 );
gfx.PutPixel( 1 + x,122 + y,208,34,34 );
gfx.PutPixel( 2 + x,122 + y,208,34,34 );
gfx.PutPixel( 3 + x,122 + y,208,34,34 );
gfx.PutPixel( 4 + x,122 + y,208,34,34 );
gfx.PutPixel( 5 + x,122 + y,208,34,34 );
gfx.PutPixel( 6 + x,122 + y,208,34,34 );
gfx.PutPixel( 7 + x,122 + y,208,34,34 );
gfx.PutPixel( 8 + x,122 + y,208,34,34 );
gfx.PutPixel( 9 + x,122 + y,208,34,34 );
gfx.PutPixel( 10 + x,122 + y,208,34,34 );
gfx.PutPixel( 11 + x,122 + y,208,34,34 );
gfx.PutPixel( 12 + x,122 + y,208,34,34 );
gfx.PutPixel( 13 + x,122 + y,208,34,34 );
gfx.PutPixel( 14 + x,122 + y,208,34,34 );
gfx.PutPixel( 15 + x,122 + y,208,34,34 );
gfx.PutPixel( 16 + x,122 + y,208,34,34 );
gfx.PutPixel( 17 + x,122 + y,208,34,34 );
gfx.PutPixel( 18 + x,122 + y,208,34,34 );
gfx.PutPixel( 19 + x,122 + y,208,34,34 );
gfx.PutPixel( 20 + x,122 + y,208,34,34 );
gfx.PutPixel( 21 + x,122 + y,208,34,34 );
gfx.PutPixel( 22 + x,122 + y,208,34,34 );
gfx.PutPixel( 23 + x,122 + y,208,34,34 );
gfx.PutPixel( 24 + x,122 + y,208,34,34 );
gfx.PutPixel( 25 + x,122 + y,208,34,34 );
gfx.PutPixel( 26 + x,122 + y,208,34,34 );
gfx.PutPixel( 27 + x,122 + y,208,34,34 );
gfx.PutPixel( 28 + x,122 + y,208,34,34 );
gfx.PutPixel( 29 + x,122 + y,208,34,34 );
gfx.PutPixel( 30 + x,122 + y,208,34,34 );
gfx.PutPixel( 31 + x,122 + y,208,34,34 );
gfx.PutPixel( 32 + x,122 + y,207,22,22 );
gfx.PutPixel( 33 + x,122 + y,215,128,128 );
gfx.PutPixel( 34 + x,122 + y,222,233,233 );
gfx.PutPixel( 35 + x,122 + y,221,221,221 );
gfx.PutPixel( 36 + x,122 + y,221,221,221 );
gfx.PutPixel( 37 + x,122 + y,221,224,224 );
gfx.PutPixel( 38 + x,122 + y,221,225,225 );
gfx.PutPixel( 39 + x,122 + y,221,225,225 );
gfx.PutPixel( 40 + x,122 + y,221,225,225 );
gfx.PutPixel( 41 + x,122 + y,221,225,225 );
gfx.PutPixel( 42 + x,122 + y,221,225,225 );
gfx.PutPixel( 43 + x,122 + y,222,234,234 );
gfx.PutPixel( 44 + x,122 + y,213,105,105 );
gfx.PutPixel( 45 + x,122 + y,207,24,24 );
gfx.PutPixel( 46 + x,122 + y,208,34,34 );
gfx.PutPixel( 47 + x,122 + y,208,34,34 );
gfx.PutPixel( 48 + x,122 + y,208,32,32 );
gfx.PutPixel( 49 + x,122 + y,208,34,34 );
gfx.PutPixel( 50 + x,122 + y,219,188,188 );
gfx.PutPixel( 51 + x,122 + y,222,228,228 );
gfx.PutPixel( 52 + x,122 + y,221,227,227 );
gfx.PutPixel( 53 + x,122 + y,219,191,191 );
gfx.PutPixel( 54 + x,122 + y,208,36,36 );
gfx.PutPixel( 55 + x,122 + y,207,21,21 );
gfx.PutPixel( 56 + x,122 + y,213,99,99 );
gfx.PutPixel( 57 + x,122 + y,222,231,231 );
gfx.PutPixel( 58 + x,122 + y,221,221,221 );
gfx.PutPixel( 59 + x,122 + y,222,232,232 );
gfx.PutPixel( 60 + x,122 + y,216,148,148 );
gfx.PutPixel( 61 + x,122 + y,207,23,23 );
gfx.PutPixel( 62 + x,122 + y,208,34,34 );
gfx.PutPixel( 63 + x,122 + y,208,34,34 );
gfx.PutPixel( 64 + x,122 + y,208,34,34 );
gfx.PutPixel( 65 + x,122 + y,208,34,34 );
gfx.PutPixel( 66 + x,122 + y,208,27,27 );
gfx.PutPixel( 67 + x,122 + y,218,173,173 );
gfx.PutPixel( 68 + x,122 + y,222,230,230 );
gfx.PutPixel( 69 + x,122 + y,222,230,230 );
gfx.PutPixel( 70 + x,122 + y,218,173,173 );
gfx.PutPixel( 71 + x,122 + y,208,27,27 );
gfx.PutPixel( 72 + x,122 + y,208,34,34 );
gfx.PutPixel( 73 + x,122 + y,208,34,34 );
gfx.PutPixel( 74 + x,122 + y,208,34,34 );
gfx.PutPixel( 75 + x,122 + y,208,34,34 );
gfx.PutPixel( 76 + x,122 + y,208,34,34 );
gfx.PutPixel( 77 + x,122 + y,208,34,34 );
gfx.PutPixel( 78 + x,122 + y,208,34,34 );
gfx.PutPixel( 79 + x,122 + y,208,34,34 );
gfx.PutPixel( 80 + x,122 + y,208,34,34 );
gfx.PutPixel( 81 + x,122 + y,208,34,34 );
gfx.PutPixel( 82 + x,122 + y,208,34,34 );
gfx.PutPixel( 83 + x,122 + y,207,22,22 );
gfx.PutPixel( 84 + x,122 + y,215,128,128 );
gfx.PutPixel( 85 + x,122 + y,222,233,233 );
gfx.PutPixel( 86 + x,122 + y,221,225,225 );
gfx.PutPixel( 87 + x,122 + y,220,208,208 );
gfx.PutPixel( 88 + x,122 + y,209,47,47 );
gfx.PutPixel( 89 + x,122 + y,208,30,30 );
gfx.PutPixel( 90 + x,122 + y,208,34,34 );
gfx.PutPixel( 91 + x,122 + y,208,34,34 );
gfx.PutPixel( 92 + x,122 + y,208,34,34 );
gfx.PutPixel( 93 + x,122 + y,208,34,34 );
gfx.PutPixel( 94 + x,122 + y,208,33,33 );
gfx.PutPixel( 95 + x,122 + y,208,27,27 );
gfx.PutPixel( 96 + x,122 + y,218,173,173 );
gfx.PutPixel( 97 + x,122 + y,222,230,230 );
gfx.PutPixel( 98 + x,122 + y,221,222,222 );
gfx.PutPixel( 99 + x,122 + y,221,227,227 );
gfx.PutPixel( 100 + x,122 + y,211,82,82 );
gfx.PutPixel( 101 + x,122 + y,207,25,25 );
gfx.PutPixel( 102 + x,122 + y,208,34,34 );
gfx.PutPixel( 103 + x,122 + y,207,23,23 );
gfx.PutPixel( 104 + x,122 + y,213,101,101 );
gfx.PutPixel( 105 + x,122 + y,222,231,231 );
gfx.PutPixel( 106 + x,122 + y,221,222,222 );
gfx.PutPixel( 107 + x,122 + y,222,231,231 );
gfx.PutPixel( 108 + x,122 + y,213,105,105 );
gfx.PutPixel( 109 + x,122 + y,207,21,21 );
gfx.PutPixel( 110 + x,122 + y,208,33,33 );
gfx.PutPixel( 111 + x,122 + y,219,186,186 );
gfx.PutPixel( 112 + x,122 + y,222,228,228 );
gfx.PutPixel( 113 + x,122 + y,221,223,223 );
gfx.PutPixel( 114 + x,122 + y,221,218,218 );
gfx.PutPixel( 115 + x,122 + y,210,62,62 );
gfx.PutPixel( 116 + x,122 + y,208,28,28 );
gfx.PutPixel( 117 + x,122 + y,208,34,34 );
gfx.PutPixel( 118 + x,122 + y,208,34,34 );
gfx.PutPixel( 119 + x,122 + y,208,34,34 );
gfx.PutPixel( 120 + x,122 + y,208,34,34 );
gfx.PutPixel( 121 + x,122 + y,208,34,34 );
gfx.PutPixel( 122 + x,122 + y,208,34,34 );
gfx.PutPixel( 123 + x,122 + y,208,34,34 );
gfx.PutPixel( 124 + x,122 + y,208,34,34 );
gfx.PutPixel( 125 + x,122 + y,208,34,34 );
gfx.PutPixel( 126 + x,122 + y,208,34,34 );
gfx.PutPixel( 127 + x,122 + y,208,34,34 );
gfx.PutPixel( 128 + x,122 + y,208,34,34 );
gfx.PutPixel( 129 + x,122 + y,208,34,34 );
gfx.PutPixel( 130 + x,122 + y,208,34,34 );
gfx.PutPixel( 131 + x,122 + y,208,34,34 );
gfx.PutPixel( 132 + x,122 + y,208,34,34 );
gfx.PutPixel( 133 + x,122 + y,208,34,34 );
gfx.PutPixel( 134 + x,122 + y,208,34,34 );
gfx.PutPixel( 135 + x,122 + y,208,34,34 );
gfx.PutPixel( 136 + x,122 + y,208,34,34 );
gfx.PutPixel( 137 + x,122 + y,208,34,34 );
gfx.PutPixel( 138 + x,122 + y,208,34,34 );
gfx.PutPixel( 139 + x,122 + y,208,34,34 );
gfx.PutPixel( 140 + x,122 + y,208,34,34 );
gfx.PutPixel( 141 + x,122 + y,208,34,34 );
gfx.PutPixel( 142 + x,122 + y,208,34,34 );
gfx.PutPixel( 143 + x,122 + y,208,34,34 );
gfx.PutPixel( 144 + x,122 + y,208,34,34 );
gfx.PutPixel( 145 + x,122 + y,208,34,34 );
gfx.PutPixel( 146 + x,122 + y,208,34,34 );
gfx.PutPixel( 147 + x,122 + y,208,34,34 );
gfx.PutPixel( 148 + x,122 + y,208,34,34 );
gfx.PutPixel( 149 + x,122 + y,208,34,34 );
gfx.PutPixel( 0 + x,123 + y,208,34,34 );
gfx.PutPixel( 1 + x,123 + y,208,34,34 );
gfx.PutPixel( 2 + x,123 + y,208,34,34 );
gfx.PutPixel( 3 + x,123 + y,208,34,34 );
gfx.PutPixel( 4 + x,123 + y,208,34,34 );
gfx.PutPixel( 5 + x,123 + y,208,34,34 );
gfx.PutPixel( 6 + x,123 + y,208,34,34 );
gfx.PutPixel( 7 + x,123 + y,208,34,34 );
gfx.PutPixel( 8 + x,123 + y,208,34,34 );
gfx.PutPixel( 9 + x,123 + y,208,34,34 );
gfx.PutPixel( 10 + x,123 + y,208,34,34 );
gfx.PutPixel( 11 + x,123 + y,208,34,34 );
gfx.PutPixel( 12 + x,123 + y,208,34,34 );
gfx.PutPixel( 13 + x,123 + y,208,34,34 );
gfx.PutPixel( 14 + x,123 + y,208,34,34 );
gfx.PutPixel( 15 + x,123 + y,208,34,34 );
gfx.PutPixel( 16 + x,123 + y,208,34,34 );
gfx.PutPixel( 17 + x,123 + y,208,34,34 );
gfx.PutPixel( 18 + x,123 + y,208,34,34 );
gfx.PutPixel( 19 + x,123 + y,208,34,34 );
gfx.PutPixel( 20 + x,123 + y,208,34,34 );
gfx.PutPixel( 21 + x,123 + y,208,34,34 );
gfx.PutPixel( 22 + x,123 + y,208,34,34 );
gfx.PutPixel( 23 + x,123 + y,208,34,34 );
gfx.PutPixel( 24 + x,123 + y,208,34,34 );
gfx.PutPixel( 25 + x,123 + y,208,34,34 );
gfx.PutPixel( 26 + x,123 + y,208,34,34 );
gfx.PutPixel( 27 + x,123 + y,208,34,34 );
gfx.PutPixel( 28 + x,123 + y,208,34,34 );
gfx.PutPixel( 29 + x,123 + y,208,34,34 );
gfx.PutPixel( 30 + x,123 + y,208,34,34 );
gfx.PutPixel( 31 + x,123 + y,208,34,34 );
gfx.PutPixel( 32 + x,123 + y,207,22,22 );
gfx.PutPixel( 33 + x,123 + y,215,128,128 );
gfx.PutPixel( 34 + x,123 + y,222,233,233 );
gfx.PutPixel( 35 + x,123 + y,221,221,221 );
gfx.PutPixel( 36 + x,123 + y,221,220,220 );
gfx.PutPixel( 37 + x,123 + y,220,209,209 );
gfx.PutPixel( 38 + x,123 + y,220,207,207 );
gfx.PutPixel( 39 + x,123 + y,220,208,208 );
gfx.PutPixel( 40 + x,123 + y,220,208,208 );
gfx.PutPixel( 41 + x,123 + y,220,208,208 );
gfx.PutPixel( 42 + x,123 + y,220,208,208 );
gfx.PutPixel( 43 + x,123 + y,221,216,216 );
gfx.PutPixel( 44 + x,123 + y,213,99,99 );
gfx.PutPixel( 45 + x,123 + y,207,25,25 );
gfx.PutPixel( 46 + x,123 + y,208,34,34 );
gfx.PutPixel( 47 + x,123 + y,208,34,34 );
gfx.PutPixel( 48 + x,123 + y,207,24,24 );
gfx.PutPixel( 49 + x,123 + y,212,88,88 );
gfx.PutPixel( 50 + x,123 + y,222,229,229 );
gfx.PutPixel( 51 + x,123 + y,221,222,222 );
gfx.PutPixel( 52 + x,123 + y,222,232,232 );
gfx.PutPixel( 53 + x,123 + y,214,118,118 );
gfx.PutPixel( 54 + x,123 + y,206,15,15 );
gfx.PutPixel( 55 + x,123 + y,207,24,24 );
gfx.PutPixel( 56 + x,123 + y,208,36,36 );
gfx.PutPixel( 57 + x,123 + y,219,196,196 );
gfx.PutPixel( 58 + x,123 + y,221,226,226 );
gfx.PutPixel( 59 + x,123 + y,221,224,224 );
gfx.PutPixel( 60 + x,123 + y,220,212,212 );
gfx.PutPixel( 61 + x,123 + y,209,53,53 );
gfx.PutPixel( 62 + x,123 + y,208,29,29 );
gfx.PutPixel( 63 + x,123 + y,208,34,34 );
gfx.PutPixel( 64 + x,123 + y,208,34,34 );
gfx.PutPixel( 65 + x,123 + y,208,34,34 );
gfx.PutPixel( 66 + x,123 + y,208,27,27 );
gfx.PutPixel( 67 + x,123 + y,218,173,173 );
gfx.PutPixel( 68 + x,123 + y,222,230,230 );
gfx.PutPixel( 69 + x,123 + y,222,230,230 );
gfx.PutPixel( 70 + x,123 + y,218,173,173 );
gfx.PutPixel( 71 + x,123 + y,208,27,27 );
gfx.PutPixel( 72 + x,123 + y,208,34,34 );
gfx.PutPixel( 73 + x,123 + y,208,34,34 );
gfx.PutPixel( 74 + x,123 + y,208,34,34 );
gfx.PutPixel( 75 + x,123 + y,208,34,34 );
gfx.PutPixel( 76 + x,123 + y,208,34,34 );
gfx.PutPixel( 77 + x,123 + y,208,34,34 );
gfx.PutPixel( 78 + x,123 + y,208,34,34 );
gfx.PutPixel( 79 + x,123 + y,208,34,34 );
gfx.PutPixel( 80 + x,123 + y,208,34,34 );
gfx.PutPixel( 81 + x,123 + y,208,34,34 );
gfx.PutPixel( 82 + x,123 + y,208,34,34 );
gfx.PutPixel( 83 + x,123 + y,207,22,22 );
gfx.PutPixel( 84 + x,123 + y,215,128,128 );
gfx.PutPixel( 85 + x,123 + y,222,233,233 );
gfx.PutPixel( 86 + x,123 + y,221,225,225 );
gfx.PutPixel( 87 + x,123 + y,220,208,208 );
gfx.PutPixel( 88 + x,123 + y,209,47,47 );
gfx.PutPixel( 89 + x,123 + y,208,30,30 );
gfx.PutPixel( 90 + x,123 + y,208,34,34 );
gfx.PutPixel( 91 + x,123 + y,208,34,34 );
gfx.PutPixel( 92 + x,123 + y,208,34,34 );
gfx.PutPixel( 93 + x,123 + y,208,34,34 );
gfx.PutPixel( 94 + x,123 + y,208,33,33 );
gfx.PutPixel( 95 + x,123 + y,208,33,33 );
gfx.PutPixel( 96 + x,123 + y,218,187,187 );
gfx.PutPixel( 97 + x,123 + y,221,228,228 );
gfx.PutPixel( 98 + x,123 + y,221,222,222 );
gfx.PutPixel( 99 + x,123 + y,221,224,224 );
gfx.PutPixel( 100 + x,123 + y,211,75,75 );
gfx.PutPixel( 101 + x,123 + y,208,26,26 );
gfx.PutPixel( 102 + x,123 + y,208,33,33 );
gfx.PutPixel( 103 + x,123 + y,208,30,30 );
gfx.PutPixel( 104 + x,123 + y,218,177,177 );
gfx.PutPixel( 105 + x,123 + y,222,230,230 );
gfx.PutPixel( 106 + x,123 + y,221,226,226 );
gfx.PutPixel( 107 + x,123 + y,220,201,201 );
gfx.PutPixel( 108 + x,123 + y,208,39,39 );
gfx.PutPixel( 109 + x,123 + y,207,23,23 );
gfx.PutPixel( 110 + x,123 + y,206,15,15 );
gfx.PutPixel( 111 + x,123 + y,213,111,111 );
gfx.PutPixel( 112 + x,123 + y,222,231,231 );
gfx.PutPixel( 113 + x,123 + y,221,221,221 );
gfx.PutPixel( 114 + x,123 + y,222,233,233 );
gfx.PutPixel( 115 + x,123 + y,215,136,136 );
gfx.PutPixel( 116 + x,123 + y,207,22,22 );
gfx.PutPixel( 117 + x,123 + y,208,34,34 );
gfx.PutPixel( 118 + x,123 + y,208,34,34 );
gfx.PutPixel( 119 + x,123 + y,208,34,34 );
gfx.PutPixel( 120 + x,123 + y,208,34,34 );
gfx.PutPixel( 121 + x,123 + y,208,34,34 );
gfx.PutPixel( 122 + x,123 + y,208,34,34 );
gfx.PutPixel( 123 + x,123 + y,208,34,34 );
gfx.PutPixel( 124 + x,123 + y,208,34,34 );
gfx.PutPixel( 125 + x,123 + y,208,34,34 );
gfx.PutPixel( 126 + x,123 + y,208,34,34 );
gfx.PutPixel( 127 + x,123 + y,208,34,34 );
gfx.PutPixel( 128 + x,123 + y,208,34,34 );
gfx.PutPixel( 129 + x,123 + y,208,34,34 );
gfx.PutPixel( 130 + x,123 + y,208,34,34 );
gfx.PutPixel( 131 + x,123 + y,208,34,34 );
gfx.PutPixel( 132 + x,123 + y,208,34,34 );
gfx.PutPixel( 133 + x,123 + y,208,34,34 );
gfx.PutPixel( 134 + x,123 + y,208,34,34 );
gfx.PutPixel( 135 + x,123 + y,208,34,34 );
gfx.PutPixel( 136 + x,123 + y,208,34,34 );
gfx.PutPixel( 137 + x,123 + y,208,34,34 );
gfx.PutPixel( 138 + x,123 + y,208,34,34 );
gfx.PutPixel( 139 + x,123 + y,208,34,34 );
gfx.PutPixel( 140 + x,123 + y,208,34,34 );
gfx.PutPixel( 141 + x,123 + y,208,34,34 );
gfx.PutPixel( 142 + x,123 + y,208,34,34 );
gfx.PutPixel( 143 + x,123 + y,208,34,34 );
gfx.PutPixel( 144 + x,123 + y,208,34,34 );
gfx.PutPixel( 145 + x,123 + y,208,34,34 );
gfx.PutPixel( 146 + x,123 + y,208,34,34 );
gfx.PutPixel( 147 + x,123 + y,208,34,34 );
gfx.PutPixel( 148 + x,123 + y,208,34,34 );
gfx.PutPixel( 149 + x,123 + y,208,34,34 );
gfx.PutPixel( 0 + x,124 + y,208,34,34 );
gfx.PutPixel( 1 + x,124 + y,208,34,34 );
gfx.PutPixel( 2 + x,124 + y,208,34,34 );
gfx.PutPixel( 3 + x,124 + y,208,34,34 );
gfx.PutPixel( 4 + x,124 + y,208,34,34 );
gfx.PutPixel( 5 + x,124 + y,208,34,34 );
gfx.PutPixel( 6 + x,124 + y,208,34,34 );
gfx.PutPixel( 7 + x,124 + y,208,34,34 );
gfx.PutPixel( 8 + x,124 + y,208,34,34 );
gfx.PutPixel( 9 + x,124 + y,208,34,34 );
gfx.PutPixel( 10 + x,124 + y,208,34,34 );
gfx.PutPixel( 11 + x,124 + y,208,34,34 );
gfx.PutPixel( 12 + x,124 + y,208,34,34 );
gfx.PutPixel( 13 + x,124 + y,208,34,34 );
gfx.PutPixel( 14 + x,124 + y,208,34,34 );
gfx.PutPixel( 15 + x,124 + y,208,34,34 );
gfx.PutPixel( 16 + x,124 + y,208,34,34 );
gfx.PutPixel( 17 + x,124 + y,208,34,34 );
gfx.PutPixel( 18 + x,124 + y,208,34,34 );
gfx.PutPixel( 19 + x,124 + y,208,34,34 );
gfx.PutPixel( 20 + x,124 + y,208,34,34 );
gfx.PutPixel( 21 + x,124 + y,208,34,34 );
gfx.PutPixel( 22 + x,124 + y,208,34,34 );
gfx.PutPixel( 23 + x,124 + y,208,34,34 );
gfx.PutPixel( 24 + x,124 + y,208,34,34 );
gfx.PutPixel( 25 + x,124 + y,208,34,34 );
gfx.PutPixel( 26 + x,124 + y,208,34,34 );
gfx.PutPixel( 27 + x,124 + y,208,34,34 );
gfx.PutPixel( 28 + x,124 + y,208,34,34 );
gfx.PutPixel( 29 + x,124 + y,208,34,34 );
gfx.PutPixel( 30 + x,124 + y,208,34,34 );
gfx.PutPixel( 31 + x,124 + y,208,34,34 );
gfx.PutPixel( 32 + x,124 + y,207,22,22 );
gfx.PutPixel( 33 + x,124 + y,215,128,128 );
gfx.PutPixel( 34 + x,124 + y,222,233,233 );
gfx.PutPixel( 35 + x,124 + y,221,225,225 );
gfx.PutPixel( 36 + x,124 + y,220,209,209 );
gfx.PutPixel( 37 + x,124 + y,210,59,59 );
gfx.PutPixel( 38 + x,124 + y,209,44,44 );
gfx.PutPixel( 39 + x,124 + y,209,47,47 );
gfx.PutPixel( 40 + x,124 + y,209,47,47 );
gfx.PutPixel( 41 + x,124 + y,209,47,47 );
gfx.PutPixel( 42 + x,124 + y,209,47,47 );
gfx.PutPixel( 43 + x,124 + y,209,48,48 );
gfx.PutPixel( 44 + x,124 + y,208,39,39 );
gfx.PutPixel( 45 + x,124 + y,208,33,33 );
gfx.PutPixel( 46 + x,124 + y,208,34,34 );
gfx.PutPixel( 47 + x,124 + y,208,34,34 );
gfx.PutPixel( 48 + x,124 + y,207,26,26 );
gfx.PutPixel( 49 + x,124 + y,217,167,167 );
gfx.PutPixel( 50 + x,124 + y,222,231,231 );
gfx.PutPixel( 51 + x,124 + y,221,221,221 );
gfx.PutPixel( 52 + x,124 + y,221,223,223 );
gfx.PutPixel( 53 + x,124 + y,218,183,183 );
gfx.PutPixel( 54 + x,124 + y,217,170,170 );
gfx.PutPixel( 55 + x,124 + y,218,173,173 );
gfx.PutPixel( 56 + x,124 + y,217,169,169 );
gfx.PutPixel( 57 + x,124 + y,220,206,206 );
gfx.PutPixel( 58 + x,124 + y,221,224,224 );
gfx.PutPixel( 59 + x,124 + y,221,221,221 );
gfx.PutPixel( 60 + x,124 + y,222,233,233 );
gfx.PutPixel( 61 + x,124 + y,214,124,124 );
gfx.PutPixel( 62 + x,124 + y,207,22,22 );
gfx.PutPixel( 63 + x,124 + y,208,34,34 );
gfx.PutPixel( 64 + x,124 + y,208,34,34 );
gfx.PutPixel( 65 + x,124 + y,208,34,34 );
gfx.PutPixel( 66 + x,124 + y,208,27,27 );
gfx.PutPixel( 67 + x,124 + y,218,173,173 );
gfx.PutPixel( 68 + x,124 + y,222,230,230 );
gfx.PutPixel( 69 + x,124 + y,222,230,230 );
gfx.PutPixel( 70 + x,124 + y,218,173,173 );
gfx.PutPixel( 71 + x,124 + y,208,27,27 );
gfx.PutPixel( 72 + x,124 + y,208,34,34 );
gfx.PutPixel( 73 + x,124 + y,208,34,34 );
gfx.PutPixel( 74 + x,124 + y,208,34,34 );
gfx.PutPixel( 75 + x,124 + y,208,34,34 );
gfx.PutPixel( 76 + x,124 + y,208,34,34 );
gfx.PutPixel( 77 + x,124 + y,208,34,34 );
gfx.PutPixel( 78 + x,124 + y,208,34,34 );
gfx.PutPixel( 79 + x,124 + y,208,34,34 );
gfx.PutPixel( 80 + x,124 + y,208,34,34 );
gfx.PutPixel( 81 + x,124 + y,208,34,34 );
gfx.PutPixel( 82 + x,124 + y,208,34,34 );
gfx.PutPixel( 83 + x,124 + y,207,22,22 );
gfx.PutPixel( 84 + x,124 + y,215,128,128 );
gfx.PutPixel( 85 + x,124 + y,222,233,233 );
gfx.PutPixel( 86 + x,124 + y,221,225,225 );
gfx.PutPixel( 87 + x,124 + y,220,208,208 );
gfx.PutPixel( 88 + x,124 + y,209,47,47 );
gfx.PutPixel( 89 + x,124 + y,208,30,30 );
gfx.PutPixel( 90 + x,124 + y,208,34,34 );
gfx.PutPixel( 91 + x,124 + y,208,34,34 );
gfx.PutPixel( 92 + x,124 + y,208,34,34 );
gfx.PutPixel( 93 + x,124 + y,208,34,34 );
gfx.PutPixel( 94 + x,124 + y,208,26,26 );
gfx.PutPixel( 95 + x,124 + y,210,63,63 );
gfx.PutPixel( 96 + x,124 + y,221,218,218 );
gfx.PutPixel( 97 + x,124 + y,221,223,223 );
gfx.PutPixel( 98 + x,124 + y,221,224,224 );
gfx.PutPixel( 99 + x,124 + y,220,212,212 );
gfx.PutPixel( 100 + x,124 + y,209,53,53 );
gfx.PutPixel( 101 + x,124 + y,208,30,30 );
gfx.PutPixel( 102 + x,124 + y,207,25,25 );
gfx.PutPixel( 103 + x,124 + y,211,78,78 );
gfx.PutPixel( 104 + x,124 + y,221,225,225 );
gfx.PutPixel( 105 + x,124 + y,221,222,222 );
gfx.PutPixel( 106 + x,124 + y,221,223,223 );
gfx.PutPixel( 107 + x,124 + y,220,207,207 );
gfx.PutPixel( 108 + x,124 + y,218,170,170 );
gfx.PutPixel( 109 + x,124 + y,218,173,173 );
gfx.PutPixel( 110 + x,124 + y,217,171,171 );
gfx.PutPixel( 111 + x,124 + y,218,182,182 );
gfx.PutPixel( 112 + x,124 + y,221,222,222 );
gfx.PutPixel( 113 + x,124 + y,221,221,221 );
gfx.PutPixel( 114 + x,124 + y,221,225,225 );
gfx.PutPixel( 115 + x,124 + y,220,204,204 );
gfx.PutPixel( 116 + x,124 + y,209,46,46 );
gfx.PutPixel( 117 + x,124 + y,208,30,30 );
gfx.PutPixel( 118 + x,124 + y,208,34,34 );
gfx.PutPixel( 119 + x,124 + y,208,34,34 );
gfx.PutPixel( 120 + x,124 + y,208,34,34 );
gfx.PutPixel( 121 + x,124 + y,208,34,34 );
gfx.PutPixel( 122 + x,124 + y,208,34,34 );
gfx.PutPixel( 123 + x,124 + y,208,34,34 );
gfx.PutPixel( 124 + x,124 + y,208,34,34 );
gfx.PutPixel( 125 + x,124 + y,208,34,34 );
gfx.PutPixel( 126 + x,124 + y,208,34,34 );
gfx.PutPixel( 127 + x,124 + y,208,34,34 );
gfx.PutPixel( 128 + x,124 + y,208,34,34 );
gfx.PutPixel( 129 + x,124 + y,208,34,34 );
gfx.PutPixel( 130 + x,124 + y,208,34,34 );
gfx.PutPixel( 131 + x,124 + y,208,34,34 );
gfx.PutPixel( 132 + x,124 + y,208,34,34 );
gfx.PutPixel( 133 + x,124 + y,208,34,34 );
gfx.PutPixel( 134 + x,124 + y,208,34,34 );
gfx.PutPixel( 135 + x,124 + y,208,34,34 );
gfx.PutPixel( 136 + x,124 + y,208,34,34 );
gfx.PutPixel( 137 + x,124 + y,208,34,34 );
gfx.PutPixel( 138 + x,124 + y,208,34,34 );
gfx.PutPixel( 139 + x,124 + y,208,34,34 );
gfx.PutPixel( 140 + x,124 + y,208,34,34 );
gfx.PutPixel( 141 + x,124 + y,208,34,34 );
gfx.PutPixel( 142 + x,124 + y,208,34,34 );
gfx.PutPixel( 143 + x,124 + y,208,34,34 );
gfx.PutPixel( 144 + x,124 + y,208,34,34 );
gfx.PutPixel( 145 + x,124 + y,208,34,34 );
gfx.PutPixel( 146 + x,124 + y,208,34,34 );
gfx.PutPixel( 147 + x,124 + y,208,34,34 );
gfx.PutPixel( 148 + x,124 + y,208,34,34 );
gfx.PutPixel( 149 + x,124 + y,208,34,34 );
gfx.PutPixel( 0 + x,125 + y,208,34,34 );
gfx.PutPixel( 1 + x,125 + y,208,34,34 );
gfx.PutPixel( 2 + x,125 + y,208,34,34 );
gfx.PutPixel( 3 + x,125 + y,208,34,34 );
gfx.PutPixel( 4 + x,125 + y,208,34,34 );
gfx.PutPixel( 5 + x,125 + y,208,34,34 );
gfx.PutPixel( 6 + x,125 + y,208,34,34 );
gfx.PutPixel( 7 + x,125 + y,208,34,34 );
gfx.PutPixel( 8 + x,125 + y,208,34,34 );
gfx.PutPixel( 9 + x,125 + y,208,34,34 );
gfx.PutPixel( 10 + x,125 + y,208,34,34 );
gfx.PutPixel( 11 + x,125 + y,208,34,34 );
gfx.PutPixel( 12 + x,125 + y,208,34,34 );
gfx.PutPixel( 13 + x,125 + y,208,34,34 );
gfx.PutPixel( 14 + x,125 + y,208,34,34 );
gfx.PutPixel( 15 + x,125 + y,208,34,34 );
gfx.PutPixel( 16 + x,125 + y,208,34,34 );
gfx.PutPixel( 17 + x,125 + y,208,34,34 );
gfx.PutPixel( 18 + x,125 + y,208,34,34 );
gfx.PutPixel( 19 + x,125 + y,208,34,34 );
gfx.PutPixel( 20 + x,125 + y,208,34,34 );
gfx.PutPixel( 21 + x,125 + y,208,34,34 );
gfx.PutPixel( 22 + x,125 + y,208,34,34 );
gfx.PutPixel( 23 + x,125 + y,208,34,34 );
gfx.PutPixel( 24 + x,125 + y,208,34,34 );
gfx.PutPixel( 25 + x,125 + y,208,34,34 );
gfx.PutPixel( 26 + x,125 + y,208,34,34 );
gfx.PutPixel( 27 + x,125 + y,208,34,34 );
gfx.PutPixel( 28 + x,125 + y,208,34,34 );
gfx.PutPixel( 29 + x,125 + y,208,34,34 );
gfx.PutPixel( 30 + x,125 + y,208,34,34 );
gfx.PutPixel( 31 + x,125 + y,208,34,34 );
gfx.PutPixel( 32 + x,125 + y,207,22,22 );
gfx.PutPixel( 33 + x,125 + y,215,128,128 );
gfx.PutPixel( 34 + x,125 + y,222,233,233 );
gfx.PutPixel( 35 + x,125 + y,221,225,225 );
gfx.PutPixel( 36 + x,125 + y,220,208,208 );
gfx.PutPixel( 37 + x,125 + y,209,44,44 );
gfx.PutPixel( 38 + x,125 + y,208,26,26 );
gfx.PutPixel( 39 + x,125 + y,208,30,30 );
gfx.PutPixel( 40 + x,125 + y,208,30,30 );
gfx.PutPixel( 41 + x,125 + y,208,30,30 );
gfx.PutPixel( 42 + x,125 + y,208,30,30 );
gfx.PutPixel( 43 + x,125 + y,208,30,30 );
gfx.PutPixel( 44 + x,125 + y,208,33,33 );
gfx.PutPixel( 45 + x,125 + y,208,34,34 );
gfx.PutPixel( 46 + x,125 + y,208,34,34 );
gfx.PutPixel( 47 + x,125 + y,207,27,27 );
gfx.PutPixel( 48 + x,125 + y,210,67,67 );
gfx.PutPixel( 49 + x,125 + y,221,221,221 );
gfx.PutPixel( 50 + x,125 + y,221,223,223 );
gfx.PutPixel( 51 + x,125 + y,221,221,221 );
gfx.PutPixel( 52 + x,125 + y,221,221,221 );
gfx.PutPixel( 53 + x,125 + y,221,227,227 );
gfx.PutPixel( 54 + x,125 + y,222,230,230 );
gfx.PutPixel( 55 + x,125 + y,222,230,230 );
gfx.PutPixel( 56 + x,125 + y,222,230,230 );
gfx.PutPixel( 57 + x,125 + y,221,223,223 );
gfx.PutPixel( 58 + x,125 + y,221,221,221 );
gfx.PutPixel( 59 + x,125 + y,221,221,221 );
gfx.PutPixel( 60 + x,125 + y,221,227,227 );
gfx.PutPixel( 61 + x,125 + y,220,197,197 );
gfx.PutPixel( 62 + x,125 + y,209,39,39 );
gfx.PutPixel( 63 + x,125 + y,208,31,31 );
gfx.PutPixel( 64 + x,125 + y,208,34,34 );
gfx.PutPixel( 65 + x,125 + y,208,34,34 );
gfx.PutPixel( 66 + x,125 + y,208,27,27 );
gfx.PutPixel( 67 + x,125 + y,218,173,173 );
gfx.PutPixel( 68 + x,125 + y,222,230,230 );
gfx.PutPixel( 69 + x,125 + y,222,230,230 );
gfx.PutPixel( 70 + x,125 + y,218,173,173 );
gfx.PutPixel( 71 + x,125 + y,208,27,27 );
gfx.PutPixel( 72 + x,125 + y,208,34,34 );
gfx.PutPixel( 73 + x,125 + y,208,34,34 );
gfx.PutPixel( 74 + x,125 + y,208,34,34 );
gfx.PutPixel( 75 + x,125 + y,208,34,34 );
gfx.PutPixel( 76 + x,125 + y,208,34,34 );
gfx.PutPixel( 77 + x,125 + y,208,34,34 );
gfx.PutPixel( 78 + x,125 + y,208,34,34 );
gfx.PutPixel( 79 + x,125 + y,208,34,34 );
gfx.PutPixel( 80 + x,125 + y,208,34,34 );
gfx.PutPixel( 81 + x,125 + y,208,34,34 );
gfx.PutPixel( 82 + x,125 + y,208,34,34 );
gfx.PutPixel( 83 + x,125 + y,207,22,22 );
gfx.PutPixel( 84 + x,125 + y,215,128,128 );
gfx.PutPixel( 85 + x,125 + y,222,233,233 );
gfx.PutPixel( 86 + x,125 + y,221,225,225 );
gfx.PutPixel( 87 + x,125 + y,220,208,208 );
gfx.PutPixel( 88 + x,125 + y,209,47,47 );
gfx.PutPixel( 89 + x,125 + y,208,30,30 );
gfx.PutPixel( 90 + x,125 + y,208,34,34 );
gfx.PutPixel( 91 + x,125 + y,208,34,34 );
gfx.PutPixel( 92 + x,125 + y,208,33,33 );
gfx.PutPixel( 93 + x,125 + y,207,26,26 );
gfx.PutPixel( 94 + x,125 + y,207,27,27 );
gfx.PutPixel( 95 + x,125 + y,217,162,162 );
gfx.PutPixel( 96 + x,125 + y,222,230,230 );
gfx.PutPixel( 97 + x,125 + y,221,221,221 );
gfx.PutPixel( 98 + x,125 + y,222,231,231 );
gfx.PutPixel( 99 + x,125 + y,218,172,172 );
gfx.PutPixel( 100 + x,125 + y,207,28,28 );
gfx.PutPixel( 101 + x,125 + y,208,33,33 );
gfx.PutPixel( 102 + x,125 + y,207,24,24 );
gfx.PutPixel( 103 + x,125 + y,216,154,154 );
gfx.PutPixel( 104 + x,125 + y,222,232,232 );
gfx.PutPixel( 105 + x,125 + y,221,221,221 );
gfx.PutPixel( 106 + x,125 + y,221,221,221 );
gfx.PutPixel( 107 + x,125 + y,221,223,223 );
gfx.PutPixel( 108 + x,125 + y,222,230,230 );
gfx.PutPixel( 109 + x,125 + y,222,230,230 );
gfx.PutPixel( 110 + x,125 + y,222,230,230 );
gfx.PutPixel( 111 + x,125 + y,221,227,227 );
gfx.PutPixel( 112 + x,125 + y,221,221,221 );
gfx.PutPixel( 113 + x,125 + y,221,221,221 );
gfx.PutPixel( 114 + x,125 + y,221,221,221 );
gfx.PutPixel( 115 + x,125 + y,222,232,232 );
gfx.PutPixel( 116 + x,125 + y,213,112,112 );
gfx.PutPixel( 117 + x,125 + y,207,22,22 );
gfx.PutPixel( 118 + x,125 + y,208,34,34 );
gfx.PutPixel( 119 + x,125 + y,208,34,34 );
gfx.PutPixel( 120 + x,125 + y,208,34,34 );
gfx.PutPixel( 121 + x,125 + y,208,34,34 );
gfx.PutPixel( 122 + x,125 + y,208,34,34 );
gfx.PutPixel( 123 + x,125 + y,208,34,34 );
gfx.PutPixel( 124 + x,125 + y,208,34,34 );
gfx.PutPixel( 125 + x,125 + y,208,34,34 );
gfx.PutPixel( 126 + x,125 + y,208,34,34 );
gfx.PutPixel( 127 + x,125 + y,208,34,34 );
gfx.PutPixel( 128 + x,125 + y,208,34,34 );
gfx.PutPixel( 129 + x,125 + y,208,34,34 );
gfx.PutPixel( 130 + x,125 + y,208,34,34 );
gfx.PutPixel( 131 + x,125 + y,208,34,34 );
gfx.PutPixel( 132 + x,125 + y,208,34,34 );
gfx.PutPixel( 133 + x,125 + y,208,34,34 );
gfx.PutPixel( 134 + x,125 + y,208,34,34 );
gfx.PutPixel( 135 + x,125 + y,208,34,34 );
gfx.PutPixel( 136 + x,125 + y,208,34,34 );
gfx.PutPixel( 137 + x,125 + y,208,34,34 );
gfx.PutPixel( 138 + x,125 + y,208,34,34 );
gfx.PutPixel( 139 + x,125 + y,208,34,34 );
gfx.PutPixel( 140 + x,125 + y,208,34,34 );
gfx.PutPixel( 141 + x,125 + y,208,34,34 );
gfx.PutPixel( 142 + x,125 + y,208,34,34 );
gfx.PutPixel( 143 + x,125 + y,208,34,34 );
gfx.PutPixel( 144 + x,125 + y,208,34,34 );
gfx.PutPixel( 145 + x,125 + y,208,34,34 );
gfx.PutPixel( 146 + x,125 + y,208,34,34 );
gfx.PutPixel( 147 + x,125 + y,208,34,34 );
gfx.PutPixel( 148 + x,125 + y,208,34,34 );
gfx.PutPixel( 149 + x,125 + y,208,34,34 );
gfx.PutPixel( 0 + x,126 + y,208,34,34 );
gfx.PutPixel( 1 + x,126 + y,208,34,34 );
gfx.PutPixel( 2 + x,126 + y,208,34,34 );
gfx.PutPixel( 3 + x,126 + y,208,34,34 );
gfx.PutPixel( 4 + x,126 + y,208,34,34 );
gfx.PutPixel( 5 + x,126 + y,208,34,34 );
gfx.PutPixel( 6 + x,126 + y,208,34,34 );
gfx.PutPixel( 7 + x,126 + y,208,34,34 );
gfx.PutPixel( 8 + x,126 + y,208,34,34 );
gfx.PutPixel( 9 + x,126 + y,208,34,34 );
gfx.PutPixel( 10 + x,126 + y,208,34,34 );
gfx.PutPixel( 11 + x,126 + y,208,34,34 );
gfx.PutPixel( 12 + x,126 + y,208,34,34 );
gfx.PutPixel( 13 + x,126 + y,208,34,34 );
gfx.PutPixel( 14 + x,126 + y,208,34,34 );
gfx.PutPixel( 15 + x,126 + y,208,34,34 );
gfx.PutPixel( 16 + x,126 + y,208,34,34 );
gfx.PutPixel( 17 + x,126 + y,208,34,34 );
gfx.PutPixel( 18 + x,126 + y,208,34,34 );
gfx.PutPixel( 19 + x,126 + y,208,34,34 );
gfx.PutPixel( 20 + x,126 + y,208,34,34 );
gfx.PutPixel( 21 + x,126 + y,208,34,34 );
gfx.PutPixel( 22 + x,126 + y,208,34,34 );
gfx.PutPixel( 23 + x,126 + y,208,34,34 );
gfx.PutPixel( 24 + x,126 + y,208,34,34 );
gfx.PutPixel( 25 + x,126 + y,208,34,34 );
gfx.PutPixel( 26 + x,126 + y,208,34,34 );
gfx.PutPixel( 27 + x,126 + y,208,34,34 );
gfx.PutPixel( 28 + x,126 + y,208,34,34 );
gfx.PutPixel( 29 + x,126 + y,208,34,34 );
gfx.PutPixel( 30 + x,126 + y,208,34,34 );
gfx.PutPixel( 31 + x,126 + y,208,34,34 );
gfx.PutPixel( 32 + x,126 + y,207,22,22 );
gfx.PutPixel( 33 + x,126 + y,215,128,128 );
gfx.PutPixel( 34 + x,126 + y,222,233,233 );
gfx.PutPixel( 35 + x,126 + y,221,225,225 );
gfx.PutPixel( 36 + x,126 + y,220,207,207 );
gfx.PutPixel( 37 + x,126 + y,208,36,36 );
gfx.PutPixel( 38 + x,126 + y,207,18,18 );
gfx.PutPixel( 39 + x,126 + y,207,22,22 );
gfx.PutPixel( 40 + x,126 + y,207,22,22 );
gfx.PutPixel( 41 + x,126 + y,207,22,22 );
gfx.PutPixel( 42 + x,126 + y,207,22,22 );
gfx.PutPixel( 43 + x,126 + y,207,22,22 );
gfx.PutPixel( 44 + x,126 + y,207,22,22 );
gfx.PutPixel( 45 + x,126 + y,208,31,31 );
gfx.PutPixel( 46 + x,126 + y,208,34,34 );
gfx.PutPixel( 47 + x,126 + y,207,23,23 );
gfx.PutPixel( 48 + x,126 + y,216,142,142 );
gfx.PutPixel( 49 + x,126 + y,222,233,233 );
gfx.PutPixel( 50 + x,126 + y,221,220,220 );
gfx.PutPixel( 51 + x,126 + y,221,223,223 );
gfx.PutPixel( 52 + x,126 + y,222,233,233 );
gfx.PutPixel( 53 + x,126 + y,222,233,233 );
gfx.PutPixel( 54 + x,126 + y,222,233,233 );
gfx.PutPixel( 55 + x,126 + y,222,233,233 );
gfx.PutPixel( 56 + x,126 + y,222,233,233 );
gfx.PutPixel( 57 + x,126 + y,222,234,234 );
gfx.PutPixel( 58 + x,126 + y,222,230,230 );
gfx.PutPixel( 59 + x,126 + y,221,221,221 );
gfx.PutPixel( 60 + x,126 + y,221,221,221 );
gfx.PutPixel( 61 + x,126 + y,222,231,231 );
gfx.PutPixel( 62 + x,126 + y,213,100,100 );
gfx.PutPixel( 63 + x,126 + y,207,23,23 );
gfx.PutPixel( 64 + x,126 + y,208,34,34 );
gfx.PutPixel( 65 + x,126 + y,208,34,34 );
gfx.PutPixel( 66 + x,126 + y,208,27,27 );
gfx.PutPixel( 67 + x,126 + y,218,173,173 );
gfx.PutPixel( 68 + x,126 + y,222,230,230 );
gfx.PutPixel( 69 + x,126 + y,222,230,230 );
gfx.PutPixel( 70 + x,126 + y,218,173,173 );
gfx.PutPixel( 71 + x,126 + y,208,27,27 );
gfx.PutPixel( 72 + x,126 + y,208,34,34 );
gfx.PutPixel( 73 + x,126 + y,208,34,34 );
gfx.PutPixel( 74 + x,126 + y,208,34,34 );
gfx.PutPixel( 75 + x,126 + y,208,34,34 );
gfx.PutPixel( 76 + x,126 + y,208,34,34 );
gfx.PutPixel( 77 + x,126 + y,208,34,34 );
gfx.PutPixel( 78 + x,126 + y,208,34,34 );
gfx.PutPixel( 79 + x,126 + y,208,34,34 );
gfx.PutPixel( 80 + x,126 + y,208,34,34 );
gfx.PutPixel( 81 + x,126 + y,208,34,34 );
gfx.PutPixel( 82 + x,126 + y,208,34,34 );
gfx.PutPixel( 83 + x,126 + y,207,22,22 );
gfx.PutPixel( 84 + x,126 + y,215,128,128 );
gfx.PutPixel( 85 + x,126 + y,222,233,233 );
gfx.PutPixel( 86 + x,126 + y,221,225,225 );
gfx.PutPixel( 87 + x,126 + y,220,207,207 );
gfx.PutPixel( 88 + x,126 + y,208,36,36 );
gfx.PutPixel( 89 + x,126 + y,207,18,18 );
gfx.PutPixel( 90 + x,126 + y,207,22,22 );
gfx.PutPixel( 91 + x,126 + y,207,23,23 );
gfx.PutPixel( 92 + x,126 + y,208,28,28 );
gfx.PutPixel( 93 + x,126 + y,210,60,60 );
gfx.PutPixel( 94 + x,126 + y,217,161,161 );
gfx.PutPixel( 95 + x,126 + y,222,230,230 );
gfx.PutPixel( 96 + x,126 + y,221,221,221 );
gfx.PutPixel( 97 + x,126 + y,221,222,222 );
gfx.PutPixel( 98 + x,126 + y,222,230,230 );
gfx.PutPixel( 99 + x,126 + y,212,89,89 );
gfx.PutPixel( 100 + x,126 + y,207,25,25 );
gfx.PutPixel( 101 + x,126 + y,208,29,29 );
gfx.PutPixel( 102 + x,126 + y,209,58,58 );
gfx.PutPixel( 103 + x,126 + y,220,215,215 );
gfx.PutPixel( 104 + x,126 + y,221,224,224 );
gfx.PutPixel( 105 + x,126 + y,221,220,220 );
gfx.PutPixel( 106 + x,126 + y,222,229,229 );
gfx.PutPixel( 107 + x,126 + y,222,234,234 );
gfx.PutPixel( 108 + x,126 + y,222,233,233 );
gfx.PutPixel( 109 + x,126 + y,222,233,233 );
gfx.PutPixel( 110 + x,126 + y,222,233,233 );
gfx.PutPixel( 111 + x,126 + y,222,233,233 );
gfx.PutPixel( 112 + x,126 + y,222,233,233 );
gfx.PutPixel( 113 + x,126 + y,221,225,225 );
gfx.PutPixel( 114 + x,126 + y,221,220,220 );
gfx.PutPixel( 115 + x,126 + y,222,228,228 );
gfx.PutPixel( 116 + x,126 + y,219,188,188 );
gfx.PutPixel( 117 + x,126 + y,208,34,34 );
gfx.PutPixel( 118 + x,126 + y,208,32,32 );
gfx.PutPixel( 119 + x,126 + y,208,34,34 );
gfx.PutPixel( 120 + x,126 + y,208,34,34 );
gfx.PutPixel( 121 + x,126 + y,208,34,34 );
gfx.PutPixel( 122 + x,126 + y,208,34,34 );
gfx.PutPixel( 123 + x,126 + y,208,34,34 );
gfx.PutPixel( 124 + x,126 + y,208,34,34 );
gfx.PutPixel( 125 + x,126 + y,208,34,34 );
gfx.PutPixel( 126 + x,126 + y,208,34,34 );
gfx.PutPixel( 127 + x,126 + y,208,34,34 );
gfx.PutPixel( 128 + x,126 + y,208,34,34 );
gfx.PutPixel( 129 + x,126 + y,208,34,34 );
gfx.PutPixel( 130 + x,126 + y,208,34,34 );
gfx.PutPixel( 131 + x,126 + y,208,34,34 );
gfx.PutPixel( 132 + x,126 + y,208,34,34 );
gfx.PutPixel( 133 + x,126 + y,208,34,34 );
gfx.PutPixel( 134 + x,126 + y,208,34,34 );
gfx.PutPixel( 135 + x,126 + y,208,34,34 );
gfx.PutPixel( 136 + x,126 + y,208,34,34 );
gfx.PutPixel( 137 + x,126 + y,208,34,34 );
gfx.PutPixel( 138 + x,126 + y,208,34,34 );
gfx.PutPixel( 139 + x,126 + y,208,34,34 );
gfx.PutPixel( 140 + x,126 + y,208,34,34 );
gfx.PutPixel( 141 + x,126 + y,208,34,34 );
gfx.PutPixel( 142 + x,126 + y,208,34,34 );
gfx.PutPixel( 143 + x,126 + y,208,34,34 );
gfx.PutPixel( 144 + x,126 + y,208,34,34 );
gfx.PutPixel( 145 + x,126 + y,208,34,34 );
gfx.PutPixel( 146 + x,126 + y,208,34,34 );
gfx.PutPixel( 147 + x,126 + y,208,34,34 );
gfx.PutPixel( 148 + x,126 + y,208,34,34 );
gfx.PutPixel( 149 + x,126 + y,208,34,34 );
gfx.PutPixel( 0 + x,127 + y,208,34,34 );
gfx.PutPixel( 1 + x,127 + y,208,34,34 );
gfx.PutPixel( 2 + x,127 + y,208,34,34 );
gfx.PutPixel( 3 + x,127 + y,208,34,34 );
gfx.PutPixel( 4 + x,127 + y,208,34,34 );
gfx.PutPixel( 5 + x,127 + y,208,34,34 );
gfx.PutPixel( 6 + x,127 + y,208,34,34 );
gfx.PutPixel( 7 + x,127 + y,208,34,34 );
gfx.PutPixel( 8 + x,127 + y,208,34,34 );
gfx.PutPixel( 9 + x,127 + y,208,34,34 );
gfx.PutPixel( 10 + x,127 + y,208,34,34 );
gfx.PutPixel( 11 + x,127 + y,208,34,34 );
gfx.PutPixel( 12 + x,127 + y,208,34,34 );
gfx.PutPixel( 13 + x,127 + y,208,34,34 );
gfx.PutPixel( 14 + x,127 + y,208,34,34 );
gfx.PutPixel( 15 + x,127 + y,208,34,34 );
gfx.PutPixel( 16 + x,127 + y,208,34,34 );
gfx.PutPixel( 17 + x,127 + y,208,34,34 );
gfx.PutPixel( 18 + x,127 + y,208,34,34 );
gfx.PutPixel( 19 + x,127 + y,208,34,34 );
gfx.PutPixel( 20 + x,127 + y,208,34,34 );
gfx.PutPixel( 21 + x,127 + y,208,34,34 );
gfx.PutPixel( 22 + x,127 + y,208,34,34 );
gfx.PutPixel( 23 + x,127 + y,208,34,34 );
gfx.PutPixel( 24 + x,127 + y,208,34,34 );
gfx.PutPixel( 25 + x,127 + y,208,34,34 );
gfx.PutPixel( 26 + x,127 + y,208,34,34 );
gfx.PutPixel( 27 + x,127 + y,208,34,34 );
gfx.PutPixel( 28 + x,127 + y,208,34,34 );
gfx.PutPixel( 29 + x,127 + y,208,34,34 );
gfx.PutPixel( 30 + x,127 + y,208,34,34 );
gfx.PutPixel( 31 + x,127 + y,208,34,34 );
gfx.PutPixel( 32 + x,127 + y,207,22,22 );
gfx.PutPixel( 33 + x,127 + y,215,128,128 );
gfx.PutPixel( 34 + x,127 + y,222,233,233 );
gfx.PutPixel( 35 + x,127 + y,221,223,223 );
gfx.PutPixel( 36 + x,127 + y,221,215,215 );
gfx.PutPixel( 37 + x,127 + y,215,134,134 );
gfx.PutPixel( 38 + x,127 + y,215,126,126 );
gfx.PutPixel( 39 + x,127 + y,215,128,128 );
gfx.PutPixel( 40 + x,127 + y,215,128,128 );
gfx.PutPixel( 41 + x,127 + y,215,128,128 );
gfx.PutPixel( 42 + x,127 + y,215,128,128 );
gfx.PutPixel( 43 + x,127 + y,215,128,128 );
gfx.PutPixel( 44 + x,127 + y,215,130,130 );
gfx.PutPixel( 45 + x,127 + y,210,57,57 );
gfx.PutPixel( 46 + x,127 + y,208,26,26 );
gfx.PutPixel( 47 + x,127 + y,209,49,49 );
gfx.PutPixel( 48 + x,127 + y,220,208,208 );
gfx.PutPixel( 49 + x,127 + y,221,225,225 );
gfx.PutPixel( 50 + x,127 + y,221,224,224 );
gfx.PutPixel( 51 + x,127 + y,220,210,210 );
gfx.PutPixel( 52 + x,127 + y,215,131,131 );
gfx.PutPixel( 53 + x,127 + y,215,126,126 );
gfx.PutPixel( 54 + x,127 + y,215,128,128 );
gfx.PutPixel( 55 + x,127 + y,215,128,128 );
gfx.PutPixel( 56 + x,127 + y,215,128,128 );
gfx.PutPixel( 57 + x,127 + y,214,123,123 );
gfx.PutPixel( 58 + x,127 + y,216,154,154 );
gfx.PutPixel( 59 + x,127 + y,221,226,226 );
gfx.PutPixel( 60 + x,127 + y,221,221,221 );
gfx.PutPixel( 61 + x,127 + y,222,230,230 );
gfx.PutPixel( 62 + x,127 + y,218,178,178 );
gfx.PutPixel( 63 + x,127 + y,207,30,30 );
gfx.PutPixel( 64 + x,127 + y,208,33,33 );
gfx.PutPixel( 65 + x,127 + y,208,34,34 );
gfx.PutPixel( 66 + x,127 + y,208,27,27 );
gfx.PutPixel( 67 + x,127 + y,218,173,173 );
gfx.PutPixel( 68 + x,127 + y,222,230,230 );
gfx.PutPixel( 69 + x,127 + y,222,230,230 );
gfx.PutPixel( 70 + x,127 + y,218,173,173 );
gfx.PutPixel( 71 + x,127 + y,208,27,27 );
gfx.PutPixel( 72 + x,127 + y,208,34,34 );
gfx.PutPixel( 73 + x,127 + y,208,34,34 );
gfx.PutPixel( 74 + x,127 + y,208,34,34 );
gfx.PutPixel( 75 + x,127 + y,208,34,34 );
gfx.PutPixel( 76 + x,127 + y,208,34,34 );
gfx.PutPixel( 77 + x,127 + y,208,34,34 );
gfx.PutPixel( 78 + x,127 + y,208,34,34 );
gfx.PutPixel( 79 + x,127 + y,208,34,34 );
gfx.PutPixel( 80 + x,127 + y,208,34,34 );
gfx.PutPixel( 81 + x,127 + y,208,34,34 );
gfx.PutPixel( 82 + x,127 + y,208,34,34 );
gfx.PutPixel( 83 + x,127 + y,207,22,22 );
gfx.PutPixel( 84 + x,127 + y,215,128,128 );
gfx.PutPixel( 85 + x,127 + y,222,233,233 );
gfx.PutPixel( 86 + x,127 + y,221,223,223 );
gfx.PutPixel( 87 + x,127 + y,221,215,215 );
gfx.PutPixel( 88 + x,127 + y,215,134,134 );
gfx.PutPixel( 89 + x,127 + y,215,125,125 );
gfx.PutPixel( 90 + x,127 + y,215,129,129 );
gfx.PutPixel( 91 + x,127 + y,216,144,144 );
gfx.PutPixel( 92 + x,127 + y,218,176,176 );
gfx.PutPixel( 93 + x,127 + y,221,217,217 );
gfx.PutPixel( 94 + x,127 + y,222,230,230 );
gfx.PutPixel( 95 + x,127 + y,221,221,221 );
gfx.PutPixel( 96 + x,127 + y,221,221,221 );
gfx.PutPixel( 97 + x,127 + y,222,236,236 );
gfx.PutPixel( 98 + x,127 + y,216,148,148 );
gfx.PutPixel( 99 + x,127 + y,207,26,26 );
gfx.PutPixel( 100 + x,127 + y,208,34,34 );
gfx.PutPixel( 101 + x,127 + y,207,22,22 );
gfx.PutPixel( 102 + x,127 + y,215,129,129 );
gfx.PutPixel( 103 + x,127 + y,222,233,233 );
gfx.PutPixel( 104 + x,127 + y,221,221,221 );
gfx.PutPixel( 105 + x,127 + y,222,227,227 );
gfx.PutPixel( 106 + x,127 + y,217,168,168 );
gfx.PutPixel( 107 + x,127 + y,214,122,122 );
gfx.PutPixel( 108 + x,127 + y,215,128,128 );
gfx.PutPixel( 109 + x,127 + y,215,128,128 );
gfx.PutPixel( 110 + x,127 + y,215,128,128 );
gfx.PutPixel( 111 + x,127 + y,215,127,127 );
gfx.PutPixel( 112 + x,127 + y,214,125,125 );
gfx.PutPixel( 113 + x,127 + y,219,200,200 );
gfx.PutPixel( 114 + x,127 + y,221,225,225 );
gfx.PutPixel( 115 + x,127 + y,221,221,221 );
gfx.PutPixel( 116 + x,127 + y,222,229,229 );
gfx.PutPixel( 117 + x,127 + y,212,89,89 );
gfx.PutPixel( 118 + x,127 + y,207,24,24 );
gfx.PutPixel( 119 + x,127 + y,208,34,34 );
gfx.PutPixel( 120 + x,127 + y,208,34,34 );
gfx.PutPixel( 121 + x,127 + y,208,34,34 );
gfx.PutPixel( 122 + x,127 + y,208,34,34 );
gfx.PutPixel( 123 + x,127 + y,208,34,34 );
gfx.PutPixel( 124 + x,127 + y,208,34,34 );
gfx.PutPixel( 125 + x,127 + y,208,34,34 );
gfx.PutPixel( 126 + x,127 + y,208,34,34 );
gfx.PutPixel( 127 + x,127 + y,208,34,34 );
gfx.PutPixel( 128 + x,127 + y,208,34,34 );
gfx.PutPixel( 129 + x,127 + y,208,34,34 );
gfx.PutPixel( 130 + x,127 + y,208,34,34 );
gfx.PutPixel( 131 + x,127 + y,208,34,34 );
gfx.PutPixel( 132 + x,127 + y,208,34,34 );
gfx.PutPixel( 133 + x,127 + y,208,34,34 );
gfx.PutPixel( 134 + x,127 + y,208,34,34 );
gfx.PutPixel( 135 + x,127 + y,208,34,34 );
gfx.PutPixel( 136 + x,127 + y,208,34,34 );
gfx.PutPixel( 137 + x,127 + y,208,34,34 );
gfx.PutPixel( 138 + x,127 + y,208,34,34 );
gfx.PutPixel( 139 + x,127 + y,208,34,34 );
gfx.PutPixel( 140 + x,127 + y,208,34,34 );
gfx.PutPixel( 141 + x,127 + y,208,34,34 );
gfx.PutPixel( 142 + x,127 + y,208,34,34 );
gfx.PutPixel( 143 + x,127 + y,208,34,34 );
gfx.PutPixel( 144 + x,127 + y,208,34,34 );
gfx.PutPixel( 145 + x,127 + y,208,34,34 );
gfx.PutPixel( 146 + x,127 + y,208,34,34 );
gfx.PutPixel( 147 + x,127 + y,208,34,34 );
gfx.PutPixel( 148 + x,127 + y,208,34,34 );
gfx.PutPixel( 149 + x,127 + y,208,34,34 );
gfx.PutPixel( 0 + x,128 + y,208,34,34 );
gfx.PutPixel( 1 + x,128 + y,208,34,34 );
gfx.PutPixel( 2 + x,128 + y,208,34,34 );
gfx.PutPixel( 3 + x,128 + y,208,34,34 );
gfx.PutPixel( 4 + x,128 + y,208,34,34 );
gfx.PutPixel( 5 + x,128 + y,208,34,34 );
gfx.PutPixel( 6 + x,128 + y,208,34,34 );
gfx.PutPixel( 7 + x,128 + y,208,34,34 );
gfx.PutPixel( 8 + x,128 + y,208,34,34 );
gfx.PutPixel( 9 + x,128 + y,208,34,34 );
gfx.PutPixel( 10 + x,128 + y,208,34,34 );
gfx.PutPixel( 11 + x,128 + y,208,34,34 );
gfx.PutPixel( 12 + x,128 + y,208,34,34 );
gfx.PutPixel( 13 + x,128 + y,208,34,34 );
gfx.PutPixel( 14 + x,128 + y,208,34,34 );
gfx.PutPixel( 15 + x,128 + y,208,34,34 );
gfx.PutPixel( 16 + x,128 + y,208,34,34 );
gfx.PutPixel( 17 + x,128 + y,208,34,34 );
gfx.PutPixel( 18 + x,128 + y,208,34,34 );
gfx.PutPixel( 19 + x,128 + y,208,34,34 );
gfx.PutPixel( 20 + x,128 + y,208,34,34 );
gfx.PutPixel( 21 + x,128 + y,208,34,34 );
gfx.PutPixel( 22 + x,128 + y,208,34,34 );
gfx.PutPixel( 23 + x,128 + y,208,34,34 );
gfx.PutPixel( 24 + x,128 + y,208,34,34 );
gfx.PutPixel( 25 + x,128 + y,208,34,34 );
gfx.PutPixel( 26 + x,128 + y,208,34,34 );
gfx.PutPixel( 27 + x,128 + y,208,34,34 );
gfx.PutPixel( 28 + x,128 + y,208,34,34 );
gfx.PutPixel( 29 + x,128 + y,208,34,34 );
gfx.PutPixel( 30 + x,128 + y,208,34,34 );
gfx.PutPixel( 31 + x,128 + y,208,34,34 );
gfx.PutPixel( 32 + x,128 + y,207,22,22 );
gfx.PutPixel( 33 + x,128 + y,215,128,128 );
gfx.PutPixel( 34 + x,128 + y,222,233,233 );
gfx.PutPixel( 35 + x,128 + y,221,221,221 );
gfx.PutPixel( 36 + x,128 + y,221,222,222 );
gfx.PutPixel( 37 + x,128 + y,222,232,232 );
gfx.PutPixel( 38 + x,128 + y,222,233,233 );
gfx.PutPixel( 39 + x,128 + y,222,233,233 );
gfx.PutPixel( 40 + x,128 + y,222,233,233 );
gfx.PutPixel( 41 + x,128 + y,222,233,233 );
gfx.PutPixel( 42 + x,128 + y,222,233,233 );
gfx.PutPixel( 43 + x,128 + y,222,234,234 );
gfx.PutPixel( 44 + x,128 + y,222,238,238 );
gfx.PutPixel( 45 + x,128 + y,211,83,83 );
gfx.PutPixel( 46 + x,128 + y,207,13,13 );
gfx.PutPixel( 47 + x,128 + y,214,117,117 );
gfx.PutPixel( 48 + x,128 + y,222,233,233 );
gfx.PutPixel( 49 + x,128 + y,221,221,221 );
gfx.PutPixel( 50 + x,128 + y,222,232,232 );
gfx.PutPixel( 51 + x,128 + y,216,149,149 );
gfx.PutPixel( 52 + x,128 + y,206,14,14 );
gfx.PutPixel( 53 + x,128 + y,207,21,21 );
gfx.PutPixel( 54 + x,128 + y,207,22,22 );
gfx.PutPixel( 55 + x,128 + y,207,22,22 );
gfx.PutPixel( 56 + x,128 + y,207,22,22 );
gfx.PutPixel( 57 + x,128 + y,207,18,18 );
gfx.PutPixel( 58 + x,128 + y,208,39,39 );
gfx.PutPixel( 59 + x,128 + y,220,203,203 );
gfx.PutPixel( 60 + x,128 + y,221,226,226 );
gfx.PutPixel( 61 + x,128 + y,221,222,222 );
gfx.PutPixel( 62 + x,128 + y,221,226,226 );
gfx.PutPixel( 63 + x,128 + y,211,78,78 );
gfx.PutPixel( 64 + x,128 + y,207,25,25 );
gfx.PutPixel( 65 + x,128 + y,208,34,34 );
gfx.PutPixel( 66 + x,128 + y,208,27,27 );
gfx.PutPixel( 67 + x,128 + y,218,173,173 );
gfx.PutPixel( 68 + x,128 + y,222,230,230 );
gfx.PutPixel( 69 + x,128 + y,222,230,230 );
gfx.PutPixel( 70 + x,128 + y,218,173,173 );
gfx.PutPixel( 71 + x,128 + y,208,27,27 );
gfx.PutPixel( 72 + x,128 + y,208,34,34 );
gfx.PutPixel( 73 + x,128 + y,208,34,34 );
gfx.PutPixel( 74 + x,128 + y,208,34,34 );
gfx.PutPixel( 75 + x,128 + y,208,34,34 );
gfx.PutPixel( 76 + x,128 + y,208,34,34 );
gfx.PutPixel( 77 + x,128 + y,208,34,34 );
gfx.PutPixel( 78 + x,128 + y,208,34,34 );
gfx.PutPixel( 79 + x,128 + y,208,34,34 );
gfx.PutPixel( 80 + x,128 + y,208,34,34 );
gfx.PutPixel( 81 + x,128 + y,208,34,34 );
gfx.PutPixel( 82 + x,128 + y,208,34,34 );
gfx.PutPixel( 83 + x,128 + y,207,22,22 );
gfx.PutPixel( 84 + x,128 + y,215,128,128 );
gfx.PutPixel( 85 + x,128 + y,222,233,233 );
gfx.PutPixel( 86 + x,128 + y,221,221,221 );
gfx.PutPixel( 87 + x,128 + y,221,222,222 );
gfx.PutPixel( 88 + x,128 + y,222,232,232 );
gfx.PutPixel( 89 + x,128 + y,222,233,233 );
gfx.PutPixel( 90 + x,128 + y,222,233,233 );
gfx.PutPixel( 91 + x,128 + y,222,232,232 );
gfx.PutPixel( 92 + x,128 + y,222,229,229 );
gfx.PutPixel( 93 + x,128 + y,221,223,223 );
gfx.PutPixel( 94 + x,128 + y,221,221,221 );
gfx.PutPixel( 95 + x,128 + y,221,227,227 );
gfx.PutPixel( 96 + x,128 + y,222,234,234 );
gfx.PutPixel( 97 + x,128 + y,217,157,157 );
gfx.PutPixel( 98 + x,128 + y,208,35,35 );
gfx.PutPixel( 99 + x,128 + y,208,30,30 );
gfx.PutPixel( 100 + x,128 + y,208,31,31 );
gfx.PutPixel( 101 + x,128 + y,209,42,42 );
gfx.PutPixel( 102 + x,128 + y,220,200,200 );
gfx.PutPixel( 103 + x,128 + y,221,226,226 );
gfx.PutPixel( 104 + x,128 + y,221,223,223 );
gfx.PutPixel( 105 + x,128 + y,221,219,219 );
gfx.PutPixel( 106 + x,128 + y,210,58,58 );
gfx.PutPixel( 107 + x,128 + y,207,15,15 );
gfx.PutPixel( 108 + x,128 + y,207,22,22 );
gfx.PutPixel( 109 + x,128 + y,207,22,22 );
gfx.PutPixel( 110 + x,128 + y,207,22,22 );
gfx.PutPixel( 111 + x,128 + y,207,22,22 );
gfx.PutPixel( 112 + x,128 + y,206,11,11 );
gfx.PutPixel( 113 + x,128 + y,214,120,120 );
gfx.PutPixel( 114 + x,128 + y,222,233,233 );
gfx.PutPixel( 115 + x,128 + y,221,221,221 );
gfx.PutPixel( 116 + x,128 + y,222,231,231 );
gfx.PutPixel( 117 + x,128 + y,217,167,167 );
gfx.PutPixel( 118 + x,128 + y,207,27,27 );
gfx.PutPixel( 119 + x,128 + y,208,33,33 );
gfx.PutPixel( 120 + x,128 + y,208,34,34 );
gfx.PutPixel( 121 + x,128 + y,208,34,34 );
gfx.PutPixel( 122 + x,128 + y,208,34,34 );
gfx.PutPixel( 123 + x,128 + y,208,34,34 );
gfx.PutPixel( 124 + x,128 + y,208,34,34 );
gfx.PutPixel( 125 + x,128 + y,208,34,34 );
gfx.PutPixel( 126 + x,128 + y,208,34,34 );
gfx.PutPixel( 127 + x,128 + y,208,34,34 );
gfx.PutPixel( 128 + x,128 + y,208,34,34 );
gfx.PutPixel( 129 + x,128 + y,208,34,34 );
gfx.PutPixel( 130 + x,128 + y,208,34,34 );
gfx.PutPixel( 131 + x,128 + y,208,34,34 );
gfx.PutPixel( 132 + x,128 + y,208,34,34 );
gfx.PutPixel( 133 + x,128 + y,208,34,34 );
gfx.PutPixel( 134 + x,128 + y,208,34,34 );
gfx.PutPixel( 135 + x,128 + y,208,34,34 );
gfx.PutPixel( 136 + x,128 + y,208,34,34 );
gfx.PutPixel( 137 + x,128 + y,208,34,34 );
gfx.PutPixel( 138 + x,128 + y,208,34,34 );
gfx.PutPixel( 139 + x,128 + y,208,34,34 );
gfx.PutPixel( 140 + x,128 + y,208,34,34 );
gfx.PutPixel( 141 + x,128 + y,208,34,34 );
gfx.PutPixel( 142 + x,128 + y,208,34,34 );
gfx.PutPixel( 143 + x,128 + y,208,34,34 );
gfx.PutPixel( 144 + x,128 + y,208,34,34 );
gfx.PutPixel( 145 + x,128 + y,208,34,34 );
gfx.PutPixel( 146 + x,128 + y,208,34,34 );
gfx.PutPixel( 147 + x,128 + y,208,34,34 );
gfx.PutPixel( 148 + x,128 + y,208,34,34 );
gfx.PutPixel( 149 + x,128 + y,208,34,34 );
gfx.PutPixel( 0 + x,129 + y,208,34,34 );
gfx.PutPixel( 1 + x,129 + y,208,34,34 );
gfx.PutPixel( 2 + x,129 + y,208,34,34 );
gfx.PutPixel( 3 + x,129 + y,208,34,34 );
gfx.PutPixel( 4 + x,129 + y,208,34,34 );
gfx.PutPixel( 5 + x,129 + y,208,34,34 );
gfx.PutPixel( 6 + x,129 + y,208,34,34 );
gfx.PutPixel( 7 + x,129 + y,208,34,34 );
gfx.PutPixel( 8 + x,129 + y,208,34,34 );
gfx.PutPixel( 9 + x,129 + y,208,34,34 );
gfx.PutPixel( 10 + x,129 + y,208,34,34 );
gfx.PutPixel( 11 + x,129 + y,208,34,34 );
gfx.PutPixel( 12 + x,129 + y,208,34,34 );
gfx.PutPixel( 13 + x,129 + y,208,34,34 );
gfx.PutPixel( 14 + x,129 + y,208,34,34 );
gfx.PutPixel( 15 + x,129 + y,208,34,34 );
gfx.PutPixel( 16 + x,129 + y,208,34,34 );
gfx.PutPixel( 17 + x,129 + y,208,34,34 );
gfx.PutPixel( 18 + x,129 + y,208,34,34 );
gfx.PutPixel( 19 + x,129 + y,208,34,34 );
gfx.PutPixel( 20 + x,129 + y,208,34,34 );
gfx.PutPixel( 21 + x,129 + y,208,34,34 );
gfx.PutPixel( 22 + x,129 + y,208,34,34 );
gfx.PutPixel( 23 + x,129 + y,208,34,34 );
gfx.PutPixel( 24 + x,129 + y,208,34,34 );
gfx.PutPixel( 25 + x,129 + y,208,34,34 );
gfx.PutPixel( 26 + x,129 + y,208,34,34 );
gfx.PutPixel( 27 + x,129 + y,208,34,34 );
gfx.PutPixel( 28 + x,129 + y,208,34,34 );
gfx.PutPixel( 29 + x,129 + y,208,34,34 );
gfx.PutPixel( 30 + x,129 + y,208,34,34 );
gfx.PutPixel( 31 + x,129 + y,208,34,34 );
gfx.PutPixel( 32 + x,129 + y,207,22,22 );
gfx.PutPixel( 33 + x,129 + y,215,130,130 );
gfx.PutPixel( 34 + x,129 + y,222,237,237 );
gfx.PutPixel( 35 + x,129 + y,221,225,225 );
gfx.PutPixel( 36 + x,129 + y,221,225,225 );
gfx.PutPixel( 37 + x,129 + y,221,225,225 );
gfx.PutPixel( 38 + x,129 + y,221,225,225 );
gfx.PutPixel( 39 + x,129 + y,221,225,225 );
gfx.PutPixel( 40 + x,129 + y,221,225,225 );
gfx.PutPixel( 41 + x,129 + y,221,225,225 );
gfx.PutPixel( 42 + x,129 + y,221,225,225 );
gfx.PutPixel( 43 + x,129 + y,221,226,226 );
gfx.PutPixel( 44 + x,129 + y,221,230,230 );
gfx.PutPixel( 45 + x,129 + y,211,78,78 );
gfx.PutPixel( 46 + x,129 + y,208,30,30 );
gfx.PutPixel( 47 + x,129 + y,219,195,195 );
gfx.PutPixel( 48 + x,129 + y,222,231,231 );
gfx.PutPixel( 49 + x,129 + y,221,226,226 );
gfx.PutPixel( 50 + x,129 + y,221,227,227 );
gfx.PutPixel( 51 + x,129 + y,211,77,77 );
gfx.PutPixel( 52 + x,129 + y,207,26,26 );
gfx.PutPixel( 53 + x,129 + y,208,34,34 );
gfx.PutPixel( 54 + x,129 + y,208,34,34 );
gfx.PutPixel( 55 + x,129 + y,208,34,34 );
gfx.PutPixel( 56 + x,129 + y,208,34,34 );
gfx.PutPixel( 57 + x,129 + y,208,34,34 );
gfx.PutPixel( 58 + x,129 + y,207,22,22 );
gfx.PutPixel( 59 + x,129 + y,215,135,135 );
gfx.PutPixel( 60 + x,129 + y,222,236,236 );
gfx.PutPixel( 61 + x,129 + y,221,224,224 );
gfx.PutPixel( 62 + x,129 + y,222,235,235 );
gfx.PutPixel( 63 + x,129 + y,217,160,160 );
gfx.PutPixel( 64 + x,129 + y,207,25,25 );
gfx.PutPixel( 65 + x,129 + y,208,33,33 );
gfx.PutPixel( 66 + x,129 + y,208,27,27 );
gfx.PutPixel( 67 + x,129 + y,218,176,176 );
gfx.PutPixel( 68 + x,129 + y,222,234,234 );
gfx.PutPixel( 69 + x,129 + y,222,234,234 );
gfx.PutPixel( 70 + x,129 + y,218,176,176 );
gfx.PutPixel( 71 + x,129 + y,208,27,27 );
gfx.PutPixel( 72 + x,129 + y,208,34,34 );
gfx.PutPixel( 73 + x,129 + y,208,34,34 );
gfx.PutPixel( 74 + x,129 + y,208,34,34 );
gfx.PutPixel( 75 + x,129 + y,208,34,34 );
gfx.PutPixel( 76 + x,129 + y,208,34,34 );
gfx.PutPixel( 77 + x,129 + y,208,34,34 );
gfx.PutPixel( 78 + x,129 + y,208,34,34 );
gfx.PutPixel( 79 + x,129 + y,208,34,34 );
gfx.PutPixel( 80 + x,129 + y,208,34,34 );
gfx.PutPixel( 81 + x,129 + y,208,34,34 );
gfx.PutPixel( 82 + x,129 + y,208,34,34 );
gfx.PutPixel( 83 + x,129 + y,207,22,22 );
gfx.PutPixel( 84 + x,129 + y,215,130,130 );
gfx.PutPixel( 85 + x,129 + y,222,237,237 );
gfx.PutPixel( 86 + x,129 + y,221,225,225 );
gfx.PutPixel( 87 + x,129 + y,221,225,225 );
gfx.PutPixel( 88 + x,129 + y,221,225,225 );
gfx.PutPixel( 89 + x,129 + y,221,225,225 );
gfx.PutPixel( 90 + x,129 + y,221,225,225 );
gfx.PutPixel( 91 + x,129 + y,221,225,225 );
gfx.PutPixel( 92 + x,129 + y,221,227,227 );
gfx.PutPixel( 93 + x,129 + y,222,231,231 );
gfx.PutPixel( 94 + x,129 + y,222,232,232 );
gfx.PutPixel( 95 + x,129 + y,220,203,203 );
gfx.PutPixel( 96 + x,129 + y,213,112,112 );
gfx.PutPixel( 97 + x,129 + y,208,29,29 );
gfx.PutPixel( 98 + x,129 + y,208,30,30 );
gfx.PutPixel( 99 + x,129 + y,208,34,34 );
gfx.PutPixel( 100 + x,129 + y,207,23,23 );
gfx.PutPixel( 101 + x,129 + y,213,108,108 );
gfx.PutPixel( 102 + x,129 + y,222,235,235 );
gfx.PutPixel( 103 + x,129 + y,221,224,224 );
gfx.PutPixel( 104 + x,129 + y,222,234,234 );
gfx.PutPixel( 105 + x,129 + y,217,166,166 );
gfx.PutPixel( 106 + x,129 + y,207,26,26 );
gfx.PutPixel( 107 + x,129 + y,208,33,33 );
gfx.PutPixel( 108 + x,129 + y,208,34,34 );
gfx.PutPixel( 109 + x,129 + y,208,34,34 );
gfx.PutPixel( 110 + x,129 + y,208,34,34 );
gfx.PutPixel( 111 + x,129 + y,208,34,34 );
gfx.PutPixel( 112 + x,129 + y,208,29,29 );
gfx.PutPixel( 113 + x,129 + y,209,53,53 );
gfx.PutPixel( 114 + x,129 + y,221,213,213 );
gfx.PutPixel( 115 + x,129 + y,221,228,228 );
gfx.PutPixel( 116 + x,129 + y,221,226,226 );
gfx.PutPixel( 117 + x,129 + y,221,225,225 );
gfx.PutPixel( 118 + x,129 + y,211,71,71 );
gfx.PutPixel( 119 + x,129 + y,207,27,27 );
gfx.PutPixel( 120 + x,129 + y,208,34,34 );
gfx.PutPixel( 121 + x,129 + y,208,34,34 );
gfx.PutPixel( 122 + x,129 + y,208,34,34 );
gfx.PutPixel( 123 + x,129 + y,208,34,34 );
gfx.PutPixel( 124 + x,129 + y,208,34,34 );
gfx.PutPixel( 125 + x,129 + y,208,34,34 );
gfx.PutPixel( 126 + x,129 + y,208,34,34 );
gfx.PutPixel( 127 + x,129 + y,208,34,34 );
gfx.PutPixel( 128 + x,129 + y,208,34,34 );
gfx.PutPixel( 129 + x,129 + y,208,34,34 );
gfx.PutPixel( 130 + x,129 + y,208,34,34 );
gfx.PutPixel( 131 + x,129 + y,208,34,34 );
gfx.PutPixel( 132 + x,129 + y,208,34,34 );
gfx.PutPixel( 133 + x,129 + y,208,34,34 );
gfx.PutPixel( 134 + x,129 + y,208,34,34 );
gfx.PutPixel( 135 + x,129 + y,208,34,34 );
gfx.PutPixel( 136 + x,129 + y,208,34,34 );
gfx.PutPixel( 137 + x,129 + y,208,34,34 );
gfx.PutPixel( 138 + x,129 + y,208,34,34 );
gfx.PutPixel( 139 + x,129 + y,208,34,34 );
gfx.PutPixel( 140 + x,129 + y,208,34,34 );
gfx.PutPixel( 141 + x,129 + y,208,34,34 );
gfx.PutPixel( 142 + x,129 + y,208,34,34 );
gfx.PutPixel( 143 + x,129 + y,208,34,34 );
gfx.PutPixel( 144 + x,129 + y,208,34,34 );
gfx.PutPixel( 145 + x,129 + y,208,34,34 );
gfx.PutPixel( 146 + x,129 + y,208,34,34 );
gfx.PutPixel( 147 + x,129 + y,208,34,34 );
gfx.PutPixel( 148 + x,129 + y,208,34,34 );
gfx.PutPixel( 149 + x,129 + y,208,34,34 );
gfx.PutPixel( 0 + x,130 + y,208,34,34 );
gfx.PutPixel( 1 + x,130 + y,208,34,34 );
gfx.PutPixel( 2 + x,130 + y,208,34,34 );
gfx.PutPixel( 3 + x,130 + y,208,34,34 );
gfx.PutPixel( 4 + x,130 + y,208,34,34 );
gfx.PutPixel( 5 + x,130 + y,208,34,34 );
gfx.PutPixel( 6 + x,130 + y,208,34,34 );
gfx.PutPixel( 7 + x,130 + y,208,34,34 );
gfx.PutPixel( 8 + x,130 + y,208,34,34 );
gfx.PutPixel( 9 + x,130 + y,208,34,34 );
gfx.PutPixel( 10 + x,130 + y,208,34,34 );
gfx.PutPixel( 11 + x,130 + y,208,34,34 );
gfx.PutPixel( 12 + x,130 + y,208,34,34 );
gfx.PutPixel( 13 + x,130 + y,208,34,34 );
gfx.PutPixel( 14 + x,130 + y,208,34,34 );
gfx.PutPixel( 15 + x,130 + y,208,34,34 );
gfx.PutPixel( 16 + x,130 + y,208,34,34 );
gfx.PutPixel( 17 + x,130 + y,208,34,34 );
gfx.PutPixel( 18 + x,130 + y,208,34,34 );
gfx.PutPixel( 19 + x,130 + y,208,34,34 );
gfx.PutPixel( 20 + x,130 + y,208,34,34 );
gfx.PutPixel( 21 + x,130 + y,208,34,34 );
gfx.PutPixel( 22 + x,130 + y,208,34,34 );
gfx.PutPixel( 23 + x,130 + y,208,34,34 );
gfx.PutPixel( 24 + x,130 + y,208,34,34 );
gfx.PutPixel( 25 + x,130 + y,208,34,34 );
gfx.PutPixel( 26 + x,130 + y,208,34,34 );
gfx.PutPixel( 27 + x,130 + y,208,34,34 );
gfx.PutPixel( 28 + x,130 + y,208,34,34 );
gfx.PutPixel( 29 + x,130 + y,208,34,34 );
gfx.PutPixel( 30 + x,130 + y,208,34,34 );
gfx.PutPixel( 31 + x,130 + y,208,34,34 );
gfx.PutPixel( 32 + x,130 + y,207,23,23 );
gfx.PutPixel( 33 + x,130 + y,215,121,121 );
gfx.PutPixel( 34 + x,130 + y,221,219,219 );
gfx.PutPixel( 35 + x,130 + y,220,208,208 );
gfx.PutPixel( 36 + x,130 + y,220,208,208 );
gfx.PutPixel( 37 + x,130 + y,220,208,208 );
gfx.PutPixel( 38 + x,130 + y,220,208,208 );
gfx.PutPixel( 39 + x,130 + y,220,208,208 );
gfx.PutPixel( 40 + x,130 + y,220,208,208 );
gfx.PutPixel( 41 + x,130 + y,220,208,208 );
gfx.PutPixel( 42 + x,130 + y,220,208,208 );
gfx.PutPixel( 43 + x,130 + y,220,209,209 );
gfx.PutPixel( 44 + x,130 + y,220,212,212 );
gfx.PutPixel( 45 + x,130 + y,210,68,68 );
gfx.PutPixel( 46 + x,130 + y,211,80,80 );
gfx.PutPixel( 47 + x,130 + y,221,215,215 );
gfx.PutPixel( 48 + x,130 + y,220,208,208 );
gfx.PutPixel( 49 + x,130 + y,221,214,214 );
gfx.PutPixel( 50 + x,130 + y,218,171,171 );
gfx.PutPixel( 51 + x,130 + y,208,32,32 );
gfx.PutPixel( 52 + x,130 + y,208,33,33 );
gfx.PutPixel( 53 + x,130 + y,208,34,34 );
gfx.PutPixel( 54 + x,130 + y,208,34,34 );
gfx.PutPixel( 55 + x,130 + y,208,34,34 );
gfx.PutPixel( 56 + x,130 + y,208,34,34 );
gfx.PutPixel( 57 + x,130 + y,208,34,34 );
gfx.PutPixel( 58 + x,130 + y,208,28,28 );
gfx.PutPixel( 59 + x,130 + y,210,63,63 );
gfx.PutPixel( 60 + x,130 + y,220,205,205 );
gfx.PutPixel( 61 + x,130 + y,220,209,209 );
gfx.PutPixel( 62 + x,130 + y,220,210,210 );
gfx.PutPixel( 63 + x,130 + y,219,202,202 );
gfx.PutPixel( 64 + x,130 + y,210,57,57 );
gfx.PutPixel( 65 + x,130 + y,208,29,29 );
gfx.PutPixel( 66 + x,130 + y,208,27,27 );
gfx.PutPixel( 67 + x,130 + y,217,163,163 );
gfx.PutPixel( 68 + x,130 + y,221,216,216 );
gfx.PutPixel( 69 + x,130 + y,221,216,216 );
gfx.PutPixel( 70 + x,130 + y,217,163,163 );
gfx.PutPixel( 71 + x,130 + y,208,27,27 );
gfx.PutPixel( 72 + x,130 + y,208,34,34 );
gfx.PutPixel( 73 + x,130 + y,208,34,34 );
gfx.PutPixel( 74 + x,130 + y,208,34,34 );
gfx.PutPixel( 75 + x,130 + y,208,34,34 );
gfx.PutPixel( 76 + x,130 + y,208,34,34 );
gfx.PutPixel( 77 + x,130 + y,208,34,34 );
gfx.PutPixel( 78 + x,130 + y,208,34,34 );
gfx.PutPixel( 79 + x,130 + y,208,34,34 );
gfx.PutPixel( 80 + x,130 + y,208,34,34 );
gfx.PutPixel( 81 + x,130 + y,208,34,34 );
gfx.PutPixel( 82 + x,130 + y,208,34,34 );
gfx.PutPixel( 83 + x,130 + y,207,23,23 );
gfx.PutPixel( 84 + x,130 + y,215,121,121 );
gfx.PutPixel( 85 + x,130 + y,221,219,219 );
gfx.PutPixel( 86 + x,130 + y,220,208,208 );
gfx.PutPixel( 87 + x,130 + y,220,208,208 );
gfx.PutPixel( 88 + x,130 + y,220,208,208 );
gfx.PutPixel( 89 + x,130 + y,220,208,208 );
gfx.PutPixel( 90 + x,130 + y,220,208,208 );
gfx.PutPixel( 91 + x,130 + y,220,203,203 );
gfx.PutPixel( 92 + x,130 + y,219,189,189 );
gfx.PutPixel( 93 + x,130 + y,217,157,157 );
gfx.PutPixel( 94 + x,130 + y,213,104,104 );
gfx.PutPixel( 95 + x,130 + y,209,45,45 );
gfx.PutPixel( 96 + x,130 + y,207,23,23 );
gfx.PutPixel( 97 + x,130 + y,208,32,32 );
gfx.PutPixel( 98 + x,130 + y,208,34,34 );
gfx.PutPixel( 99 + x,130 + y,208,33,33 );
gfx.PutPixel( 100 + x,130 + y,208,32,32 );
gfx.PutPixel( 101 + x,130 + y,218,169,169 );
gfx.PutPixel( 102 + x,130 + y,221,215,215 );
gfx.PutPixel( 103 + x,130 + y,220,208,208 );
gfx.PutPixel( 104 + x,130 + y,221,214,214 );
gfx.PutPixel( 105 + x,130 + y,212,90,90 );
gfx.PutPixel( 106 + x,130 + y,207,24,24 );
gfx.PutPixel( 107 + x,130 + y,208,34,34 );
gfx.PutPixel( 108 + x,130 + y,208,34,34 );
gfx.PutPixel( 109 + x,130 + y,208,34,34 );
gfx.PutPixel( 110 + x,130 + y,208,34,34 );
gfx.PutPixel( 111 + x,130 + y,208,34,34 );
gfx.PutPixel( 112 + x,130 + y,208,34,34 );
gfx.PutPixel( 113 + x,130 + y,207,24,24 );
gfx.PutPixel( 114 + x,130 + y,216,143,143 );
gfx.PutPixel( 115 + x,130 + y,221,217,217 );
gfx.PutPixel( 116 + x,130 + y,220,208,208 );
gfx.PutPixel( 117 + x,130 + y,221,219,219 );
gfx.PutPixel( 118 + x,130 + y,215,135,135 );
gfx.PutPixel( 119 + x,130 + y,207,25,25 );
gfx.PutPixel( 120 + x,130 + y,208,34,34 );
gfx.PutPixel( 121 + x,130 + y,208,34,34 );
gfx.PutPixel( 122 + x,130 + y,208,34,34 );
gfx.PutPixel( 123 + x,130 + y,208,34,34 );
gfx.PutPixel( 124 + x,130 + y,208,34,34 );
gfx.PutPixel( 125 + x,130 + y,208,34,34 );
gfx.PutPixel( 126 + x,130 + y,208,34,34 );
gfx.PutPixel( 127 + x,130 + y,208,34,34 );
gfx.PutPixel( 128 + x,130 + y,208,34,34 );
gfx.PutPixel( 129 + x,130 + y,208,34,34 );
gfx.PutPixel( 130 + x,130 + y,208,34,34 );
gfx.PutPixel( 131 + x,130 + y,208,34,34 );
gfx.PutPixel( 132 + x,130 + y,208,34,34 );
gfx.PutPixel( 133 + x,130 + y,208,34,34 );
gfx.PutPixel( 134 + x,130 + y,208,34,34 );
gfx.PutPixel( 135 + x,130 + y,208,34,34 );
gfx.PutPixel( 136 + x,130 + y,208,34,34 );
gfx.PutPixel( 137 + x,130 + y,208,34,34 );
gfx.PutPixel( 138 + x,130 + y,208,34,34 );
gfx.PutPixel( 139 + x,130 + y,208,34,34 );
gfx.PutPixel( 140 + x,130 + y,208,34,34 );
gfx.PutPixel( 141 + x,130 + y,208,34,34 );
gfx.PutPixel( 142 + x,130 + y,208,34,34 );
gfx.PutPixel( 143 + x,130 + y,208,34,34 );
gfx.PutPixel( 144 + x,130 + y,208,34,34 );
gfx.PutPixel( 145 + x,130 + y,208,34,34 );
gfx.PutPixel( 146 + x,130 + y,208,34,34 );
gfx.PutPixel( 147 + x,130 + y,208,34,34 );
gfx.PutPixel( 148 + x,130 + y,208,34,34 );
gfx.PutPixel( 149 + x,130 + y,208,34,34 );
gfx.PutPixel( 0 + x,131 + y,208,34,34 );
gfx.PutPixel( 1 + x,131 + y,208,34,34 );
gfx.PutPixel( 2 + x,131 + y,208,34,34 );
gfx.PutPixel( 3 + x,131 + y,208,34,34 );
gfx.PutPixel( 4 + x,131 + y,208,34,34 );
gfx.PutPixel( 5 + x,131 + y,208,34,34 );
gfx.PutPixel( 6 + x,131 + y,208,34,34 );
gfx.PutPixel( 7 + x,131 + y,208,34,34 );
gfx.PutPixel( 8 + x,131 + y,208,34,34 );
gfx.PutPixel( 9 + x,131 + y,208,34,34 );
gfx.PutPixel( 10 + x,131 + y,208,34,34 );
gfx.PutPixel( 11 + x,131 + y,208,34,34 );
gfx.PutPixel( 12 + x,131 + y,208,34,34 );
gfx.PutPixel( 13 + x,131 + y,208,34,34 );
gfx.PutPixel( 14 + x,131 + y,208,34,34 );
gfx.PutPixel( 15 + x,131 + y,208,34,34 );
gfx.PutPixel( 16 + x,131 + y,208,34,34 );
gfx.PutPixel( 17 + x,131 + y,208,34,34 );
gfx.PutPixel( 18 + x,131 + y,208,34,34 );
gfx.PutPixel( 19 + x,131 + y,208,34,34 );
gfx.PutPixel( 20 + x,131 + y,208,34,34 );
gfx.PutPixel( 21 + x,131 + y,208,34,34 );
gfx.PutPixel( 22 + x,131 + y,208,34,34 );
gfx.PutPixel( 23 + x,131 + y,208,34,34 );
gfx.PutPixel( 24 + x,131 + y,208,34,34 );
gfx.PutPixel( 25 + x,131 + y,208,34,34 );
gfx.PutPixel( 26 + x,131 + y,208,34,34 );
gfx.PutPixel( 27 + x,131 + y,208,34,34 );
gfx.PutPixel( 28 + x,131 + y,208,34,34 );
gfx.PutPixel( 29 + x,131 + y,208,34,34 );
gfx.PutPixel( 30 + x,131 + y,208,34,34 );
gfx.PutPixel( 31 + x,131 + y,208,34,34 );
gfx.PutPixel( 32 + x,131 + y,208,33,33 );
gfx.PutPixel( 33 + x,131 + y,208,41,41 );
gfx.PutPixel( 34 + x,131 + y,209,48,48 );
gfx.PutPixel( 35 + x,131 + y,209,47,47 );
gfx.PutPixel( 36 + x,131 + y,209,47,47 );
gfx.PutPixel( 37 + x,131 + y,209,47,47 );
gfx.PutPixel( 38 + x,131 + y,209,47,47 );
gfx.PutPixel( 39 + x,131 + y,209,47,47 );
gfx.PutPixel( 40 + x,131 + y,209,47,47 );
gfx.PutPixel( 41 + x,131 + y,209,47,47 );
gfx.PutPixel( 42 + x,131 + y,209,47,47 );
gfx.PutPixel( 43 + x,131 + y,209,47,47 );
gfx.PutPixel( 44 + x,131 + y,209,48,48 );
gfx.PutPixel( 45 + x,131 + y,208,36,36 );
gfx.PutPixel( 46 + x,131 + y,209,43,43 );
gfx.PutPixel( 47 + x,131 + y,209,49,49 );
gfx.PutPixel( 48 + x,131 + y,209,47,47 );
gfx.PutPixel( 49 + x,131 + y,209,48,48 );
gfx.PutPixel( 50 + x,131 + y,208,40,40 );
gfx.PutPixel( 51 + x,131 + y,208,32,32 );
gfx.PutPixel( 52 + x,131 + y,208,34,34 );
gfx.PutPixel( 53 + x,131 + y,208,34,34 );
gfx.PutPixel( 54 + x,131 + y,208,34,34 );
gfx.PutPixel( 55 + x,131 + y,208,34,34 );
gfx.PutPixel( 56 + x,131 + y,208,34,34 );
gfx.PutPixel( 57 + x,131 + y,208,34,34 );
gfx.PutPixel( 58 + x,131 + y,208,34,34 );
gfx.PutPixel( 59 + x,131 + y,208,32,32 );
gfx.PutPixel( 60 + x,131 + y,209,45,45 );
gfx.PutPixel( 61 + x,131 + y,209,48,48 );
gfx.PutPixel( 62 + x,131 + y,209,47,47 );
gfx.PutPixel( 63 + x,131 + y,209,49,49 );
gfx.PutPixel( 64 + x,131 + y,208,40,40 );
gfx.PutPixel( 65 + x,131 + y,208,33,33 );
gfx.PutPixel( 66 + x,131 + y,208,34,34 );
gfx.PutPixel( 67 + x,131 + y,209,44,44 );
gfx.PutPixel( 68 + x,131 + y,209,48,48 );
gfx.PutPixel( 69 + x,131 + y,209,48,48 );
gfx.PutPixel( 70 + x,131 + y,209,44,44 );
gfx.PutPixel( 71 + x,131 + y,208,34,34 );
gfx.PutPixel( 72 + x,131 + y,208,34,34 );
gfx.PutPixel( 73 + x,131 + y,208,34,34 );
gfx.PutPixel( 74 + x,131 + y,208,34,34 );
gfx.PutPixel( 75 + x,131 + y,208,34,34 );
gfx.PutPixel( 76 + x,131 + y,208,34,34 );
gfx.PutPixel( 77 + x,131 + y,208,34,34 );
gfx.PutPixel( 78 + x,131 + y,208,34,34 );
gfx.PutPixel( 79 + x,131 + y,208,34,34 );
gfx.PutPixel( 80 + x,131 + y,208,34,34 );
gfx.PutPixel( 81 + x,131 + y,208,34,34 );
gfx.PutPixel( 82 + x,131 + y,208,34,34 );
gfx.PutPixel( 83 + x,131 + y,208,33,33 );
gfx.PutPixel( 84 + x,131 + y,208,41,41 );
gfx.PutPixel( 85 + x,131 + y,209,48,48 );
gfx.PutPixel( 86 + x,131 + y,209,47,47 );
gfx.PutPixel( 87 + x,131 + y,209,47,47 );
gfx.PutPixel( 88 + x,131 + y,209,47,47 );
gfx.PutPixel( 89 + x,131 + y,209,47,47 );
gfx.PutPixel( 90 + x,131 + y,209,47,47 );
gfx.PutPixel( 91 + x,131 + y,209,45,45 );
gfx.PutPixel( 92 + x,131 + y,208,36,36 );
gfx.PutPixel( 93 + x,131 + y,207,25,25 );
gfx.PutPixel( 94 + x,131 + y,207,23,23 );
gfx.PutPixel( 95 + x,131 + y,208,31,31 );
gfx.PutPixel( 96 + x,131 + y,208,34,34 );
gfx.PutPixel( 97 + x,131 + y,208,34,34 );
gfx.PutPixel( 98 + x,131 + y,208,34,34 );
gfx.PutPixel( 99 + x,131 + y,208,34,34 );
gfx.PutPixel( 100 + x,131 + y,208,36,36 );
gfx.PutPixel( 101 + x,131 + y,209,49,49 );
gfx.PutPixel( 102 + x,131 + y,209,47,47 );
gfx.PutPixel( 103 + x,131 + y,209,47,47 );
gfx.PutPixel( 104 + x,131 + y,209,47,47 );
gfx.PutPixel( 105 + x,131 + y,208,34,34 );
gfx.PutPixel( 106 + x,131 + y,208,34,34 );
gfx.PutPixel( 107 + x,131 + y,208,34,34 );
gfx.PutPixel( 108 + x,131 + y,208,34,34 );
gfx.PutPixel( 109 + x,131 + y,208,34,34 );
gfx.PutPixel( 110 + x,131 + y,208,34,34 );
gfx.PutPixel( 111 + x,131 + y,208,34,34 );
gfx.PutPixel( 112 + x,131 + y,208,34,34 );
gfx.PutPixel( 113 + x,131 + y,208,33,33 );
gfx.PutPixel( 114 + x,131 + y,208,37,37 );
gfx.PutPixel( 115 + x,131 + y,209,48,48 );
gfx.PutPixel( 116 + x,131 + y,209,47,47 );
gfx.PutPixel( 117 + x,131 + y,209,48,48 );
gfx.PutPixel( 118 + x,131 + y,209,47,47 );
gfx.PutPixel( 119 + x,131 + y,208,34,34 );
gfx.PutPixel( 120 + x,131 + y,208,34,34 );
gfx.PutPixel( 121 + x,131 + y,208,34,34 );
gfx.PutPixel( 122 + x,131 + y,208,34,34 );
gfx.PutPixel( 123 + x,131 + y,208,34,34 );
gfx.PutPixel( 124 + x,131 + y,208,34,34 );
gfx.PutPixel( 125 + x,131 + y,208,34,34 );
gfx.PutPixel( 126 + x,131 + y,208,34,34 );
gfx.PutPixel( 127 + x,131 + y,208,34,34 );
gfx.PutPixel( 128 + x,131 + y,208,34,34 );
gfx.PutPixel( 129 + x,131 + y,208,34,34 );
gfx.PutPixel( 130 + x,131 + y,208,34,34 );
gfx.PutPixel( 131 + x,131 + y,208,34,34 );
gfx.PutPixel( 132 + x,131 + y,208,34,34 );
gfx.PutPixel( 133 + x,131 + y,208,34,34 );
gfx.PutPixel( 134 + x,131 + y,208,34,34 );
gfx.PutPixel( 135 + x,131 + y,208,34,34 );
gfx.PutPixel( 136 + x,131 + y,208,34,34 );
gfx.PutPixel( 137 + x,131 + y,208,34,34 );
gfx.PutPixel( 138 + x,131 + y,208,34,34 );
gfx.PutPixel( 139 + x,131 + y,208,34,34 );
gfx.PutPixel( 140 + x,131 + y,208,34,34 );
gfx.PutPixel( 141 + x,131 + y,208,34,34 );
gfx.PutPixel( 142 + x,131 + y,208,34,34 );
gfx.PutPixel( 143 + x,131 + y,208,34,34 );
gfx.PutPixel( 144 + x,131 + y,208,34,34 );
gfx.PutPixel( 145 + x,131 + y,208,34,34 );
gfx.PutPixel( 146 + x,131 + y,208,34,34 );
gfx.PutPixel( 147 + x,131 + y,208,34,34 );
gfx.PutPixel( 148 + x,131 + y,208,34,34 );
gfx.PutPixel( 149 + x,131 + y,208,34,34 );
gfx.PutPixel( 0 + x,132 + y,208,34,34 );
gfx.PutPixel( 1 + x,132 + y,208,34,34 );
gfx.PutPixel( 2 + x,132 + y,208,34,34 );
gfx.PutPixel( 3 + x,132 + y,208,34,34 );
gfx.PutPixel( 4 + x,132 + y,208,34,34 );
gfx.PutPixel( 5 + x,132 + y,208,34,34 );
gfx.PutPixel( 6 + x,132 + y,208,34,34 );
gfx.PutPixel( 7 + x,132 + y,208,34,34 );
gfx.PutPixel( 8 + x,132 + y,208,34,34 );
gfx.PutPixel( 9 + x,132 + y,208,34,34 );
gfx.PutPixel( 10 + x,132 + y,208,34,34 );
gfx.PutPixel( 11 + x,132 + y,208,34,34 );
gfx.PutPixel( 12 + x,132 + y,208,34,34 );
gfx.PutPixel( 13 + x,132 + y,208,34,34 );
gfx.PutPixel( 14 + x,132 + y,208,34,34 );
gfx.PutPixel( 15 + x,132 + y,208,34,34 );
gfx.PutPixel( 16 + x,132 + y,208,34,34 );
gfx.PutPixel( 17 + x,132 + y,208,34,34 );
gfx.PutPixel( 18 + x,132 + y,208,34,34 );
gfx.PutPixel( 19 + x,132 + y,208,34,34 );
gfx.PutPixel( 20 + x,132 + y,208,34,34 );
gfx.PutPixel( 21 + x,132 + y,208,34,34 );
gfx.PutPixel( 22 + x,132 + y,208,34,34 );
gfx.PutPixel( 23 + x,132 + y,208,34,34 );
gfx.PutPixel( 24 + x,132 + y,208,34,34 );
gfx.PutPixel( 25 + x,132 + y,208,34,34 );
gfx.PutPixel( 26 + x,132 + y,208,34,34 );
gfx.PutPixel( 27 + x,132 + y,208,34,34 );
gfx.PutPixel( 28 + x,132 + y,208,34,34 );
gfx.PutPixel( 29 + x,132 + y,208,34,34 );
gfx.PutPixel( 30 + x,132 + y,208,34,34 );
gfx.PutPixel( 31 + x,132 + y,208,34,34 );
gfx.PutPixel( 32 + x,132 + y,208,34,34 );
gfx.PutPixel( 33 + x,132 + y,208,32,32 );
gfx.PutPixel( 34 + x,132 + y,208,30,30 );
gfx.PutPixel( 35 + x,132 + y,208,30,30 );
gfx.PutPixel( 36 + x,132 + y,208,30,30 );
gfx.PutPixel( 37 + x,132 + y,208,30,30 );
gfx.PutPixel( 38 + x,132 + y,208,30,30 );
gfx.PutPixel( 39 + x,132 + y,208,30,30 );
gfx.PutPixel( 40 + x,132 + y,208,30,30 );
gfx.PutPixel( 41 + x,132 + y,208,30,30 );
gfx.PutPixel( 42 + x,132 + y,208,30,30 );
gfx.PutPixel( 43 + x,132 + y,208,30,30 );
gfx.PutPixel( 44 + x,132 + y,208,30,30 );
gfx.PutPixel( 45 + x,132 + y,208,33,33 );
gfx.PutPixel( 46 + x,132 + y,208,33,33 );
gfx.PutPixel( 47 + x,132 + y,208,30,30 );
gfx.PutPixel( 48 + x,132 + y,208,30,30 );
gfx.PutPixel( 49 + x,132 + y,208,30,30 );
gfx.PutPixel( 50 + x,132 + y,208,32,32 );
gfx.PutPixel( 51 + x,132 + y,208,34,34 );
gfx.PutPixel( 52 + x,132 + y,208,34,34 );
gfx.PutPixel( 53 + x,132 + y,208,34,34 );
gfx.PutPixel( 54 + x,132 + y,208,34,34 );
gfx.PutPixel( 55 + x,132 + y,208,34,34 );
gfx.PutPixel( 56 + x,132 + y,208,34,34 );
gfx.PutPixel( 57 + x,132 + y,208,34,34 );
gfx.PutPixel( 58 + x,132 + y,208,34,34 );
gfx.PutPixel( 59 + x,132 + y,208,34,34 );
gfx.PutPixel( 60 + x,132 + y,208,31,31 );
gfx.PutPixel( 61 + x,132 + y,208,30,30 );
gfx.PutPixel( 62 + x,132 + y,208,30,30 );
gfx.PutPixel( 63 + x,132 + y,208,30,30 );
gfx.PutPixel( 64 + x,132 + y,208,33,33 );
gfx.PutPixel( 65 + x,132 + y,208,34,34 );
gfx.PutPixel( 66 + x,132 + y,208,34,34 );
gfx.PutPixel( 67 + x,132 + y,208,31,31 );
gfx.PutPixel( 68 + x,132 + y,208,30,30 );
gfx.PutPixel( 69 + x,132 + y,208,30,30 );
gfx.PutPixel( 70 + x,132 + y,208,31,31 );
gfx.PutPixel( 71 + x,132 + y,208,34,34 );
gfx.PutPixel( 72 + x,132 + y,208,34,34 );
gfx.PutPixel( 73 + x,132 + y,208,34,34 );
gfx.PutPixel( 74 + x,132 + y,208,34,34 );
gfx.PutPixel( 75 + x,132 + y,208,34,34 );
gfx.PutPixel( 76 + x,132 + y,208,34,34 );
gfx.PutPixel( 77 + x,132 + y,208,34,34 );
gfx.PutPixel( 78 + x,132 + y,208,34,34 );
gfx.PutPixel( 79 + x,132 + y,208,34,34 );
gfx.PutPixel( 80 + x,132 + y,208,34,34 );
gfx.PutPixel( 81 + x,132 + y,208,34,34 );
gfx.PutPixel( 82 + x,132 + y,208,34,34 );
gfx.PutPixel( 83 + x,132 + y,208,34,34 );
gfx.PutPixel( 84 + x,132 + y,208,32,32 );
gfx.PutPixel( 85 + x,132 + y,208,30,30 );
gfx.PutPixel( 86 + x,132 + y,208,30,30 );
gfx.PutPixel( 87 + x,132 + y,208,30,30 );
gfx.PutPixel( 88 + x,132 + y,208,30,30 );
gfx.PutPixel( 89 + x,132 + y,208,30,30 );
gfx.PutPixel( 90 + x,132 + y,208,30,30 );
gfx.PutPixel( 91 + x,132 + y,208,31,31 );
gfx.PutPixel( 92 + x,132 + y,208,32,32 );
gfx.PutPixel( 93 + x,132 + y,208,34,34 );
gfx.PutPixel( 94 + x,132 + y,208,34,34 );
gfx.PutPixel( 95 + x,132 + y,208,34,34 );
gfx.PutPixel( 96 + x,132 + y,208,34,34 );
gfx.PutPixel( 97 + x,132 + y,208,34,34 );
gfx.PutPixel( 98 + x,132 + y,208,34,34 );
gfx.PutPixel( 99 + x,132 + y,208,34,34 );
gfx.PutPixel( 100 + x,132 + y,208,34,34 );
gfx.PutPixel( 101 + x,132 + y,208,31,31 );
gfx.PutPixel( 102 + x,132 + y,208,30,30 );
gfx.PutPixel( 103 + x,132 + y,208,30,30 );
gfx.PutPixel( 104 + x,132 + y,208,30,30 );
gfx.PutPixel( 105 + x,132 + y,208,33,33 );
gfx.PutPixel( 106 + x,132 + y,208,34,34 );
gfx.PutPixel( 107 + x,132 + y,208,34,34 );
gfx.PutPixel( 108 + x,132 + y,208,34,34 );
gfx.PutPixel( 109 + x,132 + y,208,34,34 );
gfx.PutPixel( 110 + x,132 + y,208,34,34 );
gfx.PutPixel( 111 + x,132 + y,208,34,34 );
gfx.PutPixel( 112 + x,132 + y,208,34,34 );
gfx.PutPixel( 113 + x,132 + y,208,34,34 );
gfx.PutPixel( 114 + x,132 + y,208,32,32 );
gfx.PutPixel( 115 + x,132 + y,208,30,30 );
gfx.PutPixel( 116 + x,132 + y,208,30,30 );
gfx.PutPixel( 117 + x,132 + y,208,30,30 );
gfx.PutPixel( 118 + x,132 + y,208,31,31 );
gfx.PutPixel( 119 + x,132 + y,208,34,34 );
gfx.PutPixel( 120 + x,132 + y,208,34,34 );
gfx.PutPixel( 121 + x,132 + y,208,34,34 );
gfx.PutPixel( 122 + x,132 + y,208,34,34 );
gfx.PutPixel( 123 + x,132 + y,208,34,34 );
gfx.PutPixel( 124 + x,132 + y,208,34,34 );
gfx.PutPixel( 125 + x,132 + y,208,34,34 );
gfx.PutPixel( 126 + x,132 + y,208,34,34 );
gfx.PutPixel( 127 + x,132 + y,208,34,34 );
gfx.PutPixel( 128 + x,132 + y,208,34,34 );
gfx.PutPixel( 129 + x,132 + y,208,34,34 );
gfx.PutPixel( 130 + x,132 + y,208,34,34 );
gfx.PutPixel( 131 + x,132 + y,208,34,34 );
gfx.PutPixel( 132 + x,132 + y,208,34,34 );
gfx.PutPixel( 133 + x,132 + y,208,34,34 );
gfx.PutPixel( 134 + x,132 + y,208,34,34 );
gfx.PutPixel( 135 + x,132 + y,208,34,34 );
gfx.PutPixel( 136 + x,132 + y,208,34,34 );
gfx.PutPixel( 137 + x,132 + y,208,34,34 );
gfx.PutPixel( 138 + x,132 + y,208,34,34 );
gfx.PutPixel( 139 + x,132 + y,208,34,34 );
gfx.PutPixel( 140 + x,132 + y,208,34,34 );
gfx.PutPixel( 141 + x,132 + y,208,34,34 );
gfx.PutPixel( 142 + x,132 + y,208,34,34 );
gfx.PutPixel( 143 + x,132 + y,208,34,34 );
gfx.PutPixel( 144 + x,132 + y,208,34,34 );
gfx.PutPixel( 145 + x,132 + y,208,34,34 );
gfx.PutPixel( 146 + x,132 + y,208,34,34 );
gfx.PutPixel( 147 + x,132 + y,208,34,34 );
gfx.PutPixel( 148 + x,132 + y,208,34,34 );
gfx.PutPixel( 149 + x,132 + y,208,34,34 );
gfx.PutPixel( 0 + x,133 + y,208,34,34 );
gfx.PutPixel( 1 + x,133 + y,208,34,34 );
gfx.PutPixel( 2 + x,133 + y,208,34,34 );
gfx.PutPixel( 3 + x,133 + y,208,34,34 );
gfx.PutPixel( 4 + x,133 + y,208,34,34 );
gfx.PutPixel( 5 + x,133 + y,208,34,34 );
gfx.PutPixel( 6 + x,133 + y,208,34,34 );
gfx.PutPixel( 7 + x,133 + y,208,34,34 );
gfx.PutPixel( 8 + x,133 + y,208,34,34 );
gfx.PutPixel( 9 + x,133 + y,208,34,34 );
gfx.PutPixel( 10 + x,133 + y,208,34,34 );
gfx.PutPixel( 11 + x,133 + y,208,34,34 );
gfx.PutPixel( 12 + x,133 + y,208,34,34 );
gfx.PutPixel( 13 + x,133 + y,208,34,34 );
gfx.PutPixel( 14 + x,133 + y,208,34,34 );
gfx.PutPixel( 15 + x,133 + y,208,34,34 );
gfx.PutPixel( 16 + x,133 + y,208,34,34 );
gfx.PutPixel( 17 + x,133 + y,208,34,34 );
gfx.PutPixel( 18 + x,133 + y,208,34,34 );
gfx.PutPixel( 19 + x,133 + y,208,34,34 );
gfx.PutPixel( 20 + x,133 + y,208,34,34 );
gfx.PutPixel( 21 + x,133 + y,208,34,34 );
gfx.PutPixel( 22 + x,133 + y,208,34,34 );
gfx.PutPixel( 23 + x,133 + y,208,34,34 );
gfx.PutPixel( 24 + x,133 + y,208,34,34 );
gfx.PutPixel( 25 + x,133 + y,208,34,34 );
gfx.PutPixel( 26 + x,133 + y,208,34,34 );
gfx.PutPixel( 27 + x,133 + y,208,34,34 );
gfx.PutPixel( 28 + x,133 + y,208,34,34 );
gfx.PutPixel( 29 + x,133 + y,208,34,34 );
gfx.PutPixel( 30 + x,133 + y,208,34,34 );
gfx.PutPixel( 31 + x,133 + y,208,34,34 );
gfx.PutPixel( 32 + x,133 + y,208,34,34 );
gfx.PutPixel( 33 + x,133 + y,208,34,34 );
gfx.PutPixel( 34 + x,133 + y,208,34,34 );
gfx.PutPixel( 35 + x,133 + y,208,34,34 );
gfx.PutPixel( 36 + x,133 + y,208,34,34 );
gfx.PutPixel( 37 + x,133 + y,208,34,34 );
gfx.PutPixel( 38 + x,133 + y,208,34,34 );
gfx.PutPixel( 39 + x,133 + y,208,34,34 );
gfx.PutPixel( 40 + x,133 + y,208,34,34 );
gfx.PutPixel( 41 + x,133 + y,208,34,34 );
gfx.PutPixel( 42 + x,133 + y,208,34,34 );
gfx.PutPixel( 43 + x,133 + y,208,34,34 );
gfx.PutPixel( 44 + x,133 + y,208,34,34 );
gfx.PutPixel( 45 + x,133 + y,208,34,34 );
gfx.PutPixel( 46 + x,133 + y,208,34,34 );
gfx.PutPixel( 47 + x,133 + y,208,34,34 );
gfx.PutPixel( 48 + x,133 + y,208,34,34 );
gfx.PutPixel( 49 + x,133 + y,208,34,34 );
gfx.PutPixel( 50 + x,133 + y,208,34,34 );
gfx.PutPixel( 51 + x,133 + y,208,34,34 );
gfx.PutPixel( 52 + x,133 + y,208,34,34 );
gfx.PutPixel( 53 + x,133 + y,208,34,34 );
gfx.PutPixel( 54 + x,133 + y,208,34,34 );
gfx.PutPixel( 55 + x,133 + y,208,34,34 );
gfx.PutPixel( 56 + x,133 + y,208,34,34 );
gfx.PutPixel( 57 + x,133 + y,208,34,34 );
gfx.PutPixel( 58 + x,133 + y,208,34,34 );
gfx.PutPixel( 59 + x,133 + y,208,34,34 );
gfx.PutPixel( 60 + x,133 + y,208,34,34 );
gfx.PutPixel( 61 + x,133 + y,208,34,34 );
gfx.PutPixel( 62 + x,133 + y,208,34,34 );
gfx.PutPixel( 63 + x,133 + y,208,34,34 );
gfx.PutPixel( 64 + x,133 + y,208,34,34 );
gfx.PutPixel( 65 + x,133 + y,208,34,34 );
gfx.PutPixel( 66 + x,133 + y,208,34,34 );
gfx.PutPixel( 67 + x,133 + y,208,34,34 );
gfx.PutPixel( 68 + x,133 + y,208,34,34 );
gfx.PutPixel( 69 + x,133 + y,208,34,34 );
gfx.PutPixel( 70 + x,133 + y,208,34,34 );
gfx.PutPixel( 71 + x,133 + y,208,34,34 );
gfx.PutPixel( 72 + x,133 + y,208,34,34 );
gfx.PutPixel( 73 + x,133 + y,208,34,34 );
gfx.PutPixel( 74 + x,133 + y,208,34,34 );
gfx.PutPixel( 75 + x,133 + y,208,34,34 );
gfx.PutPixel( 76 + x,133 + y,208,34,34 );
gfx.PutPixel( 77 + x,133 + y,208,34,34 );
gfx.PutPixel( 78 + x,133 + y,208,34,34 );
gfx.PutPixel( 79 + x,133 + y,208,34,34 );
gfx.PutPixel( 80 + x,133 + y,208,34,34 );
gfx.PutPixel( 81 + x,133 + y,208,34,34 );
gfx.PutPixel( 82 + x,133 + y,208,34,34 );
gfx.PutPixel( 83 + x,133 + y,208,34,34 );
gfx.PutPixel( 84 + x,133 + y,208,34,34 );
gfx.PutPixel( 85 + x,133 + y,208,34,34 );
gfx.PutPixel( 86 + x,133 + y,208,34,34 );
gfx.PutPixel( 87 + x,133 + y,208,34,34 );
gfx.PutPixel( 88 + x,133 + y,208,34,34 );
gfx.PutPixel( 89 + x,133 + y,208,34,34 );
gfx.PutPixel( 90 + x,133 + y,208,34,34 );
gfx.PutPixel( 91 + x,133 + y,208,34,34 );
gfx.PutPixel( 92 + x,133 + y,208,34,34 );
gfx.PutPixel( 93 + x,133 + y,208,34,34 );
gfx.PutPixel( 94 + x,133 + y,208,34,34 );
gfx.PutPixel( 95 + x,133 + y,208,34,34 );
gfx.PutPixel( 96 + x,133 + y,208,34,34 );
gfx.PutPixel( 97 + x,133 + y,208,34,34 );
gfx.PutPixel( 98 + x,133 + y,208,34,34 );
gfx.PutPixel( 99 + x,133 + y,208,34,34 );
gfx.PutPixel( 100 + x,133 + y,208,34,34 );
gfx.PutPixel( 101 + x,133 + y,208,34,34 );
gfx.PutPixel( 102 + x,133 + y,208,34,34 );
gfx.PutPixel( 103 + x,133 + y,208,34,34 );
gfx.PutPixel( 104 + x,133 + y,208,34,34 );
gfx.PutPixel( 105 + x,133 + y,208,34,34 );
gfx.PutPixel( 106 + x,133 + y,208,34,34 );
gfx.PutPixel( 107 + x,133 + y,208,34,34 );
gfx.PutPixel( 108 + x,133 + y,208,34,34 );
gfx.PutPixel( 109 + x,133 + y,208,34,34 );
gfx.PutPixel( 110 + x,133 + y,208,34,34 );
gfx.PutPixel( 111 + x,133 + y,208,34,34 );
gfx.PutPixel( 112 + x,133 + y,208,34,34 );
gfx.PutPixel( 113 + x,133 + y,208,34,34 );
gfx.PutPixel( 114 + x,133 + y,208,34,34 );
gfx.PutPixel( 115 + x,133 + y,208,34,34 );
gfx.PutPixel( 116 + x,133 + y,208,34,34 );
gfx.PutPixel( 117 + x,133 + y,208,34,34 );
gfx.PutPixel( 118 + x,133 + y,208,34,34 );
gfx.PutPixel( 119 + x,133 + y,208,34,34 );
gfx.PutPixel( 120 + x,133 + y,208,34,34 );
gfx.PutPixel( 121 + x,133 + y,208,34,34 );
gfx.PutPixel( 122 + x,133 + y,208,34,34 );
gfx.PutPixel( 123 + x,133 + y,208,34,34 );
gfx.PutPixel( 124 + x,133 + y,208,34,34 );
gfx.PutPixel( 125 + x,133 + y,208,34,34 );
gfx.PutPixel( 126 + x,133 + y,208,34,34 );
gfx.PutPixel( 127 + x,133 + y,208,34,34 );
gfx.PutPixel( 128 + x,133 + y,208,34,34 );
gfx.PutPixel( 129 + x,133 + y,208,34,34 );
gfx.PutPixel( 130 + x,133 + y,208,34,34 );
gfx.PutPixel( 131 + x,133 + y,208,34,34 );
gfx.PutPixel( 132 + x,133 + y,208,34,34 );
gfx.PutPixel( 133 + x,133 + y,208,34,34 );
gfx.PutPixel( 134 + x,133 + y,208,34,34 );
gfx.PutPixel( 135 + x,133 + y,208,34,34 );
gfx.PutPixel( 136 + x,133 + y,208,34,34 );
gfx.PutPixel( 137 + x,133 + y,208,34,34 );
gfx.PutPixel( 138 + x,133 + y,208,34,34 );
gfx.PutPixel( 139 + x,133 + y,208,34,34 );
gfx.PutPixel( 140 + x,133 + y,208,34,34 );
gfx.PutPixel( 141 + x,133 + y,208,34,34 );
gfx.PutPixel( 142 + x,133 + y,208,34,34 );
gfx.PutPixel( 143 + x,133 + y,208,34,34 );
gfx.PutPixel( 144 + x,133 + y,208,34,34 );
gfx.PutPixel( 145 + x,133 + y,208,34,34 );
gfx.PutPixel( 146 + x,133 + y,208,34,34 );
gfx.PutPixel( 147 + x,133 + y,208,34,34 );
gfx.PutPixel( 148 + x,133 + y,208,34,34 );
gfx.PutPixel( 149 + x,133 + y,208,34,34 );
gfx.PutPixel( 0 + x,134 + y,208,34,34 );
gfx.PutPixel( 1 + x,134 + y,208,34,34 );
gfx.PutPixel( 2 + x,134 + y,208,34,34 );
gfx.PutPixel( 3 + x,134 + y,208,34,34 );
gfx.PutPixel( 4 + x,134 + y,208,34,34 );
gfx.PutPixel( 5 + x,134 + y,208,34,34 );
gfx.PutPixel( 6 + x,134 + y,208,34,34 );
gfx.PutPixel( 7 + x,134 + y,208,34,34 );
gfx.PutPixel( 8 + x,134 + y,208,34,34 );
gfx.PutPixel( 9 + x,134 + y,208,34,34 );
gfx.PutPixel( 10 + x,134 + y,208,34,34 );
gfx.PutPixel( 11 + x,134 + y,208,34,34 );
gfx.PutPixel( 12 + x,134 + y,208,34,34 );
gfx.PutPixel( 13 + x,134 + y,208,34,34 );
gfx.PutPixel( 14 + x,134 + y,208,34,34 );
gfx.PutPixel( 15 + x,134 + y,208,34,34 );
gfx.PutPixel( 16 + x,134 + y,208,34,34 );
gfx.PutPixel( 17 + x,134 + y,208,34,34 );
gfx.PutPixel( 18 + x,134 + y,208,34,34 );
gfx.PutPixel( 19 + x,134 + y,208,34,34 );
gfx.PutPixel( 20 + x,134 + y,208,34,34 );
gfx.PutPixel( 21 + x,134 + y,208,34,34 );
gfx.PutPixel( 22 + x,134 + y,208,34,34 );
gfx.PutPixel( 23 + x,134 + y,208,34,34 );
gfx.PutPixel( 24 + x,134 + y,208,34,34 );
gfx.PutPixel( 25 + x,134 + y,208,34,34 );
gfx.PutPixel( 26 + x,134 + y,208,34,34 );
gfx.PutPixel( 27 + x,134 + y,208,34,34 );
gfx.PutPixel( 28 + x,134 + y,208,34,34 );
gfx.PutPixel( 29 + x,134 + y,208,34,34 );
gfx.PutPixel( 30 + x,134 + y,208,34,34 );
gfx.PutPixel( 31 + x,134 + y,208,34,34 );
gfx.PutPixel( 32 + x,134 + y,208,34,34 );
gfx.PutPixel( 33 + x,134 + y,208,34,34 );
gfx.PutPixel( 34 + x,134 + y,208,34,34 );
gfx.PutPixel( 35 + x,134 + y,208,34,34 );
gfx.PutPixel( 36 + x,134 + y,208,34,34 );
gfx.PutPixel( 37 + x,134 + y,208,34,34 );
gfx.PutPixel( 38 + x,134 + y,208,34,34 );
gfx.PutPixel( 39 + x,134 + y,208,34,34 );
gfx.PutPixel( 40 + x,134 + y,208,34,34 );
gfx.PutPixel( 41 + x,134 + y,208,34,34 );
gfx.PutPixel( 42 + x,134 + y,208,34,34 );
gfx.PutPixel( 43 + x,134 + y,208,34,34 );
gfx.PutPixel( 44 + x,134 + y,208,34,34 );
gfx.PutPixel( 45 + x,134 + y,208,34,34 );
gfx.PutPixel( 46 + x,134 + y,208,34,34 );
gfx.PutPixel( 47 + x,134 + y,208,34,34 );
gfx.PutPixel( 48 + x,134 + y,208,34,34 );
gfx.PutPixel( 49 + x,134 + y,208,34,34 );
gfx.PutPixel( 50 + x,134 + y,208,34,34 );
gfx.PutPixel( 51 + x,134 + y,208,34,34 );
gfx.PutPixel( 52 + x,134 + y,208,34,34 );
gfx.PutPixel( 53 + x,134 + y,208,34,34 );
gfx.PutPixel( 54 + x,134 + y,208,34,34 );
gfx.PutPixel( 55 + x,134 + y,208,34,34 );
gfx.PutPixel( 56 + x,134 + y,208,34,34 );
gfx.PutPixel( 57 + x,134 + y,208,34,34 );
gfx.PutPixel( 58 + x,134 + y,208,34,34 );
gfx.PutPixel( 59 + x,134 + y,208,34,34 );
gfx.PutPixel( 60 + x,134 + y,208,34,34 );
gfx.PutPixel( 61 + x,134 + y,208,34,34 );
gfx.PutPixel( 62 + x,134 + y,208,34,34 );
gfx.PutPixel( 63 + x,134 + y,208,34,34 );
gfx.PutPixel( 64 + x,134 + y,208,34,34 );
gfx.PutPixel( 65 + x,134 + y,208,34,34 );
gfx.PutPixel( 66 + x,134 + y,208,34,34 );
gfx.PutPixel( 67 + x,134 + y,208,34,34 );
gfx.PutPixel( 68 + x,134 + y,208,34,34 );
gfx.PutPixel( 69 + x,134 + y,208,34,34 );
gfx.PutPixel( 70 + x,134 + y,208,34,34 );
gfx.PutPixel( 71 + x,134 + y,208,34,34 );
gfx.PutPixel( 72 + x,134 + y,208,34,34 );
gfx.PutPixel( 73 + x,134 + y,208,34,34 );
gfx.PutPixel( 74 + x,134 + y,208,34,34 );
gfx.PutPixel( 75 + x,134 + y,208,34,34 );
gfx.PutPixel( 76 + x,134 + y,208,34,34 );
gfx.PutPixel( 77 + x,134 + y,208,34,34 );
gfx.PutPixel( 78 + x,134 + y,208,34,34 );
gfx.PutPixel( 79 + x,134 + y,208,34,34 );
gfx.PutPixel( 80 + x,134 + y,208,34,34 );
gfx.PutPixel( 81 + x,134 + y,208,34,34 );
gfx.PutPixel( 82 + x,134 + y,208,34,34 );
gfx.PutPixel( 83 + x,134 + y,208,34,34 );
gfx.PutPixel( 84 + x,134 + y,208,34,34 );
gfx.PutPixel( 85 + x,134 + y,208,34,34 );
gfx.PutPixel( 86 + x,134 + y,208,34,34 );
gfx.PutPixel( 87 + x,134 + y,208,34,34 );
gfx.PutPixel( 88 + x,134 + y,208,34,34 );
gfx.PutPixel( 89 + x,134 + y,208,34,34 );
gfx.PutPixel( 90 + x,134 + y,208,34,34 );
gfx.PutPixel( 91 + x,134 + y,208,34,34 );
gfx.PutPixel( 92 + x,134 + y,208,34,34 );
gfx.PutPixel( 93 + x,134 + y,208,34,34 );
gfx.PutPixel( 94 + x,134 + y,208,34,34 );
gfx.PutPixel( 95 + x,134 + y,208,34,34 );
gfx.PutPixel( 96 + x,134 + y,208,34,34 );
gfx.PutPixel( 97 + x,134 + y,208,34,34 );
gfx.PutPixel( 98 + x,134 + y,208,34,34 );
gfx.PutPixel( 99 + x,134 + y,208,34,34 );
gfx.PutPixel( 100 + x,134 + y,208,34,34 );
gfx.PutPixel( 101 + x,134 + y,208,34,34 );
gfx.PutPixel( 102 + x,134 + y,208,34,34 );
gfx.PutPixel( 103 + x,134 + y,208,34,34 );
gfx.PutPixel( 104 + x,134 + y,208,34,34 );
gfx.PutPixel( 105 + x,134 + y,208,34,34 );
gfx.PutPixel( 106 + x,134 + y,208,34,34 );
gfx.PutPixel( 107 + x,134 + y,208,34,34 );
gfx.PutPixel( 108 + x,134 + y,208,34,34 );
gfx.PutPixel( 109 + x,134 + y,208,34,34 );
gfx.PutPixel( 110 + x,134 + y,208,34,34 );
gfx.PutPixel( 111 + x,134 + y,208,34,34 );
gfx.PutPixel( 112 + x,134 + y,208,34,34 );
gfx.PutPixel( 113 + x,134 + y,208,34,34 );
gfx.PutPixel( 114 + x,134 + y,208,34,34 );
gfx.PutPixel( 115 + x,134 + y,208,34,34 );
gfx.PutPixel( 116 + x,134 + y,208,34,34 );
gfx.PutPixel( 117 + x,134 + y,208,34,34 );
gfx.PutPixel( 118 + x,134 + y,208,34,34 );
gfx.PutPixel( 119 + x,134 + y,208,34,34 );
gfx.PutPixel( 120 + x,134 + y,208,34,34 );
gfx.PutPixel( 121 + x,134 + y,208,34,34 );
gfx.PutPixel( 122 + x,134 + y,208,34,34 );
gfx.PutPixel( 123 + x,134 + y,208,34,34 );
gfx.PutPixel( 124 + x,134 + y,208,34,34 );
gfx.PutPixel( 125 + x,134 + y,208,34,34 );
gfx.PutPixel( 126 + x,134 + y,208,34,34 );
gfx.PutPixel( 127 + x,134 + y,208,34,34 );
gfx.PutPixel( 128 + x,134 + y,208,34,34 );
gfx.PutPixel( 129 + x,134 + y,208,34,34 );
gfx.PutPixel( 130 + x,134 + y,208,34,34 );
gfx.PutPixel( 131 + x,134 + y,208,34,34 );
gfx.PutPixel( 132 + x,134 + y,208,34,34 );
gfx.PutPixel( 133 + x,134 + y,208,34,34 );
gfx.PutPixel( 134 + x,134 + y,208,34,34 );
gfx.PutPixel( 135 + x,134 + y,208,34,34 );
gfx.PutPixel( 136 + x,134 + y,208,34,34 );
gfx.PutPixel( 137 + x,134 + y,208,34,34 );
gfx.PutPixel( 138 + x,134 + y,208,34,34 );
gfx.PutPixel( 139 + x,134 + y,208,34,34 );
gfx.PutPixel( 140 + x,134 + y,208,34,34 );
gfx.PutPixel( 141 + x,134 + y,208,34,34 );
gfx.PutPixel( 142 + x,134 + y,208,34,34 );
gfx.PutPixel( 143 + x,134 + y,208,34,34 );
gfx.PutPixel( 144 + x,134 + y,208,34,34 );
gfx.PutPixel( 145 + x,134 + y,208,34,34 );
gfx.PutPixel( 146 + x,134 + y,208,34,34 );
gfx.PutPixel( 147 + x,134 + y,208,34,34 );
gfx.PutPixel( 148 + x,134 + y,208,34,34 );
gfx.PutPixel( 149 + x,134 + y,208,34,34 );
gfx.PutPixel( 0 + x,135 + y,208,34,34 );
gfx.PutPixel( 1 + x,135 + y,208,34,34 );
gfx.PutPixel( 2 + x,135 + y,208,34,34 );
gfx.PutPixel( 3 + x,135 + y,208,34,34 );
gfx.PutPixel( 4 + x,135 + y,208,34,34 );
gfx.PutPixel( 5 + x,135 + y,208,34,34 );
gfx.PutPixel( 6 + x,135 + y,208,34,34 );
gfx.PutPixel( 7 + x,135 + y,208,34,34 );
gfx.PutPixel( 8 + x,135 + y,208,34,34 );
gfx.PutPixel( 9 + x,135 + y,208,34,34 );
gfx.PutPixel( 10 + x,135 + y,208,34,34 );
gfx.PutPixel( 11 + x,135 + y,208,34,34 );
gfx.PutPixel( 12 + x,135 + y,208,34,34 );
gfx.PutPixel( 13 + x,135 + y,208,34,34 );
gfx.PutPixel( 14 + x,135 + y,208,34,34 );
gfx.PutPixel( 15 + x,135 + y,208,34,34 );
gfx.PutPixel( 16 + x,135 + y,208,34,34 );
gfx.PutPixel( 17 + x,135 + y,208,34,34 );
gfx.PutPixel( 18 + x,135 + y,208,34,34 );
gfx.PutPixel( 19 + x,135 + y,208,34,34 );
gfx.PutPixel( 20 + x,135 + y,208,34,34 );
gfx.PutPixel( 21 + x,135 + y,208,34,34 );
gfx.PutPixel( 22 + x,135 + y,208,34,34 );
gfx.PutPixel( 23 + x,135 + y,208,34,34 );
gfx.PutPixel( 24 + x,135 + y,208,34,34 );
gfx.PutPixel( 25 + x,135 + y,208,34,34 );
gfx.PutPixel( 26 + x,135 + y,208,34,34 );
gfx.PutPixel( 27 + x,135 + y,208,34,34 );
gfx.PutPixel( 28 + x,135 + y,208,34,34 );
gfx.PutPixel( 29 + x,135 + y,208,34,34 );
gfx.PutPixel( 30 + x,135 + y,208,34,34 );
gfx.PutPixel( 31 + x,135 + y,208,34,34 );
gfx.PutPixel( 32 + x,135 + y,208,34,34 );
gfx.PutPixel( 33 + x,135 + y,208,34,34 );
gfx.PutPixel( 34 + x,135 + y,208,34,34 );
gfx.PutPixel( 35 + x,135 + y,208,34,34 );
gfx.PutPixel( 36 + x,135 + y,208,34,34 );
gfx.PutPixel( 37 + x,135 + y,208,34,34 );
gfx.PutPixel( 38 + x,135 + y,208,34,34 );
gfx.PutPixel( 39 + x,135 + y,208,34,34 );
gfx.PutPixel( 40 + x,135 + y,208,34,34 );
gfx.PutPixel( 41 + x,135 + y,208,34,34 );
gfx.PutPixel( 42 + x,135 + y,208,34,34 );
gfx.PutPixel( 43 + x,135 + y,208,34,34 );
gfx.PutPixel( 44 + x,135 + y,208,34,34 );
gfx.PutPixel( 45 + x,135 + y,208,34,34 );
gfx.PutPixel( 46 + x,135 + y,208,34,34 );
gfx.PutPixel( 47 + x,135 + y,208,34,34 );
gfx.PutPixel( 48 + x,135 + y,208,34,34 );
gfx.PutPixel( 49 + x,135 + y,208,34,34 );
gfx.PutPixel( 50 + x,135 + y,208,34,34 );
gfx.PutPixel( 51 + x,135 + y,208,34,34 );
gfx.PutPixel( 52 + x,135 + y,208,34,34 );
gfx.PutPixel( 53 + x,135 + y,208,34,34 );
gfx.PutPixel( 54 + x,135 + y,208,34,34 );
gfx.PutPixel( 55 + x,135 + y,208,34,34 );
gfx.PutPixel( 56 + x,135 + y,208,34,34 );
gfx.PutPixel( 57 + x,135 + y,208,34,34 );
gfx.PutPixel( 58 + x,135 + y,208,34,34 );
gfx.PutPixel( 59 + x,135 + y,208,34,34 );
gfx.PutPixel( 60 + x,135 + y,208,34,34 );
gfx.PutPixel( 61 + x,135 + y,208,34,34 );
gfx.PutPixel( 62 + x,135 + y,208,34,34 );
gfx.PutPixel( 63 + x,135 + y,208,34,34 );
gfx.PutPixel( 64 + x,135 + y,208,34,34 );
gfx.PutPixel( 65 + x,135 + y,208,34,34 );
gfx.PutPixel( 66 + x,135 + y,208,34,34 );
gfx.PutPixel( 67 + x,135 + y,208,34,34 );
gfx.PutPixel( 68 + x,135 + y,208,34,34 );
gfx.PutPixel( 69 + x,135 + y,208,34,34 );
gfx.PutPixel( 70 + x,135 + y,208,34,34 );
gfx.PutPixel( 71 + x,135 + y,208,34,34 );
gfx.PutPixel( 72 + x,135 + y,208,34,34 );
gfx.PutPixel( 73 + x,135 + y,208,34,34 );
gfx.PutPixel( 74 + x,135 + y,208,34,34 );
gfx.PutPixel( 75 + x,135 + y,208,34,34 );
gfx.PutPixel( 76 + x,135 + y,208,34,34 );
gfx.PutPixel( 77 + x,135 + y,208,34,34 );
gfx.PutPixel( 78 + x,135 + y,208,34,34 );
gfx.PutPixel( 79 + x,135 + y,208,34,34 );
gfx.PutPixel( 80 + x,135 + y,208,34,34 );
gfx.PutPixel( 81 + x,135 + y,208,34,34 );
gfx.PutPixel( 82 + x,135 + y,208,34,34 );
gfx.PutPixel( 83 + x,135 + y,208,34,34 );
gfx.PutPixel( 84 + x,135 + y,208,34,34 );
gfx.PutPixel( 85 + x,135 + y,208,34,34 );
gfx.PutPixel( 86 + x,135 + y,208,34,34 );
gfx.PutPixel( 87 + x,135 + y,208,34,34 );
gfx.PutPixel( 88 + x,135 + y,208,34,34 );
gfx.PutPixel( 89 + x,135 + y,208,34,34 );
gfx.PutPixel( 90 + x,135 + y,208,34,34 );
gfx.PutPixel( 91 + x,135 + y,208,34,34 );
gfx.PutPixel( 92 + x,135 + y,208,34,34 );
gfx.PutPixel( 93 + x,135 + y,208,34,34 );
gfx.PutPixel( 94 + x,135 + y,208,34,34 );
gfx.PutPixel( 95 + x,135 + y,208,34,34 );
gfx.PutPixel( 96 + x,135 + y,208,34,34 );
gfx.PutPixel( 97 + x,135 + y,208,34,34 );
gfx.PutPixel( 98 + x,135 + y,208,34,34 );
gfx.PutPixel( 99 + x,135 + y,208,34,34 );
gfx.PutPixel( 100 + x,135 + y,208,34,34 );
gfx.PutPixel( 101 + x,135 + y,208,34,34 );
gfx.PutPixel( 102 + x,135 + y,208,34,34 );
gfx.PutPixel( 103 + x,135 + y,208,34,34 );
gfx.PutPixel( 104 + x,135 + y,208,34,34 );
gfx.PutPixel( 105 + x,135 + y,208,34,34 );
gfx.PutPixel( 106 + x,135 + y,208,34,34 );
gfx.PutPixel( 107 + x,135 + y,208,34,34 );
gfx.PutPixel( 108 + x,135 + y,208,34,34 );
gfx.PutPixel( 109 + x,135 + y,208,34,34 );
gfx.PutPixel( 110 + x,135 + y,208,34,34 );
gfx.PutPixel( 111 + x,135 + y,208,34,34 );
gfx.PutPixel( 112 + x,135 + y,208,34,34 );
gfx.PutPixel( 113 + x,135 + y,208,34,34 );
gfx.PutPixel( 114 + x,135 + y,208,34,34 );
gfx.PutPixel( 115 + x,135 + y,208,34,34 );
gfx.PutPixel( 116 + x,135 + y,208,34,34 );
gfx.PutPixel( 117 + x,135 + y,208,34,34 );
gfx.PutPixel( 118 + x,135 + y,208,34,34 );
gfx.PutPixel( 119 + x,135 + y,208,34,34 );
gfx.PutPixel( 120 + x,135 + y,208,34,34 );
gfx.PutPixel( 121 + x,135 + y,208,34,34 );
gfx.PutPixel( 122 + x,135 + y,208,34,34 );
gfx.PutPixel( 123 + x,135 + y,208,34,34 );
gfx.PutPixel( 124 + x,135 + y,208,34,34 );
gfx.PutPixel( 125 + x,135 + y,208,34,34 );
gfx.PutPixel( 126 + x,135 + y,208,34,34 );
gfx.PutPixel( 127 + x,135 + y,208,34,34 );
gfx.PutPixel( 128 + x,135 + y,208,34,34 );
gfx.PutPixel( 129 + x,135 + y,208,34,34 );
gfx.PutPixel( 130 + x,135 + y,208,34,34 );
gfx.PutPixel( 131 + x,135 + y,208,34,34 );
gfx.PutPixel( 132 + x,135 + y,208,34,34 );
gfx.PutPixel( 133 + x,135 + y,208,34,34 );
gfx.PutPixel( 134 + x,135 + y,208,34,34 );
gfx.PutPixel( 135 + x,135 + y,208,34,34 );
gfx.PutPixel( 136 + x,135 + y,208,34,34 );
gfx.PutPixel( 137 + x,135 + y,208,34,34 );
gfx.PutPixel( 138 + x,135 + y,208,34,34 );
gfx.PutPixel( 139 + x,135 + y,208,34,34 );
gfx.PutPixel( 140 + x,135 + y,208,34,34 );
gfx.PutPixel( 141 + x,135 + y,208,34,34 );
gfx.PutPixel( 142 + x,135 + y,208,34,34 );
gfx.PutPixel( 143 + x,135 + y,208,34,34 );
gfx.PutPixel( 144 + x,135 + y,208,34,34 );
gfx.PutPixel( 145 + x,135 + y,208,34,34 );
gfx.PutPixel( 146 + x,135 + y,208,34,34 );
gfx.PutPixel( 147 + x,135 + y,208,34,34 );
gfx.PutPixel( 148 + x,135 + y,208,34,34 );
gfx.PutPixel( 149 + x,135 + y,208,34,34 );
gfx.PutPixel( 0 + x,136 + y,208,34,34 );
gfx.PutPixel( 1 + x,136 + y,208,34,34 );
gfx.PutPixel( 2 + x,136 + y,208,34,34 );
gfx.PutPixel( 3 + x,136 + y,208,34,34 );
gfx.PutPixel( 4 + x,136 + y,208,34,34 );
gfx.PutPixel( 5 + x,136 + y,208,34,34 );
gfx.PutPixel( 6 + x,136 + y,208,34,34 );
gfx.PutPixel( 7 + x,136 + y,208,34,34 );
gfx.PutPixel( 8 + x,136 + y,208,34,34 );
gfx.PutPixel( 9 + x,136 + y,208,34,34 );
gfx.PutPixel( 10 + x,136 + y,208,34,34 );
gfx.PutPixel( 11 + x,136 + y,208,34,34 );
gfx.PutPixel( 12 + x,136 + y,208,34,34 );
gfx.PutPixel( 13 + x,136 + y,208,34,34 );
gfx.PutPixel( 14 + x,136 + y,208,34,34 );
gfx.PutPixel( 15 + x,136 + y,208,34,34 );
gfx.PutPixel( 16 + x,136 + y,208,34,34 );
gfx.PutPixel( 17 + x,136 + y,208,34,34 );
gfx.PutPixel( 18 + x,136 + y,208,34,34 );
gfx.PutPixel( 19 + x,136 + y,208,34,34 );
gfx.PutPixel( 20 + x,136 + y,208,34,34 );
gfx.PutPixel( 21 + x,136 + y,208,34,34 );
gfx.PutPixel( 22 + x,136 + y,208,34,34 );
gfx.PutPixel( 23 + x,136 + y,208,34,34 );
gfx.PutPixel( 24 + x,136 + y,208,34,34 );
gfx.PutPixel( 25 + x,136 + y,208,34,34 );
gfx.PutPixel( 26 + x,136 + y,208,34,34 );
gfx.PutPixel( 27 + x,136 + y,208,34,34 );
gfx.PutPixel( 28 + x,136 + y,208,34,34 );
gfx.PutPixel( 29 + x,136 + y,208,34,34 );
gfx.PutPixel( 30 + x,136 + y,208,34,34 );
gfx.PutPixel( 31 + x,136 + y,208,34,34 );
gfx.PutPixel( 32 + x,136 + y,208,34,34 );
gfx.PutPixel( 33 + x,136 + y,208,34,34 );
gfx.PutPixel( 34 + x,136 + y,208,34,34 );
gfx.PutPixel( 35 + x,136 + y,208,34,34 );
gfx.PutPixel( 36 + x,136 + y,208,34,34 );
gfx.PutPixel( 37 + x,136 + y,208,34,34 );
gfx.PutPixel( 38 + x,136 + y,208,34,34 );
gfx.PutPixel( 39 + x,136 + y,208,34,34 );
gfx.PutPixel( 40 + x,136 + y,208,34,34 );
gfx.PutPixel( 41 + x,136 + y,208,34,34 );
gfx.PutPixel( 42 + x,136 + y,208,34,34 );
gfx.PutPixel( 43 + x,136 + y,208,34,34 );
gfx.PutPixel( 44 + x,136 + y,208,34,34 );
gfx.PutPixel( 45 + x,136 + y,208,34,34 );
gfx.PutPixel( 46 + x,136 + y,208,34,34 );
gfx.PutPixel( 47 + x,136 + y,208,34,34 );
gfx.PutPixel( 48 + x,136 + y,208,34,34 );
gfx.PutPixel( 49 + x,136 + y,208,34,34 );
gfx.PutPixel( 50 + x,136 + y,208,34,34 );
gfx.PutPixel( 51 + x,136 + y,208,34,34 );
gfx.PutPixel( 52 + x,136 + y,208,34,34 );
gfx.PutPixel( 53 + x,136 + y,208,34,34 );
gfx.PutPixel( 54 + x,136 + y,208,34,34 );
gfx.PutPixel( 55 + x,136 + y,208,34,34 );
gfx.PutPixel( 56 + x,136 + y,208,34,34 );
gfx.PutPixel( 57 + x,136 + y,208,34,34 );
gfx.PutPixel( 58 + x,136 + y,208,34,34 );
gfx.PutPixel( 59 + x,136 + y,208,34,34 );
gfx.PutPixel( 60 + x,136 + y,208,34,34 );
gfx.PutPixel( 61 + x,136 + y,208,34,34 );
gfx.PutPixel( 62 + x,136 + y,208,34,34 );
gfx.PutPixel( 63 + x,136 + y,208,34,34 );
gfx.PutPixel( 64 + x,136 + y,208,34,34 );
gfx.PutPixel( 65 + x,136 + y,208,34,34 );
gfx.PutPixel( 66 + x,136 + y,208,34,34 );
gfx.PutPixel( 67 + x,136 + y,208,34,34 );
gfx.PutPixel( 68 + x,136 + y,208,34,34 );
gfx.PutPixel( 69 + x,136 + y,208,34,34 );
gfx.PutPixel( 70 + x,136 + y,208,34,34 );
gfx.PutPixel( 71 + x,136 + y,208,34,34 );
gfx.PutPixel( 72 + x,136 + y,208,34,34 );
gfx.PutPixel( 73 + x,136 + y,208,34,34 );
gfx.PutPixel( 74 + x,136 + y,208,34,34 );
gfx.PutPixel( 75 + x,136 + y,208,34,34 );
gfx.PutPixel( 76 + x,136 + y,208,34,34 );
gfx.PutPixel( 77 + x,136 + y,208,34,34 );
gfx.PutPixel( 78 + x,136 + y,208,34,34 );
gfx.PutPixel( 79 + x,136 + y,208,34,34 );
gfx.PutPixel( 80 + x,136 + y,208,34,34 );
gfx.PutPixel( 81 + x,136 + y,208,34,34 );
gfx.PutPixel( 82 + x,136 + y,208,34,34 );
gfx.PutPixel( 83 + x,136 + y,208,34,34 );
gfx.PutPixel( 84 + x,136 + y,208,34,34 );
gfx.PutPixel( 85 + x,136 + y,208,34,34 );
gfx.PutPixel( 86 + x,136 + y,208,34,34 );
gfx.PutPixel( 87 + x,136 + y,208,34,34 );
gfx.PutPixel( 88 + x,136 + y,208,34,34 );
gfx.PutPixel( 89 + x,136 + y,208,34,34 );
gfx.PutPixel( 90 + x,136 + y,208,34,34 );
gfx.PutPixel( 91 + x,136 + y,208,34,34 );
gfx.PutPixel( 92 + x,136 + y,208,34,34 );
gfx.PutPixel( 93 + x,136 + y,208,34,34 );
gfx.PutPixel( 94 + x,136 + y,208,34,34 );
gfx.PutPixel( 95 + x,136 + y,208,34,34 );
gfx.PutPixel( 96 + x,136 + y,208,34,34 );
gfx.PutPixel( 97 + x,136 + y,208,34,34 );
gfx.PutPixel( 98 + x,136 + y,208,34,34 );
gfx.PutPixel( 99 + x,136 + y,208,34,34 );
gfx.PutPixel( 100 + x,136 + y,208,34,34 );
gfx.PutPixel( 101 + x,136 + y,208,34,34 );
gfx.PutPixel( 102 + x,136 + y,208,34,34 );
gfx.PutPixel( 103 + x,136 + y,208,34,34 );
gfx.PutPixel( 104 + x,136 + y,208,34,34 );
gfx.PutPixel( 105 + x,136 + y,208,34,34 );
gfx.PutPixel( 106 + x,136 + y,208,34,34 );
gfx.PutPixel( 107 + x,136 + y,208,34,34 );
gfx.PutPixel( 108 + x,136 + y,208,34,34 );
gfx.PutPixel( 109 + x,136 + y,208,34,34 );
gfx.PutPixel( 110 + x,136 + y,208,34,34 );
gfx.PutPixel( 111 + x,136 + y,208,34,34 );
gfx.PutPixel( 112 + x,136 + y,208,34,34 );
gfx.PutPixel( 113 + x,136 + y,208,34,34 );
gfx.PutPixel( 114 + x,136 + y,208,34,34 );
gfx.PutPixel( 115 + x,136 + y,208,34,34 );
gfx.PutPixel( 116 + x,136 + y,208,34,34 );
gfx.PutPixel( 117 + x,136 + y,208,34,34 );
gfx.PutPixel( 118 + x,136 + y,208,34,34 );
gfx.PutPixel( 119 + x,136 + y,208,34,34 );
gfx.PutPixel( 120 + x,136 + y,208,34,34 );
gfx.PutPixel( 121 + x,136 + y,208,34,34 );
gfx.PutPixel( 122 + x,136 + y,208,34,34 );
gfx.PutPixel( 123 + x,136 + y,208,34,34 );
gfx.PutPixel( 124 + x,136 + y,208,34,34 );
gfx.PutPixel( 125 + x,136 + y,208,34,34 );
gfx.PutPixel( 126 + x,136 + y,208,34,34 );
gfx.PutPixel( 127 + x,136 + y,208,34,34 );
gfx.PutPixel( 128 + x,136 + y,208,34,34 );
gfx.PutPixel( 129 + x,136 + y,208,34,34 );
gfx.PutPixel( 130 + x,136 + y,208,34,34 );
gfx.PutPixel( 131 + x,136 + y,208,34,34 );
gfx.PutPixel( 132 + x,136 + y,208,34,34 );
gfx.PutPixel( 133 + x,136 + y,208,34,34 );
gfx.PutPixel( 134 + x,136 + y,208,34,34 );
gfx.PutPixel( 135 + x,136 + y,208,34,34 );
gfx.PutPixel( 136 + x,136 + y,208,34,34 );
gfx.PutPixel( 137 + x,136 + y,208,34,34 );
gfx.PutPixel( 138 + x,136 + y,208,34,34 );
gfx.PutPixel( 139 + x,136 + y,208,34,34 );
gfx.PutPixel( 140 + x,136 + y,208,34,34 );
gfx.PutPixel( 141 + x,136 + y,208,34,34 );
gfx.PutPixel( 142 + x,136 + y,208,34,34 );
gfx.PutPixel( 143 + x,136 + y,208,34,34 );
gfx.PutPixel( 144 + x,136 + y,208,34,34 );
gfx.PutPixel( 145 + x,136 + y,208,34,34 );
gfx.PutPixel( 146 + x,136 + y,208,34,34 );
gfx.PutPixel( 147 + x,136 + y,208,34,34 );
gfx.PutPixel( 148 + x,136 + y,208,34,34 );
gfx.PutPixel( 149 + x,136 + y,208,34,34 );
gfx.PutPixel( 0 + x,137 + y,208,34,34 );
gfx.PutPixel( 1 + x,137 + y,208,34,34 );
gfx.PutPixel( 2 + x,137 + y,208,34,34 );
gfx.PutPixel( 3 + x,137 + y,208,34,34 );
gfx.PutPixel( 4 + x,137 + y,208,34,34 );
gfx.PutPixel( 5 + x,137 + y,208,34,34 );
gfx.PutPixel( 6 + x,137 + y,208,34,34 );
gfx.PutPixel( 7 + x,137 + y,208,34,34 );
gfx.PutPixel( 8 + x,137 + y,208,34,34 );
gfx.PutPixel( 9 + x,137 + y,208,34,34 );
gfx.PutPixel( 10 + x,137 + y,208,34,34 );
gfx.PutPixel( 11 + x,137 + y,208,34,34 );
gfx.PutPixel( 12 + x,137 + y,208,34,34 );
gfx.PutPixel( 13 + x,137 + y,208,34,34 );
gfx.PutPixel( 14 + x,137 + y,208,34,34 );
gfx.PutPixel( 15 + x,137 + y,208,34,34 );
gfx.PutPixel( 16 + x,137 + y,208,34,34 );
gfx.PutPixel( 17 + x,137 + y,208,34,34 );
gfx.PutPixel( 18 + x,137 + y,208,34,34 );
gfx.PutPixel( 19 + x,137 + y,208,34,34 );
gfx.PutPixel( 20 + x,137 + y,208,34,34 );
gfx.PutPixel( 21 + x,137 + y,208,34,34 );
gfx.PutPixel( 22 + x,137 + y,208,34,34 );
gfx.PutPixel( 23 + x,137 + y,208,34,34 );
gfx.PutPixel( 24 + x,137 + y,208,34,34 );
gfx.PutPixel( 25 + x,137 + y,208,34,34 );
gfx.PutPixel( 26 + x,137 + y,208,34,34 );
gfx.PutPixel( 27 + x,137 + y,208,34,34 );
gfx.PutPixel( 28 + x,137 + y,208,34,34 );
gfx.PutPixel( 29 + x,137 + y,208,34,34 );
gfx.PutPixel( 30 + x,137 + y,208,34,34 );
gfx.PutPixel( 31 + x,137 + y,208,34,34 );
gfx.PutPixel( 32 + x,137 + y,208,34,34 );
gfx.PutPixel( 33 + x,137 + y,208,34,34 );
gfx.PutPixel( 34 + x,137 + y,208,34,34 );
gfx.PutPixel( 35 + x,137 + y,208,34,34 );
gfx.PutPixel( 36 + x,137 + y,208,34,34 );
gfx.PutPixel( 37 + x,137 + y,208,34,34 );
gfx.PutPixel( 38 + x,137 + y,208,34,34 );
gfx.PutPixel( 39 + x,137 + y,208,34,34 );
gfx.PutPixel( 40 + x,137 + y,208,34,34 );
gfx.PutPixel( 41 + x,137 + y,208,34,34 );
gfx.PutPixel( 42 + x,137 + y,208,34,34 );
gfx.PutPixel( 43 + x,137 + y,208,34,34 );
gfx.PutPixel( 44 + x,137 + y,208,34,34 );
gfx.PutPixel( 45 + x,137 + y,208,34,34 );
gfx.PutPixel( 46 + x,137 + y,208,34,34 );
gfx.PutPixel( 47 + x,137 + y,208,34,34 );
gfx.PutPixel( 48 + x,137 + y,208,34,34 );
gfx.PutPixel( 49 + x,137 + y,208,34,34 );
gfx.PutPixel( 50 + x,137 + y,208,34,34 );
gfx.PutPixel( 51 + x,137 + y,208,34,34 );
gfx.PutPixel( 52 + x,137 + y,208,34,34 );
gfx.PutPixel( 53 + x,137 + y,208,34,34 );
gfx.PutPixel( 54 + x,137 + y,208,34,34 );
gfx.PutPixel( 55 + x,137 + y,208,34,34 );
gfx.PutPixel( 56 + x,137 + y,208,34,34 );
gfx.PutPixel( 57 + x,137 + y,208,34,34 );
gfx.PutPixel( 58 + x,137 + y,208,34,34 );
gfx.PutPixel( 59 + x,137 + y,208,34,34 );
gfx.PutPixel( 60 + x,137 + y,208,34,34 );
gfx.PutPixel( 61 + x,137 + y,208,34,34 );
gfx.PutPixel( 62 + x,137 + y,208,34,34 );
gfx.PutPixel( 63 + x,137 + y,208,34,34 );
gfx.PutPixel( 64 + x,137 + y,208,34,34 );
gfx.PutPixel( 65 + x,137 + y,208,34,34 );
gfx.PutPixel( 66 + x,137 + y,208,34,34 );
gfx.PutPixel( 67 + x,137 + y,208,34,34 );
gfx.PutPixel( 68 + x,137 + y,208,34,34 );
gfx.PutPixel( 69 + x,137 + y,208,34,34 );
gfx.PutPixel( 70 + x,137 + y,208,34,34 );
gfx.PutPixel( 71 + x,137 + y,208,34,34 );
gfx.PutPixel( 72 + x,137 + y,208,34,34 );
gfx.PutPixel( 73 + x,137 + y,208,34,34 );
gfx.PutPixel( 74 + x,137 + y,208,34,34 );
gfx.PutPixel( 75 + x,137 + y,208,34,34 );
gfx.PutPixel( 76 + x,137 + y,208,34,34 );
gfx.PutPixel( 77 + x,137 + y,208,34,34 );
gfx.PutPixel( 78 + x,137 + y,208,34,34 );
gfx.PutPixel( 79 + x,137 + y,208,34,34 );
gfx.PutPixel( 80 + x,137 + y,208,34,34 );
gfx.PutPixel( 81 + x,137 + y,208,34,34 );
gfx.PutPixel( 82 + x,137 + y,208,34,34 );
gfx.PutPixel( 83 + x,137 + y,208,34,34 );
gfx.PutPixel( 84 + x,137 + y,208,34,34 );
gfx.PutPixel( 85 + x,137 + y,208,34,34 );
gfx.PutPixel( 86 + x,137 + y,208,34,34 );
gfx.PutPixel( 87 + x,137 + y,208,34,34 );
gfx.PutPixel( 88 + x,137 + y,208,34,34 );
gfx.PutPixel( 89 + x,137 + y,208,34,34 );
gfx.PutPixel( 90 + x,137 + y,208,34,34 );
gfx.PutPixel( 91 + x,137 + y,208,34,34 );
gfx.PutPixel( 92 + x,137 + y,208,34,34 );
gfx.PutPixel( 93 + x,137 + y,208,34,34 );
gfx.PutPixel( 94 + x,137 + y,208,34,34 );
gfx.PutPixel( 95 + x,137 + y,208,34,34 );
gfx.PutPixel( 96 + x,137 + y,208,34,34 );
gfx.PutPixel( 97 + x,137 + y,208,34,34 );
gfx.PutPixel( 98 + x,137 + y,208,34,34 );
gfx.PutPixel( 99 + x,137 + y,208,34,34 );
gfx.PutPixel( 100 + x,137 + y,208,34,34 );
gfx.PutPixel( 101 + x,137 + y,208,34,34 );
gfx.PutPixel( 102 + x,137 + y,208,34,34 );
gfx.PutPixel( 103 + x,137 + y,208,34,34 );
gfx.PutPixel( 104 + x,137 + y,208,34,34 );
gfx.PutPixel( 105 + x,137 + y,208,34,34 );
gfx.PutPixel( 106 + x,137 + y,208,34,34 );
gfx.PutPixel( 107 + x,137 + y,208,34,34 );
gfx.PutPixel( 108 + x,137 + y,208,34,34 );
gfx.PutPixel( 109 + x,137 + y,208,34,34 );
gfx.PutPixel( 110 + x,137 + y,208,34,34 );
gfx.PutPixel( 111 + x,137 + y,208,34,34 );
gfx.PutPixel( 112 + x,137 + y,208,34,34 );
gfx.PutPixel( 113 + x,137 + y,208,34,34 );
gfx.PutPixel( 114 + x,137 + y,208,34,34 );
gfx.PutPixel( 115 + x,137 + y,208,34,34 );
gfx.PutPixel( 116 + x,137 + y,208,34,34 );
gfx.PutPixel( 117 + x,137 + y,208,34,34 );
gfx.PutPixel( 118 + x,137 + y,208,34,34 );
gfx.PutPixel( 119 + x,137 + y,208,34,34 );
gfx.PutPixel( 120 + x,137 + y,208,34,34 );
gfx.PutPixel( 121 + x,137 + y,208,34,34 );
gfx.PutPixel( 122 + x,137 + y,208,34,34 );
gfx.PutPixel( 123 + x,137 + y,208,34,34 );
gfx.PutPixel( 124 + x,137 + y,208,34,34 );
gfx.PutPixel( 125 + x,137 + y,208,34,34 );
gfx.PutPixel( 126 + x,137 + y,208,34,34 );
gfx.PutPixel( 127 + x,137 + y,208,34,34 );
gfx.PutPixel( 128 + x,137 + y,208,34,34 );
gfx.PutPixel( 129 + x,137 + y,208,34,34 );
gfx.PutPixel( 130 + x,137 + y,208,34,34 );
gfx.PutPixel( 131 + x,137 + y,208,34,34 );
gfx.PutPixel( 132 + x,137 + y,208,34,34 );
gfx.PutPixel( 133 + x,137 + y,208,34,34 );
gfx.PutPixel( 134 + x,137 + y,208,34,34 );
gfx.PutPixel( 135 + x,137 + y,208,34,34 );
gfx.PutPixel( 136 + x,137 + y,208,34,34 );
gfx.PutPixel( 137 + x,137 + y,208,34,34 );
gfx.PutPixel( 138 + x,137 + y,208,34,34 );
gfx.PutPixel( 139 + x,137 + y,208,34,34 );
gfx.PutPixel( 140 + x,137 + y,208,34,34 );
gfx.PutPixel( 141 + x,137 + y,208,34,34 );
gfx.PutPixel( 142 + x,137 + y,208,34,34 );
gfx.PutPixel( 143 + x,137 + y,208,34,34 );
gfx.PutPixel( 144 + x,137 + y,208,34,34 );
gfx.PutPixel( 145 + x,137 + y,208,34,34 );
gfx.PutPixel( 146 + x,137 + y,208,34,34 );
gfx.PutPixel( 147 + x,137 + y,208,34,34 );
gfx.PutPixel( 148 + x,137 + y,208,34,34 );
gfx.PutPixel( 149 + x,137 + y,208,34,34 );
gfx.PutPixel( 0 + x,138 + y,208,34,34 );
gfx.PutPixel( 1 + x,138 + y,208,34,34 );
gfx.PutPixel( 2 + x,138 + y,208,34,34 );
gfx.PutPixel( 3 + x,138 + y,208,34,34 );
gfx.PutPixel( 4 + x,138 + y,208,34,34 );
gfx.PutPixel( 5 + x,138 + y,208,34,34 );
gfx.PutPixel( 6 + x,138 + y,208,34,34 );
gfx.PutPixel( 7 + x,138 + y,208,34,34 );
gfx.PutPixel( 8 + x,138 + y,208,34,34 );
gfx.PutPixel( 9 + x,138 + y,208,34,34 );
gfx.PutPixel( 10 + x,138 + y,208,34,34 );
gfx.PutPixel( 11 + x,138 + y,208,34,34 );
gfx.PutPixel( 12 + x,138 + y,208,34,34 );
gfx.PutPixel( 13 + x,138 + y,208,34,34 );
gfx.PutPixel( 14 + x,138 + y,208,34,34 );
gfx.PutPixel( 15 + x,138 + y,208,34,34 );
gfx.PutPixel( 16 + x,138 + y,208,34,34 );
gfx.PutPixel( 17 + x,138 + y,208,34,34 );
gfx.PutPixel( 18 + x,138 + y,208,31,31 );
gfx.PutPixel( 19 + x,138 + y,208,30,30 );
gfx.PutPixel( 20 + x,138 + y,208,30,30 );
gfx.PutPixel( 21 + x,138 + y,208,30,30 );
gfx.PutPixel( 22 + x,138 + y,208,30,30 );
gfx.PutPixel( 23 + x,138 + y,208,30,30 );
gfx.PutPixel( 24 + x,138 + y,208,31,31 );
gfx.PutPixel( 25 + x,138 + y,208,31,31 );
gfx.PutPixel( 26 + x,138 + y,208,33,33 );
gfx.PutPixel( 27 + x,138 + y,208,34,34 );
gfx.PutPixel( 28 + x,138 + y,208,34,34 );
gfx.PutPixel( 29 + x,138 + y,208,34,34 );
gfx.PutPixel( 30 + x,138 + y,208,34,34 );
gfx.PutPixel( 31 + x,138 + y,208,34,34 );
gfx.PutPixel( 32 + x,138 + y,208,34,34 );
gfx.PutPixel( 33 + x,138 + y,208,34,34 );
gfx.PutPixel( 34 + x,138 + y,208,34,34 );
gfx.PutPixel( 35 + x,138 + y,208,34,34 );
gfx.PutPixel( 36 + x,138 + y,208,34,34 );
gfx.PutPixel( 37 + x,138 + y,208,33,33 );
gfx.PutPixel( 38 + x,138 + y,208,29,29 );
gfx.PutPixel( 39 + x,138 + y,207,24,24 );
gfx.PutPixel( 40 + x,138 + y,207,23,23 );
gfx.PutPixel( 41 + x,138 + y,207,22,22 );
gfx.PutPixel( 42 + x,138 + y,207,23,23 );
gfx.PutPixel( 43 + x,138 + y,207,24,24 );
gfx.PutPixel( 44 + x,138 + y,208,29,29 );
gfx.PutPixel( 45 + x,138 + y,208,33,33 );
gfx.PutPixel( 46 + x,138 + y,208,34,34 );
gfx.PutPixel( 47 + x,138 + y,208,34,34 );
gfx.PutPixel( 48 + x,138 + y,208,34,34 );
gfx.PutPixel( 49 + x,138 + y,208,34,34 );
gfx.PutPixel( 50 + x,138 + y,208,34,34 );
gfx.PutPixel( 51 + x,138 + y,208,34,34 );
gfx.PutPixel( 52 + x,138 + y,208,34,34 );
gfx.PutPixel( 53 + x,138 + y,208,34,34 );
gfx.PutPixel( 54 + x,138 + y,208,34,34 );
gfx.PutPixel( 55 + x,138 + y,208,34,34 );
gfx.PutPixel( 56 + x,138 + y,208,34,34 );
gfx.PutPixel( 57 + x,138 + y,208,33,33 );
gfx.PutPixel( 58 + x,138 + y,208,29,29 );
gfx.PutPixel( 59 + x,138 + y,207,24,24 );
gfx.PutPixel( 60 + x,138 + y,207,23,23 );
gfx.PutPixel( 61 + x,138 + y,207,22,22 );
gfx.PutPixel( 62 + x,138 + y,207,23,23 );
gfx.PutPixel( 63 + x,138 + y,207,24,24 );
gfx.PutPixel( 64 + x,138 + y,208,29,29 );
gfx.PutPixel( 65 + x,138 + y,208,33,33 );
gfx.PutPixel( 66 + x,138 + y,208,34,34 );
gfx.PutPixel( 67 + x,138 + y,208,34,34 );
gfx.PutPixel( 68 + x,138 + y,208,34,34 );
gfx.PutPixel( 69 + x,138 + y,208,34,34 );
gfx.PutPixel( 70 + x,138 + y,208,34,34 );
gfx.PutPixel( 71 + x,138 + y,208,34,34 );
gfx.PutPixel( 72 + x,138 + y,208,34,34 );
gfx.PutPixel( 73 + x,138 + y,208,34,34 );
gfx.PutPixel( 74 + x,138 + y,208,34,34 );
gfx.PutPixel( 75 + x,138 + y,208,34,34 );
gfx.PutPixel( 76 + x,138 + y,208,34,34 );
gfx.PutPixel( 77 + x,138 + y,208,34,34 );
gfx.PutPixel( 78 + x,138 + y,208,34,34 );
gfx.PutPixel( 79 + x,138 + y,208,34,34 );
gfx.PutPixel( 80 + x,138 + y,208,31,31 );
gfx.PutPixel( 81 + x,138 + y,208,30,30 );
gfx.PutPixel( 82 + x,138 + y,208,30,30 );
gfx.PutPixel( 83 + x,138 + y,208,30,30 );
gfx.PutPixel( 84 + x,138 + y,208,30,30 );
gfx.PutPixel( 85 + x,138 + y,208,30,30 );
gfx.PutPixel( 86 + x,138 + y,208,31,31 );
gfx.PutPixel( 87 + x,138 + y,208,31,31 );
gfx.PutPixel( 88 + x,138 + y,208,33,33 );
gfx.PutPixel( 89 + x,138 + y,208,34,34 );
gfx.PutPixel( 90 + x,138 + y,208,34,34 );
gfx.PutPixel( 91 + x,138 + y,208,34,34 );
gfx.PutPixel( 92 + x,138 + y,208,34,34 );
gfx.PutPixel( 93 + x,138 + y,208,34,34 );
gfx.PutPixel( 94 + x,138 + y,208,34,34 );
gfx.PutPixel( 95 + x,138 + y,208,34,34 );
gfx.PutPixel( 96 + x,138 + y,208,34,34 );
gfx.PutPixel( 97 + x,138 + y,208,34,34 );
gfx.PutPixel( 98 + x,138 + y,208,34,34 );
gfx.PutPixel( 99 + x,138 + y,208,33,33 );
gfx.PutPixel( 100 + x,138 + y,208,29,29 );
gfx.PutPixel( 101 + x,138 + y,207,24,24 );
gfx.PutPixel( 102 + x,138 + y,207,23,23 );
gfx.PutPixel( 103 + x,138 + y,207,22,22 );
gfx.PutPixel( 104 + x,138 + y,207,23,23 );
gfx.PutPixel( 105 + x,138 + y,207,24,24 );
gfx.PutPixel( 106 + x,138 + y,208,29,29 );
gfx.PutPixel( 107 + x,138 + y,208,33,33 );
gfx.PutPixel( 108 + x,138 + y,208,34,34 );
gfx.PutPixel( 109 + x,138 + y,208,34,34 );
gfx.PutPixel( 110 + x,138 + y,208,34,34 );
gfx.PutPixel( 111 + x,138 + y,208,34,34 );
gfx.PutPixel( 112 + x,138 + y,208,34,34 );
gfx.PutPixel( 113 + x,138 + y,208,34,34 );
gfx.PutPixel( 114 + x,138 + y,208,34,34 );
gfx.PutPixel( 115 + x,138 + y,208,34,34 );
gfx.PutPixel( 116 + x,138 + y,208,34,34 );
gfx.PutPixel( 117 + x,138 + y,208,34,34 );
gfx.PutPixel( 118 + x,138 + y,208,34,34 );
gfx.PutPixel( 119 + x,138 + y,208,33,33 );
gfx.PutPixel( 120 + x,138 + y,208,29,29 );
gfx.PutPixel( 121 + x,138 + y,207,24,24 );
gfx.PutPixel( 122 + x,138 + y,207,23,23 );
gfx.PutPixel( 123 + x,138 + y,207,22,22 );
gfx.PutPixel( 124 + x,138 + y,207,23,23 );
gfx.PutPixel( 125 + x,138 + y,207,24,24 );
gfx.PutPixel( 126 + x,138 + y,208,29,29 );
gfx.PutPixel( 127 + x,138 + y,208,33,33 );
gfx.PutPixel( 128 + x,138 + y,208,34,34 );
gfx.PutPixel( 129 + x,138 + y,208,34,34 );
gfx.PutPixel( 130 + x,138 + y,208,34,34 );
gfx.PutPixel( 131 + x,138 + y,208,34,34 );
gfx.PutPixel( 132 + x,138 + y,208,34,34 );
gfx.PutPixel( 133 + x,138 + y,208,34,34 );
gfx.PutPixel( 134 + x,138 + y,208,34,34 );
gfx.PutPixel( 135 + x,138 + y,208,34,34 );
gfx.PutPixel( 136 + x,138 + y,208,34,34 );
gfx.PutPixel( 137 + x,138 + y,208,34,34 );
gfx.PutPixel( 138 + x,138 + y,208,34,34 );
gfx.PutPixel( 139 + x,138 + y,208,34,34 );
gfx.PutPixel( 140 + x,138 + y,208,34,34 );
gfx.PutPixel( 141 + x,138 + y,208,34,34 );
gfx.PutPixel( 142 + x,138 + y,208,34,34 );
gfx.PutPixel( 143 + x,138 + y,208,34,34 );
gfx.PutPixel( 144 + x,138 + y,208,34,34 );
gfx.PutPixel( 145 + x,138 + y,208,34,34 );
gfx.PutPixel( 146 + x,138 + y,208,34,34 );
gfx.PutPixel( 147 + x,138 + y,208,34,34 );
gfx.PutPixel( 148 + x,138 + y,208,34,34 );
gfx.PutPixel( 149 + x,138 + y,208,34,34 );
gfx.PutPixel( 0 + x,139 + y,208,34,34 );
gfx.PutPixel( 1 + x,139 + y,208,34,34 );
gfx.PutPixel( 2 + x,139 + y,208,34,34 );
gfx.PutPixel( 3 + x,139 + y,208,34,34 );
gfx.PutPixel( 4 + x,139 + y,208,34,34 );
gfx.PutPixel( 5 + x,139 + y,208,34,34 );
gfx.PutPixel( 6 + x,139 + y,208,34,34 );
gfx.PutPixel( 7 + x,139 + y,208,34,34 );
gfx.PutPixel( 8 + x,139 + y,208,34,34 );
gfx.PutPixel( 9 + x,139 + y,208,34,34 );
gfx.PutPixel( 10 + x,139 + y,208,34,34 );
gfx.PutPixel( 11 + x,139 + y,208,34,34 );
gfx.PutPixel( 12 + x,139 + y,208,34,34 );
gfx.PutPixel( 13 + x,139 + y,208,34,34 );
gfx.PutPixel( 14 + x,139 + y,208,34,34 );
gfx.PutPixel( 15 + x,139 + y,208,34,34 );
gfx.PutPixel( 16 + x,139 + y,208,34,34 );
gfx.PutPixel( 17 + x,139 + y,208,34,34 );
gfx.PutPixel( 18 + x,139 + y,209,44,44 );
gfx.PutPixel( 19 + x,139 + y,209,48,48 );
gfx.PutPixel( 20 + x,139 + y,209,47,47 );
gfx.PutPixel( 21 + x,139 + y,209,47,47 );
gfx.PutPixel( 22 + x,139 + y,209,47,47 );
gfx.PutPixel( 23 + x,139 + y,209,47,47 );
gfx.PutPixel( 24 + x,139 + y,209,47,47 );
gfx.PutPixel( 25 + x,139 + y,209,43,43 );
gfx.PutPixel( 26 + x,139 + y,208,32,32 );
gfx.PutPixel( 27 + x,139 + y,207,23,23 );
gfx.PutPixel( 28 + x,139 + y,208,27,27 );
gfx.PutPixel( 29 + x,139 + y,208,34,34 );
gfx.PutPixel( 30 + x,139 + y,208,34,34 );
gfx.PutPixel( 31 + x,139 + y,208,34,34 );
gfx.PutPixel( 32 + x,139 + y,208,34,34 );
gfx.PutPixel( 33 + x,139 + y,208,34,34 );
gfx.PutPixel( 34 + x,139 + y,208,34,34 );
gfx.PutPixel( 35 + x,139 + y,208,34,34 );
gfx.PutPixel( 36 + x,139 + y,207,25,25 );
gfx.PutPixel( 37 + x,139 + y,208,28,28 );
gfx.PutPixel( 38 + x,139 + y,210,60,60 );
gfx.PutPixel( 39 + x,139 + y,212,96,96 );
gfx.PutPixel( 40 + x,139 + y,214,119,119 );
gfx.PutPixel( 41 + x,139 + y,215,127,127 );
gfx.PutPixel( 42 + x,139 + y,214,119,119 );
gfx.PutPixel( 43 + x,139 + y,212,96,96 );
gfx.PutPixel( 44 + x,139 + y,210,60,60 );
gfx.PutPixel( 45 + x,139 + y,208,28,28 );
gfx.PutPixel( 46 + x,139 + y,207,25,25 );
gfx.PutPixel( 47 + x,139 + y,208,34,34 );
gfx.PutPixel( 48 + x,139 + y,208,34,34 );
gfx.PutPixel( 49 + x,139 + y,208,34,34 );
gfx.PutPixel( 50 + x,139 + y,208,34,34 );
gfx.PutPixel( 51 + x,139 + y,208,34,34 );
gfx.PutPixel( 52 + x,139 + y,208,34,34 );
gfx.PutPixel( 53 + x,139 + y,208,34,34 );
gfx.PutPixel( 54 + x,139 + y,208,34,34 );
gfx.PutPixel( 55 + x,139 + y,208,34,34 );
gfx.PutPixel( 56 + x,139 + y,207,25,25 );
gfx.PutPixel( 57 + x,139 + y,208,28,28 );
gfx.PutPixel( 58 + x,139 + y,210,60,60 );
gfx.PutPixel( 59 + x,139 + y,212,96,96 );
gfx.PutPixel( 60 + x,139 + y,214,119,119 );
gfx.PutPixel( 61 + x,139 + y,215,127,127 );
gfx.PutPixel( 62 + x,139 + y,214,119,119 );
gfx.PutPixel( 63 + x,139 + y,212,96,96 );
gfx.PutPixel( 64 + x,139 + y,210,60,60 );
gfx.PutPixel( 65 + x,139 + y,208,28,28 );
gfx.PutPixel( 66 + x,139 + y,207,25,25 );
gfx.PutPixel( 67 + x,139 + y,208,34,34 );
gfx.PutPixel( 68 + x,139 + y,208,34,34 );
gfx.PutPixel( 69 + x,139 + y,208,34,34 );
gfx.PutPixel( 70 + x,139 + y,208,34,34 );
gfx.PutPixel( 71 + x,139 + y,208,34,34 );
gfx.PutPixel( 72 + x,139 + y,208,34,34 );
gfx.PutPixel( 73 + x,139 + y,208,34,34 );
gfx.PutPixel( 74 + x,139 + y,208,34,34 );
gfx.PutPixel( 75 + x,139 + y,208,34,34 );
gfx.PutPixel( 76 + x,139 + y,208,34,34 );
gfx.PutPixel( 77 + x,139 + y,208,34,34 );
gfx.PutPixel( 78 + x,139 + y,208,34,34 );
gfx.PutPixel( 79 + x,139 + y,208,34,34 );
gfx.PutPixel( 80 + x,139 + y,209,44,44 );
gfx.PutPixel( 81 + x,139 + y,209,48,48 );
gfx.PutPixel( 82 + x,139 + y,209,47,47 );
gfx.PutPixel( 83 + x,139 + y,209,47,47 );
gfx.PutPixel( 84 + x,139 + y,209,47,47 );
gfx.PutPixel( 85 + x,139 + y,209,47,47 );
gfx.PutPixel( 86 + x,139 + y,209,47,47 );
gfx.PutPixel( 87 + x,139 + y,209,43,43 );
gfx.PutPixel( 88 + x,139 + y,208,32,32 );
gfx.PutPixel( 89 + x,139 + y,207,23,23 );
gfx.PutPixel( 90 + x,139 + y,208,27,27 );
gfx.PutPixel( 91 + x,139 + y,208,34,34 );
gfx.PutPixel( 92 + x,139 + y,208,34,34 );
gfx.PutPixel( 93 + x,139 + y,208,34,34 );
gfx.PutPixel( 94 + x,139 + y,208,34,34 );
gfx.PutPixel( 95 + x,139 + y,208,34,34 );
gfx.PutPixel( 96 + x,139 + y,208,34,34 );
gfx.PutPixel( 97 + x,139 + y,208,34,34 );
gfx.PutPixel( 98 + x,139 + y,207,25,25 );
gfx.PutPixel( 99 + x,139 + y,208,28,28 );
gfx.PutPixel( 100 + x,139 + y,210,60,60 );
gfx.PutPixel( 101 + x,139 + y,212,96,96 );
gfx.PutPixel( 102 + x,139 + y,214,119,119 );
gfx.PutPixel( 103 + x,139 + y,215,127,127 );
gfx.PutPixel( 104 + x,139 + y,214,119,119 );
gfx.PutPixel( 105 + x,139 + y,212,96,96 );
gfx.PutPixel( 106 + x,139 + y,210,60,60 );
gfx.PutPixel( 107 + x,139 + y,208,28,28 );
gfx.PutPixel( 108 + x,139 + y,207,25,25 );
gfx.PutPixel( 109 + x,139 + y,208,34,34 );
gfx.PutPixel( 110 + x,139 + y,208,34,34 );
gfx.PutPixel( 111 + x,139 + y,208,34,34 );
gfx.PutPixel( 112 + x,139 + y,208,34,34 );
gfx.PutPixel( 113 + x,139 + y,208,34,34 );
gfx.PutPixel( 114 + x,139 + y,208,34,34 );
gfx.PutPixel( 115 + x,139 + y,208,34,34 );
gfx.PutPixel( 116 + x,139 + y,208,34,34 );
gfx.PutPixel( 117 + x,139 + y,208,34,34 );
gfx.PutPixel( 118 + x,139 + y,207,25,25 );
gfx.PutPixel( 119 + x,139 + y,208,28,28 );
gfx.PutPixel( 120 + x,139 + y,210,60,60 );
gfx.PutPixel( 121 + x,139 + y,212,96,96 );
gfx.PutPixel( 122 + x,139 + y,214,119,119 );
gfx.PutPixel( 123 + x,139 + y,215,127,127 );
gfx.PutPixel( 124 + x,139 + y,214,119,119 );
gfx.PutPixel( 125 + x,139 + y,212,96,96 );
gfx.PutPixel( 126 + x,139 + y,210,60,60 );
gfx.PutPixel( 127 + x,139 + y,208,28,28 );
gfx.PutPixel( 128 + x,139 + y,207,25,25 );
gfx.PutPixel( 129 + x,139 + y,208,34,34 );
gfx.PutPixel( 130 + x,139 + y,208,34,34 );
gfx.PutPixel( 131 + x,139 + y,208,34,34 );
gfx.PutPixel( 132 + x,139 + y,208,34,34 );
gfx.PutPixel( 133 + x,139 + y,208,34,34 );
gfx.PutPixel( 134 + x,139 + y,208,34,34 );
gfx.PutPixel( 135 + x,139 + y,208,34,34 );
gfx.PutPixel( 136 + x,139 + y,208,34,34 );
gfx.PutPixel( 137 + x,139 + y,208,34,34 );
gfx.PutPixel( 138 + x,139 + y,208,34,34 );
gfx.PutPixel( 139 + x,139 + y,208,34,34 );
gfx.PutPixel( 140 + x,139 + y,208,34,34 );
gfx.PutPixel( 141 + x,139 + y,208,34,34 );
gfx.PutPixel( 142 + x,139 + y,208,34,34 );
gfx.PutPixel( 143 + x,139 + y,208,34,34 );
gfx.PutPixel( 144 + x,139 + y,208,34,34 );
gfx.PutPixel( 145 + x,139 + y,208,34,34 );
gfx.PutPixel( 146 + x,139 + y,208,34,34 );
gfx.PutPixel( 147 + x,139 + y,208,34,34 );
gfx.PutPixel( 148 + x,139 + y,208,34,34 );
gfx.PutPixel( 149 + x,139 + y,208,34,34 );
gfx.PutPixel( 0 + x,140 + y,208,34,34 );
gfx.PutPixel( 1 + x,140 + y,208,34,34 );
gfx.PutPixel( 2 + x,140 + y,208,34,34 );
gfx.PutPixel( 3 + x,140 + y,208,34,34 );
gfx.PutPixel( 4 + x,140 + y,208,34,34 );
gfx.PutPixel( 5 + x,140 + y,208,34,34 );
gfx.PutPixel( 6 + x,140 + y,208,34,34 );
gfx.PutPixel( 7 + x,140 + y,208,34,34 );
gfx.PutPixel( 8 + x,140 + y,208,34,34 );
gfx.PutPixel( 9 + x,140 + y,208,34,34 );
gfx.PutPixel( 10 + x,140 + y,208,34,34 );
gfx.PutPixel( 11 + x,140 + y,208,34,34 );
gfx.PutPixel( 12 + x,140 + y,208,34,34 );
gfx.PutPixel( 13 + x,140 + y,208,34,34 );
gfx.PutPixel( 14 + x,140 + y,208,34,34 );
gfx.PutPixel( 15 + x,140 + y,208,34,34 );
gfx.PutPixel( 16 + x,140 + y,208,34,34 );
gfx.PutPixel( 17 + x,140 + y,208,27,27 );
gfx.PutPixel( 18 + x,140 + y,217,163,163 );
gfx.PutPixel( 19 + x,140 + y,221,216,216 );
gfx.PutPixel( 20 + x,140 + y,220,208,208 );
gfx.PutPixel( 21 + x,140 + y,220,208,208 );
gfx.PutPixel( 22 + x,140 + y,220,208,208 );
gfx.PutPixel( 23 + x,140 + y,220,208,208 );
gfx.PutPixel( 24 + x,140 + y,220,207,207 );
gfx.PutPixel( 25 + x,140 + y,220,201,201 );
gfx.PutPixel( 26 + x,140 + y,218,183,183 );
gfx.PutPixel( 27 + x,140 + y,216,143,143 );
gfx.PutPixel( 28 + x,140 + y,210,67,67 );
gfx.PutPixel( 29 + x,140 + y,207,25,25 );
gfx.PutPixel( 30 + x,140 + y,208,34,34 );
gfx.PutPixel( 31 + x,140 + y,208,34,34 );
gfx.PutPixel( 32 + x,140 + y,208,34,34 );
gfx.PutPixel( 33 + x,140 + y,208,34,34 );
gfx.PutPixel( 34 + x,140 + y,208,31,31 );
gfx.PutPixel( 35 + x,140 + y,207,26,26 );
gfx.PutPixel( 36 + x,140 + y,212,85,85 );
gfx.PutPixel( 37 + x,140 + y,218,171,171 );
gfx.PutPixel( 38 + x,140 + y,221,217,217 );
gfx.PutPixel( 39 + x,140 + y,222,230,230 );
gfx.PutPixel( 40 + x,140 + y,222,232,232 );
gfx.PutPixel( 41 + x,140 + y,222,233,233 );
gfx.PutPixel( 42 + x,140 + y,222,232,232 );
gfx.PutPixel( 43 + x,140 + y,222,230,230 );
gfx.PutPixel( 44 + x,140 + y,221,217,217 );
gfx.PutPixel( 45 + x,140 + y,218,171,171 );
gfx.PutPixel( 46 + x,140 + y,212,84,84 );
gfx.PutPixel( 47 + x,140 + y,207,25,25 );
gfx.PutPixel( 48 + x,140 + y,208,31,31 );
gfx.PutPixel( 49 + x,140 + y,208,34,34 );
gfx.PutPixel( 50 + x,140 + y,208,34,34 );
gfx.PutPixel( 51 + x,140 + y,208,34,34 );
gfx.PutPixel( 52 + x,140 + y,208,34,34 );
gfx.PutPixel( 53 + x,140 + y,208,34,34 );
gfx.PutPixel( 54 + x,140 + y,208,31,31 );
gfx.PutPixel( 55 + x,140 + y,207,26,26 );
gfx.PutPixel( 56 + x,140 + y,212,85,85 );
gfx.PutPixel( 57 + x,140 + y,218,171,171 );
gfx.PutPixel( 58 + x,140 + y,221,217,217 );
gfx.PutPixel( 59 + x,140 + y,222,230,230 );
gfx.PutPixel( 60 + x,140 + y,222,232,232 );
gfx.PutPixel( 61 + x,140 + y,222,233,233 );
gfx.PutPixel( 62 + x,140 + y,222,232,232 );
gfx.PutPixel( 63 + x,140 + y,222,230,230 );
gfx.PutPixel( 64 + x,140 + y,221,217,217 );
gfx.PutPixel( 65 + x,140 + y,218,171,171 );
gfx.PutPixel( 66 + x,140 + y,212,84,84 );
gfx.PutPixel( 67 + x,140 + y,207,25,25 );
gfx.PutPixel( 68 + x,140 + y,208,31,31 );
gfx.PutPixel( 69 + x,140 + y,208,34,34 );
gfx.PutPixel( 70 + x,140 + y,208,34,34 );
gfx.PutPixel( 71 + x,140 + y,208,34,34 );
gfx.PutPixel( 72 + x,140 + y,208,34,34 );
gfx.PutPixel( 73 + x,140 + y,208,34,34 );
gfx.PutPixel( 74 + x,140 + y,208,34,34 );
gfx.PutPixel( 75 + x,140 + y,208,34,34 );
gfx.PutPixel( 76 + x,140 + y,208,34,34 );
gfx.PutPixel( 77 + x,140 + y,208,34,34 );
gfx.PutPixel( 78 + x,140 + y,208,34,34 );
gfx.PutPixel( 79 + x,140 + y,208,27,27 );
gfx.PutPixel( 80 + x,140 + y,217,163,163 );
gfx.PutPixel( 81 + x,140 + y,221,216,216 );
gfx.PutPixel( 82 + x,140 + y,220,208,208 );
gfx.PutPixel( 83 + x,140 + y,220,208,208 );
gfx.PutPixel( 84 + x,140 + y,220,208,208 );
gfx.PutPixel( 85 + x,140 + y,220,208,208 );
gfx.PutPixel( 86 + x,140 + y,220,207,207 );
gfx.PutPixel( 87 + x,140 + y,220,201,201 );
gfx.PutPixel( 88 + x,140 + y,218,183,183 );
gfx.PutPixel( 89 + x,140 + y,216,143,143 );
gfx.PutPixel( 90 + x,140 + y,210,67,67 );
gfx.PutPixel( 91 + x,140 + y,207,25,25 );
gfx.PutPixel( 92 + x,140 + y,208,34,34 );
gfx.PutPixel( 93 + x,140 + y,208,34,34 );
gfx.PutPixel( 94 + x,140 + y,208,34,34 );
gfx.PutPixel( 95 + x,140 + y,208,34,34 );
gfx.PutPixel( 96 + x,140 + y,208,31,31 );
gfx.PutPixel( 97 + x,140 + y,207,26,26 );
gfx.PutPixel( 98 + x,140 + y,212,85,85 );
gfx.PutPixel( 99 + x,140 + y,218,171,171 );
gfx.PutPixel( 100 + x,140 + y,221,217,217 );
gfx.PutPixel( 101 + x,140 + y,222,230,230 );
gfx.PutPixel( 102 + x,140 + y,222,232,232 );
gfx.PutPixel( 103 + x,140 + y,222,233,233 );
gfx.PutPixel( 104 + x,140 + y,222,232,232 );
gfx.PutPixel( 105 + x,140 + y,222,230,230 );
gfx.PutPixel( 106 + x,140 + y,221,217,217 );
gfx.PutPixel( 107 + x,140 + y,218,171,171 );
gfx.PutPixel( 108 + x,140 + y,212,84,84 );
gfx.PutPixel( 109 + x,140 + y,207,25,25 );
gfx.PutPixel( 110 + x,140 + y,208,31,31 );
gfx.PutPixel( 111 + x,140 + y,208,34,34 );
gfx.PutPixel( 112 + x,140 + y,208,34,34 );
gfx.PutPixel( 113 + x,140 + y,208,34,34 );
gfx.PutPixel( 114 + x,140 + y,208,34,34 );
gfx.PutPixel( 115 + x,140 + y,208,34,34 );
gfx.PutPixel( 116 + x,140 + y,208,31,31 );
gfx.PutPixel( 117 + x,140 + y,207,26,26 );
gfx.PutPixel( 118 + x,140 + y,212,85,85 );
gfx.PutPixel( 119 + x,140 + y,218,171,171 );
gfx.PutPixel( 120 + x,140 + y,221,217,217 );
gfx.PutPixel( 121 + x,140 + y,222,230,230 );
gfx.PutPixel( 122 + x,140 + y,222,232,232 );
gfx.PutPixel( 123 + x,140 + y,222,233,233 );
gfx.PutPixel( 124 + x,140 + y,222,232,232 );
gfx.PutPixel( 125 + x,140 + y,222,230,230 );
gfx.PutPixel( 126 + x,140 + y,221,217,217 );
gfx.PutPixel( 127 + x,140 + y,218,171,171 );
gfx.PutPixel( 128 + x,140 + y,212,84,84 );
gfx.PutPixel( 129 + x,140 + y,207,25,25 );
gfx.PutPixel( 130 + x,140 + y,208,31,31 );
gfx.PutPixel( 131 + x,140 + y,208,34,34 );
gfx.PutPixel( 132 + x,140 + y,208,34,34 );
gfx.PutPixel( 133 + x,140 + y,208,34,34 );
gfx.PutPixel( 134 + x,140 + y,208,34,34 );
gfx.PutPixel( 135 + x,140 + y,208,34,34 );
gfx.PutPixel( 136 + x,140 + y,208,34,34 );
gfx.PutPixel( 137 + x,140 + y,208,34,34 );
gfx.PutPixel( 138 + x,140 + y,208,34,34 );
gfx.PutPixel( 139 + x,140 + y,208,34,34 );
gfx.PutPixel( 140 + x,140 + y,208,34,34 );
gfx.PutPixel( 141 + x,140 + y,208,34,34 );
gfx.PutPixel( 142 + x,140 + y,208,34,34 );
gfx.PutPixel( 143 + x,140 + y,208,34,34 );
gfx.PutPixel( 144 + x,140 + y,208,34,34 );
gfx.PutPixel( 145 + x,140 + y,208,34,34 );
gfx.PutPixel( 146 + x,140 + y,208,34,34 );
gfx.PutPixel( 147 + x,140 + y,208,34,34 );
gfx.PutPixel( 148 + x,140 + y,208,34,34 );
gfx.PutPixel( 149 + x,140 + y,208,34,34 );
gfx.PutPixel( 0 + x,141 + y,208,34,34 );
gfx.PutPixel( 1 + x,141 + y,208,34,34 );
gfx.PutPixel( 2 + x,141 + y,208,34,34 );
gfx.PutPixel( 3 + x,141 + y,208,34,34 );
gfx.PutPixel( 4 + x,141 + y,208,34,34 );
gfx.PutPixel( 5 + x,141 + y,208,34,34 );
gfx.PutPixel( 6 + x,141 + y,208,34,34 );
gfx.PutPixel( 7 + x,141 + y,208,34,34 );
gfx.PutPixel( 8 + x,141 + y,208,34,34 );
gfx.PutPixel( 9 + x,141 + y,208,34,34 );
gfx.PutPixel( 10 + x,141 + y,208,34,34 );
gfx.PutPixel( 11 + x,141 + y,208,34,34 );
gfx.PutPixel( 12 + x,141 + y,208,34,34 );
gfx.PutPixel( 13 + x,141 + y,208,34,34 );
gfx.PutPixel( 14 + x,141 + y,208,34,34 );
gfx.PutPixel( 15 + x,141 + y,208,34,34 );
gfx.PutPixel( 16 + x,141 + y,208,34,34 );
gfx.PutPixel( 17 + x,141 + y,208,27,27 );
gfx.PutPixel( 18 + x,141 + y,218,176,176 );
gfx.PutPixel( 19 + x,141 + y,222,234,234 );
gfx.PutPixel( 20 + x,141 + y,221,225,225 );
gfx.PutPixel( 21 + x,141 + y,221,225,225 );
gfx.PutPixel( 22 + x,141 + y,221,225,225 );
gfx.PutPixel( 23 + x,141 + y,221,225,225 );
gfx.PutPixel( 24 + x,141 + y,221,225,225 );
gfx.PutPixel( 25 + x,141 + y,221,226,226 );
gfx.PutPixel( 26 + x,141 + y,222,228,228 );
gfx.PutPixel( 27 + x,141 + y,222,234,234 );
gfx.PutPixel( 28 + x,141 + y,221,221,221 );
gfx.PutPixel( 29 + x,141 + y,212,103,103 );
gfx.PutPixel( 30 + x,141 + y,207,25,25 );
gfx.PutPixel( 31 + x,141 + y,208,34,34 );
gfx.PutPixel( 32 + x,141 + y,208,34,34 );
gfx.PutPixel( 33 + x,141 + y,208,30,30 );
gfx.PutPixel( 34 + x,141 + y,208,32,32 );
gfx.PutPixel( 35 + x,141 + y,216,142,142 );
gfx.PutPixel( 36 + x,141 + y,222,228,228 );
gfx.PutPixel( 37 + x,141 + y,222,231,231 );
gfx.PutPixel( 38 + x,141 + y,221,223,223 );
gfx.PutPixel( 39 + x,141 + y,221,222,222 );
gfx.PutPixel( 40 + x,141 + y,221,224,224 );
gfx.PutPixel( 41 + x,141 + y,221,225,225 );
gfx.PutPixel( 42 + x,141 + y,221,223,223 );
gfx.PutPixel( 43 + x,141 + y,221,222,222 );
gfx.PutPixel( 44 + x,141 + y,221,223,223 );
gfx.PutPixel( 45 + x,141 + y,222,231,231 );
gfx.PutPixel( 46 + x,141 + y,222,228,228 );
gfx.PutPixel( 47 + x,141 + y,216,142,142 );
gfx.PutPixel( 48 + x,141 + y,208,32,32 );
gfx.PutPixel( 49 + x,141 + y,208,30,30 );
gfx.PutPixel( 50 + x,141 + y,208,34,34 );
gfx.PutPixel( 51 + x,141 + y,208,34,34 );
gfx.PutPixel( 52 + x,141 + y,208,34,34 );
gfx.PutPixel( 53 + x,141 + y,208,30,30 );
gfx.PutPixel( 54 + x,141 + y,208,32,32 );
gfx.PutPixel( 55 + x,141 + y,216,142,142 );
gfx.PutPixel( 56 + x,141 + y,222,228,228 );
gfx.PutPixel( 57 + x,141 + y,222,231,231 );
gfx.PutPixel( 58 + x,141 + y,221,223,223 );
gfx.PutPixel( 59 + x,141 + y,221,222,222 );
gfx.PutPixel( 60 + x,141 + y,221,224,224 );
gfx.PutPixel( 61 + x,141 + y,221,225,225 );
gfx.PutPixel( 62 + x,141 + y,221,223,223 );
gfx.PutPixel( 63 + x,141 + y,221,222,222 );
gfx.PutPixel( 64 + x,141 + y,221,223,223 );
gfx.PutPixel( 65 + x,141 + y,222,231,231 );
gfx.PutPixel( 66 + x,141 + y,222,228,228 );
gfx.PutPixel( 67 + x,141 + y,216,142,142 );
gfx.PutPixel( 68 + x,141 + y,208,32,32 );
gfx.PutPixel( 69 + x,141 + y,208,30,30 );
gfx.PutPixel( 70 + x,141 + y,208,34,34 );
gfx.PutPixel( 71 + x,141 + y,208,34,34 );
gfx.PutPixel( 72 + x,141 + y,208,34,34 );
gfx.PutPixel( 73 + x,141 + y,208,34,34 );
gfx.PutPixel( 74 + x,141 + y,208,34,34 );
gfx.PutPixel( 75 + x,141 + y,208,34,34 );
gfx.PutPixel( 76 + x,141 + y,208,34,34 );
gfx.PutPixel( 77 + x,141 + y,208,34,34 );
gfx.PutPixel( 78 + x,141 + y,208,34,34 );
gfx.PutPixel( 79 + x,141 + y,208,27,27 );
gfx.PutPixel( 80 + x,141 + y,218,176,176 );
gfx.PutPixel( 81 + x,141 + y,222,234,234 );
gfx.PutPixel( 82 + x,141 + y,221,225,225 );
gfx.PutPixel( 83 + x,141 + y,221,225,225 );
gfx.PutPixel( 84 + x,141 + y,221,225,225 );
gfx.PutPixel( 85 + x,141 + y,221,225,225 );
gfx.PutPixel( 86 + x,141 + y,221,225,225 );
gfx.PutPixel( 87 + x,141 + y,221,226,226 );
gfx.PutPixel( 88 + x,141 + y,222,228,228 );
gfx.PutPixel( 89 + x,141 + y,222,234,234 );
gfx.PutPixel( 90 + x,141 + y,221,221,221 );
gfx.PutPixel( 91 + x,141 + y,212,103,103 );
gfx.PutPixel( 92 + x,141 + y,207,25,25 );
gfx.PutPixel( 93 + x,141 + y,208,34,34 );
gfx.PutPixel( 94 + x,141 + y,208,34,34 );
gfx.PutPixel( 95 + x,141 + y,208,30,30 );
gfx.PutPixel( 96 + x,141 + y,208,32,32 );
gfx.PutPixel( 97 + x,141 + y,216,142,142 );
gfx.PutPixel( 98 + x,141 + y,222,228,228 );
gfx.PutPixel( 99 + x,141 + y,222,231,231 );
gfx.PutPixel( 100 + x,141 + y,221,223,223 );
gfx.PutPixel( 101 + x,141 + y,221,222,222 );
gfx.PutPixel( 102 + x,141 + y,221,224,224 );
gfx.PutPixel( 103 + x,141 + y,221,225,225 );
gfx.PutPixel( 104 + x,141 + y,221,223,223 );
gfx.PutPixel( 105 + x,141 + y,221,222,222 );
gfx.PutPixel( 106 + x,141 + y,221,223,223 );
gfx.PutPixel( 107 + x,141 + y,222,231,231 );
gfx.PutPixel( 108 + x,141 + y,222,228,228 );
gfx.PutPixel( 109 + x,141 + y,216,142,142 );
gfx.PutPixel( 110 + x,141 + y,208,32,32 );
gfx.PutPixel( 111 + x,141 + y,208,30,30 );
gfx.PutPixel( 112 + x,141 + y,208,34,34 );
gfx.PutPixel( 113 + x,141 + y,208,34,34 );
gfx.PutPixel( 114 + x,141 + y,208,34,34 );
gfx.PutPixel( 115 + x,141 + y,208,30,30 );
gfx.PutPixel( 116 + x,141 + y,208,32,32 );
gfx.PutPixel( 117 + x,141 + y,216,142,142 );
gfx.PutPixel( 118 + x,141 + y,222,228,228 );
gfx.PutPixel( 119 + x,141 + y,222,231,231 );
gfx.PutPixel( 120 + x,141 + y,221,223,223 );
gfx.PutPixel( 121 + x,141 + y,221,222,222 );
gfx.PutPixel( 122 + x,141 + y,221,224,224 );
gfx.PutPixel( 123 + x,141 + y,221,225,225 );
gfx.PutPixel( 124 + x,141 + y,221,223,223 );
gfx.PutPixel( 125 + x,141 + y,221,222,222 );
gfx.PutPixel( 126 + x,141 + y,221,223,223 );
gfx.PutPixel( 127 + x,141 + y,222,231,231 );
gfx.PutPixel( 128 + x,141 + y,222,228,228 );
gfx.PutPixel( 129 + x,141 + y,216,142,142 );
gfx.PutPixel( 130 + x,141 + y,208,32,32 );
gfx.PutPixel( 131 + x,141 + y,208,30,30 );
gfx.PutPixel( 132 + x,141 + y,208,34,34 );
gfx.PutPixel( 133 + x,141 + y,208,34,34 );
gfx.PutPixel( 134 + x,141 + y,208,34,34 );
gfx.PutPixel( 135 + x,141 + y,208,34,34 );
gfx.PutPixel( 136 + x,141 + y,208,34,34 );
gfx.PutPixel( 137 + x,141 + y,208,34,34 );
gfx.PutPixel( 138 + x,141 + y,208,34,34 );
gfx.PutPixel( 139 + x,141 + y,208,34,34 );
gfx.PutPixel( 140 + x,141 + y,208,34,34 );
gfx.PutPixel( 141 + x,141 + y,208,34,34 );
gfx.PutPixel( 142 + x,141 + y,208,34,34 );
gfx.PutPixel( 143 + x,141 + y,208,34,34 );
gfx.PutPixel( 144 + x,141 + y,208,34,34 );
gfx.PutPixel( 145 + x,141 + y,208,34,34 );
gfx.PutPixel( 146 + x,141 + y,208,34,34 );
gfx.PutPixel( 147 + x,141 + y,208,34,34 );
gfx.PutPixel( 148 + x,141 + y,208,34,34 );
gfx.PutPixel( 149 + x,141 + y,208,34,34 );
gfx.PutPixel( 0 + x,142 + y,208,34,34 );
gfx.PutPixel( 1 + x,142 + y,208,34,34 );
gfx.PutPixel( 2 + x,142 + y,208,34,34 );
gfx.PutPixel( 3 + x,142 + y,208,34,34 );
gfx.PutPixel( 4 + x,142 + y,208,34,34 );
gfx.PutPixel( 5 + x,142 + y,208,34,34 );
gfx.PutPixel( 6 + x,142 + y,208,34,34 );
gfx.PutPixel( 7 + x,142 + y,208,34,34 );
gfx.PutPixel( 8 + x,142 + y,208,34,34 );
gfx.PutPixel( 9 + x,142 + y,208,34,34 );
gfx.PutPixel( 10 + x,142 + y,208,34,34 );
gfx.PutPixel( 11 + x,142 + y,208,34,34 );
gfx.PutPixel( 12 + x,142 + y,208,34,34 );
gfx.PutPixel( 13 + x,142 + y,208,34,34 );
gfx.PutPixel( 14 + x,142 + y,208,34,34 );
gfx.PutPixel( 15 + x,142 + y,208,34,34 );
gfx.PutPixel( 16 + x,142 + y,208,34,34 );
gfx.PutPixel( 17 + x,142 + y,208,27,27 );
gfx.PutPixel( 18 + x,142 + y,218,173,173 );
gfx.PutPixel( 19 + x,142 + y,222,230,230 );
gfx.PutPixel( 20 + x,142 + y,221,221,221 );
gfx.PutPixel( 21 + x,142 + y,221,223,223 );
gfx.PutPixel( 22 + x,142 + y,221,228,228 );
gfx.PutPixel( 23 + x,142 + y,221,228,228 );
gfx.PutPixel( 24 + x,142 + y,222,229,229 );
gfx.PutPixel( 25 + x,142 + y,222,231,231 );
gfx.PutPixel( 26 + x,142 + y,221,224,224 );
gfx.PutPixel( 27 + x,142 + y,221,220,220 );
gfx.PutPixel( 28 + x,142 + y,221,227,227 );
gfx.PutPixel( 29 + x,142 + y,221,220,220 );
gfx.PutPixel( 30 + x,142 + y,210,65,65 );
gfx.PutPixel( 31 + x,142 + y,208,28,28 );
gfx.PutPixel( 32 + x,142 + y,208,33,33 );
gfx.PutPixel( 33 + x,142 + y,208,28,28 );
gfx.PutPixel( 34 + x,142 + y,216,152,152 );
gfx.PutPixel( 35 + x,142 + y,222,235,235 );
gfx.PutPixel( 36 + x,142 + y,221,223,223 );
gfx.PutPixel( 37 + x,142 + y,221,221,221 );
gfx.PutPixel( 38 + x,142 + y,221,228,228 );
gfx.PutPixel( 39 + x,142 + y,222,230,230 );
gfx.PutPixel( 40 + x,142 + y,221,215,215 );
gfx.PutPixel( 41 + x,142 + y,220,208,208 );
gfx.PutPixel( 42 + x,142 + y,221,215,215 );
gfx.PutPixel( 43 + x,142 + y,222,230,230 );
gfx.PutPixel( 44 + x,142 + y,221,227,227 );
gfx.PutPixel( 45 + x,142 + y,221,221,221 );
gfx.PutPixel( 46 + x,142 + y,221,223,223 );
gfx.PutPixel( 47 + x,142 + y,222,236,236 );
gfx.PutPixel( 48 + x,142 + y,216,151,151 );
gfx.PutPixel( 49 + x,142 + y,208,28,28 );
gfx.PutPixel( 50 + x,142 + y,208,33,33 );
gfx.PutPixel( 51 + x,142 + y,208,34,34 );
gfx.PutPixel( 52 + x,142 + y,208,33,33 );
gfx.PutPixel( 53 + x,142 + y,208,28,28 );
gfx.PutPixel( 54 + x,142 + y,216,152,152 );
gfx.PutPixel( 55 + x,142 + y,222,235,235 );
gfx.PutPixel( 56 + x,142 + y,221,223,223 );
gfx.PutPixel( 57 + x,142 + y,221,221,221 );
gfx.PutPixel( 58 + x,142 + y,221,228,228 );
gfx.PutPixel( 59 + x,142 + y,222,230,230 );
gfx.PutPixel( 60 + x,142 + y,221,215,215 );
gfx.PutPixel( 61 + x,142 + y,220,208,208 );
gfx.PutPixel( 62 + x,142 + y,221,215,215 );
gfx.PutPixel( 63 + x,142 + y,222,230,230 );
gfx.PutPixel( 64 + x,142 + y,221,227,227 );
gfx.PutPixel( 65 + x,142 + y,221,221,221 );
gfx.PutPixel( 66 + x,142 + y,221,223,223 );
gfx.PutPixel( 67 + x,142 + y,222,236,236 );
gfx.PutPixel( 68 + x,142 + y,216,151,151 );
gfx.PutPixel( 69 + x,142 + y,208,28,28 );
gfx.PutPixel( 70 + x,142 + y,208,33,33 );
gfx.PutPixel( 71 + x,142 + y,208,34,34 );
gfx.PutPixel( 72 + x,142 + y,208,34,34 );
gfx.PutPixel( 73 + x,142 + y,208,34,34 );
gfx.PutPixel( 74 + x,142 + y,208,34,34 );
gfx.PutPixel( 75 + x,142 + y,208,34,34 );
gfx.PutPixel( 76 + x,142 + y,208,34,34 );
gfx.PutPixel( 77 + x,142 + y,208,34,34 );
gfx.PutPixel( 78 + x,142 + y,208,34,34 );
gfx.PutPixel( 79 + x,142 + y,208,27,27 );
gfx.PutPixel( 80 + x,142 + y,218,173,173 );
gfx.PutPixel( 81 + x,142 + y,222,230,230 );
gfx.PutPixel( 82 + x,142 + y,221,221,221 );
gfx.PutPixel( 83 + x,142 + y,221,223,223 );
gfx.PutPixel( 84 + x,142 + y,221,228,228 );
gfx.PutPixel( 85 + x,142 + y,221,228,228 );
gfx.PutPixel( 86 + x,142 + y,222,229,229 );
gfx.PutPixel( 87 + x,142 + y,222,231,231 );
gfx.PutPixel( 88 + x,142 + y,221,224,224 );
gfx.PutPixel( 89 + x,142 + y,221,220,220 );
gfx.PutPixel( 90 + x,142 + y,221,227,227 );
gfx.PutPixel( 91 + x,142 + y,221,220,220 );
gfx.PutPixel( 92 + x,142 + y,210,65,65 );
gfx.PutPixel( 93 + x,142 + y,208,28,28 );
gfx.PutPixel( 94 + x,142 + y,208,33,33 );
gfx.PutPixel( 95 + x,142 + y,208,28,28 );
gfx.PutPixel( 96 + x,142 + y,216,152,152 );
gfx.PutPixel( 97 + x,142 + y,222,235,235 );
gfx.PutPixel( 98 + x,142 + y,221,223,223 );
gfx.PutPixel( 99 + x,142 + y,221,221,221 );
gfx.PutPixel( 100 + x,142 + y,221,228,228 );
gfx.PutPixel( 101 + x,142 + y,222,230,230 );
gfx.PutPixel( 102 + x,142 + y,221,215,215 );
gfx.PutPixel( 103 + x,142 + y,220,208,208 );
gfx.PutPixel( 104 + x,142 + y,221,215,215 );
gfx.PutPixel( 105 + x,142 + y,222,230,230 );
gfx.PutPixel( 106 + x,142 + y,221,227,227 );
gfx.PutPixel( 107 + x,142 + y,221,221,221 );
gfx.PutPixel( 108 + x,142 + y,221,223,223 );
gfx.PutPixel( 109 + x,142 + y,222,236,236 );
gfx.PutPixel( 110 + x,142 + y,216,151,151 );
gfx.PutPixel( 111 + x,142 + y,208,28,28 );
gfx.PutPixel( 112 + x,142 + y,208,33,33 );
gfx.PutPixel( 113 + x,142 + y,208,34,34 );
gfx.PutPixel( 114 + x,142 + y,208,33,33 );
gfx.PutPixel( 115 + x,142 + y,208,28,28 );
gfx.PutPixel( 116 + x,142 + y,216,152,152 );
gfx.PutPixel( 117 + x,142 + y,222,235,235 );
gfx.PutPixel( 118 + x,142 + y,221,223,223 );
gfx.PutPixel( 119 + x,142 + y,221,221,221 );
gfx.PutPixel( 120 + x,142 + y,221,228,228 );
gfx.PutPixel( 121 + x,142 + y,222,230,230 );
gfx.PutPixel( 122 + x,142 + y,221,215,215 );
gfx.PutPixel( 123 + x,142 + y,220,208,208 );
gfx.PutPixel( 124 + x,142 + y,221,215,215 );
gfx.PutPixel( 125 + x,142 + y,222,230,230 );
gfx.PutPixel( 126 + x,142 + y,221,227,227 );
gfx.PutPixel( 127 + x,142 + y,221,221,221 );
gfx.PutPixel( 128 + x,142 + y,221,223,223 );
gfx.PutPixel( 129 + x,142 + y,222,236,236 );
gfx.PutPixel( 130 + x,142 + y,216,151,151 );
gfx.PutPixel( 131 + x,142 + y,208,28,28 );
gfx.PutPixel( 132 + x,142 + y,208,33,33 );
gfx.PutPixel( 133 + x,142 + y,208,34,34 );
gfx.PutPixel( 134 + x,142 + y,208,34,34 );
gfx.PutPixel( 135 + x,142 + y,208,34,34 );
gfx.PutPixel( 136 + x,142 + y,208,34,34 );
gfx.PutPixel( 137 + x,142 + y,208,34,34 );
gfx.PutPixel( 138 + x,142 + y,208,34,34 );
gfx.PutPixel( 139 + x,142 + y,208,34,34 );
gfx.PutPixel( 140 + x,142 + y,208,34,34 );
gfx.PutPixel( 141 + x,142 + y,208,34,34 );
gfx.PutPixel( 142 + x,142 + y,208,34,34 );
gfx.PutPixel( 143 + x,142 + y,208,34,34 );
gfx.PutPixel( 144 + x,142 + y,208,34,34 );
gfx.PutPixel( 145 + x,142 + y,208,34,34 );
gfx.PutPixel( 146 + x,142 + y,208,34,34 );
gfx.PutPixel( 147 + x,142 + y,208,34,34 );
gfx.PutPixel( 148 + x,142 + y,208,34,34 );
gfx.PutPixel( 149 + x,142 + y,208,34,34 );
gfx.PutPixel( 0 + x,143 + y,208,34,34 );
gfx.PutPixel( 1 + x,143 + y,208,34,34 );
gfx.PutPixel( 2 + x,143 + y,208,34,34 );
gfx.PutPixel( 3 + x,143 + y,208,34,34 );
gfx.PutPixel( 4 + x,143 + y,208,34,34 );
gfx.PutPixel( 5 + x,143 + y,208,34,34 );
gfx.PutPixel( 6 + x,143 + y,208,34,34 );
gfx.PutPixel( 7 + x,143 + y,208,34,34 );
gfx.PutPixel( 8 + x,143 + y,208,34,34 );
gfx.PutPixel( 9 + x,143 + y,208,34,34 );
gfx.PutPixel( 10 + x,143 + y,208,34,34 );
gfx.PutPixel( 11 + x,143 + y,208,34,34 );
gfx.PutPixel( 12 + x,143 + y,208,34,34 );
gfx.PutPixel( 13 + x,143 + y,208,34,34 );
gfx.PutPixel( 14 + x,143 + y,208,34,34 );
gfx.PutPixel( 15 + x,143 + y,208,34,34 );
gfx.PutPixel( 16 + x,143 + y,208,34,34 );
gfx.PutPixel( 17 + x,143 + y,208,27,27 );
gfx.PutPixel( 18 + x,143 + y,218,173,173 );
gfx.PutPixel( 19 + x,143 + y,222,230,230 );
gfx.PutPixel( 20 + x,143 + y,222,228,228 );
gfx.PutPixel( 21 + x,143 + y,219,185,185 );
gfx.PutPixel( 22 + x,143 + y,211,77,77 );
gfx.PutPixel( 23 + x,143 + y,211,82,82 );
gfx.PutPixel( 24 + x,143 + y,212,89,89 );
gfx.PutPixel( 25 + x,143 + y,215,132,132 );
gfx.PutPixel( 26 + x,143 + y,220,214,214 );
gfx.PutPixel( 27 + x,143 + y,221,224,224 );
gfx.PutPixel( 28 + x,143 + y,221,221,221 );
gfx.PutPixel( 29 + x,143 + y,222,234,234 );
gfx.PutPixel( 30 + x,143 + y,215,135,135 );
gfx.PutPixel( 31 + x,143 + y,207,23,23 );
gfx.PutPixel( 32 + x,143 + y,207,23,23 );
gfx.PutPixel( 33 + x,143 + y,213,108,108 );
gfx.PutPixel( 34 + x,143 + y,222,233,233 );
gfx.PutPixel( 35 + x,143 + y,221,222,222 );
gfx.PutPixel( 36 + x,143 + y,221,221,221 );
gfx.PutPixel( 37 + x,143 + y,222,230,230 );
gfx.PutPixel( 38 + x,143 + y,219,190,190 );
gfx.PutPixel( 39 + x,143 + y,213,102,102 );
gfx.PutPixel( 40 + x,143 + y,210,57,57 );
gfx.PutPixel( 41 + x,143 + y,209,47,47 );
gfx.PutPixel( 42 + x,143 + y,210,58,58 );
gfx.PutPixel( 43 + x,143 + y,213,102,102 );
gfx.PutPixel( 44 + x,143 + y,219,190,190 );
gfx.PutPixel( 45 + x,143 + y,222,230,230 );
gfx.PutPixel( 46 + x,143 + y,221,221,221 );
gfx.PutPixel( 47 + x,143 + y,221,222,222 );
gfx.PutPixel( 48 + x,143 + y,222,233,233 );
gfx.PutPixel( 49 + x,143 + y,213,107,107 );
gfx.PutPixel( 50 + x,143 + y,207,23,23 );
gfx.PutPixel( 51 + x,143 + y,208,34,34 );
gfx.PutPixel( 52 + x,143 + y,207,23,23 );
gfx.PutPixel( 53 + x,143 + y,213,108,108 );
gfx.PutPixel( 54 + x,143 + y,222,233,233 );
gfx.PutPixel( 55 + x,143 + y,221,222,222 );
gfx.PutPixel( 56 + x,143 + y,221,221,221 );
gfx.PutPixel( 57 + x,143 + y,222,230,230 );
gfx.PutPixel( 58 + x,143 + y,219,190,190 );
gfx.PutPixel( 59 + x,143 + y,213,102,102 );
gfx.PutPixel( 60 + x,143 + y,210,57,57 );
gfx.PutPixel( 61 + x,143 + y,209,47,47 );
gfx.PutPixel( 62 + x,143 + y,210,58,58 );
gfx.PutPixel( 63 + x,143 + y,213,102,102 );
gfx.PutPixel( 64 + x,143 + y,219,190,190 );
gfx.PutPixel( 65 + x,143 + y,222,230,230 );
gfx.PutPixel( 66 + x,143 + y,221,221,221 );
gfx.PutPixel( 67 + x,143 + y,221,222,222 );
gfx.PutPixel( 68 + x,143 + y,222,233,233 );
gfx.PutPixel( 69 + x,143 + y,213,107,107 );
gfx.PutPixel( 70 + x,143 + y,207,23,23 );
gfx.PutPixel( 71 + x,143 + y,208,34,34 );
gfx.PutPixel( 72 + x,143 + y,208,34,34 );
gfx.PutPixel( 73 + x,143 + y,208,34,34 );
gfx.PutPixel( 74 + x,143 + y,208,34,34 );
gfx.PutPixel( 75 + x,143 + y,208,34,34 );
gfx.PutPixel( 76 + x,143 + y,208,34,34 );
gfx.PutPixel( 77 + x,143 + y,208,34,34 );
gfx.PutPixel( 78 + x,143 + y,208,34,34 );
gfx.PutPixel( 79 + x,143 + y,208,27,27 );
gfx.PutPixel( 80 + x,143 + y,218,173,173 );
gfx.PutPixel( 81 + x,143 + y,222,230,230 );
gfx.PutPixel( 82 + x,143 + y,222,228,228 );
gfx.PutPixel( 83 + x,143 + y,219,185,185 );
gfx.PutPixel( 84 + x,143 + y,211,77,77 );
gfx.PutPixel( 85 + x,143 + y,211,82,82 );
gfx.PutPixel( 86 + x,143 + y,212,89,89 );
gfx.PutPixel( 87 + x,143 + y,215,132,132 );
gfx.PutPixel( 88 + x,143 + y,220,214,214 );
gfx.PutPixel( 89 + x,143 + y,221,224,224 );
gfx.PutPixel( 90 + x,143 + y,221,221,221 );
gfx.PutPixel( 91 + x,143 + y,222,234,234 );
gfx.PutPixel( 92 + x,143 + y,215,135,135 );
gfx.PutPixel( 93 + x,143 + y,207,23,23 );
gfx.PutPixel( 94 + x,143 + y,207,23,23 );
gfx.PutPixel( 95 + x,143 + y,213,108,108 );
gfx.PutPixel( 96 + x,143 + y,222,233,233 );
gfx.PutPixel( 97 + x,143 + y,221,222,222 );
gfx.PutPixel( 98 + x,143 + y,221,221,221 );
gfx.PutPixel( 99 + x,143 + y,222,230,230 );
gfx.PutPixel( 100 + x,143 + y,219,190,190 );
gfx.PutPixel( 101 + x,143 + y,213,102,102 );
gfx.PutPixel( 102 + x,143 + y,210,57,57 );
gfx.PutPixel( 103 + x,143 + y,209,47,47 );
gfx.PutPixel( 104 + x,143 + y,210,58,58 );
gfx.PutPixel( 105 + x,143 + y,213,102,102 );
gfx.PutPixel( 106 + x,143 + y,219,190,190 );
gfx.PutPixel( 107 + x,143 + y,222,230,230 );
gfx.PutPixel( 108 + x,143 + y,221,221,221 );
gfx.PutPixel( 109 + x,143 + y,221,222,222 );
gfx.PutPixel( 110 + x,143 + y,222,233,233 );
gfx.PutPixel( 111 + x,143 + y,213,107,107 );
gfx.PutPixel( 112 + x,143 + y,207,23,23 );
gfx.PutPixel( 113 + x,143 + y,208,34,34 );
gfx.PutPixel( 114 + x,143 + y,207,23,23 );
gfx.PutPixel( 115 + x,143 + y,213,108,108 );
gfx.PutPixel( 116 + x,143 + y,222,233,233 );
gfx.PutPixel( 117 + x,143 + y,221,222,222 );
gfx.PutPixel( 118 + x,143 + y,221,221,221 );
gfx.PutPixel( 119 + x,143 + y,222,230,230 );
gfx.PutPixel( 120 + x,143 + y,219,190,190 );
gfx.PutPixel( 121 + x,143 + y,213,102,102 );
gfx.PutPixel( 122 + x,143 + y,210,57,57 );
gfx.PutPixel( 123 + x,143 + y,209,47,47 );
gfx.PutPixel( 124 + x,143 + y,210,58,58 );
gfx.PutPixel( 125 + x,143 + y,213,102,102 );
gfx.PutPixel( 126 + x,143 + y,219,190,190 );
gfx.PutPixel( 127 + x,143 + y,222,230,230 );
gfx.PutPixel( 128 + x,143 + y,221,221,221 );
gfx.PutPixel( 129 + x,143 + y,221,222,222 );
gfx.PutPixel( 130 + x,143 + y,222,233,233 );
gfx.PutPixel( 131 + x,143 + y,213,107,107 );
gfx.PutPixel( 132 + x,143 + y,207,23,23 );
gfx.PutPixel( 133 + x,143 + y,208,34,34 );
gfx.PutPixel( 134 + x,143 + y,208,34,34 );
gfx.PutPixel( 135 + x,143 + y,208,34,34 );
gfx.PutPixel( 136 + x,143 + y,208,34,34 );
gfx.PutPixel( 137 + x,143 + y,208,34,34 );
gfx.PutPixel( 138 + x,143 + y,208,34,34 );
gfx.PutPixel( 139 + x,143 + y,208,34,34 );
gfx.PutPixel( 140 + x,143 + y,208,34,34 );
gfx.PutPixel( 141 + x,143 + y,208,34,34 );
gfx.PutPixel( 142 + x,143 + y,208,34,34 );
gfx.PutPixel( 143 + x,143 + y,208,34,34 );
gfx.PutPixel( 144 + x,143 + y,208,34,34 );
gfx.PutPixel( 145 + x,143 + y,208,34,34 );
gfx.PutPixel( 146 + x,143 + y,208,34,34 );
gfx.PutPixel( 147 + x,143 + y,208,34,34 );
gfx.PutPixel( 148 + x,143 + y,208,34,34 );
gfx.PutPixel( 149 + x,143 + y,208,34,34 );
gfx.PutPixel( 0 + x,144 + y,208,34,34 );
gfx.PutPixel( 1 + x,144 + y,208,34,34 );
gfx.PutPixel( 2 + x,144 + y,208,34,34 );
gfx.PutPixel( 3 + x,144 + y,208,34,34 );
gfx.PutPixel( 4 + x,144 + y,208,34,34 );
gfx.PutPixel( 5 + x,144 + y,208,34,34 );
gfx.PutPixel( 6 + x,144 + y,208,34,34 );
gfx.PutPixel( 7 + x,144 + y,208,34,34 );
gfx.PutPixel( 8 + x,144 + y,208,34,34 );
gfx.PutPixel( 9 + x,144 + y,208,34,34 );
gfx.PutPixel( 10 + x,144 + y,208,34,34 );
gfx.PutPixel( 11 + x,144 + y,208,34,34 );
gfx.PutPixel( 12 + x,144 + y,208,34,34 );
gfx.PutPixel( 13 + x,144 + y,208,34,34 );
gfx.PutPixel( 14 + x,144 + y,208,34,34 );
gfx.PutPixel( 15 + x,144 + y,208,34,34 );
gfx.PutPixel( 16 + x,144 + y,208,34,34 );
gfx.PutPixel( 17 + x,144 + y,208,27,27 );
gfx.PutPixel( 18 + x,144 + y,218,173,173 );
gfx.PutPixel( 19 + x,144 + y,222,230,230 );
gfx.PutPixel( 20 + x,144 + y,222,230,230 );
gfx.PutPixel( 21 + x,144 + y,218,171,171 );
gfx.PutPixel( 22 + x,144 + y,207,18,18 );
gfx.PutPixel( 23 + x,144 + y,207,25,25 );
gfx.PutPixel( 24 + x,144 + y,207,24,24 );
gfx.PutPixel( 25 + x,144 + y,206,15,15 );
gfx.PutPixel( 26 + x,144 + y,213,112,112 );
gfx.PutPixel( 27 + x,144 + y,222,230,230 );
gfx.PutPixel( 28 + x,144 + y,221,221,221 );
gfx.PutPixel( 29 + x,144 + y,222,230,230 );
gfx.PutPixel( 30 + x,144 + y,217,167,167 );
gfx.PutPixel( 31 + x,144 + y,207,23,23 );
gfx.PutPixel( 32 + x,144 + y,209,41,41 );
gfx.PutPixel( 33 + x,144 + y,220,199,199 );
gfx.PutPixel( 34 + x,144 + y,221,227,227 );
gfx.PutPixel( 35 + x,144 + y,221,221,221 );
gfx.PutPixel( 36 + x,144 + y,222,230,230 );
gfx.PutPixel( 37 + x,144 + y,217,169,169 );
gfx.PutPixel( 38 + x,144 + y,208,38,38 );
gfx.PutPixel( 39 + x,144 + y,207,21,21 );
gfx.PutPixel( 40 + x,144 + y,208,29,29 );
gfx.PutPixel( 41 + x,144 + y,208,30,30 );
gfx.PutPixel( 42 + x,144 + y,208,29,29 );
gfx.PutPixel( 43 + x,144 + y,207,21,21 );
gfx.PutPixel( 44 + x,144 + y,208,38,38 );
gfx.PutPixel( 45 + x,144 + y,218,170,170 );
gfx.PutPixel( 46 + x,144 + y,222,230,230 );
gfx.PutPixel( 47 + x,144 + y,221,221,221 );
gfx.PutPixel( 48 + x,144 + y,221,227,227 );
gfx.PutPixel( 49 + x,144 + y,220,198,198 );
gfx.PutPixel( 50 + x,144 + y,209,41,41 );
gfx.PutPixel( 51 + x,144 + y,208,28,28 );
gfx.PutPixel( 52 + x,144 + y,209,42,42 );
gfx.PutPixel( 53 + x,144 + y,220,199,199 );
gfx.PutPixel( 54 + x,144 + y,221,227,227 );
gfx.PutPixel( 55 + x,144 + y,221,221,221 );
gfx.PutPixel( 56 + x,144 + y,222,230,230 );
gfx.PutPixel( 57 + x,144 + y,217,169,169 );
gfx.PutPixel( 58 + x,144 + y,208,38,38 );
gfx.PutPixel( 59 + x,144 + y,207,21,21 );
gfx.PutPixel( 60 + x,144 + y,208,29,29 );
gfx.PutPixel( 61 + x,144 + y,208,30,30 );
gfx.PutPixel( 62 + x,144 + y,208,29,29 );
gfx.PutPixel( 63 + x,144 + y,207,21,21 );
gfx.PutPixel( 64 + x,144 + y,208,38,38 );
gfx.PutPixel( 65 + x,144 + y,218,170,170 );
gfx.PutPixel( 66 + x,144 + y,222,230,230 );
gfx.PutPixel( 67 + x,144 + y,221,221,221 );
gfx.PutPixel( 68 + x,144 + y,221,227,227 );
gfx.PutPixel( 69 + x,144 + y,220,198,198 );
gfx.PutPixel( 70 + x,144 + y,209,41,41 );
gfx.PutPixel( 71 + x,144 + y,208,31,31 );
gfx.PutPixel( 72 + x,144 + y,208,34,34 );
gfx.PutPixel( 73 + x,144 + y,208,34,34 );
gfx.PutPixel( 74 + x,144 + y,208,34,34 );
gfx.PutPixel( 75 + x,144 + y,208,34,34 );
gfx.PutPixel( 76 + x,144 + y,208,34,34 );
gfx.PutPixel( 77 + x,144 + y,208,34,34 );
gfx.PutPixel( 78 + x,144 + y,208,34,34 );
gfx.PutPixel( 79 + x,144 + y,208,27,27 );
gfx.PutPixel( 80 + x,144 + y,218,173,173 );
gfx.PutPixel( 81 + x,144 + y,222,230,230 );
gfx.PutPixel( 82 + x,144 + y,222,230,230 );
gfx.PutPixel( 83 + x,144 + y,218,171,171 );
gfx.PutPixel( 84 + x,144 + y,207,18,18 );
gfx.PutPixel( 85 + x,144 + y,207,25,25 );
gfx.PutPixel( 86 + x,144 + y,207,24,24 );
gfx.PutPixel( 87 + x,144 + y,206,15,15 );
gfx.PutPixel( 88 + x,144 + y,213,112,112 );
gfx.PutPixel( 89 + x,144 + y,222,230,230 );
gfx.PutPixel( 90 + x,144 + y,221,221,221 );
gfx.PutPixel( 91 + x,144 + y,222,230,230 );
gfx.PutPixel( 92 + x,144 + y,217,167,167 );
gfx.PutPixel( 93 + x,144 + y,207,23,23 );
gfx.PutPixel( 94 + x,144 + y,209,41,41 );
gfx.PutPixel( 95 + x,144 + y,220,199,199 );
gfx.PutPixel( 96 + x,144 + y,221,227,227 );
gfx.PutPixel( 97 + x,144 + y,221,221,221 );
gfx.PutPixel( 98 + x,144 + y,222,230,230 );
gfx.PutPixel( 99 + x,144 + y,217,169,169 );
gfx.PutPixel( 100 + x,144 + y,208,38,38 );
gfx.PutPixel( 101 + x,144 + y,207,21,21 );
gfx.PutPixel( 102 + x,144 + y,208,29,29 );
gfx.PutPixel( 103 + x,144 + y,208,30,30 );
gfx.PutPixel( 104 + x,144 + y,208,29,29 );
gfx.PutPixel( 105 + x,144 + y,207,21,21 );
gfx.PutPixel( 106 + x,144 + y,208,38,38 );
gfx.PutPixel( 107 + x,144 + y,218,170,170 );
gfx.PutPixel( 108 + x,144 + y,222,230,230 );
gfx.PutPixel( 109 + x,144 + y,221,221,221 );
gfx.PutPixel( 110 + x,144 + y,221,227,227 );
gfx.PutPixel( 111 + x,144 + y,220,198,198 );
gfx.PutPixel( 112 + x,144 + y,209,41,41 );
gfx.PutPixel( 113 + x,144 + y,208,28,28 );
gfx.PutPixel( 114 + x,144 + y,209,42,42 );
gfx.PutPixel( 115 + x,144 + y,220,199,199 );
gfx.PutPixel( 116 + x,144 + y,221,227,227 );
gfx.PutPixel( 117 + x,144 + y,221,221,221 );
gfx.PutPixel( 118 + x,144 + y,222,230,230 );
gfx.PutPixel( 119 + x,144 + y,217,169,169 );
gfx.PutPixel( 120 + x,144 + y,208,38,38 );
gfx.PutPixel( 121 + x,144 + y,207,21,21 );
gfx.PutPixel( 122 + x,144 + y,208,29,29 );
gfx.PutPixel( 123 + x,144 + y,208,30,30 );
gfx.PutPixel( 124 + x,144 + y,208,29,29 );
gfx.PutPixel( 125 + x,144 + y,207,21,21 );
gfx.PutPixel( 126 + x,144 + y,208,38,38 );
gfx.PutPixel( 127 + x,144 + y,218,170,170 );
gfx.PutPixel( 128 + x,144 + y,222,230,230 );
gfx.PutPixel( 129 + x,144 + y,221,221,221 );
gfx.PutPixel( 130 + x,144 + y,221,227,227 );
gfx.PutPixel( 131 + x,144 + y,220,198,198 );
gfx.PutPixel( 132 + x,144 + y,209,41,41 );
gfx.PutPixel( 133 + x,144 + y,208,31,31 );
gfx.PutPixel( 134 + x,144 + y,208,34,34 );
gfx.PutPixel( 135 + x,144 + y,208,34,34 );
gfx.PutPixel( 136 + x,144 + y,208,34,34 );
gfx.PutPixel( 137 + x,144 + y,208,34,34 );
gfx.PutPixel( 138 + x,144 + y,208,34,34 );
gfx.PutPixel( 139 + x,144 + y,208,34,34 );
gfx.PutPixel( 140 + x,144 + y,208,34,34 );
gfx.PutPixel( 141 + x,144 + y,208,34,34 );
gfx.PutPixel( 142 + x,144 + y,208,34,34 );
gfx.PutPixel( 143 + x,144 + y,208,34,34 );
gfx.PutPixel( 144 + x,144 + y,208,34,34 );
gfx.PutPixel( 145 + x,144 + y,208,34,34 );
gfx.PutPixel( 146 + x,144 + y,208,34,34 );
gfx.PutPixel( 147 + x,144 + y,208,34,34 );
gfx.PutPixel( 148 + x,144 + y,208,34,34 );
gfx.PutPixel( 149 + x,144 + y,208,34,34 );
gfx.PutPixel( 0 + x,145 + y,208,34,34 );
gfx.PutPixel( 1 + x,145 + y,208,34,34 );
gfx.PutPixel( 2 + x,145 + y,208,34,34 );
gfx.PutPixel( 3 + x,145 + y,208,34,34 );
gfx.PutPixel( 4 + x,145 + y,208,34,34 );
gfx.PutPixel( 5 + x,145 + y,208,34,34 );
gfx.PutPixel( 6 + x,145 + y,208,34,34 );
gfx.PutPixel( 7 + x,145 + y,208,34,34 );
gfx.PutPixel( 8 + x,145 + y,208,34,34 );
gfx.PutPixel( 9 + x,145 + y,208,34,34 );
gfx.PutPixel( 10 + x,145 + y,208,34,34 );
gfx.PutPixel( 11 + x,145 + y,208,34,34 );
gfx.PutPixel( 12 + x,145 + y,208,34,34 );
gfx.PutPixel( 13 + x,145 + y,208,34,34 );
gfx.PutPixel( 14 + x,145 + y,208,34,34 );
gfx.PutPixel( 15 + x,145 + y,208,34,34 );
gfx.PutPixel( 16 + x,145 + y,208,34,34 );
gfx.PutPixel( 17 + x,145 + y,208,27,27 );
gfx.PutPixel( 18 + x,145 + y,218,173,173 );
gfx.PutPixel( 19 + x,145 + y,222,230,230 );
gfx.PutPixel( 20 + x,145 + y,222,230,230 );
gfx.PutPixel( 21 + x,145 + y,218,173,173 );
gfx.PutPixel( 22 + x,145 + y,208,27,27 );
gfx.PutPixel( 23 + x,145 + y,208,34,34 );
gfx.PutPixel( 24 + x,145 + y,208,34,34 );
gfx.PutPixel( 25 + x,145 + y,207,20,20 );
gfx.PutPixel( 26 + x,145 + y,212,82,82 );
gfx.PutPixel( 27 + x,145 + y,222,229,229 );
gfx.PutPixel( 28 + x,145 + y,221,221,221 );
gfx.PutPixel( 29 + x,145 + y,222,230,230 );
gfx.PutPixel( 30 + x,145 + y,218,172,172 );
gfx.PutPixel( 31 + x,145 + y,207,18,18 );
gfx.PutPixel( 32 + x,145 + y,212,93,93 );
gfx.PutPixel( 33 + x,145 + y,222,230,230 );
gfx.PutPixel( 34 + x,145 + y,221,221,221 );
gfx.PutPixel( 35 + x,145 + y,221,225,225 );
gfx.PutPixel( 36 + x,145 + y,220,206,206 );
gfx.PutPixel( 37 + x,145 + y,209,49,49 );
gfx.PutPixel( 38 + x,145 + y,207,26,26 );
gfx.PutPixel( 39 + x,145 + y,208,34,34 );
gfx.PutPixel( 40 + x,145 + y,208,34,34 );
gfx.PutPixel( 41 + x,145 + y,208,34,34 );
gfx.PutPixel( 42 + x,145 + y,208,34,34 );
gfx.PutPixel( 43 + x,145 + y,208,34,34 );
gfx.PutPixel( 44 + x,145 + y,207,26,26 );
gfx.PutPixel( 45 + x,145 + y,209,49,49 );
gfx.PutPixel( 46 + x,145 + y,220,206,206 );
gfx.PutPixel( 47 + x,145 + y,221,225,225 );
gfx.PutPixel( 48 + x,145 + y,221,221,221 );
gfx.PutPixel( 49 + x,145 + y,222,230,230 );
gfx.PutPixel( 50 + x,145 + y,212,93,93 );
gfx.PutPixel( 51 + x,145 + y,207,15,15 );
gfx.PutPixel( 52 + x,145 + y,212,93,93 );
gfx.PutPixel( 53 + x,145 + y,222,230,230 );
gfx.PutPixel( 54 + x,145 + y,221,221,221 );
gfx.PutPixel( 55 + x,145 + y,221,225,225 );
gfx.PutPixel( 56 + x,145 + y,220,206,206 );
gfx.PutPixel( 57 + x,145 + y,209,49,49 );
gfx.PutPixel( 58 + x,145 + y,207,26,26 );
gfx.PutPixel( 59 + x,145 + y,208,34,34 );
gfx.PutPixel( 60 + x,145 + y,208,34,34 );
gfx.PutPixel( 61 + x,145 + y,208,34,34 );
gfx.PutPixel( 62 + x,145 + y,208,34,34 );
gfx.PutPixel( 63 + x,145 + y,208,34,34 );
gfx.PutPixel( 64 + x,145 + y,207,26,26 );
gfx.PutPixel( 65 + x,145 + y,209,49,49 );
gfx.PutPixel( 66 + x,145 + y,220,206,206 );
gfx.PutPixel( 67 + x,145 + y,221,225,225 );
gfx.PutPixel( 68 + x,145 + y,221,221,221 );
gfx.PutPixel( 69 + x,145 + y,222,230,230 );
gfx.PutPixel( 70 + x,145 + y,212,93,93 );
gfx.PutPixel( 71 + x,145 + y,207,24,24 );
gfx.PutPixel( 72 + x,145 + y,208,34,34 );
gfx.PutPixel( 73 + x,145 + y,208,34,34 );
gfx.PutPixel( 74 + x,145 + y,208,34,34 );
gfx.PutPixel( 75 + x,145 + y,208,34,34 );
gfx.PutPixel( 76 + x,145 + y,208,34,34 );
gfx.PutPixel( 77 + x,145 + y,208,34,34 );
gfx.PutPixel( 78 + x,145 + y,208,34,34 );
gfx.PutPixel( 79 + x,145 + y,208,27,27 );
gfx.PutPixel( 80 + x,145 + y,218,173,173 );
gfx.PutPixel( 81 + x,145 + y,222,230,230 );
gfx.PutPixel( 82 + x,145 + y,222,230,230 );
gfx.PutPixel( 83 + x,145 + y,218,173,173 );
gfx.PutPixel( 84 + x,145 + y,208,27,27 );
gfx.PutPixel( 85 + x,145 + y,208,34,34 );
gfx.PutPixel( 86 + x,145 + y,208,34,34 );
gfx.PutPixel( 87 + x,145 + y,207,20,20 );
gfx.PutPixel( 88 + x,145 + y,212,82,82 );
gfx.PutPixel( 89 + x,145 + y,222,229,229 );
gfx.PutPixel( 90 + x,145 + y,221,221,221 );
gfx.PutPixel( 91 + x,145 + y,222,230,230 );
gfx.PutPixel( 92 + x,145 + y,218,172,172 );
gfx.PutPixel( 93 + x,145 + y,207,18,18 );
gfx.PutPixel( 94 + x,145 + y,212,93,93 );
gfx.PutPixel( 95 + x,145 + y,222,230,230 );
gfx.PutPixel( 96 + x,145 + y,221,221,221 );
gfx.PutPixel( 97 + x,145 + y,221,225,225 );
gfx.PutPixel( 98 + x,145 + y,220,206,206 );
gfx.PutPixel( 99 + x,145 + y,209,49,49 );
gfx.PutPixel( 100 + x,145 + y,207,26,26 );
gfx.PutPixel( 101 + x,145 + y,208,34,34 );
gfx.PutPixel( 102 + x,145 + y,208,34,34 );
gfx.PutPixel( 103 + x,145 + y,208,34,34 );
gfx.PutPixel( 104 + x,145 + y,208,34,34 );
gfx.PutPixel( 105 + x,145 + y,208,34,34 );
gfx.PutPixel( 106 + x,145 + y,207,26,26 );
gfx.PutPixel( 107 + x,145 + y,209,49,49 );
gfx.PutPixel( 108 + x,145 + y,220,206,206 );
gfx.PutPixel( 109 + x,145 + y,221,225,225 );
gfx.PutPixel( 110 + x,145 + y,221,221,221 );
gfx.PutPixel( 111 + x,145 + y,222,230,230 );
gfx.PutPixel( 112 + x,145 + y,212,93,93 );
gfx.PutPixel( 113 + x,145 + y,207,15,15 );
gfx.PutPixel( 114 + x,145 + y,212,93,93 );
gfx.PutPixel( 115 + x,145 + y,222,230,230 );
gfx.PutPixel( 116 + x,145 + y,221,221,221 );
gfx.PutPixel( 117 + x,145 + y,221,225,225 );
gfx.PutPixel( 118 + x,145 + y,220,206,206 );
gfx.PutPixel( 119 + x,145 + y,209,49,49 );
gfx.PutPixel( 120 + x,145 + y,207,26,26 );
gfx.PutPixel( 121 + x,145 + y,208,34,34 );
gfx.PutPixel( 122 + x,145 + y,208,34,34 );
gfx.PutPixel( 123 + x,145 + y,208,34,34 );
gfx.PutPixel( 124 + x,145 + y,208,34,34 );
gfx.PutPixel( 125 + x,145 + y,208,34,34 );
gfx.PutPixel( 126 + x,145 + y,207,26,26 );
gfx.PutPixel( 127 + x,145 + y,209,49,49 );
gfx.PutPixel( 128 + x,145 + y,220,206,206 );
gfx.PutPixel( 129 + x,145 + y,221,225,225 );
gfx.PutPixel( 130 + x,145 + y,221,221,221 );
gfx.PutPixel( 131 + x,145 + y,222,230,230 );
gfx.PutPixel( 132 + x,145 + y,212,93,93 );
gfx.PutPixel( 133 + x,145 + y,207,24,24 );
gfx.PutPixel( 134 + x,145 + y,208,34,34 );
gfx.PutPixel( 135 + x,145 + y,208,34,34 );
gfx.PutPixel( 136 + x,145 + y,208,34,34 );
gfx.PutPixel( 137 + x,145 + y,208,34,34 );
gfx.PutPixel( 138 + x,145 + y,208,34,34 );
gfx.PutPixel( 139 + x,145 + y,208,34,34 );
gfx.PutPixel( 140 + x,145 + y,208,34,34 );
gfx.PutPixel( 141 + x,145 + y,208,34,34 );
gfx.PutPixel( 142 + x,145 + y,208,34,34 );
gfx.PutPixel( 143 + x,145 + y,208,34,34 );
gfx.PutPixel( 144 + x,145 + y,208,34,34 );
gfx.PutPixel( 145 + x,145 + y,208,34,34 );
gfx.PutPixel( 146 + x,145 + y,208,34,34 );
gfx.PutPixel( 147 + x,145 + y,208,34,34 );
gfx.PutPixel( 148 + x,145 + y,208,34,34 );
gfx.PutPixel( 149 + x,145 + y,208,34,34 );
gfx.PutPixel( 0 + x,146 + y,208,34,34 );
gfx.PutPixel( 1 + x,146 + y,208,34,34 );
gfx.PutPixel( 2 + x,146 + y,208,34,34 );
gfx.PutPixel( 3 + x,146 + y,208,34,34 );
gfx.PutPixel( 4 + x,146 + y,208,34,34 );
gfx.PutPixel( 5 + x,146 + y,208,34,34 );
gfx.PutPixel( 6 + x,146 + y,208,34,34 );
gfx.PutPixel( 7 + x,146 + y,208,34,34 );
gfx.PutPixel( 8 + x,146 + y,208,34,34 );
gfx.PutPixel( 9 + x,146 + y,208,34,34 );
gfx.PutPixel( 10 + x,146 + y,208,34,34 );
gfx.PutPixel( 11 + x,146 + y,208,34,34 );
gfx.PutPixel( 12 + x,146 + y,208,34,34 );
gfx.PutPixel( 13 + x,146 + y,208,34,34 );
gfx.PutPixel( 14 + x,146 + y,208,34,34 );
gfx.PutPixel( 15 + x,146 + y,208,34,34 );
gfx.PutPixel( 16 + x,146 + y,208,34,34 );
gfx.PutPixel( 17 + x,146 + y,208,27,27 );
gfx.PutPixel( 18 + x,146 + y,218,173,173 );
gfx.PutPixel( 19 + x,146 + y,222,230,230 );
gfx.PutPixel( 20 + x,146 + y,222,230,230 );
gfx.PutPixel( 21 + x,146 + y,218,171,171 );
gfx.PutPixel( 22 + x,146 + y,208,20,20 );
gfx.PutPixel( 23 + x,146 + y,208,27,27 );
gfx.PutPixel( 24 + x,146 + y,208,27,27 );
gfx.PutPixel( 25 + x,146 + y,208,43,43 );
gfx.PutPixel( 26 + x,146 + y,217,165,165 );
gfx.PutPixel( 27 + x,146 + y,222,229,229 );
gfx.PutPixel( 28 + x,146 + y,221,221,221 );
gfx.PutPixel( 29 + x,146 + y,222,232,232 );
gfx.PutPixel( 30 + x,146 + y,216,154,154 );
gfx.PutPixel( 31 + x,146 + y,207,14,14 );
gfx.PutPixel( 32 + x,146 + y,215,139,139 );
gfx.PutPixel( 33 + x,146 + y,222,233,233 );
gfx.PutPixel( 34 + x,146 + y,221,221,221 );
gfx.PutPixel( 35 + x,146 + y,222,232,232 );
gfx.PutPixel( 36 + x,146 + y,215,138,138 );
gfx.PutPixel( 37 + x,146 + y,207,21,21 );
gfx.PutPixel( 38 + x,146 + y,208,34,34 );
gfx.PutPixel( 39 + x,146 + y,208,34,34 );
gfx.PutPixel( 40 + x,146 + y,208,34,34 );
gfx.PutPixel( 41 + x,146 + y,208,34,34 );
gfx.PutPixel( 42 + x,146 + y,208,34,34 );
gfx.PutPixel( 43 + x,146 + y,208,34,34 );
gfx.PutPixel( 44 + x,146 + y,208,34,34 );
gfx.PutPixel( 45 + x,146 + y,207,21,21 );
gfx.PutPixel( 46 + x,146 + y,215,138,138 );
gfx.PutPixel( 47 + x,146 + y,222,232,232 );
gfx.PutPixel( 48 + x,146 + y,221,221,221 );
gfx.PutPixel( 49 + x,146 + y,222,233,233 );
gfx.PutPixel( 50 + x,146 + y,215,139,139 );
gfx.PutPixel( 51 + x,146 + y,206,12,12 );
gfx.PutPixel( 52 + x,146 + y,215,140,140 );
gfx.PutPixel( 53 + x,146 + y,222,233,233 );
gfx.PutPixel( 54 + x,146 + y,221,221,221 );
gfx.PutPixel( 55 + x,146 + y,222,232,232 );
gfx.PutPixel( 56 + x,146 + y,215,138,138 );
gfx.PutPixel( 57 + x,146 + y,207,21,21 );
gfx.PutPixel( 58 + x,146 + y,208,34,34 );
gfx.PutPixel( 59 + x,146 + y,208,34,34 );
gfx.PutPixel( 60 + x,146 + y,208,34,34 );
gfx.PutPixel( 61 + x,146 + y,208,34,34 );
gfx.PutPixel( 62 + x,146 + y,208,34,34 );
gfx.PutPixel( 63 + x,146 + y,208,34,34 );
gfx.PutPixel( 64 + x,146 + y,208,34,34 );
gfx.PutPixel( 65 + x,146 + y,207,21,21 );
gfx.PutPixel( 66 + x,146 + y,215,138,138 );
gfx.PutPixel( 67 + x,146 + y,222,232,232 );
gfx.PutPixel( 68 + x,146 + y,221,221,221 );
gfx.PutPixel( 69 + x,146 + y,222,233,233 );
gfx.PutPixel( 70 + x,146 + y,215,139,139 );
gfx.PutPixel( 71 + x,146 + y,207,23,23 );
gfx.PutPixel( 72 + x,146 + y,208,34,34 );
gfx.PutPixel( 73 + x,146 + y,208,34,34 );
gfx.PutPixel( 74 + x,146 + y,208,34,34 );
gfx.PutPixel( 75 + x,146 + y,208,34,34 );
gfx.PutPixel( 76 + x,146 + y,208,34,34 );
gfx.PutPixel( 77 + x,146 + y,208,34,34 );
gfx.PutPixel( 78 + x,146 + y,208,34,34 );
gfx.PutPixel( 79 + x,146 + y,208,27,27 );
gfx.PutPixel( 80 + x,146 + y,218,173,173 );
gfx.PutPixel( 81 + x,146 + y,222,230,230 );
gfx.PutPixel( 82 + x,146 + y,222,230,230 );
gfx.PutPixel( 83 + x,146 + y,218,171,171 );
gfx.PutPixel( 84 + x,146 + y,208,20,20 );
gfx.PutPixel( 85 + x,146 + y,208,27,27 );
gfx.PutPixel( 86 + x,146 + y,208,27,27 );
gfx.PutPixel( 87 + x,146 + y,208,43,43 );
gfx.PutPixel( 88 + x,146 + y,217,165,165 );
gfx.PutPixel( 89 + x,146 + y,222,229,229 );
gfx.PutPixel( 90 + x,146 + y,221,221,221 );
gfx.PutPixel( 91 + x,146 + y,222,232,232 );
gfx.PutPixel( 92 + x,146 + y,216,154,154 );
gfx.PutPixel( 93 + x,146 + y,207,14,14 );
gfx.PutPixel( 94 + x,146 + y,215,139,139 );
gfx.PutPixel( 95 + x,146 + y,222,233,233 );
gfx.PutPixel( 96 + x,146 + y,221,221,221 );
gfx.PutPixel( 97 + x,146 + y,222,232,232 );
gfx.PutPixel( 98 + x,146 + y,215,138,138 );
gfx.PutPixel( 99 + x,146 + y,207,21,21 );
gfx.PutPixel( 100 + x,146 + y,208,34,34 );
gfx.PutPixel( 101 + x,146 + y,208,34,34 );
gfx.PutPixel( 102 + x,146 + y,208,34,34 );
gfx.PutPixel( 103 + x,146 + y,208,34,34 );
gfx.PutPixel( 104 + x,146 + y,208,34,34 );
gfx.PutPixel( 105 + x,146 + y,208,34,34 );
gfx.PutPixel( 106 + x,146 + y,208,34,34 );
gfx.PutPixel( 107 + x,146 + y,207,21,21 );
gfx.PutPixel( 108 + x,146 + y,215,138,138 );
gfx.PutPixel( 109 + x,146 + y,222,232,232 );
gfx.PutPixel( 110 + x,146 + y,221,221,221 );
gfx.PutPixel( 111 + x,146 + y,222,233,233 );
gfx.PutPixel( 112 + x,146 + y,215,139,139 );
gfx.PutPixel( 113 + x,146 + y,206,12,12 );
gfx.PutPixel( 114 + x,146 + y,215,140,140 );
gfx.PutPixel( 115 + x,146 + y,222,233,233 );
gfx.PutPixel( 116 + x,146 + y,221,221,221 );
gfx.PutPixel( 117 + x,146 + y,222,232,232 );
gfx.PutPixel( 118 + x,146 + y,215,138,138 );
gfx.PutPixel( 119 + x,146 + y,207,21,21 );
gfx.PutPixel( 120 + x,146 + y,208,34,34 );
gfx.PutPixel( 121 + x,146 + y,208,34,34 );
gfx.PutPixel( 122 + x,146 + y,208,34,34 );
gfx.PutPixel( 123 + x,146 + y,208,34,34 );
gfx.PutPixel( 124 + x,146 + y,208,34,34 );
gfx.PutPixel( 125 + x,146 + y,208,34,34 );
gfx.PutPixel( 126 + x,146 + y,208,34,34 );
gfx.PutPixel( 127 + x,146 + y,207,21,21 );
gfx.PutPixel( 128 + x,146 + y,215,138,138 );
gfx.PutPixel( 129 + x,146 + y,222,232,232 );
gfx.PutPixel( 130 + x,146 + y,221,221,221 );
gfx.PutPixel( 131 + x,146 + y,222,233,233 );
gfx.PutPixel( 132 + x,146 + y,215,139,139 );
gfx.PutPixel( 133 + x,146 + y,207,23,23 );
gfx.PutPixel( 134 + x,146 + y,208,34,34 );
gfx.PutPixel( 135 + x,146 + y,208,34,34 );
gfx.PutPixel( 136 + x,146 + y,208,34,34 );
gfx.PutPixel( 137 + x,146 + y,208,34,34 );
gfx.PutPixel( 138 + x,146 + y,208,34,34 );
gfx.PutPixel( 139 + x,146 + y,208,34,34 );
gfx.PutPixel( 140 + x,146 + y,208,34,34 );
gfx.PutPixel( 141 + x,146 + y,208,34,34 );
gfx.PutPixel( 142 + x,146 + y,208,34,34 );
gfx.PutPixel( 143 + x,146 + y,208,34,34 );
gfx.PutPixel( 144 + x,146 + y,208,34,34 );
gfx.PutPixel( 145 + x,146 + y,208,34,34 );
gfx.PutPixel( 146 + x,146 + y,208,34,34 );
gfx.PutPixel( 147 + x,146 + y,208,34,34 );
gfx.PutPixel( 148 + x,146 + y,208,34,34 );
gfx.PutPixel( 149 + x,146 + y,208,34,34 );
gfx.PutPixel( 0 + x,147 + y,208,34,34 );
gfx.PutPixel( 1 + x,147 + y,208,34,34 );
gfx.PutPixel( 2 + x,147 + y,208,34,34 );
gfx.PutPixel( 3 + x,147 + y,208,34,34 );
gfx.PutPixel( 4 + x,147 + y,208,34,34 );
gfx.PutPixel( 5 + x,147 + y,208,34,34 );
gfx.PutPixel( 6 + x,147 + y,208,34,34 );
gfx.PutPixel( 7 + x,147 + y,208,34,34 );
gfx.PutPixel( 8 + x,147 + y,208,34,34 );
gfx.PutPixel( 9 + x,147 + y,208,34,34 );
gfx.PutPixel( 10 + x,147 + y,208,34,34 );
gfx.PutPixel( 11 + x,147 + y,208,34,34 );
gfx.PutPixel( 12 + x,147 + y,208,34,34 );
gfx.PutPixel( 13 + x,147 + y,208,34,34 );
gfx.PutPixel( 14 + x,147 + y,208,34,34 );
gfx.PutPixel( 15 + x,147 + y,208,34,34 );
gfx.PutPixel( 16 + x,147 + y,208,34,34 );
gfx.PutPixel( 17 + x,147 + y,208,27,27 );
gfx.PutPixel( 18 + x,147 + y,218,173,173 );
gfx.PutPixel( 19 + x,147 + y,222,230,230 );
gfx.PutPixel( 20 + x,147 + y,221,223,223 );
gfx.PutPixel( 21 + x,147 + y,220,209,209 );
gfx.PutPixel( 22 + x,147 + y,218,171,171 );
gfx.PutPixel( 23 + x,147 + y,218,172,172 );
gfx.PutPixel( 24 + x,147 + y,218,174,174 );
gfx.PutPixel( 25 + x,147 + y,220,203,203 );
gfx.PutPixel( 26 + x,147 + y,221,227,227 );
gfx.PutPixel( 27 + x,147 + y,221,221,221 );
gfx.PutPixel( 28 + x,147 + y,221,221,221 );
gfx.PutPixel( 29 + x,147 + y,222,234,234 );
gfx.PutPixel( 30 + x,147 + y,213,102,102 );
gfx.PutPixel( 31 + x,147 + y,207,16,16 );
gfx.PutPixel( 32 + x,147 + y,217,164,164 );
gfx.PutPixel( 33 + x,147 + y,222,230,230 );
gfx.PutPixel( 34 + x,147 + y,221,221,221 );
gfx.PutPixel( 35 + x,147 + y,222,230,230 );
gfx.PutPixel( 36 + x,147 + y,212,95,95 );
gfx.PutPixel( 37 + x,147 + y,207,24,24 );
gfx.PutPixel( 38 + x,147 + y,208,34,34 );
gfx.PutPixel( 39 + x,147 + y,208,34,34 );
gfx.PutPixel( 40 + x,147 + y,208,34,34 );
gfx.PutPixel( 41 + x,147 + y,208,34,34 );
gfx.PutPixel( 42 + x,147 + y,208,34,34 );
gfx.PutPixel( 43 + x,147 + y,208,34,34 );
gfx.PutPixel( 44 + x,147 + y,208,34,34 );
gfx.PutPixel( 45 + x,147 + y,207,24,24 );
gfx.PutPixel( 46 + x,147 + y,212,95,95 );
gfx.PutPixel( 47 + x,147 + y,222,230,230 );
gfx.PutPixel( 48 + x,147 + y,221,221,221 );
gfx.PutPixel( 49 + x,147 + y,222,230,230 );
gfx.PutPixel( 50 + x,147 + y,217,163,163 );
gfx.PutPixel( 51 + x,147 + y,207,18,18 );
gfx.PutPixel( 52 + x,147 + y,217,164,164 );
gfx.PutPixel( 53 + x,147 + y,222,230,230 );
gfx.PutPixel( 54 + x,147 + y,221,221,221 );
gfx.PutPixel( 55 + x,147 + y,222,230,230 );
gfx.PutPixel( 56 + x,147 + y,212,95,95 );
gfx.PutPixel( 57 + x,147 + y,207,24,24 );
gfx.PutPixel( 58 + x,147 + y,208,34,34 );
gfx.PutPixel( 59 + x,147 + y,208,34,34 );
gfx.PutPixel( 60 + x,147 + y,208,34,34 );
gfx.PutPixel( 61 + x,147 + y,208,34,34 );
gfx.PutPixel( 62 + x,147 + y,208,34,34 );
gfx.PutPixel( 63 + x,147 + y,208,34,34 );
gfx.PutPixel( 64 + x,147 + y,208,34,34 );
gfx.PutPixel( 65 + x,147 + y,207,24,24 );
gfx.PutPixel( 66 + x,147 + y,212,95,95 );
gfx.PutPixel( 67 + x,147 + y,222,230,230 );
gfx.PutPixel( 68 + x,147 + y,221,221,221 );
gfx.PutPixel( 69 + x,147 + y,222,230,230 );
gfx.PutPixel( 70 + x,147 + y,217,164,164 );
gfx.PutPixel( 71 + x,147 + y,207,26,26 );
gfx.PutPixel( 72 + x,147 + y,208,34,34 );
gfx.PutPixel( 73 + x,147 + y,208,34,34 );
gfx.PutPixel( 74 + x,147 + y,208,34,34 );
gfx.PutPixel( 75 + x,147 + y,208,34,34 );
gfx.PutPixel( 76 + x,147 + y,208,34,34 );
gfx.PutPixel( 77 + x,147 + y,208,34,34 );
gfx.PutPixel( 78 + x,147 + y,208,34,34 );
gfx.PutPixel( 79 + x,147 + y,208,27,27 );
gfx.PutPixel( 80 + x,147 + y,218,173,173 );
gfx.PutPixel( 81 + x,147 + y,222,230,230 );
gfx.PutPixel( 82 + x,147 + y,221,223,223 );
gfx.PutPixel( 83 + x,147 + y,220,209,209 );
gfx.PutPixel( 84 + x,147 + y,218,171,171 );
gfx.PutPixel( 85 + x,147 + y,218,172,172 );
gfx.PutPixel( 86 + x,147 + y,218,174,174 );
gfx.PutPixel( 87 + x,147 + y,220,203,203 );
gfx.PutPixel( 88 + x,147 + y,221,227,227 );
gfx.PutPixel( 89 + x,147 + y,221,221,221 );
gfx.PutPixel( 90 + x,147 + y,221,221,221 );
gfx.PutPixel( 91 + x,147 + y,222,234,234 );
gfx.PutPixel( 92 + x,147 + y,213,102,102 );
gfx.PutPixel( 93 + x,147 + y,207,16,16 );
gfx.PutPixel( 94 + x,147 + y,217,164,164 );
gfx.PutPixel( 95 + x,147 + y,222,230,230 );
gfx.PutPixel( 96 + x,147 + y,221,221,221 );
gfx.PutPixel( 97 + x,147 + y,222,230,230 );
gfx.PutPixel( 98 + x,147 + y,212,95,95 );
gfx.PutPixel( 99 + x,147 + y,207,24,24 );
gfx.PutPixel( 100 + x,147 + y,208,34,34 );
gfx.PutPixel( 101 + x,147 + y,208,34,34 );
gfx.PutPixel( 102 + x,147 + y,208,34,34 );
gfx.PutPixel( 103 + x,147 + y,208,34,34 );
gfx.PutPixel( 104 + x,147 + y,208,34,34 );
gfx.PutPixel( 105 + x,147 + y,208,34,34 );
gfx.PutPixel( 106 + x,147 + y,208,34,34 );
gfx.PutPixel( 107 + x,147 + y,207,24,24 );
gfx.PutPixel( 108 + x,147 + y,212,95,95 );
gfx.PutPixel( 109 + x,147 + y,222,230,230 );
gfx.PutPixel( 110 + x,147 + y,221,221,221 );
gfx.PutPixel( 111 + x,147 + y,222,230,230 );
gfx.PutPixel( 112 + x,147 + y,217,163,163 );
gfx.PutPixel( 113 + x,147 + y,207,18,18 );
gfx.PutPixel( 114 + x,147 + y,217,164,164 );
gfx.PutPixel( 115 + x,147 + y,222,230,230 );
gfx.PutPixel( 116 + x,147 + y,221,221,221 );
gfx.PutPixel( 117 + x,147 + y,222,230,230 );
gfx.PutPixel( 118 + x,147 + y,212,95,95 );
gfx.PutPixel( 119 + x,147 + y,207,24,24 );
gfx.PutPixel( 120 + x,147 + y,208,34,34 );
gfx.PutPixel( 121 + x,147 + y,208,34,34 );
gfx.PutPixel( 122 + x,147 + y,208,34,34 );
gfx.PutPixel( 123 + x,147 + y,208,34,34 );
gfx.PutPixel( 124 + x,147 + y,208,34,34 );
gfx.PutPixel( 125 + x,147 + y,208,34,34 );
gfx.PutPixel( 126 + x,147 + y,208,34,34 );
gfx.PutPixel( 127 + x,147 + y,207,24,24 );
gfx.PutPixel( 128 + x,147 + y,212,95,95 );
gfx.PutPixel( 129 + x,147 + y,222,230,230 );
gfx.PutPixel( 130 + x,147 + y,221,221,221 );
gfx.PutPixel( 131 + x,147 + y,222,230,230 );
gfx.PutPixel( 132 + x,147 + y,217,164,164 );
gfx.PutPixel( 133 + x,147 + y,207,26,26 );
gfx.PutPixel( 134 + x,147 + y,208,34,34 );
gfx.PutPixel( 135 + x,147 + y,208,34,34 );
gfx.PutPixel( 136 + x,147 + y,208,34,34 );
gfx.PutPixel( 137 + x,147 + y,208,34,34 );
gfx.PutPixel( 138 + x,147 + y,208,34,34 );
gfx.PutPixel( 139 + x,147 + y,208,34,34 );
gfx.PutPixel( 140 + x,147 + y,208,34,34 );
gfx.PutPixel( 141 + x,147 + y,208,34,34 );
gfx.PutPixel( 142 + x,147 + y,208,34,34 );
gfx.PutPixel( 143 + x,147 + y,208,34,34 );
gfx.PutPixel( 144 + x,147 + y,208,34,34 );
gfx.PutPixel( 145 + x,147 + y,208,34,34 );
gfx.PutPixel( 146 + x,147 + y,208,34,34 );
gfx.PutPixel( 147 + x,147 + y,208,34,34 );
gfx.PutPixel( 148 + x,147 + y,208,34,34 );
gfx.PutPixel( 149 + x,147 + y,208,34,34 );
gfx.PutPixel( 0 + x,148 + y,208,34,34 );
gfx.PutPixel( 1 + x,148 + y,208,34,34 );
gfx.PutPixel( 2 + x,148 + y,208,34,34 );
gfx.PutPixel( 3 + x,148 + y,208,34,34 );
gfx.PutPixel( 4 + x,148 + y,208,34,34 );
gfx.PutPixel( 5 + x,148 + y,208,34,34 );
gfx.PutPixel( 6 + x,148 + y,208,34,34 );
gfx.PutPixel( 7 + x,148 + y,208,34,34 );
gfx.PutPixel( 8 + x,148 + y,208,34,34 );
gfx.PutPixel( 9 + x,148 + y,208,34,34 );
gfx.PutPixel( 10 + x,148 + y,208,34,34 );
gfx.PutPixel( 11 + x,148 + y,208,34,34 );
gfx.PutPixel( 12 + x,148 + y,208,34,34 );
gfx.PutPixel( 13 + x,148 + y,208,34,34 );
gfx.PutPixel( 14 + x,148 + y,208,34,34 );
gfx.PutPixel( 15 + x,148 + y,208,34,34 );
gfx.PutPixel( 16 + x,148 + y,208,34,34 );
gfx.PutPixel( 17 + x,148 + y,208,27,27 );
gfx.PutPixel( 18 + x,148 + y,218,173,173 );
gfx.PutPixel( 19 + x,148 + y,222,230,230 );
gfx.PutPixel( 20 + x,148 + y,221,221,221 );
gfx.PutPixel( 21 + x,148 + y,221,223,223 );
gfx.PutPixel( 22 + x,148 + y,222,230,230 );
gfx.PutPixel( 23 + x,148 + y,222,230,230 );
gfx.PutPixel( 24 + x,148 + y,222,229,229 );
gfx.PutPixel( 25 + x,148 + y,221,225,225 );
gfx.PutPixel( 26 + x,148 + y,221,221,221 );
gfx.PutPixel( 27 + x,148 + y,221,224,224 );
gfx.PutPixel( 28 + x,148 + y,222,237,237 );
gfx.PutPixel( 29 + x,148 + y,218,176,176 );
gfx.PutPixel( 30 + x,148 + y,208,35,35 );
gfx.PutPixel( 31 + x,148 + y,207,25,25 );
gfx.PutPixel( 32 + x,148 + y,218,172,172 );
gfx.PutPixel( 33 + x,148 + y,222,230,230 );
gfx.PutPixel( 34 + x,148 + y,221,221,221 );
gfx.PutPixel( 35 + x,148 + y,221,228,228 );
gfx.PutPixel( 36 + x,148 + y,211,82,82 );
gfx.PutPixel( 37 + x,148 + y,207,25,25 );
gfx.PutPixel( 38 + x,148 + y,208,34,34 );
gfx.PutPixel( 39 + x,148 + y,208,34,34 );
gfx.PutPixel( 40 + x,148 + y,208,34,34 );
gfx.PutPixel( 41 + x,148 + y,208,34,34 );
gfx.PutPixel( 42 + x,148 + y,208,34,34 );
gfx.PutPixel( 43 + x,148 + y,208,34,34 );
gfx.PutPixel( 44 + x,148 + y,208,34,34 );
gfx.PutPixel( 45 + x,148 + y,207,25,25 );
gfx.PutPixel( 46 + x,148 + y,211,82,82 );
gfx.PutPixel( 47 + x,148 + y,221,228,228 );
gfx.PutPixel( 48 + x,148 + y,221,221,221 );
gfx.PutPixel( 49 + x,148 + y,222,230,230 );
gfx.PutPixel( 50 + x,148 + y,218,172,172 );
gfx.PutPixel( 51 + x,148 + y,207,20,20 );
gfx.PutPixel( 52 + x,148 + y,218,172,172 );
gfx.PutPixel( 53 + x,148 + y,222,230,230 );
gfx.PutPixel( 54 + x,148 + y,221,221,221 );
gfx.PutPixel( 55 + x,148 + y,221,228,228 );
gfx.PutPixel( 56 + x,148 + y,211,82,82 );
gfx.PutPixel( 57 + x,148 + y,207,25,25 );
gfx.PutPixel( 58 + x,148 + y,208,34,34 );
gfx.PutPixel( 59 + x,148 + y,208,34,34 );
gfx.PutPixel( 60 + x,148 + y,208,34,34 );
gfx.PutPixel( 61 + x,148 + y,208,34,34 );
gfx.PutPixel( 62 + x,148 + y,208,34,34 );
gfx.PutPixel( 63 + x,148 + y,208,34,34 );
gfx.PutPixel( 64 + x,148 + y,208,34,34 );
gfx.PutPixel( 65 + x,148 + y,207,25,25 );
gfx.PutPixel( 66 + x,148 + y,211,82,82 );
gfx.PutPixel( 67 + x,148 + y,221,228,228 );
gfx.PutPixel( 68 + x,148 + y,221,221,221 );
gfx.PutPixel( 69 + x,148 + y,222,230,230 );
gfx.PutPixel( 70 + x,148 + y,218,172,172 );
gfx.PutPixel( 71 + x,148 + y,208,27,27 );
gfx.PutPixel( 72 + x,148 + y,208,34,34 );
gfx.PutPixel( 73 + x,148 + y,208,34,34 );
gfx.PutPixel( 74 + x,148 + y,208,34,34 );
gfx.PutPixel( 75 + x,148 + y,208,34,34 );
gfx.PutPixel( 76 + x,148 + y,208,34,34 );
gfx.PutPixel( 77 + x,148 + y,208,34,34 );
gfx.PutPixel( 78 + x,148 + y,208,34,34 );
gfx.PutPixel( 79 + x,148 + y,208,27,27 );
gfx.PutPixel( 80 + x,148 + y,218,173,173 );
gfx.PutPixel( 81 + x,148 + y,222,230,230 );
gfx.PutPixel( 82 + x,148 + y,221,221,221 );
gfx.PutPixel( 83 + x,148 + y,221,223,223 );
gfx.PutPixel( 84 + x,148 + y,222,230,230 );
gfx.PutPixel( 85 + x,148 + y,222,230,230 );
gfx.PutPixel( 86 + x,148 + y,222,229,229 );
gfx.PutPixel( 87 + x,148 + y,221,225,225 );
gfx.PutPixel( 88 + x,148 + y,221,221,221 );
gfx.PutPixel( 89 + x,148 + y,221,224,224 );
gfx.PutPixel( 90 + x,148 + y,222,237,237 );
gfx.PutPixel( 91 + x,148 + y,218,176,176 );
gfx.PutPixel( 92 + x,148 + y,208,35,35 );
gfx.PutPixel( 93 + x,148 + y,207,25,25 );
gfx.PutPixel( 94 + x,148 + y,218,172,172 );
gfx.PutPixel( 95 + x,148 + y,222,230,230 );
gfx.PutPixel( 96 + x,148 + y,221,221,221 );
gfx.PutPixel( 97 + x,148 + y,221,228,228 );
gfx.PutPixel( 98 + x,148 + y,211,82,82 );
gfx.PutPixel( 99 + x,148 + y,207,25,25 );
gfx.PutPixel( 100 + x,148 + y,208,34,34 );
gfx.PutPixel( 101 + x,148 + y,208,34,34 );
gfx.PutPixel( 102 + x,148 + y,208,34,34 );
gfx.PutPixel( 103 + x,148 + y,208,34,34 );
gfx.PutPixel( 104 + x,148 + y,208,34,34 );
gfx.PutPixel( 105 + x,148 + y,208,34,34 );
gfx.PutPixel( 106 + x,148 + y,208,34,34 );
gfx.PutPixel( 107 + x,148 + y,207,25,25 );
gfx.PutPixel( 108 + x,148 + y,211,82,82 );
gfx.PutPixel( 109 + x,148 + y,221,228,228 );
gfx.PutPixel( 110 + x,148 + y,221,221,221 );
gfx.PutPixel( 111 + x,148 + y,222,230,230 );
gfx.PutPixel( 112 + x,148 + y,218,172,172 );
gfx.PutPixel( 113 + x,148 + y,207,20,20 );
gfx.PutPixel( 114 + x,148 + y,218,172,172 );
gfx.PutPixel( 115 + x,148 + y,222,230,230 );
gfx.PutPixel( 116 + x,148 + y,221,221,221 );
gfx.PutPixel( 117 + x,148 + y,221,228,228 );
gfx.PutPixel( 118 + x,148 + y,211,82,82 );
gfx.PutPixel( 119 + x,148 + y,207,25,25 );
gfx.PutPixel( 120 + x,148 + y,208,34,34 );
gfx.PutPixel( 121 + x,148 + y,208,34,34 );
gfx.PutPixel( 122 + x,148 + y,208,34,34 );
gfx.PutPixel( 123 + x,148 + y,208,34,34 );
gfx.PutPixel( 124 + x,148 + y,208,34,34 );
gfx.PutPixel( 125 + x,148 + y,208,34,34 );
gfx.PutPixel( 126 + x,148 + y,208,34,34 );
gfx.PutPixel( 127 + x,148 + y,207,25,25 );
gfx.PutPixel( 128 + x,148 + y,211,82,82 );
gfx.PutPixel( 129 + x,148 + y,221,228,228 );
gfx.PutPixel( 130 + x,148 + y,221,221,221 );
gfx.PutPixel( 131 + x,148 + y,222,230,230 );
gfx.PutPixel( 132 + x,148 + y,218,172,172 );
gfx.PutPixel( 133 + x,148 + y,208,27,27 );
gfx.PutPixel( 134 + x,148 + y,208,34,34 );
gfx.PutPixel( 135 + x,148 + y,208,34,34 );
gfx.PutPixel( 136 + x,148 + y,208,34,34 );
gfx.PutPixel( 137 + x,148 + y,208,34,34 );
gfx.PutPixel( 138 + x,148 + y,208,34,34 );
gfx.PutPixel( 139 + x,148 + y,208,34,34 );
gfx.PutPixel( 140 + x,148 + y,208,34,34 );
gfx.PutPixel( 141 + x,148 + y,208,34,34 );
gfx.PutPixel( 142 + x,148 + y,208,34,34 );
gfx.PutPixel( 143 + x,148 + y,208,34,34 );
gfx.PutPixel( 144 + x,148 + y,208,34,34 );
gfx.PutPixel( 145 + x,148 + y,208,34,34 );
gfx.PutPixel( 146 + x,148 + y,208,34,34 );
gfx.PutPixel( 147 + x,148 + y,208,34,34 );
gfx.PutPixel( 148 + x,148 + y,208,34,34 );
gfx.PutPixel( 149 + x,148 + y,208,34,34 );
gfx.PutPixel( 0 + x,149 + y,208,34,34 );
gfx.PutPixel( 1 + x,149 + y,208,34,34 );
gfx.PutPixel( 2 + x,149 + y,208,34,34 );
gfx.PutPixel( 3 + x,149 + y,208,34,34 );
gfx.PutPixel( 4 + x,149 + y,208,34,34 );
gfx.PutPixel( 5 + x,149 + y,208,34,34 );
gfx.PutPixel( 6 + x,149 + y,208,34,34 );
gfx.PutPixel( 7 + x,149 + y,208,34,34 );
gfx.PutPixel( 8 + x,149 + y,208,34,34 );
gfx.PutPixel( 9 + x,149 + y,208,34,34 );
gfx.PutPixel( 10 + x,149 + y,208,34,34 );
gfx.PutPixel( 11 + x,149 + y,208,34,34 );
gfx.PutPixel( 12 + x,149 + y,208,34,34 );
gfx.PutPixel( 13 + x,149 + y,208,34,34 );
gfx.PutPixel( 14 + x,149 + y,208,34,34 );
gfx.PutPixel( 15 + x,149 + y,208,34,34 );
gfx.PutPixel( 16 + x,149 + y,208,34,34 );
gfx.PutPixel( 17 + x,149 + y,208,27,27 );
gfx.PutPixel( 18 + x,149 + y,218,173,173 );
gfx.PutPixel( 19 + x,149 + y,222,230,230 );
gfx.PutPixel( 20 + x,149 + y,221,220,220 );
gfx.PutPixel( 21 + x,149 + y,221,224,224 );
gfx.PutPixel( 22 + x,149 + y,222,234,234 );
gfx.PutPixel( 23 + x,149 + y,222,233,233 );
gfx.PutPixel( 24 + x,149 + y,222,233,233 );
gfx.PutPixel( 25 + x,149 + y,222,232,232 );
gfx.PutPixel( 26 + x,149 + y,222,230,230 );
gfx.PutPixel( 27 + x,149 + y,221,218,218 );
gfx.PutPixel( 28 + x,149 + y,216,154,154 );
gfx.PutPixel( 29 + x,149 + y,209,46,46 );
gfx.PutPixel( 30 + x,149 + y,208,28,28 );
gfx.PutPixel( 31 + x,149 + y,207,27,27 );
gfx.PutPixel( 32 + x,149 + y,217,164,164 );
gfx.PutPixel( 33 + x,149 + y,222,230,230 );
gfx.PutPixel( 34 + x,149 + y,221,221,221 );
gfx.PutPixel( 35 + x,149 + y,222,230,230 );
gfx.PutPixel( 36 + x,149 + y,212,94,94 );
gfx.PutPixel( 37 + x,149 + y,207,24,24 );
gfx.PutPixel( 38 + x,149 + y,208,34,34 );
gfx.PutPixel( 39 + x,149 + y,208,34,34 );
gfx.PutPixel( 40 + x,149 + y,208,34,34 );
gfx.PutPixel( 41 + x,149 + y,208,34,34 );
gfx.PutPixel( 42 + x,149 + y,208,34,34 );
gfx.PutPixel( 43 + x,149 + y,208,34,34 );
gfx.PutPixel( 44 + x,149 + y,208,34,34 );
gfx.PutPixel( 45 + x,149 + y,207,24,24 );
gfx.PutPixel( 46 + x,149 + y,212,95,95 );
gfx.PutPixel( 47 + x,149 + y,222,230,230 );
gfx.PutPixel( 48 + x,149 + y,221,221,221 );
gfx.PutPixel( 49 + x,149 + y,222,230,230 );
gfx.PutPixel( 50 + x,149 + y,217,163,163 );
gfx.PutPixel( 51 + x,149 + y,207,18,18 );
gfx.PutPixel( 52 + x,149 + y,217,164,164 );
gfx.PutPixel( 53 + x,149 + y,222,230,230 );
gfx.PutPixel( 54 + x,149 + y,221,221,221 );
gfx.PutPixel( 55 + x,149 + y,222,230,230 );
gfx.PutPixel( 56 + x,149 + y,212,94,94 );
gfx.PutPixel( 57 + x,149 + y,207,24,24 );
gfx.PutPixel( 58 + x,149 + y,208,34,34 );
gfx.PutPixel( 59 + x,149 + y,208,34,34 );
gfx.PutPixel( 60 + x,149 + y,208,34,34 );
gfx.PutPixel( 61 + x,149 + y,208,34,34 );
gfx.PutPixel( 62 + x,149 + y,208,34,34 );
gfx.PutPixel( 63 + x,149 + y,208,34,34 );
gfx.PutPixel( 64 + x,149 + y,208,34,34 );
gfx.PutPixel( 65 + x,149 + y,207,24,24 );
gfx.PutPixel( 66 + x,149 + y,212,95,95 );
gfx.PutPixel( 67 + x,149 + y,222,230,230 );
gfx.PutPixel( 68 + x,149 + y,221,221,221 );
gfx.PutPixel( 69 + x,149 + y,222,230,230 );
gfx.PutPixel( 70 + x,149 + y,217,164,164 );
gfx.PutPixel( 71 + x,149 + y,207,26,26 );
gfx.PutPixel( 72 + x,149 + y,208,34,34 );
gfx.PutPixel( 73 + x,149 + y,208,34,34 );
gfx.PutPixel( 74 + x,149 + y,208,34,34 );
gfx.PutPixel( 75 + x,149 + y,208,34,34 );
gfx.PutPixel( 76 + x,149 + y,208,34,34 );
gfx.PutPixel( 77 + x,149 + y,208,34,34 );
gfx.PutPixel( 78 + x,149 + y,208,34,34 );
gfx.PutPixel( 79 + x,149 + y,208,27,27 );
gfx.PutPixel( 80 + x,149 + y,218,173,173 );
gfx.PutPixel( 81 + x,149 + y,222,230,230 );
gfx.PutPixel( 82 + x,149 + y,221,220,220 );
gfx.PutPixel( 83 + x,149 + y,221,224,224 );
gfx.PutPixel( 84 + x,149 + y,222,234,234 );
gfx.PutPixel( 85 + x,149 + y,222,233,233 );
gfx.PutPixel( 86 + x,149 + y,222,233,233 );
gfx.PutPixel( 87 + x,149 + y,222,232,232 );
gfx.PutPixel( 88 + x,149 + y,222,230,230 );
gfx.PutPixel( 89 + x,149 + y,221,218,218 );
gfx.PutPixel( 90 + x,149 + y,216,154,154 );
gfx.PutPixel( 91 + x,149 + y,209,46,46 );
gfx.PutPixel( 92 + x,149 + y,208,28,28 );
gfx.PutPixel( 93 + x,149 + y,207,27,27 );
gfx.PutPixel( 94 + x,149 + y,217,164,164 );
gfx.PutPixel( 95 + x,149 + y,222,230,230 );
gfx.PutPixel( 96 + x,149 + y,221,221,221 );
gfx.PutPixel( 97 + x,149 + y,222,230,230 );
gfx.PutPixel( 98 + x,149 + y,212,94,94 );
gfx.PutPixel( 99 + x,149 + y,207,24,24 );
gfx.PutPixel( 100 + x,149 + y,208,34,34 );
gfx.PutPixel( 101 + x,149 + y,208,34,34 );
gfx.PutPixel( 102 + x,149 + y,208,34,34 );
gfx.PutPixel( 103 + x,149 + y,208,34,34 );
gfx.PutPixel( 104 + x,149 + y,208,34,34 );
gfx.PutPixel( 105 + x,149 + y,208,34,34 );
gfx.PutPixel( 106 + x,149 + y,208,34,34 );
gfx.PutPixel( 107 + x,149 + y,207,24,24 );
gfx.PutPixel( 108 + x,149 + y,212,95,95 );
gfx.PutPixel( 109 + x,149 + y,222,230,230 );
gfx.PutPixel( 110 + x,149 + y,221,221,221 );
gfx.PutPixel( 111 + x,149 + y,222,230,230 );
gfx.PutPixel( 112 + x,149 + y,217,163,163 );
gfx.PutPixel( 113 + x,149 + y,207,18,18 );
gfx.PutPixel( 114 + x,149 + y,217,164,164 );
gfx.PutPixel( 115 + x,149 + y,222,230,230 );
gfx.PutPixel( 116 + x,149 + y,221,221,221 );
gfx.PutPixel( 117 + x,149 + y,222,230,230 );
gfx.PutPixel( 118 + x,149 + y,212,94,94 );
gfx.PutPixel( 119 + x,149 + y,207,24,24 );
gfx.PutPixel( 120 + x,149 + y,208,34,34 );
gfx.PutPixel( 121 + x,149 + y,208,34,34 );
gfx.PutPixel( 122 + x,149 + y,208,34,34 );
gfx.PutPixel( 123 + x,149 + y,208,34,34 );
gfx.PutPixel( 124 + x,149 + y,208,34,34 );
gfx.PutPixel( 125 + x,149 + y,208,34,34 );
gfx.PutPixel( 126 + x,149 + y,208,34,34 );
gfx.PutPixel( 127 + x,149 + y,207,24,24 );
gfx.PutPixel( 128 + x,149 + y,212,95,95 );
gfx.PutPixel( 129 + x,149 + y,222,230,230 );
gfx.PutPixel( 130 + x,149 + y,221,221,221 );
gfx.PutPixel( 131 + x,149 + y,222,230,230 );
gfx.PutPixel( 132 + x,149 + y,217,164,164 );
gfx.PutPixel( 133 + x,149 + y,207,26,26 );
gfx.PutPixel( 134 + x,149 + y,208,34,34 );
gfx.PutPixel( 135 + x,149 + y,208,34,34 );
gfx.PutPixel( 136 + x,149 + y,208,34,34 );
gfx.PutPixel( 137 + x,149 + y,208,34,34 );
gfx.PutPixel( 138 + x,149 + y,208,34,34 );
gfx.PutPixel( 139 + x,149 + y,208,34,34 );
gfx.PutPixel( 140 + x,149 + y,208,34,34 );
gfx.PutPixel( 141 + x,149 + y,208,34,34 );
gfx.PutPixel( 142 + x,149 + y,208,34,34 );
gfx.PutPixel( 143 + x,149 + y,208,34,34 );
gfx.PutPixel( 144 + x,149 + y,208,34,34 );
gfx.PutPixel( 145 + x,149 + y,208,34,34 );
gfx.PutPixel( 146 + x,149 + y,208,34,34 );
gfx.PutPixel( 147 + x,149 + y,208,34,34 );
gfx.PutPixel( 148 + x,149 + y,208,34,34 );
gfx.PutPixel( 149 + x,149 + y,208,34,34 );
gfx.PutPixel( 0 + x,150 + y,208,34,34 );
gfx.PutPixel( 1 + x,150 + y,208,34,34 );
gfx.PutPixel( 2 + x,150 + y,208,34,34 );
gfx.PutPixel( 3 + x,150 + y,208,34,34 );
gfx.PutPixel( 4 + x,150 + y,208,34,34 );
gfx.PutPixel( 5 + x,150 + y,208,34,34 );
gfx.PutPixel( 6 + x,150 + y,208,34,34 );
gfx.PutPixel( 7 + x,150 + y,208,34,34 );
gfx.PutPixel( 8 + x,150 + y,208,34,34 );
gfx.PutPixel( 9 + x,150 + y,208,34,34 );
gfx.PutPixel( 10 + x,150 + y,208,34,34 );
gfx.PutPixel( 11 + x,150 + y,208,34,34 );
gfx.PutPixel( 12 + x,150 + y,208,34,34 );
gfx.PutPixel( 13 + x,150 + y,208,34,34 );
gfx.PutPixel( 14 + x,150 + y,208,34,34 );
gfx.PutPixel( 15 + x,150 + y,208,34,34 );
gfx.PutPixel( 16 + x,150 + y,208,34,34 );
gfx.PutPixel( 17 + x,150 + y,208,27,27 );
gfx.PutPixel( 18 + x,150 + y,218,173,173 );
gfx.PutPixel( 19 + x,150 + y,222,230,230 );
gfx.PutPixel( 20 + x,150 + y,222,226,226 );
gfx.PutPixel( 21 + x,150 + y,220,197,197 );
gfx.PutPixel( 22 + x,150 + y,215,124,124 );
gfx.PutPixel( 23 + x,150 + y,215,128,128 );
gfx.PutPixel( 24 + x,150 + y,215,128,128 );
gfx.PutPixel( 25 + x,150 + y,214,120,120 );
gfx.PutPixel( 26 + x,150 + y,212,98,98 );
gfx.PutPixel( 27 + x,150 + y,210,60,60 );
gfx.PutPixel( 28 + x,150 + y,207,26,26 );
gfx.PutPixel( 29 + x,150 + y,208,30,30 );
gfx.PutPixel( 30 + x,150 + y,208,34,34 );
gfx.PutPixel( 31 + x,150 + y,207,23,23 );
gfx.PutPixel( 32 + x,150 + y,215,140,140 );
gfx.PutPixel( 33 + x,150 + y,222,233,233 );
gfx.PutPixel( 34 + x,150 + y,221,221,221 );
gfx.PutPixel( 35 + x,150 + y,222,232,232 );
gfx.PutPixel( 36 + x,150 + y,215,137,137 );
gfx.PutPixel( 37 + x,150 + y,207,21,21 );
gfx.PutPixel( 38 + x,150 + y,208,34,34 );
gfx.PutPixel( 39 + x,150 + y,208,34,34 );
gfx.PutPixel( 40 + x,150 + y,208,34,34 );
gfx.PutPixel( 41 + x,150 + y,208,34,34 );
gfx.PutPixel( 42 + x,150 + y,208,34,34 );
gfx.PutPixel( 43 + x,150 + y,208,34,34 );
gfx.PutPixel( 44 + x,150 + y,208,34,34 );
gfx.PutPixel( 45 + x,150 + y,207,21,21 );
gfx.PutPixel( 46 + x,150 + y,215,138,138 );
gfx.PutPixel( 47 + x,150 + y,222,232,232 );
gfx.PutPixel( 48 + x,150 + y,221,221,221 );
gfx.PutPixel( 49 + x,150 + y,222,233,233 );
gfx.PutPixel( 50 + x,150 + y,215,139,139 );
gfx.PutPixel( 51 + x,150 + y,206,12,12 );
gfx.PutPixel( 52 + x,150 + y,215,140,140 );
gfx.PutPixel( 53 + x,150 + y,222,233,233 );
gfx.PutPixel( 54 + x,150 + y,221,221,221 );
gfx.PutPixel( 55 + x,150 + y,222,232,232 );
gfx.PutPixel( 56 + x,150 + y,215,137,137 );
gfx.PutPixel( 57 + x,150 + y,207,21,21 );
gfx.PutPixel( 58 + x,150 + y,208,34,34 );
gfx.PutPixel( 59 + x,150 + y,208,34,34 );
gfx.PutPixel( 60 + x,150 + y,208,34,34 );
gfx.PutPixel( 61 + x,150 + y,208,34,34 );
gfx.PutPixel( 62 + x,150 + y,208,34,34 );
gfx.PutPixel( 63 + x,150 + y,208,34,34 );
gfx.PutPixel( 64 + x,150 + y,208,34,34 );
gfx.PutPixel( 65 + x,150 + y,207,21,21 );
gfx.PutPixel( 66 + x,150 + y,215,138,138 );
gfx.PutPixel( 67 + x,150 + y,222,232,232 );
gfx.PutPixel( 68 + x,150 + y,221,221,221 );
gfx.PutPixel( 69 + x,150 + y,222,233,233 );
gfx.PutPixel( 70 + x,150 + y,215,139,139 );
gfx.PutPixel( 71 + x,150 + y,207,23,23 );
gfx.PutPixel( 72 + x,150 + y,208,34,34 );
gfx.PutPixel( 73 + x,150 + y,208,34,34 );
gfx.PutPixel( 74 + x,150 + y,208,34,34 );
gfx.PutPixel( 75 + x,150 + y,208,34,34 );
gfx.PutPixel( 76 + x,150 + y,208,34,34 );
gfx.PutPixel( 77 + x,150 + y,208,34,34 );
gfx.PutPixel( 78 + x,150 + y,208,34,34 );
gfx.PutPixel( 79 + x,150 + y,208,27,27 );
gfx.PutPixel( 80 + x,150 + y,218,173,173 );
gfx.PutPixel( 81 + x,150 + y,222,230,230 );
gfx.PutPixel( 82 + x,150 + y,222,226,226 );
gfx.PutPixel( 83 + x,150 + y,220,197,197 );
gfx.PutPixel( 84 + x,150 + y,215,124,124 );
gfx.PutPixel( 85 + x,150 + y,215,128,128 );
gfx.PutPixel( 86 + x,150 + y,215,128,128 );
gfx.PutPixel( 87 + x,150 + y,214,120,120 );
gfx.PutPixel( 88 + x,150 + y,212,98,98 );
gfx.PutPixel( 89 + x,150 + y,210,60,60 );
gfx.PutPixel( 90 + x,150 + y,207,26,26 );
gfx.PutPixel( 91 + x,150 + y,208,30,30 );
gfx.PutPixel( 92 + x,150 + y,208,34,34 );
gfx.PutPixel( 93 + x,150 + y,207,23,23 );
gfx.PutPixel( 94 + x,150 + y,215,140,140 );
gfx.PutPixel( 95 + x,150 + y,222,233,233 );
gfx.PutPixel( 96 + x,150 + y,221,221,221 );
gfx.PutPixel( 97 + x,150 + y,222,232,232 );
gfx.PutPixel( 98 + x,150 + y,215,137,137 );
gfx.PutPixel( 99 + x,150 + y,207,21,21 );
gfx.PutPixel( 100 + x,150 + y,208,34,34 );
gfx.PutPixel( 101 + x,150 + y,208,34,34 );
gfx.PutPixel( 102 + x,150 + y,208,34,34 );
gfx.PutPixel( 103 + x,150 + y,208,34,34 );
gfx.PutPixel( 104 + x,150 + y,208,34,34 );
gfx.PutPixel( 105 + x,150 + y,208,34,34 );
gfx.PutPixel( 106 + x,150 + y,208,34,34 );
gfx.PutPixel( 107 + x,150 + y,207,21,21 );
gfx.PutPixel( 108 + x,150 + y,215,138,138 );
gfx.PutPixel( 109 + x,150 + y,222,232,232 );
gfx.PutPixel( 110 + x,150 + y,221,221,221 );
gfx.PutPixel( 111 + x,150 + y,222,233,233 );
gfx.PutPixel( 112 + x,150 + y,215,139,139 );
gfx.PutPixel( 113 + x,150 + y,206,12,12 );
gfx.PutPixel( 114 + x,150 + y,215,140,140 );
gfx.PutPixel( 115 + x,150 + y,222,233,233 );
gfx.PutPixel( 116 + x,150 + y,221,221,221 );
gfx.PutPixel( 117 + x,150 + y,222,232,232 );
gfx.PutPixel( 118 + x,150 + y,215,137,137 );
gfx.PutPixel( 119 + x,150 + y,207,21,21 );
gfx.PutPixel( 120 + x,150 + y,208,34,34 );
gfx.PutPixel( 121 + x,150 + y,208,34,34 );
gfx.PutPixel( 122 + x,150 + y,208,34,34 );
gfx.PutPixel( 123 + x,150 + y,208,34,34 );
gfx.PutPixel( 124 + x,150 + y,208,34,34 );
gfx.PutPixel( 125 + x,150 + y,208,34,34 );
gfx.PutPixel( 126 + x,150 + y,208,34,34 );
gfx.PutPixel( 127 + x,150 + y,207,21,21 );
gfx.PutPixel( 128 + x,150 + y,215,138,138 );
gfx.PutPixel( 129 + x,150 + y,222,232,232 );
gfx.PutPixel( 130 + x,150 + y,221,221,221 );
gfx.PutPixel( 131 + x,150 + y,222,233,233 );
gfx.PutPixel( 132 + x,150 + y,215,139,139 );
gfx.PutPixel( 133 + x,150 + y,207,23,23 );
gfx.PutPixel( 134 + x,150 + y,208,34,34 );
gfx.PutPixel( 135 + x,150 + y,208,34,34 );
gfx.PutPixel( 136 + x,150 + y,208,34,34 );
gfx.PutPixel( 137 + x,150 + y,208,34,34 );
gfx.PutPixel( 138 + x,150 + y,208,34,34 );
gfx.PutPixel( 139 + x,150 + y,208,34,34 );
gfx.PutPixel( 140 + x,150 + y,208,34,34 );
gfx.PutPixel( 141 + x,150 + y,208,34,34 );
gfx.PutPixel( 142 + x,150 + y,208,34,34 );
gfx.PutPixel( 143 + x,150 + y,208,34,34 );
gfx.PutPixel( 144 + x,150 + y,208,34,34 );
gfx.PutPixel( 145 + x,150 + y,208,34,34 );
gfx.PutPixel( 146 + x,150 + y,208,34,34 );
gfx.PutPixel( 147 + x,150 + y,208,34,34 );
gfx.PutPixel( 148 + x,150 + y,208,34,34 );
gfx.PutPixel( 149 + x,150 + y,208,34,34 );
gfx.PutPixel( 0 + x,151 + y,208,34,34 );
gfx.PutPixel( 1 + x,151 + y,208,34,34 );
gfx.PutPixel( 2 + x,151 + y,208,34,34 );
gfx.PutPixel( 3 + x,151 + y,208,34,34 );
gfx.PutPixel( 4 + x,151 + y,208,34,34 );
gfx.PutPixel( 5 + x,151 + y,208,34,34 );
gfx.PutPixel( 6 + x,151 + y,208,34,34 );
gfx.PutPixel( 7 + x,151 + y,208,34,34 );
gfx.PutPixel( 8 + x,151 + y,208,34,34 );
gfx.PutPixel( 9 + x,151 + y,208,34,34 );
gfx.PutPixel( 10 + x,151 + y,208,34,34 );
gfx.PutPixel( 11 + x,151 + y,208,34,34 );
gfx.PutPixel( 12 + x,151 + y,208,34,34 );
gfx.PutPixel( 13 + x,151 + y,208,34,34 );
gfx.PutPixel( 14 + x,151 + y,208,34,34 );
gfx.PutPixel( 15 + x,151 + y,208,34,34 );
gfx.PutPixel( 16 + x,151 + y,208,34,34 );
gfx.PutPixel( 17 + x,151 + y,208,27,27 );
gfx.PutPixel( 18 + x,151 + y,218,173,173 );
gfx.PutPixel( 19 + x,151 + y,222,230,230 );
gfx.PutPixel( 20 + x,151 + y,222,231,231 );
gfx.PutPixel( 21 + x,151 + y,218,170,170 );
gfx.PutPixel( 22 + x,151 + y,207,14,14 );
gfx.PutPixel( 23 + x,151 + y,207,22,22 );
gfx.PutPixel( 24 + x,151 + y,207,22,22 );
gfx.PutPixel( 25 + x,151 + y,207,22,22 );
gfx.PutPixel( 26 + x,151 + y,207,24,24 );
gfx.PutPixel( 27 + x,151 + y,208,29,29 );
gfx.PutPixel( 28 + x,151 + y,208,34,34 );
gfx.PutPixel( 29 + x,151 + y,208,34,34 );
gfx.PutPixel( 30 + x,151 + y,208,34,34 );
gfx.PutPixel( 31 + x,151 + y,207,24,24 );
gfx.PutPixel( 32 + x,151 + y,212,94,94 );
gfx.PutPixel( 33 + x,151 + y,222,230,230 );
gfx.PutPixel( 34 + x,151 + y,221,221,221 );
gfx.PutPixel( 35 + x,151 + y,221,225,225 );
gfx.PutPixel( 36 + x,151 + y,220,205,205 );
gfx.PutPixel( 37 + x,151 + y,209,49,49 );
gfx.PutPixel( 38 + x,151 + y,207,26,26 );
gfx.PutPixel( 39 + x,151 + y,208,34,34 );
gfx.PutPixel( 40 + x,151 + y,208,34,34 );
gfx.PutPixel( 41 + x,151 + y,208,34,34 );
gfx.PutPixel( 42 + x,151 + y,208,34,34 );
gfx.PutPixel( 43 + x,151 + y,208,34,34 );
gfx.PutPixel( 44 + x,151 + y,207,26,26 );
gfx.PutPixel( 45 + x,151 + y,209,49,49 );
gfx.PutPixel( 46 + x,151 + y,220,206,206 );
gfx.PutPixel( 47 + x,151 + y,221,225,225 );
gfx.PutPixel( 48 + x,151 + y,221,221,221 );
gfx.PutPixel( 49 + x,151 + y,222,230,230 );
gfx.PutPixel( 50 + x,151 + y,212,93,93 );
gfx.PutPixel( 51 + x,151 + y,207,15,15 );
gfx.PutPixel( 52 + x,151 + y,212,94,94 );
gfx.PutPixel( 53 + x,151 + y,222,230,230 );
gfx.PutPixel( 54 + x,151 + y,221,221,221 );
gfx.PutPixel( 55 + x,151 + y,221,225,225 );
gfx.PutPixel( 56 + x,151 + y,220,205,205 );
gfx.PutPixel( 57 + x,151 + y,209,49,49 );
gfx.PutPixel( 58 + x,151 + y,207,26,26 );
gfx.PutPixel( 59 + x,151 + y,208,34,34 );
gfx.PutPixel( 60 + x,151 + y,208,34,34 );
gfx.PutPixel( 61 + x,151 + y,208,34,34 );
gfx.PutPixel( 62 + x,151 + y,208,34,34 );
gfx.PutPixel( 63 + x,151 + y,208,34,34 );
gfx.PutPixel( 64 + x,151 + y,207,26,26 );
gfx.PutPixel( 65 + x,151 + y,209,49,49 );
gfx.PutPixel( 66 + x,151 + y,220,206,206 );
gfx.PutPixel( 67 + x,151 + y,221,225,225 );
gfx.PutPixel( 68 + x,151 + y,221,221,221 );
gfx.PutPixel( 69 + x,151 + y,222,230,230 );
gfx.PutPixel( 70 + x,151 + y,212,93,93 );
gfx.PutPixel( 71 + x,151 + y,207,24,24 );
gfx.PutPixel( 72 + x,151 + y,208,34,34 );
gfx.PutPixel( 73 + x,151 + y,208,34,34 );
gfx.PutPixel( 74 + x,151 + y,208,34,34 );
gfx.PutPixel( 75 + x,151 + y,208,34,34 );
gfx.PutPixel( 76 + x,151 + y,208,34,34 );
gfx.PutPixel( 77 + x,151 + y,208,34,34 );
gfx.PutPixel( 78 + x,151 + y,208,34,34 );
gfx.PutPixel( 79 + x,151 + y,208,27,27 );
gfx.PutPixel( 80 + x,151 + y,218,173,173 );
gfx.PutPixel( 81 + x,151 + y,222,230,230 );
gfx.PutPixel( 82 + x,151 + y,222,231,231 );
gfx.PutPixel( 83 + x,151 + y,218,170,170 );
gfx.PutPixel( 84 + x,151 + y,207,14,14 );
gfx.PutPixel( 85 + x,151 + y,207,22,22 );
gfx.PutPixel( 86 + x,151 + y,207,22,22 );
gfx.PutPixel( 87 + x,151 + y,207,22,22 );
gfx.PutPixel( 88 + x,151 + y,207,24,24 );
gfx.PutPixel( 89 + x,151 + y,208,29,29 );
gfx.PutPixel( 90 + x,151 + y,208,34,34 );
gfx.PutPixel( 91 + x,151 + y,208,34,34 );
gfx.PutPixel( 92 + x,151 + y,208,34,34 );
gfx.PutPixel( 93 + x,151 + y,207,24,24 );
gfx.PutPixel( 94 + x,151 + y,212,94,94 );
gfx.PutPixel( 95 + x,151 + y,222,230,230 );
gfx.PutPixel( 96 + x,151 + y,221,221,221 );
gfx.PutPixel( 97 + x,151 + y,221,225,225 );
gfx.PutPixel( 98 + x,151 + y,220,205,205 );
gfx.PutPixel( 99 + x,151 + y,209,49,49 );
gfx.PutPixel( 100 + x,151 + y,207,26,26 );
gfx.PutPixel( 101 + x,151 + y,208,34,34 );
gfx.PutPixel( 102 + x,151 + y,208,34,34 );
gfx.PutPixel( 103 + x,151 + y,208,34,34 );
gfx.PutPixel( 104 + x,151 + y,208,34,34 );
gfx.PutPixel( 105 + x,151 + y,208,34,34 );
gfx.PutPixel( 106 + x,151 + y,207,26,26 );
gfx.PutPixel( 107 + x,151 + y,209,49,49 );
gfx.PutPixel( 108 + x,151 + y,220,206,206 );
gfx.PutPixel( 109 + x,151 + y,221,225,225 );
gfx.PutPixel( 110 + x,151 + y,221,221,221 );
gfx.PutPixel( 111 + x,151 + y,222,230,230 );
gfx.PutPixel( 112 + x,151 + y,212,93,93 );
gfx.PutPixel( 113 + x,151 + y,207,15,15 );
gfx.PutPixel( 114 + x,151 + y,212,94,94 );
gfx.PutPixel( 115 + x,151 + y,222,230,230 );
gfx.PutPixel( 116 + x,151 + y,221,221,221 );
gfx.PutPixel( 117 + x,151 + y,221,225,225 );
gfx.PutPixel( 118 + x,151 + y,220,205,205 );
gfx.PutPixel( 119 + x,151 + y,209,49,49 );
gfx.PutPixel( 120 + x,151 + y,207,26,26 );
gfx.PutPixel( 121 + x,151 + y,208,34,34 );
gfx.PutPixel( 122 + x,151 + y,208,34,34 );
gfx.PutPixel( 123 + x,151 + y,208,34,34 );
gfx.PutPixel( 124 + x,151 + y,208,34,34 );
gfx.PutPixel( 125 + x,151 + y,208,34,34 );
gfx.PutPixel( 126 + x,151 + y,207,26,26 );
gfx.PutPixel( 127 + x,151 + y,209,49,49 );
gfx.PutPixel( 128 + x,151 + y,220,206,206 );
gfx.PutPixel( 129 + x,151 + y,221,225,225 );
gfx.PutPixel( 130 + x,151 + y,221,221,221 );
gfx.PutPixel( 131 + x,151 + y,222,230,230 );
gfx.PutPixel( 132 + x,151 + y,212,93,93 );
gfx.PutPixel( 133 + x,151 + y,207,24,24 );
gfx.PutPixel( 134 + x,151 + y,208,34,34 );
gfx.PutPixel( 135 + x,151 + y,208,34,34 );
gfx.PutPixel( 136 + x,151 + y,208,34,34 );
gfx.PutPixel( 137 + x,151 + y,208,34,34 );
gfx.PutPixel( 138 + x,151 + y,208,34,34 );
gfx.PutPixel( 139 + x,151 + y,208,34,34 );
gfx.PutPixel( 140 + x,151 + y,208,34,34 );
gfx.PutPixel( 141 + x,151 + y,208,34,34 );
gfx.PutPixel( 142 + x,151 + y,208,34,34 );
gfx.PutPixel( 143 + x,151 + y,208,34,34 );
gfx.PutPixel( 144 + x,151 + y,208,34,34 );
gfx.PutPixel( 145 + x,151 + y,208,34,34 );
gfx.PutPixel( 146 + x,151 + y,208,34,34 );
gfx.PutPixel( 147 + x,151 + y,208,34,34 );
gfx.PutPixel( 148 + x,151 + y,208,34,34 );
gfx.PutPixel( 149 + x,151 + y,208,34,34 );
gfx.PutPixel( 0 + x,152 + y,208,34,34 );
gfx.PutPixel( 1 + x,152 + y,208,34,34 );
gfx.PutPixel( 2 + x,152 + y,208,34,34 );
gfx.PutPixel( 3 + x,152 + y,208,34,34 );
gfx.PutPixel( 4 + x,152 + y,208,34,34 );
gfx.PutPixel( 5 + x,152 + y,208,34,34 );
gfx.PutPixel( 6 + x,152 + y,208,34,34 );
gfx.PutPixel( 7 + x,152 + y,208,34,34 );
gfx.PutPixel( 8 + x,152 + y,208,34,34 );
gfx.PutPixel( 9 + x,152 + y,208,34,34 );
gfx.PutPixel( 10 + x,152 + y,208,34,34 );
gfx.PutPixel( 11 + x,152 + y,208,34,34 );
gfx.PutPixel( 12 + x,152 + y,208,34,34 );
gfx.PutPixel( 13 + x,152 + y,208,34,34 );
gfx.PutPixel( 14 + x,152 + y,208,34,34 );
gfx.PutPixel( 15 + x,152 + y,208,34,34 );
gfx.PutPixel( 16 + x,152 + y,208,34,34 );
gfx.PutPixel( 17 + x,152 + y,208,27,27 );
gfx.PutPixel( 18 + x,152 + y,218,173,173 );
gfx.PutPixel( 19 + x,152 + y,222,230,230 );
gfx.PutPixel( 20 + x,152 + y,222,230,230 );
gfx.PutPixel( 21 + x,152 + y,218,173,173 );
gfx.PutPixel( 22 + x,152 + y,208,27,27 );
gfx.PutPixel( 23 + x,152 + y,208,34,34 );
gfx.PutPixel( 24 + x,152 + y,208,34,34 );
gfx.PutPixel( 25 + x,152 + y,208,34,34 );
gfx.PutPixel( 26 + x,152 + y,208,34,34 );
gfx.PutPixel( 27 + x,152 + y,208,34,34 );
gfx.PutPixel( 28 + x,152 + y,208,34,34 );
gfx.PutPixel( 29 + x,152 + y,208,34,34 );
gfx.PutPixel( 30 + x,152 + y,208,34,34 );
gfx.PutPixel( 31 + x,152 + y,208,31,31 );
gfx.PutPixel( 32 + x,152 + y,209,41,41 );
gfx.PutPixel( 33 + x,152 + y,220,199,199 );
gfx.PutPixel( 34 + x,152 + y,221,227,227 );
gfx.PutPixel( 35 + x,152 + y,221,221,221 );
gfx.PutPixel( 36 + x,152 + y,222,230,230 );
gfx.PutPixel( 37 + x,152 + y,217,169,169 );
gfx.PutPixel( 38 + x,152 + y,208,38,38 );
gfx.PutPixel( 39 + x,152 + y,207,21,21 );
gfx.PutPixel( 40 + x,152 + y,208,29,29 );
gfx.PutPixel( 41 + x,152 + y,208,30,30 );
gfx.PutPixel( 42 + x,152 + y,208,29,29 );
gfx.PutPixel( 43 + x,152 + y,207,21,21 );
gfx.PutPixel( 44 + x,152 + y,208,38,38 );
gfx.PutPixel( 45 + x,152 + y,217,169,169 );
gfx.PutPixel( 46 + x,152 + y,222,230,230 );
gfx.PutPixel( 47 + x,152 + y,221,221,221 );
gfx.PutPixel( 48 + x,152 + y,221,227,227 );
gfx.PutPixel( 49 + x,152 + y,220,199,199 );
gfx.PutPixel( 50 + x,152 + y,209,41,41 );
gfx.PutPixel( 51 + x,152 + y,208,28,28 );
gfx.PutPixel( 52 + x,152 + y,209,41,41 );
gfx.PutPixel( 53 + x,152 + y,220,199,199 );
gfx.PutPixel( 54 + x,152 + y,221,227,227 );
gfx.PutPixel( 55 + x,152 + y,221,221,221 );
gfx.PutPixel( 56 + x,152 + y,222,230,230 );
gfx.PutPixel( 57 + x,152 + y,217,169,169 );
gfx.PutPixel( 58 + x,152 + y,208,38,38 );
gfx.PutPixel( 59 + x,152 + y,207,21,21 );
gfx.PutPixel( 60 + x,152 + y,208,29,29 );
gfx.PutPixel( 61 + x,152 + y,208,30,30 );
gfx.PutPixel( 62 + x,152 + y,208,29,29 );
gfx.PutPixel( 63 + x,152 + y,207,21,21 );
gfx.PutPixel( 64 + x,152 + y,208,38,38 );
gfx.PutPixel( 65 + x,152 + y,217,169,169 );
gfx.PutPixel( 66 + x,152 + y,222,230,230 );
gfx.PutPixel( 67 + x,152 + y,221,221,221 );
gfx.PutPixel( 68 + x,152 + y,221,227,227 );
gfx.PutPixel( 69 + x,152 + y,220,199,199 );
gfx.PutPixel( 70 + x,152 + y,209,41,41 );
gfx.PutPixel( 71 + x,152 + y,208,31,31 );
gfx.PutPixel( 72 + x,152 + y,208,34,34 );
gfx.PutPixel( 73 + x,152 + y,208,34,34 );
gfx.PutPixel( 74 + x,152 + y,208,34,34 );
gfx.PutPixel( 75 + x,152 + y,208,34,34 );
gfx.PutPixel( 76 + x,152 + y,208,34,34 );
gfx.PutPixel( 77 + x,152 + y,208,34,34 );
gfx.PutPixel( 78 + x,152 + y,208,34,34 );
gfx.PutPixel( 79 + x,152 + y,208,27,27 );
gfx.PutPixel( 80 + x,152 + y,218,173,173 );
gfx.PutPixel( 81 + x,152 + y,222,230,230 );
gfx.PutPixel( 82 + x,152 + y,222,230,230 );
gfx.PutPixel( 83 + x,152 + y,218,173,173 );
gfx.PutPixel( 84 + x,152 + y,208,27,27 );
gfx.PutPixel( 85 + x,152 + y,208,34,34 );
gfx.PutPixel( 86 + x,152 + y,208,34,34 );
gfx.PutPixel( 87 + x,152 + y,208,34,34 );
gfx.PutPixel( 88 + x,152 + y,208,34,34 );
gfx.PutPixel( 89 + x,152 + y,208,34,34 );
gfx.PutPixel( 90 + x,152 + y,208,34,34 );
gfx.PutPixel( 91 + x,152 + y,208,34,34 );
gfx.PutPixel( 92 + x,152 + y,208,34,34 );
gfx.PutPixel( 93 + x,152 + y,208,31,31 );
gfx.PutPixel( 94 + x,152 + y,209,41,41 );
gfx.PutPixel( 95 + x,152 + y,220,199,199 );
gfx.PutPixel( 96 + x,152 + y,221,227,227 );
gfx.PutPixel( 97 + x,152 + y,221,221,221 );
gfx.PutPixel( 98 + x,152 + y,222,230,230 );
gfx.PutPixel( 99 + x,152 + y,217,169,169 );
gfx.PutPixel( 100 + x,152 + y,208,38,38 );
gfx.PutPixel( 101 + x,152 + y,207,21,21 );
gfx.PutPixel( 102 + x,152 + y,208,29,29 );
gfx.PutPixel( 103 + x,152 + y,208,30,30 );
gfx.PutPixel( 104 + x,152 + y,208,29,29 );
gfx.PutPixel( 105 + x,152 + y,207,21,21 );
gfx.PutPixel( 106 + x,152 + y,208,38,38 );
gfx.PutPixel( 107 + x,152 + y,217,169,169 );
gfx.PutPixel( 108 + x,152 + y,222,230,230 );
gfx.PutPixel( 109 + x,152 + y,221,221,221 );
gfx.PutPixel( 110 + x,152 + y,221,227,227 );
gfx.PutPixel( 111 + x,152 + y,220,199,199 );
gfx.PutPixel( 112 + x,152 + y,209,41,41 );
gfx.PutPixel( 113 + x,152 + y,208,28,28 );
gfx.PutPixel( 114 + x,152 + y,209,41,41 );
gfx.PutPixel( 115 + x,152 + y,220,199,199 );
gfx.PutPixel( 116 + x,152 + y,221,227,227 );
gfx.PutPixel( 117 + x,152 + y,221,221,221 );
gfx.PutPixel( 118 + x,152 + y,222,230,230 );
gfx.PutPixel( 119 + x,152 + y,217,169,169 );
gfx.PutPixel( 120 + x,152 + y,208,38,38 );
gfx.PutPixel( 121 + x,152 + y,207,21,21 );
gfx.PutPixel( 122 + x,152 + y,208,29,29 );
gfx.PutPixel( 123 + x,152 + y,208,30,30 );
gfx.PutPixel( 124 + x,152 + y,208,29,29 );
gfx.PutPixel( 125 + x,152 + y,207,21,21 );
gfx.PutPixel( 126 + x,152 + y,208,38,38 );
gfx.PutPixel( 127 + x,152 + y,217,169,169 );
gfx.PutPixel( 128 + x,152 + y,222,230,230 );
gfx.PutPixel( 129 + x,152 + y,221,221,221 );
gfx.PutPixel( 130 + x,152 + y,221,227,227 );
gfx.PutPixel( 131 + x,152 + y,220,199,199 );
gfx.PutPixel( 132 + x,152 + y,209,41,41 );
gfx.PutPixel( 133 + x,152 + y,208,31,31 );
gfx.PutPixel( 134 + x,152 + y,208,34,34 );
gfx.PutPixel( 135 + x,152 + y,208,34,34 );
gfx.PutPixel( 136 + x,152 + y,208,34,34 );
gfx.PutPixel( 137 + x,152 + y,208,34,34 );
gfx.PutPixel( 138 + x,152 + y,208,34,34 );
gfx.PutPixel( 139 + x,152 + y,208,34,34 );
gfx.PutPixel( 140 + x,152 + y,208,34,34 );
gfx.PutPixel( 141 + x,152 + y,208,34,34 );
gfx.PutPixel( 142 + x,152 + y,208,34,34 );
gfx.PutPixel( 143 + x,152 + y,208,34,34 );
gfx.PutPixel( 144 + x,152 + y,208,34,34 );
gfx.PutPixel( 145 + x,152 + y,208,34,34 );
gfx.PutPixel( 146 + x,152 + y,208,34,34 );
gfx.PutPixel( 147 + x,152 + y,208,34,34 );
gfx.PutPixel( 148 + x,152 + y,208,34,34 );
gfx.PutPixel( 149 + x,152 + y,208,34,34 );
gfx.PutPixel( 0 + x,153 + y,208,34,34 );
gfx.PutPixel( 1 + x,153 + y,208,34,34 );
gfx.PutPixel( 2 + x,153 + y,208,34,34 );
gfx.PutPixel( 3 + x,153 + y,208,34,34 );
gfx.PutPixel( 4 + x,153 + y,208,34,34 );
gfx.PutPixel( 5 + x,153 + y,208,34,34 );
gfx.PutPixel( 6 + x,153 + y,208,34,34 );
gfx.PutPixel( 7 + x,153 + y,208,34,34 );
gfx.PutPixel( 8 + x,153 + y,208,34,34 );
gfx.PutPixel( 9 + x,153 + y,208,34,34 );
gfx.PutPixel( 10 + x,153 + y,208,34,34 );
gfx.PutPixel( 11 + x,153 + y,208,34,34 );
gfx.PutPixel( 12 + x,153 + y,208,34,34 );
gfx.PutPixel( 13 + x,153 + y,208,34,34 );
gfx.PutPixel( 14 + x,153 + y,208,34,34 );
gfx.PutPixel( 15 + x,153 + y,208,34,34 );
gfx.PutPixel( 16 + x,153 + y,208,34,34 );
gfx.PutPixel( 17 + x,153 + y,208,27,27 );
gfx.PutPixel( 18 + x,153 + y,218,173,173 );
gfx.PutPixel( 19 + x,153 + y,222,230,230 );
gfx.PutPixel( 20 + x,153 + y,222,230,230 );
gfx.PutPixel( 21 + x,153 + y,218,173,173 );
gfx.PutPixel( 22 + x,153 + y,208,27,27 );
gfx.PutPixel( 23 + x,153 + y,208,34,34 );
gfx.PutPixel( 24 + x,153 + y,208,34,34 );
gfx.PutPixel( 25 + x,153 + y,208,34,34 );
gfx.PutPixel( 26 + x,153 + y,208,34,34 );
gfx.PutPixel( 27 + x,153 + y,208,34,34 );
gfx.PutPixel( 28 + x,153 + y,208,34,34 );
gfx.PutPixel( 29 + x,153 + y,208,34,34 );
gfx.PutPixel( 30 + x,153 + y,208,34,34 );
gfx.PutPixel( 31 + x,153 + y,208,34,34 );
gfx.PutPixel( 32 + x,153 + y,207,23,23 );
gfx.PutPixel( 33 + x,153 + y,213,108,108 );
gfx.PutPixel( 34 + x,153 + y,222,233,233 );
gfx.PutPixel( 35 + x,153 + y,221,222,222 );
gfx.PutPixel( 36 + x,153 + y,221,221,221 );
gfx.PutPixel( 37 + x,153 + y,222,230,230 );
gfx.PutPixel( 38 + x,153 + y,219,190,190 );
gfx.PutPixel( 39 + x,153 + y,213,101,101 );
gfx.PutPixel( 40 + x,153 + y,210,57,57 );
gfx.PutPixel( 41 + x,153 + y,209,47,47 );
gfx.PutPixel( 42 + x,153 + y,210,57,57 );
gfx.PutPixel( 43 + x,153 + y,213,101,101 );
gfx.PutPixel( 44 + x,153 + y,219,190,190 );
gfx.PutPixel( 45 + x,153 + y,222,230,230 );
gfx.PutPixel( 46 + x,153 + y,221,221,221 );
gfx.PutPixel( 47 + x,153 + y,221,222,222 );
gfx.PutPixel( 48 + x,153 + y,222,233,233 );
gfx.PutPixel( 49 + x,153 + y,213,108,108 );
gfx.PutPixel( 50 + x,153 + y,207,23,23 );
gfx.PutPixel( 51 + x,153 + y,208,34,34 );
gfx.PutPixel( 52 + x,153 + y,207,23,23 );
gfx.PutPixel( 53 + x,153 + y,213,108,108 );
gfx.PutPixel( 54 + x,153 + y,222,233,233 );
gfx.PutPixel( 55 + x,153 + y,221,222,222 );
gfx.PutPixel( 56 + x,153 + y,221,221,221 );
gfx.PutPixel( 57 + x,153 + y,222,230,230 );
gfx.PutPixel( 58 + x,153 + y,219,190,190 );
gfx.PutPixel( 59 + x,153 + y,213,101,101 );
gfx.PutPixel( 60 + x,153 + y,210,57,57 );
gfx.PutPixel( 61 + x,153 + y,209,47,47 );
gfx.PutPixel( 62 + x,153 + y,210,57,57 );
gfx.PutPixel( 63 + x,153 + y,213,101,101 );
gfx.PutPixel( 64 + x,153 + y,219,190,190 );
gfx.PutPixel( 65 + x,153 + y,222,230,230 );
gfx.PutPixel( 66 + x,153 + y,221,221,221 );
gfx.PutPixel( 67 + x,153 + y,221,222,222 );
gfx.PutPixel( 68 + x,153 + y,222,233,233 );
gfx.PutPixel( 69 + x,153 + y,213,108,108 );
gfx.PutPixel( 70 + x,153 + y,207,23,23 );
gfx.PutPixel( 71 + x,153 + y,208,34,34 );
gfx.PutPixel( 72 + x,153 + y,208,34,34 );
gfx.PutPixel( 73 + x,153 + y,208,34,34 );
gfx.PutPixel( 74 + x,153 + y,208,34,34 );
gfx.PutPixel( 75 + x,153 + y,208,34,34 );
gfx.PutPixel( 76 + x,153 + y,208,34,34 );
gfx.PutPixel( 77 + x,153 + y,208,34,34 );
gfx.PutPixel( 78 + x,153 + y,208,34,34 );
gfx.PutPixel( 79 + x,153 + y,208,27,27 );
gfx.PutPixel( 80 + x,153 + y,218,173,173 );
gfx.PutPixel( 81 + x,153 + y,222,230,230 );
gfx.PutPixel( 82 + x,153 + y,222,230,230 );
gfx.PutPixel( 83 + x,153 + y,218,173,173 );
gfx.PutPixel( 84 + x,153 + y,208,27,27 );
gfx.PutPixel( 85 + x,153 + y,208,34,34 );
gfx.PutPixel( 86 + x,153 + y,208,34,34 );
gfx.PutPixel( 87 + x,153 + y,208,34,34 );
gfx.PutPixel( 88 + x,153 + y,208,34,34 );
gfx.PutPixel( 89 + x,153 + y,208,34,34 );
gfx.PutPixel( 90 + x,153 + y,208,34,34 );
gfx.PutPixel( 91 + x,153 + y,208,34,34 );
gfx.PutPixel( 92 + x,153 + y,208,34,34 );
gfx.PutPixel( 93 + x,153 + y,208,34,34 );
gfx.PutPixel( 94 + x,153 + y,207,23,23 );
gfx.PutPixel( 95 + x,153 + y,213,108,108 );
gfx.PutPixel( 96 + x,153 + y,222,233,233 );
gfx.PutPixel( 97 + x,153 + y,221,222,222 );
gfx.PutPixel( 98 + x,153 + y,221,221,221 );
gfx.PutPixel( 99 + x,153 + y,222,230,230 );
gfx.PutPixel( 100 + x,153 + y,219,190,190 );
gfx.PutPixel( 101 + x,153 + y,213,101,101 );
gfx.PutPixel( 102 + x,153 + y,210,57,57 );
gfx.PutPixel( 103 + x,153 + y,209,47,47 );
gfx.PutPixel( 104 + x,153 + y,210,57,57 );
gfx.PutPixel( 105 + x,153 + y,213,101,101 );
gfx.PutPixel( 106 + x,153 + y,219,190,190 );
gfx.PutPixel( 107 + x,153 + y,222,230,230 );
gfx.PutPixel( 108 + x,153 + y,221,221,221 );
gfx.PutPixel( 109 + x,153 + y,221,222,222 );
gfx.PutPixel( 110 + x,153 + y,222,233,233 );
gfx.PutPixel( 111 + x,153 + y,213,108,108 );
gfx.PutPixel( 112 + x,153 + y,207,23,23 );
gfx.PutPixel( 113 + x,153 + y,208,34,34 );
gfx.PutPixel( 114 + x,153 + y,207,23,23 );
gfx.PutPixel( 115 + x,153 + y,213,108,108 );
gfx.PutPixel( 116 + x,153 + y,222,233,233 );
gfx.PutPixel( 117 + x,153 + y,221,222,222 );
gfx.PutPixel( 118 + x,153 + y,221,221,221 );
gfx.PutPixel( 119 + x,153 + y,222,230,230 );
gfx.PutPixel( 120 + x,153 + y,219,190,190 );
gfx.PutPixel( 121 + x,153 + y,213,101,101 );
gfx.PutPixel( 122 + x,153 + y,210,57,57 );
gfx.PutPixel( 123 + x,153 + y,209,47,47 );
gfx.PutPixel( 124 + x,153 + y,210,57,57 );
gfx.PutPixel( 125 + x,153 + y,213,101,101 );
gfx.PutPixel( 126 + x,153 + y,219,190,190 );
gfx.PutPixel( 127 + x,153 + y,222,230,230 );
gfx.PutPixel( 128 + x,153 + y,221,221,221 );
gfx.PutPixel( 129 + x,153 + y,221,222,222 );
gfx.PutPixel( 130 + x,153 + y,222,233,233 );
gfx.PutPixel( 131 + x,153 + y,213,108,108 );
gfx.PutPixel( 132 + x,153 + y,207,23,23 );
gfx.PutPixel( 133 + x,153 + y,208,34,34 );
gfx.PutPixel( 134 + x,153 + y,208,34,34 );
gfx.PutPixel( 135 + x,153 + y,208,34,34 );
gfx.PutPixel( 136 + x,153 + y,208,34,34 );
gfx.PutPixel( 137 + x,153 + y,208,34,34 );
gfx.PutPixel( 138 + x,153 + y,208,34,34 );
gfx.PutPixel( 139 + x,153 + y,208,34,34 );
gfx.PutPixel( 140 + x,153 + y,208,34,34 );
gfx.PutPixel( 141 + x,153 + y,208,34,34 );
gfx.PutPixel( 142 + x,153 + y,208,34,34 );
gfx.PutPixel( 143 + x,153 + y,208,34,34 );
gfx.PutPixel( 144 + x,153 + y,208,34,34 );
gfx.PutPixel( 145 + x,153 + y,208,34,34 );
gfx.PutPixel( 146 + x,153 + y,208,34,34 );
gfx.PutPixel( 147 + x,153 + y,208,34,34 );
gfx.PutPixel( 148 + x,153 + y,208,34,34 );
gfx.PutPixel( 149 + x,153 + y,208,34,34 );
gfx.PutPixel( 0 + x,154 + y,208,34,34 );
gfx.PutPixel( 1 + x,154 + y,208,34,34 );
gfx.PutPixel( 2 + x,154 + y,208,34,34 );
gfx.PutPixel( 3 + x,154 + y,208,34,34 );
gfx.PutPixel( 4 + x,154 + y,208,34,34 );
gfx.PutPixel( 5 + x,154 + y,208,34,34 );
gfx.PutPixel( 6 + x,154 + y,208,34,34 );
gfx.PutPixel( 7 + x,154 + y,208,34,34 );
gfx.PutPixel( 8 + x,154 + y,208,34,34 );
gfx.PutPixel( 9 + x,154 + y,208,34,34 );
gfx.PutPixel( 10 + x,154 + y,208,34,34 );
gfx.PutPixel( 11 + x,154 + y,208,34,34 );
gfx.PutPixel( 12 + x,154 + y,208,34,34 );
gfx.PutPixel( 13 + x,154 + y,208,34,34 );
gfx.PutPixel( 14 + x,154 + y,208,34,34 );
gfx.PutPixel( 15 + x,154 + y,208,34,34 );
gfx.PutPixel( 16 + x,154 + y,208,34,34 );
gfx.PutPixel( 17 + x,154 + y,208,27,27 );
gfx.PutPixel( 18 + x,154 + y,218,173,173 );
gfx.PutPixel( 19 + x,154 + y,222,230,230 );
gfx.PutPixel( 20 + x,154 + y,222,230,230 );
gfx.PutPixel( 21 + x,154 + y,218,173,173 );
gfx.PutPixel( 22 + x,154 + y,208,27,27 );
gfx.PutPixel( 23 + x,154 + y,208,34,34 );
gfx.PutPixel( 24 + x,154 + y,208,34,34 );
gfx.PutPixel( 25 + x,154 + y,208,34,34 );
gfx.PutPixel( 26 + x,154 + y,208,34,34 );
gfx.PutPixel( 27 + x,154 + y,208,34,34 );
gfx.PutPixel( 28 + x,154 + y,208,34,34 );
gfx.PutPixel( 29 + x,154 + y,208,34,34 );
gfx.PutPixel( 30 + x,154 + y,208,34,34 );
gfx.PutPixel( 31 + x,154 + y,208,34,34 );
gfx.PutPixel( 32 + x,154 + y,208,33,33 );
gfx.PutPixel( 33 + x,154 + y,208,28,28 );
gfx.PutPixel( 34 + x,154 + y,216,153,153 );
gfx.PutPixel( 35 + x,154 + y,222,236,236 );
gfx.PutPixel( 36 + x,154 + y,221,223,223 );
gfx.PutPixel( 37 + x,154 + y,221,221,221 );
gfx.PutPixel( 38 + x,154 + y,221,228,228 );
gfx.PutPixel( 39 + x,154 + y,222,230,230 );
gfx.PutPixel( 40 + x,154 + y,221,215,215 );
gfx.PutPixel( 41 + x,154 + y,220,208,208 );
gfx.PutPixel( 42 + x,154 + y,221,215,215 );
gfx.PutPixel( 43 + x,154 + y,222,230,230 );
gfx.PutPixel( 44 + x,154 + y,221,228,228 );
gfx.PutPixel( 45 + x,154 + y,221,221,221 );
gfx.PutPixel( 46 + x,154 + y,221,223,223 );
gfx.PutPixel( 47 + x,154 + y,222,235,235 );
gfx.PutPixel( 48 + x,154 + y,216,152,152 );
gfx.PutPixel( 49 + x,154 + y,208,28,28 );
gfx.PutPixel( 50 + x,154 + y,208,33,33 );
gfx.PutPixel( 51 + x,154 + y,208,34,34 );
gfx.PutPixel( 52 + x,154 + y,208,33,33 );
gfx.PutPixel( 53 + x,154 + y,208,28,28 );
gfx.PutPixel( 54 + x,154 + y,216,153,153 );
gfx.PutPixel( 55 + x,154 + y,222,236,236 );
gfx.PutPixel( 56 + x,154 + y,221,223,223 );
gfx.PutPixel( 57 + x,154 + y,221,221,221 );
gfx.PutPixel( 58 + x,154 + y,221,228,228 );
gfx.PutPixel( 59 + x,154 + y,222,230,230 );
gfx.PutPixel( 60 + x,154 + y,221,215,215 );
gfx.PutPixel( 61 + x,154 + y,220,208,208 );
gfx.PutPixel( 62 + x,154 + y,221,215,215 );
gfx.PutPixel( 63 + x,154 + y,222,230,230 );
gfx.PutPixel( 64 + x,154 + y,221,228,228 );
gfx.PutPixel( 65 + x,154 + y,221,221,221 );
gfx.PutPixel( 66 + x,154 + y,221,223,223 );
gfx.PutPixel( 67 + x,154 + y,222,235,235 );
gfx.PutPixel( 68 + x,154 + y,216,152,152 );
gfx.PutPixel( 69 + x,154 + y,208,28,28 );
gfx.PutPixel( 70 + x,154 + y,208,33,33 );
gfx.PutPixel( 71 + x,154 + y,208,34,34 );
gfx.PutPixel( 72 + x,154 + y,208,34,34 );
gfx.PutPixel( 73 + x,154 + y,208,34,34 );
gfx.PutPixel( 74 + x,154 + y,208,34,34 );
gfx.PutPixel( 75 + x,154 + y,208,34,34 );
gfx.PutPixel( 76 + x,154 + y,208,34,34 );
gfx.PutPixel( 77 + x,154 + y,208,34,34 );
gfx.PutPixel( 78 + x,154 + y,208,34,34 );
gfx.PutPixel( 79 + x,154 + y,208,27,27 );
gfx.PutPixel( 80 + x,154 + y,218,173,173 );
gfx.PutPixel( 81 + x,154 + y,222,230,230 );
gfx.PutPixel( 82 + x,154 + y,222,230,230 );
gfx.PutPixel( 83 + x,154 + y,218,173,173 );
gfx.PutPixel( 84 + x,154 + y,208,27,27 );
gfx.PutPixel( 85 + x,154 + y,208,34,34 );
gfx.PutPixel( 86 + x,154 + y,208,34,34 );
gfx.PutPixel( 87 + x,154 + y,208,34,34 );
gfx.PutPixel( 88 + x,154 + y,208,34,34 );
gfx.PutPixel( 89 + x,154 + y,208,34,34 );
gfx.PutPixel( 90 + x,154 + y,208,34,34 );
gfx.PutPixel( 91 + x,154 + y,208,34,34 );
gfx.PutPixel( 92 + x,154 + y,208,34,34 );
gfx.PutPixel( 93 + x,154 + y,208,34,34 );
gfx.PutPixel( 94 + x,154 + y,208,33,33 );
gfx.PutPixel( 95 + x,154 + y,208,28,28 );
gfx.PutPixel( 96 + x,154 + y,216,153,153 );
gfx.PutPixel( 97 + x,154 + y,222,236,236 );
gfx.PutPixel( 98 + x,154 + y,221,223,223 );
gfx.PutPixel( 99 + x,154 + y,221,221,221 );
gfx.PutPixel( 100 + x,154 + y,221,228,228 );
gfx.PutPixel( 101 + x,154 + y,222,230,230 );
gfx.PutPixel( 102 + x,154 + y,221,215,215 );
gfx.PutPixel( 103 + x,154 + y,220,208,208 );
gfx.PutPixel( 104 + x,154 + y,221,215,215 );
gfx.PutPixel( 105 + x,154 + y,222,230,230 );
gfx.PutPixel( 106 + x,154 + y,221,228,228 );
gfx.PutPixel( 107 + x,154 + y,221,221,221 );
gfx.PutPixel( 108 + x,154 + y,221,223,223 );
gfx.PutPixel( 109 + x,154 + y,222,235,235 );
gfx.PutPixel( 110 + x,154 + y,216,152,152 );
gfx.PutPixel( 111 + x,154 + y,208,28,28 );
gfx.PutPixel( 112 + x,154 + y,208,33,33 );
gfx.PutPixel( 113 + x,154 + y,208,34,34 );
gfx.PutPixel( 114 + x,154 + y,208,33,33 );
gfx.PutPixel( 115 + x,154 + y,208,28,28 );
gfx.PutPixel( 116 + x,154 + y,216,153,153 );
gfx.PutPixel( 117 + x,154 + y,222,236,236 );
gfx.PutPixel( 118 + x,154 + y,221,223,223 );
gfx.PutPixel( 119 + x,154 + y,221,221,221 );
gfx.PutPixel( 120 + x,154 + y,221,228,228 );
gfx.PutPixel( 121 + x,154 + y,222,230,230 );
gfx.PutPixel( 122 + x,154 + y,221,215,215 );
gfx.PutPixel( 123 + x,154 + y,220,208,208 );
gfx.PutPixel( 124 + x,154 + y,221,215,215 );
gfx.PutPixel( 125 + x,154 + y,222,230,230 );
gfx.PutPixel( 126 + x,154 + y,221,228,228 );
gfx.PutPixel( 127 + x,154 + y,221,221,221 );
gfx.PutPixel( 128 + x,154 + y,221,223,223 );
gfx.PutPixel( 129 + x,154 + y,222,235,235 );
gfx.PutPixel( 130 + x,154 + y,216,152,152 );
gfx.PutPixel( 131 + x,154 + y,208,28,28 );
gfx.PutPixel( 132 + x,154 + y,208,33,33 );
gfx.PutPixel( 133 + x,154 + y,208,34,34 );
gfx.PutPixel( 134 + x,154 + y,208,34,34 );
gfx.PutPixel( 135 + x,154 + y,208,34,34 );
gfx.PutPixel( 136 + x,154 + y,208,34,34 );
gfx.PutPixel( 137 + x,154 + y,208,34,34 );
gfx.PutPixel( 138 + x,154 + y,208,34,34 );
gfx.PutPixel( 139 + x,154 + y,208,34,34 );
gfx.PutPixel( 140 + x,154 + y,208,34,34 );
gfx.PutPixel( 141 + x,154 + y,208,34,34 );
gfx.PutPixel( 142 + x,154 + y,208,34,34 );
gfx.PutPixel( 143 + x,154 + y,208,34,34 );
gfx.PutPixel( 144 + x,154 + y,208,34,34 );
gfx.PutPixel( 145 + x,154 + y,208,34,34 );
gfx.PutPixel( 146 + x,154 + y,208,34,34 );
gfx.PutPixel( 147 + x,154 + y,208,34,34 );
gfx.PutPixel( 148 + x,154 + y,208,34,34 );
gfx.PutPixel( 149 + x,154 + y,208,34,34 );
gfx.PutPixel( 0 + x,155 + y,208,34,34 );
gfx.PutPixel( 1 + x,155 + y,208,34,34 );
gfx.PutPixel( 2 + x,155 + y,208,34,34 );
gfx.PutPixel( 3 + x,155 + y,208,34,34 );
gfx.PutPixel( 4 + x,155 + y,208,34,34 );
gfx.PutPixel( 5 + x,155 + y,208,34,34 );
gfx.PutPixel( 6 + x,155 + y,208,34,34 );
gfx.PutPixel( 7 + x,155 + y,208,34,34 );
gfx.PutPixel( 8 + x,155 + y,208,34,34 );
gfx.PutPixel( 9 + x,155 + y,208,34,34 );
gfx.PutPixel( 10 + x,155 + y,208,34,34 );
gfx.PutPixel( 11 + x,155 + y,208,34,34 );
gfx.PutPixel( 12 + x,155 + y,208,34,34 );
gfx.PutPixel( 13 + x,155 + y,208,34,34 );
gfx.PutPixel( 14 + x,155 + y,208,34,34 );
gfx.PutPixel( 15 + x,155 + y,208,34,34 );
gfx.PutPixel( 16 + x,155 + y,208,34,34 );
gfx.PutPixel( 17 + x,155 + y,208,27,27 );
gfx.PutPixel( 18 + x,155 + y,218,176,176 );
gfx.PutPixel( 19 + x,155 + y,222,234,234 );
gfx.PutPixel( 20 + x,155 + y,222,234,234 );
gfx.PutPixel( 21 + x,155 + y,218,176,176 );
gfx.PutPixel( 22 + x,155 + y,208,27,27 );
gfx.PutPixel( 23 + x,155 + y,208,34,34 );
gfx.PutPixel( 24 + x,155 + y,208,34,34 );
gfx.PutPixel( 25 + x,155 + y,208,34,34 );
gfx.PutPixel( 26 + x,155 + y,208,34,34 );
gfx.PutPixel( 27 + x,155 + y,208,34,34 );
gfx.PutPixel( 28 + x,155 + y,208,34,34 );
gfx.PutPixel( 29 + x,155 + y,208,34,34 );
gfx.PutPixel( 30 + x,155 + y,208,34,34 );
gfx.PutPixel( 31 + x,155 + y,208,34,34 );
gfx.PutPixel( 32 + x,155 + y,208,34,34 );
gfx.PutPixel( 33 + x,155 + y,208,30,30 );
gfx.PutPixel( 34 + x,155 + y,208,33,33 );
gfx.PutPixel( 35 + x,155 + y,216,143,143 );
gfx.PutPixel( 36 + x,155 + y,222,229,229 );
gfx.PutPixel( 37 + x,155 + y,222,231,231 );
gfx.PutPixel( 38 + x,155 + y,221,223,223 );
gfx.PutPixel( 39 + x,155 + y,221,222,222 );
gfx.PutPixel( 40 + x,155 + y,221,224,224 );
gfx.PutPixel( 41 + x,155 + y,221,225,225 );
gfx.PutPixel( 42 + x,155 + y,221,223,223 );
gfx.PutPixel( 43 + x,155 + y,221,222,222 );
gfx.PutPixel( 44 + x,155 + y,221,223,223 );
gfx.PutPixel( 45 + x,155 + y,222,231,231 );
gfx.PutPixel( 46 + x,155 + y,222,228,228 );
gfx.PutPixel( 47 + x,155 + y,216,142,142 );
gfx.PutPixel( 48 + x,155 + y,208,32,32 );
gfx.PutPixel( 49 + x,155 + y,208,30,30 );
gfx.PutPixel( 50 + x,155 + y,208,34,34 );
gfx.PutPixel( 51 + x,155 + y,208,34,34 );
gfx.PutPixel( 52 + x,155 + y,208,34,34 );
gfx.PutPixel( 53 + x,155 + y,208,30,30 );
gfx.PutPixel( 54 + x,155 + y,208,33,33 );
gfx.PutPixel( 55 + x,155 + y,216,143,143 );
gfx.PutPixel( 56 + x,155 + y,222,229,229 );
gfx.PutPixel( 57 + x,155 + y,222,231,231 );
gfx.PutPixel( 58 + x,155 + y,221,223,223 );
gfx.PutPixel( 59 + x,155 + y,221,222,222 );
gfx.PutPixel( 60 + x,155 + y,221,224,224 );
gfx.PutPixel( 61 + x,155 + y,221,225,225 );
gfx.PutPixel( 62 + x,155 + y,221,223,223 );
gfx.PutPixel( 63 + x,155 + y,221,222,222 );
gfx.PutPixel( 64 + x,155 + y,221,223,223 );
gfx.PutPixel( 65 + x,155 + y,222,231,231 );
gfx.PutPixel( 66 + x,155 + y,222,228,228 );
gfx.PutPixel( 67 + x,155 + y,216,142,142 );
gfx.PutPixel( 68 + x,155 + y,208,32,32 );
gfx.PutPixel( 69 + x,155 + y,208,30,30 );
gfx.PutPixel( 70 + x,155 + y,208,34,34 );
gfx.PutPixel( 71 + x,155 + y,208,34,34 );
gfx.PutPixel( 72 + x,155 + y,208,34,34 );
gfx.PutPixel( 73 + x,155 + y,208,34,34 );
gfx.PutPixel( 74 + x,155 + y,208,34,34 );
gfx.PutPixel( 75 + x,155 + y,208,34,34 );
gfx.PutPixel( 76 + x,155 + y,208,34,34 );
gfx.PutPixel( 77 + x,155 + y,208,34,34 );
gfx.PutPixel( 78 + x,155 + y,208,34,34 );
gfx.PutPixel( 79 + x,155 + y,208,27,27 );
gfx.PutPixel( 80 + x,155 + y,218,176,176 );
gfx.PutPixel( 81 + x,155 + y,222,234,234 );
gfx.PutPixel( 82 + x,155 + y,222,234,234 );
gfx.PutPixel( 83 + x,155 + y,218,176,176 );
gfx.PutPixel( 84 + x,155 + y,208,27,27 );
gfx.PutPixel( 85 + x,155 + y,208,34,34 );
gfx.PutPixel( 86 + x,155 + y,208,34,34 );
gfx.PutPixel( 87 + x,155 + y,208,34,34 );
gfx.PutPixel( 88 + x,155 + y,208,34,34 );
gfx.PutPixel( 89 + x,155 + y,208,34,34 );
gfx.PutPixel( 90 + x,155 + y,208,34,34 );
gfx.PutPixel( 91 + x,155 + y,208,34,34 );
gfx.PutPixel( 92 + x,155 + y,208,34,34 );
gfx.PutPixel( 93 + x,155 + y,208,34,34 );
gfx.PutPixel( 94 + x,155 + y,208,34,34 );
gfx.PutPixel( 95 + x,155 + y,208,30,30 );
gfx.PutPixel( 96 + x,155 + y,208,33,33 );
gfx.PutPixel( 97 + x,155 + y,216,143,143 );
gfx.PutPixel( 98 + x,155 + y,222,229,229 );
gfx.PutPixel( 99 + x,155 + y,222,231,231 );
gfx.PutPixel( 100 + x,155 + y,221,223,223 );
gfx.PutPixel( 101 + x,155 + y,221,222,222 );
gfx.PutPixel( 102 + x,155 + y,221,224,224 );
gfx.PutPixel( 103 + x,155 + y,221,225,225 );
gfx.PutPixel( 104 + x,155 + y,221,223,223 );
gfx.PutPixel( 105 + x,155 + y,221,222,222 );
gfx.PutPixel( 106 + x,155 + y,221,223,223 );
gfx.PutPixel( 107 + x,155 + y,222,231,231 );
gfx.PutPixel( 108 + x,155 + y,222,228,228 );
gfx.PutPixel( 109 + x,155 + y,216,142,142 );
gfx.PutPixel( 110 + x,155 + y,208,32,32 );
gfx.PutPixel( 111 + x,155 + y,208,30,30 );
gfx.PutPixel( 112 + x,155 + y,208,34,34 );
gfx.PutPixel( 113 + x,155 + y,208,34,34 );
gfx.PutPixel( 114 + x,155 + y,208,34,34 );
gfx.PutPixel( 115 + x,155 + y,208,30,30 );
gfx.PutPixel( 116 + x,155 + y,208,33,33 );
gfx.PutPixel( 117 + x,155 + y,216,143,143 );
gfx.PutPixel( 118 + x,155 + y,222,229,229 );
gfx.PutPixel( 119 + x,155 + y,222,231,231 );
gfx.PutPixel( 120 + x,155 + y,221,223,223 );
gfx.PutPixel( 121 + x,155 + y,221,222,222 );
gfx.PutPixel( 122 + x,155 + y,221,224,224 );
gfx.PutPixel( 123 + x,155 + y,221,225,225 );
gfx.PutPixel( 124 + x,155 + y,221,223,223 );
gfx.PutPixel( 125 + x,155 + y,221,222,222 );
gfx.PutPixel( 126 + x,155 + y,221,223,223 );
gfx.PutPixel( 127 + x,155 + y,222,231,231 );
gfx.PutPixel( 128 + x,155 + y,222,228,228 );
gfx.PutPixel( 129 + x,155 + y,216,142,142 );
gfx.PutPixel( 130 + x,155 + y,208,32,32 );
gfx.PutPixel( 131 + x,155 + y,208,30,30 );
gfx.PutPixel( 132 + x,155 + y,208,34,34 );
gfx.PutPixel( 133 + x,155 + y,208,34,34 );
gfx.PutPixel( 134 + x,155 + y,208,34,34 );
gfx.PutPixel( 135 + x,155 + y,208,34,34 );
gfx.PutPixel( 136 + x,155 + y,208,34,34 );
gfx.PutPixel( 137 + x,155 + y,208,34,34 );
gfx.PutPixel( 138 + x,155 + y,208,34,34 );
gfx.PutPixel( 139 + x,155 + y,208,34,34 );
gfx.PutPixel( 140 + x,155 + y,208,34,34 );
gfx.PutPixel( 141 + x,155 + y,208,34,34 );
gfx.PutPixel( 142 + x,155 + y,208,34,34 );
gfx.PutPixel( 143 + x,155 + y,208,34,34 );
gfx.PutPixel( 144 + x,155 + y,208,34,34 );
gfx.PutPixel( 145 + x,155 + y,208,34,34 );
gfx.PutPixel( 146 + x,155 + y,208,34,34 );
gfx.PutPixel( 147 + x,155 + y,208,34,34 );
gfx.PutPixel( 148 + x,155 + y,208,34,34 );
gfx.PutPixel( 149 + x,155 + y,208,34,34 );
gfx.PutPixel( 0 + x,156 + y,208,34,34 );
gfx.PutPixel( 1 + x,156 + y,208,34,34 );
gfx.PutPixel( 2 + x,156 + y,208,34,34 );
gfx.PutPixel( 3 + x,156 + y,208,34,34 );
gfx.PutPixel( 4 + x,156 + y,208,34,34 );
gfx.PutPixel( 5 + x,156 + y,208,34,34 );
gfx.PutPixel( 6 + x,156 + y,208,34,34 );
gfx.PutPixel( 7 + x,156 + y,208,34,34 );
gfx.PutPixel( 8 + x,156 + y,208,34,34 );
gfx.PutPixel( 9 + x,156 + y,208,34,34 );
gfx.PutPixel( 10 + x,156 + y,208,34,34 );
gfx.PutPixel( 11 + x,156 + y,208,34,34 );
gfx.PutPixel( 12 + x,156 + y,208,34,34 );
gfx.PutPixel( 13 + x,156 + y,208,34,34 );
gfx.PutPixel( 14 + x,156 + y,208,34,34 );
gfx.PutPixel( 15 + x,156 + y,208,34,34 );
gfx.PutPixel( 16 + x,156 + y,208,34,34 );
gfx.PutPixel( 17 + x,156 + y,208,27,27 );
gfx.PutPixel( 18 + x,156 + y,217,163,163 );
gfx.PutPixel( 19 + x,156 + y,221,216,216 );
gfx.PutPixel( 20 + x,156 + y,221,216,216 );
gfx.PutPixel( 21 + x,156 + y,217,163,163 );
gfx.PutPixel( 22 + x,156 + y,208,27,27 );
gfx.PutPixel( 23 + x,156 + y,208,34,34 );
gfx.PutPixel( 24 + x,156 + y,208,34,34 );
gfx.PutPixel( 25 + x,156 + y,208,34,34 );
gfx.PutPixel( 26 + x,156 + y,208,34,34 );
gfx.PutPixel( 27 + x,156 + y,208,34,34 );
gfx.PutPixel( 28 + x,156 + y,208,34,34 );
gfx.PutPixel( 29 + x,156 + y,208,34,34 );
gfx.PutPixel( 30 + x,156 + y,208,34,34 );
gfx.PutPixel( 31 + x,156 + y,208,34,34 );
gfx.PutPixel( 32 + x,156 + y,208,34,34 );
gfx.PutPixel( 33 + x,156 + y,208,34,34 );
gfx.PutPixel( 34 + x,156 + y,208,31,31 );
gfx.PutPixel( 35 + x,156 + y,207,25,25 );
gfx.PutPixel( 36 + x,156 + y,212,85,85 );
gfx.PutPixel( 37 + x,156 + y,218,172,172 );
gfx.PutPixel( 38 + x,156 + y,221,217,217 );
gfx.PutPixel( 39 + x,156 + y,222,230,230 );
gfx.PutPixel( 40 + x,156 + y,222,232,232 );
gfx.PutPixel( 41 + x,156 + y,222,233,233 );
gfx.PutPixel( 42 + x,156 + y,222,232,232 );
gfx.PutPixel( 43 + x,156 + y,222,230,230 );
gfx.PutPixel( 44 + x,156 + y,221,217,217 );
gfx.PutPixel( 45 + x,156 + y,218,171,171 );
gfx.PutPixel( 46 + x,156 + y,212,85,85 );
gfx.PutPixel( 47 + x,156 + y,207,26,26 );
gfx.PutPixel( 48 + x,156 + y,208,31,31 );
gfx.PutPixel( 49 + x,156 + y,208,34,34 );
gfx.PutPixel( 50 + x,156 + y,208,34,34 );
gfx.PutPixel( 51 + x,156 + y,208,34,34 );
gfx.PutPixel( 52 + x,156 + y,208,34,34 );
gfx.PutPixel( 53 + x,156 + y,208,34,34 );
gfx.PutPixel( 54 + x,156 + y,208,31,31 );
gfx.PutPixel( 55 + x,156 + y,207,25,25 );
gfx.PutPixel( 56 + x,156 + y,212,85,85 );
gfx.PutPixel( 57 + x,156 + y,218,172,172 );
gfx.PutPixel( 58 + x,156 + y,221,217,217 );
gfx.PutPixel( 59 + x,156 + y,222,230,230 );
gfx.PutPixel( 60 + x,156 + y,222,232,232 );
gfx.PutPixel( 61 + x,156 + y,222,233,233 );
gfx.PutPixel( 62 + x,156 + y,222,232,232 );
gfx.PutPixel( 63 + x,156 + y,222,230,230 );
gfx.PutPixel( 64 + x,156 + y,221,217,217 );
gfx.PutPixel( 65 + x,156 + y,218,171,171 );
gfx.PutPixel( 66 + x,156 + y,212,85,85 );
gfx.PutPixel( 67 + x,156 + y,207,26,26 );
gfx.PutPixel( 68 + x,156 + y,208,31,31 );
gfx.PutPixel( 69 + x,156 + y,208,34,34 );
gfx.PutPixel( 70 + x,156 + y,208,34,34 );
gfx.PutPixel( 71 + x,156 + y,208,34,34 );
gfx.PutPixel( 72 + x,156 + y,208,34,34 );
gfx.PutPixel( 73 + x,156 + y,208,34,34 );
gfx.PutPixel( 74 + x,156 + y,208,34,34 );
gfx.PutPixel( 75 + x,156 + y,208,34,34 );
gfx.PutPixel( 76 + x,156 + y,208,34,34 );
gfx.PutPixel( 77 + x,156 + y,208,34,34 );
gfx.PutPixel( 78 + x,156 + y,208,34,34 );
gfx.PutPixel( 79 + x,156 + y,208,27,27 );
gfx.PutPixel( 80 + x,156 + y,217,163,163 );
gfx.PutPixel( 81 + x,156 + y,221,216,216 );
gfx.PutPixel( 82 + x,156 + y,221,216,216 );
gfx.PutPixel( 83 + x,156 + y,217,163,163 );
gfx.PutPixel( 84 + x,156 + y,208,27,27 );
gfx.PutPixel( 85 + x,156 + y,208,34,34 );
gfx.PutPixel( 86 + x,156 + y,208,34,34 );
gfx.PutPixel( 87 + x,156 + y,208,34,34 );
gfx.PutPixel( 88 + x,156 + y,208,34,34 );
gfx.PutPixel( 89 + x,156 + y,208,34,34 );
gfx.PutPixel( 90 + x,156 + y,208,34,34 );
gfx.PutPixel( 91 + x,156 + y,208,34,34 );
gfx.PutPixel( 92 + x,156 + y,208,34,34 );
gfx.PutPixel( 93 + x,156 + y,208,34,34 );
gfx.PutPixel( 94 + x,156 + y,208,34,34 );
gfx.PutPixel( 95 + x,156 + y,208,34,34 );
gfx.PutPixel( 96 + x,156 + y,208,31,31 );
gfx.PutPixel( 97 + x,156 + y,207,25,25 );
gfx.PutPixel( 98 + x,156 + y,212,85,85 );
gfx.PutPixel( 99 + x,156 + y,218,172,172 );
gfx.PutPixel( 100 + x,156 + y,221,217,217 );
gfx.PutPixel( 101 + x,156 + y,222,230,230 );
gfx.PutPixel( 102 + x,156 + y,222,232,232 );
gfx.PutPixel( 103 + x,156 + y,222,233,233 );
gfx.PutPixel( 104 + x,156 + y,222,232,232 );
gfx.PutPixel( 105 + x,156 + y,222,230,230 );
gfx.PutPixel( 106 + x,156 + y,221,217,217 );
gfx.PutPixel( 107 + x,156 + y,218,171,171 );
gfx.PutPixel( 108 + x,156 + y,212,85,85 );
gfx.PutPixel( 109 + x,156 + y,207,26,26 );
gfx.PutPixel( 110 + x,156 + y,208,31,31 );
gfx.PutPixel( 111 + x,156 + y,208,34,34 );
gfx.PutPixel( 112 + x,156 + y,208,34,34 );
gfx.PutPixel( 113 + x,156 + y,208,34,34 );
gfx.PutPixel( 114 + x,156 + y,208,34,34 );
gfx.PutPixel( 115 + x,156 + y,208,34,34 );
gfx.PutPixel( 116 + x,156 + y,208,31,31 );
gfx.PutPixel( 117 + x,156 + y,207,25,25 );
gfx.PutPixel( 118 + x,156 + y,212,85,85 );
gfx.PutPixel( 119 + x,156 + y,218,172,172 );
gfx.PutPixel( 120 + x,156 + y,221,217,217 );
gfx.PutPixel( 121 + x,156 + y,222,230,230 );
gfx.PutPixel( 122 + x,156 + y,222,232,232 );
gfx.PutPixel( 123 + x,156 + y,222,233,233 );
gfx.PutPixel( 124 + x,156 + y,222,232,232 );
gfx.PutPixel( 125 + x,156 + y,222,230,230 );
gfx.PutPixel( 126 + x,156 + y,221,217,217 );
gfx.PutPixel( 127 + x,156 + y,218,171,171 );
gfx.PutPixel( 128 + x,156 + y,212,85,85 );
gfx.PutPixel( 129 + x,156 + y,207,26,26 );
gfx.PutPixel( 130 + x,156 + y,208,31,31 );
gfx.PutPixel( 131 + x,156 + y,208,34,34 );
gfx.PutPixel( 132 + x,156 + y,208,34,34 );
gfx.PutPixel( 133 + x,156 + y,208,34,34 );
gfx.PutPixel( 134 + x,156 + y,208,34,34 );
gfx.PutPixel( 135 + x,156 + y,208,34,34 );
gfx.PutPixel( 136 + x,156 + y,208,34,34 );
gfx.PutPixel( 137 + x,156 + y,208,34,34 );
gfx.PutPixel( 138 + x,156 + y,208,34,34 );
gfx.PutPixel( 139 + x,156 + y,208,34,34 );
gfx.PutPixel( 140 + x,156 + y,208,34,34 );
gfx.PutPixel( 141 + x,156 + y,208,34,34 );
gfx.PutPixel( 142 + x,156 + y,208,34,34 );
gfx.PutPixel( 143 + x,156 + y,208,34,34 );
gfx.PutPixel( 144 + x,156 + y,208,34,34 );
gfx.PutPixel( 145 + x,156 + y,208,34,34 );
gfx.PutPixel( 146 + x,156 + y,208,34,34 );
gfx.PutPixel( 147 + x,156 + y,208,34,34 );
gfx.PutPixel( 148 + x,156 + y,208,34,34 );
gfx.PutPixel( 149 + x,156 + y,208,34,34 );
gfx.PutPixel( 0 + x,157 + y,208,34,34 );
gfx.PutPixel( 1 + x,157 + y,208,34,34 );
gfx.PutPixel( 2 + x,157 + y,208,34,34 );
gfx.PutPixel( 3 + x,157 + y,208,34,34 );
gfx.PutPixel( 4 + x,157 + y,208,34,34 );
gfx.PutPixel( 5 + x,157 + y,208,34,34 );
gfx.PutPixel( 6 + x,157 + y,208,34,34 );
gfx.PutPixel( 7 + x,157 + y,208,34,34 );
gfx.PutPixel( 8 + x,157 + y,208,34,34 );
gfx.PutPixel( 9 + x,157 + y,208,34,34 );
gfx.PutPixel( 10 + x,157 + y,208,34,34 );
gfx.PutPixel( 11 + x,157 + y,208,34,34 );
gfx.PutPixel( 12 + x,157 + y,208,34,34 );
gfx.PutPixel( 13 + x,157 + y,208,34,34 );
gfx.PutPixel( 14 + x,157 + y,208,34,34 );
gfx.PutPixel( 15 + x,157 + y,208,34,34 );
gfx.PutPixel( 16 + x,157 + y,208,34,34 );
gfx.PutPixel( 17 + x,157 + y,208,34,34 );
gfx.PutPixel( 18 + x,157 + y,209,44,44 );
gfx.PutPixel( 19 + x,157 + y,209,48,48 );
gfx.PutPixel( 20 + x,157 + y,209,48,48 );
gfx.PutPixel( 21 + x,157 + y,209,44,44 );
gfx.PutPixel( 22 + x,157 + y,208,34,34 );
gfx.PutPixel( 23 + x,157 + y,208,34,34 );
gfx.PutPixel( 24 + x,157 + y,208,34,34 );
gfx.PutPixel( 25 + x,157 + y,208,34,34 );
gfx.PutPixel( 26 + x,157 + y,208,34,34 );
gfx.PutPixel( 27 + x,157 + y,208,34,34 );
gfx.PutPixel( 28 + x,157 + y,208,34,34 );
gfx.PutPixel( 29 + x,157 + y,208,34,34 );
gfx.PutPixel( 30 + x,157 + y,208,34,34 );
gfx.PutPixel( 31 + x,157 + y,208,34,34 );
gfx.PutPixel( 32 + x,157 + y,208,34,34 );
gfx.PutPixel( 33 + x,157 + y,208,34,34 );
gfx.PutPixel( 34 + x,157 + y,208,34,34 );
gfx.PutPixel( 35 + x,157 + y,208,33,33 );
gfx.PutPixel( 36 + x,157 + y,207,25,25 );
gfx.PutPixel( 37 + x,157 + y,208,29,29 );
gfx.PutPixel( 38 + x,157 + y,210,60,60 );
gfx.PutPixel( 39 + x,157 + y,212,96,96 );
gfx.PutPixel( 40 + x,157 + y,214,120,120 );
gfx.PutPixel( 41 + x,157 + y,215,127,127 );
gfx.PutPixel( 42 + x,157 + y,214,120,120 );
gfx.PutPixel( 43 + x,157 + y,212,96,96 );
gfx.PutPixel( 44 + x,157 + y,210,60,60 );
gfx.PutPixel( 45 + x,157 + y,208,28,28 );
gfx.PutPixel( 46 + x,157 + y,207,25,25 );
gfx.PutPixel( 47 + x,157 + y,208,34,34 );
gfx.PutPixel( 48 + x,157 + y,208,34,34 );
gfx.PutPixel( 49 + x,157 + y,208,34,34 );
gfx.PutPixel( 50 + x,157 + y,208,34,34 );
gfx.PutPixel( 51 + x,157 + y,208,34,34 );
gfx.PutPixel( 52 + x,157 + y,208,34,34 );
gfx.PutPixel( 53 + x,157 + y,208,34,34 );
gfx.PutPixel( 54 + x,157 + y,208,34,34 );
gfx.PutPixel( 55 + x,157 + y,208,33,33 );
gfx.PutPixel( 56 + x,157 + y,207,25,25 );
gfx.PutPixel( 57 + x,157 + y,208,29,29 );
gfx.PutPixel( 58 + x,157 + y,210,60,60 );
gfx.PutPixel( 59 + x,157 + y,212,96,96 );
gfx.PutPixel( 60 + x,157 + y,214,120,120 );
gfx.PutPixel( 61 + x,157 + y,215,127,127 );
gfx.PutPixel( 62 + x,157 + y,214,120,120 );
gfx.PutPixel( 63 + x,157 + y,212,96,96 );
gfx.PutPixel( 64 + x,157 + y,210,60,60 );
gfx.PutPixel( 65 + x,157 + y,208,28,28 );
gfx.PutPixel( 66 + x,157 + y,207,25,25 );
gfx.PutPixel( 67 + x,157 + y,208,34,34 );
gfx.PutPixel( 68 + x,157 + y,208,34,34 );
gfx.PutPixel( 69 + x,157 + y,208,34,34 );
gfx.PutPixel( 70 + x,157 + y,208,34,34 );
gfx.PutPixel( 71 + x,157 + y,208,34,34 );
gfx.PutPixel( 72 + x,157 + y,208,34,34 );
gfx.PutPixel( 73 + x,157 + y,208,34,34 );
gfx.PutPixel( 74 + x,157 + y,208,34,34 );
gfx.PutPixel( 75 + x,157 + y,208,34,34 );
gfx.PutPixel( 76 + x,157 + y,208,34,34 );
gfx.PutPixel( 77 + x,157 + y,208,34,34 );
gfx.PutPixel( 78 + x,157 + y,208,34,34 );
gfx.PutPixel( 79 + x,157 + y,208,34,34 );
gfx.PutPixel( 80 + x,157 + y,209,44,44 );
gfx.PutPixel( 81 + x,157 + y,209,48,48 );
gfx.PutPixel( 82 + x,157 + y,209,48,48 );
gfx.PutPixel( 83 + x,157 + y,209,44,44 );
gfx.PutPixel( 84 + x,157 + y,208,34,34 );
gfx.PutPixel( 85 + x,157 + y,208,34,34 );
gfx.PutPixel( 86 + x,157 + y,208,34,34 );
gfx.PutPixel( 87 + x,157 + y,208,34,34 );
gfx.PutPixel( 88 + x,157 + y,208,34,34 );
gfx.PutPixel( 89 + x,157 + y,208,34,34 );
gfx.PutPixel( 90 + x,157 + y,208,34,34 );
gfx.PutPixel( 91 + x,157 + y,208,34,34 );
gfx.PutPixel( 92 + x,157 + y,208,34,34 );
gfx.PutPixel( 93 + x,157 + y,208,34,34 );
gfx.PutPixel( 94 + x,157 + y,208,34,34 );
gfx.PutPixel( 95 + x,157 + y,208,34,34 );
gfx.PutPixel( 96 + x,157 + y,208,34,34 );
gfx.PutPixel( 97 + x,157 + y,208,33,33 );
gfx.PutPixel( 98 + x,157 + y,207,25,25 );
gfx.PutPixel( 99 + x,157 + y,208,29,29 );
gfx.PutPixel( 100 + x,157 + y,210,60,60 );
gfx.PutPixel( 101 + x,157 + y,212,96,96 );
gfx.PutPixel( 102 + x,157 + y,214,120,120 );
gfx.PutPixel( 103 + x,157 + y,215,127,127 );
gfx.PutPixel( 104 + x,157 + y,214,120,120 );
gfx.PutPixel( 105 + x,157 + y,212,96,96 );
gfx.PutPixel( 106 + x,157 + y,210,60,60 );
gfx.PutPixel( 107 + x,157 + y,208,28,28 );
gfx.PutPixel( 108 + x,157 + y,207,25,25 );
gfx.PutPixel( 109 + x,157 + y,208,34,34 );
gfx.PutPixel( 110 + x,157 + y,208,34,34 );
gfx.PutPixel( 111 + x,157 + y,208,34,34 );
gfx.PutPixel( 112 + x,157 + y,208,34,34 );
gfx.PutPixel( 113 + x,157 + y,208,34,34 );
gfx.PutPixel( 114 + x,157 + y,208,34,34 );
gfx.PutPixel( 115 + x,157 + y,208,34,34 );
gfx.PutPixel( 116 + x,157 + y,208,34,34 );
gfx.PutPixel( 117 + x,157 + y,208,33,33 );
gfx.PutPixel( 118 + x,157 + y,207,25,25 );
gfx.PutPixel( 119 + x,157 + y,208,29,29 );
gfx.PutPixel( 120 + x,157 + y,210,60,60 );
gfx.PutPixel( 121 + x,157 + y,212,96,96 );
gfx.PutPixel( 122 + x,157 + y,214,120,120 );
gfx.PutPixel( 123 + x,157 + y,215,127,127 );
gfx.PutPixel( 124 + x,157 + y,214,120,120 );
gfx.PutPixel( 125 + x,157 + y,212,96,96 );
gfx.PutPixel( 126 + x,157 + y,210,60,60 );
gfx.PutPixel( 127 + x,157 + y,208,28,28 );
gfx.PutPixel( 128 + x,157 + y,207,25,25 );
gfx.PutPixel( 129 + x,157 + y,208,34,34 );
gfx.PutPixel( 130 + x,157 + y,208,34,34 );
gfx.PutPixel( 131 + x,157 + y,208,34,34 );
gfx.PutPixel( 132 + x,157 + y,208,34,34 );
gfx.PutPixel( 133 + x,157 + y,208,34,34 );
gfx.PutPixel( 134 + x,157 + y,208,34,34 );
gfx.PutPixel( 135 + x,157 + y,208,34,34 );
gfx.PutPixel( 136 + x,157 + y,208,34,34 );
gfx.PutPixel( 137 + x,157 + y,208,34,34 );
gfx.PutPixel( 138 + x,157 + y,208,34,34 );
gfx.PutPixel( 139 + x,157 + y,208,34,34 );
gfx.PutPixel( 140 + x,157 + y,208,34,34 );
gfx.PutPixel( 141 + x,157 + y,208,34,34 );
gfx.PutPixel( 142 + x,157 + y,208,34,34 );
gfx.PutPixel( 143 + x,157 + y,208,34,34 );
gfx.PutPixel( 144 + x,157 + y,208,34,34 );
gfx.PutPixel( 145 + x,157 + y,208,34,34 );
gfx.PutPixel( 146 + x,157 + y,208,34,34 );
gfx.PutPixel( 147 + x,157 + y,208,34,34 );
gfx.PutPixel( 148 + x,157 + y,208,34,34 );
gfx.PutPixel( 149 + x,157 + y,208,34,34 );
gfx.PutPixel( 0 + x,158 + y,208,34,34 );
gfx.PutPixel( 1 + x,158 + y,208,34,34 );
gfx.PutPixel( 2 + x,158 + y,208,34,34 );
gfx.PutPixel( 3 + x,158 + y,208,34,34 );
gfx.PutPixel( 4 + x,158 + y,208,34,34 );
gfx.PutPixel( 5 + x,158 + y,208,34,34 );
gfx.PutPixel( 6 + x,158 + y,208,34,34 );
gfx.PutPixel( 7 + x,158 + y,208,34,34 );
gfx.PutPixel( 8 + x,158 + y,208,34,34 );
gfx.PutPixel( 9 + x,158 + y,208,34,34 );
gfx.PutPixel( 10 + x,158 + y,208,34,34 );
gfx.PutPixel( 11 + x,158 + y,208,34,34 );
gfx.PutPixel( 12 + x,158 + y,208,34,34 );
gfx.PutPixel( 13 + x,158 + y,208,34,34 );
gfx.PutPixel( 14 + x,158 + y,208,34,34 );
gfx.PutPixel( 15 + x,158 + y,208,34,34 );
gfx.PutPixel( 16 + x,158 + y,208,34,34 );
gfx.PutPixel( 17 + x,158 + y,208,34,34 );
gfx.PutPixel( 18 + x,158 + y,208,31,31 );
gfx.PutPixel( 19 + x,158 + y,208,30,30 );
gfx.PutPixel( 20 + x,158 + y,208,30,30 );
gfx.PutPixel( 21 + x,158 + y,208,31,31 );
gfx.PutPixel( 22 + x,158 + y,208,34,34 );
gfx.PutPixel( 23 + x,158 + y,208,34,34 );
gfx.PutPixel( 24 + x,158 + y,208,34,34 );
gfx.PutPixel( 25 + x,158 + y,208,34,34 );
gfx.PutPixel( 26 + x,158 + y,208,34,34 );
gfx.PutPixel( 27 + x,158 + y,208,34,34 );
gfx.PutPixel( 28 + x,158 + y,208,34,34 );
gfx.PutPixel( 29 + x,158 + y,208,34,34 );
gfx.PutPixel( 30 + x,158 + y,208,34,34 );
gfx.PutPixel( 31 + x,158 + y,208,34,34 );
gfx.PutPixel( 32 + x,158 + y,208,34,34 );
gfx.PutPixel( 33 + x,158 + y,208,34,34 );
gfx.PutPixel( 34 + x,158 + y,208,34,34 );
gfx.PutPixel( 35 + x,158 + y,208,34,34 );
gfx.PutPixel( 36 + x,158 + y,208,34,34 );
gfx.PutPixel( 37 + x,158 + y,208,33,33 );
gfx.PutPixel( 38 + x,158 + y,208,29,29 );
gfx.PutPixel( 39 + x,158 + y,207,24,24 );
gfx.PutPixel( 40 + x,158 + y,207,23,23 );
gfx.PutPixel( 41 + x,158 + y,207,22,22 );
gfx.PutPixel( 42 + x,158 + y,207,23,23 );
gfx.PutPixel( 43 + x,158 + y,207,24,24 );
gfx.PutPixel( 44 + x,158 + y,208,29,29 );
gfx.PutPixel( 45 + x,158 + y,208,33,33 );
gfx.PutPixel( 46 + x,158 + y,208,34,34 );
gfx.PutPixel( 47 + x,158 + y,208,34,34 );
gfx.PutPixel( 48 + x,158 + y,208,34,34 );
gfx.PutPixel( 49 + x,158 + y,208,34,34 );
gfx.PutPixel( 50 + x,158 + y,208,34,34 );
gfx.PutPixel( 51 + x,158 + y,208,34,34 );
gfx.PutPixel( 52 + x,158 + y,208,34,34 );
gfx.PutPixel( 53 + x,158 + y,208,34,34 );
gfx.PutPixel( 54 + x,158 + y,208,34,34 );
gfx.PutPixel( 55 + x,158 + y,208,34,34 );
gfx.PutPixel( 56 + x,158 + y,208,34,34 );
gfx.PutPixel( 57 + x,158 + y,208,33,33 );
gfx.PutPixel( 58 + x,158 + y,208,29,29 );
gfx.PutPixel( 59 + x,158 + y,207,24,24 );
gfx.PutPixel( 60 + x,158 + y,207,23,23 );
gfx.PutPixel( 61 + x,158 + y,207,22,22 );
gfx.PutPixel( 62 + x,158 + y,207,23,23 );
gfx.PutPixel( 63 + x,158 + y,207,24,24 );
gfx.PutPixel( 64 + x,158 + y,208,29,29 );
gfx.PutPixel( 65 + x,158 + y,208,33,33 );
gfx.PutPixel( 66 + x,158 + y,208,34,34 );
gfx.PutPixel( 67 + x,158 + y,208,34,34 );
gfx.PutPixel( 68 + x,158 + y,208,34,34 );
gfx.PutPixel( 69 + x,158 + y,208,34,34 );
gfx.PutPixel( 70 + x,158 + y,208,34,34 );
gfx.PutPixel( 71 + x,158 + y,208,34,34 );
gfx.PutPixel( 72 + x,158 + y,208,34,34 );
gfx.PutPixel( 73 + x,158 + y,208,34,34 );
gfx.PutPixel( 74 + x,158 + y,208,34,34 );
gfx.PutPixel( 75 + x,158 + y,208,34,34 );
gfx.PutPixel( 76 + x,158 + y,208,34,34 );
gfx.PutPixel( 77 + x,158 + y,208,34,34 );
gfx.PutPixel( 78 + x,158 + y,208,34,34 );
gfx.PutPixel( 79 + x,158 + y,208,34,34 );
gfx.PutPixel( 80 + x,158 + y,208,31,31 );
gfx.PutPixel( 81 + x,158 + y,208,30,30 );
gfx.PutPixel( 82 + x,158 + y,208,30,30 );
gfx.PutPixel( 83 + x,158 + y,208,31,31 );
gfx.PutPixel( 84 + x,158 + y,208,34,34 );
gfx.PutPixel( 85 + x,158 + y,208,34,34 );
gfx.PutPixel( 86 + x,158 + y,208,34,34 );
gfx.PutPixel( 87 + x,158 + y,208,34,34 );
gfx.PutPixel( 88 + x,158 + y,208,34,34 );
gfx.PutPixel( 89 + x,158 + y,208,34,34 );
gfx.PutPixel( 90 + x,158 + y,208,34,34 );
gfx.PutPixel( 91 + x,158 + y,208,34,34 );
gfx.PutPixel( 92 + x,158 + y,208,34,34 );
gfx.PutPixel( 93 + x,158 + y,208,34,34 );
gfx.PutPixel( 94 + x,158 + y,208,34,34 );
gfx.PutPixel( 95 + x,158 + y,208,34,34 );
gfx.PutPixel( 96 + x,158 + y,208,34,34 );
gfx.PutPixel( 97 + x,158 + y,208,34,34 );
gfx.PutPixel( 98 + x,158 + y,208,34,34 );
gfx.PutPixel( 99 + x,158 + y,208,33,33 );
gfx.PutPixel( 100 + x,158 + y,208,29,29 );
gfx.PutPixel( 101 + x,158 + y,207,24,24 );
gfx.PutPixel( 102 + x,158 + y,207,23,23 );
gfx.PutPixel( 103 + x,158 + y,207,22,22 );
gfx.PutPixel( 104 + x,158 + y,207,23,23 );
gfx.PutPixel( 105 + x,158 + y,207,24,24 );
gfx.PutPixel( 106 + x,158 + y,208,29,29 );
gfx.PutPixel( 107 + x,158 + y,208,33,33 );
gfx.PutPixel( 108 + x,158 + y,208,34,34 );
gfx.PutPixel( 109 + x,158 + y,208,34,34 );
gfx.PutPixel( 110 + x,158 + y,208,34,34 );
gfx.PutPixel( 111 + x,158 + y,208,34,34 );
gfx.PutPixel( 112 + x,158 + y,208,34,34 );
gfx.PutPixel( 113 + x,158 + y,208,34,34 );
gfx.PutPixel( 114 + x,158 + y,208,34,34 );
gfx.PutPixel( 115 + x,158 + y,208,34,34 );
gfx.PutPixel( 116 + x,158 + y,208,34,34 );
gfx.PutPixel( 117 + x,158 + y,208,34,34 );
gfx.PutPixel( 118 + x,158 + y,208,34,34 );
gfx.PutPixel( 119 + x,158 + y,208,33,33 );
gfx.PutPixel( 120 + x,158 + y,208,29,29 );
gfx.PutPixel( 121 + x,158 + y,207,24,24 );
gfx.PutPixel( 122 + x,158 + y,207,23,23 );
gfx.PutPixel( 123 + x,158 + y,207,22,22 );
gfx.PutPixel( 124 + x,158 + y,207,23,23 );
gfx.PutPixel( 125 + x,158 + y,207,24,24 );
gfx.PutPixel( 126 + x,158 + y,208,29,29 );
gfx.PutPixel( 127 + x,158 + y,208,33,33 );
gfx.PutPixel( 128 + x,158 + y,208,34,34 );
gfx.PutPixel( 129 + x,158 + y,208,34,34 );
gfx.PutPixel( 130 + x,158 + y,208,34,34 );
gfx.PutPixel( 131 + x,158 + y,208,34,34 );
gfx.PutPixel( 132 + x,158 + y,208,34,34 );
gfx.PutPixel( 133 + x,158 + y,208,34,34 );
gfx.PutPixel( 134 + x,158 + y,208,34,34 );
gfx.PutPixel( 135 + x,158 + y,208,34,34 );
gfx.PutPixel( 136 + x,158 + y,208,34,34 );
gfx.PutPixel( 137 + x,158 + y,208,34,34 );
gfx.PutPixel( 138 + x,158 + y,208,34,34 );
gfx.PutPixel( 139 + x,158 + y,208,34,34 );
gfx.PutPixel( 140 + x,158 + y,208,34,34 );
gfx.PutPixel( 141 + x,158 + y,208,34,34 );
gfx.PutPixel( 142 + x,158 + y,208,34,34 );
gfx.PutPixel( 143 + x,158 + y,208,34,34 );
gfx.PutPixel( 144 + x,158 + y,208,34,34 );
gfx.PutPixel( 145 + x,158 + y,208,34,34 );
gfx.PutPixel( 146 + x,158 + y,208,34,34 );
gfx.PutPixel( 147 + x,158 + y,208,34,34 );
gfx.PutPixel( 148 + x,158 + y,208,34,34 );
gfx.PutPixel( 149 + x,158 + y,208,34,34 );
gfx.PutPixel( 0 + x,159 + y,208,34,34 );
gfx.PutPixel( 1 + x,159 + y,208,34,34 );
gfx.PutPixel( 2 + x,159 + y,208,34,34 );
gfx.PutPixel( 3 + x,159 + y,208,34,34 );
gfx.PutPixel( 4 + x,159 + y,208,34,34 );
gfx.PutPixel( 5 + x,159 + y,208,34,34 );
gfx.PutPixel( 6 + x,159 + y,208,34,34 );
gfx.PutPixel( 7 + x,159 + y,208,34,34 );
gfx.PutPixel( 8 + x,159 + y,208,34,34 );
gfx.PutPixel( 9 + x,159 + y,208,34,34 );
gfx.PutPixel( 10 + x,159 + y,208,34,34 );
gfx.PutPixel( 11 + x,159 + y,208,34,34 );
gfx.PutPixel( 12 + x,159 + y,208,34,34 );
gfx.PutPixel( 13 + x,159 + y,208,34,34 );
gfx.PutPixel( 14 + x,159 + y,208,34,34 );
gfx.PutPixel( 15 + x,159 + y,208,34,34 );
gfx.PutPixel( 16 + x,159 + y,208,34,34 );
gfx.PutPixel( 17 + x,159 + y,208,34,34 );
gfx.PutPixel( 18 + x,159 + y,208,34,34 );
gfx.PutPixel( 19 + x,159 + y,208,34,34 );
gfx.PutPixel( 20 + x,159 + y,208,34,34 );
gfx.PutPixel( 21 + x,159 + y,208,34,34 );
gfx.PutPixel( 22 + x,159 + y,208,34,34 );
gfx.PutPixel( 23 + x,159 + y,208,34,34 );
gfx.PutPixel( 24 + x,159 + y,208,34,34 );
gfx.PutPixel( 25 + x,159 + y,208,34,34 );
gfx.PutPixel( 26 + x,159 + y,208,34,34 );
gfx.PutPixel( 27 + x,159 + y,208,34,34 );
gfx.PutPixel( 28 + x,159 + y,208,34,34 );
gfx.PutPixel( 29 + x,159 + y,208,34,34 );
gfx.PutPixel( 30 + x,159 + y,208,34,34 );
gfx.PutPixel( 31 + x,159 + y,208,34,34 );
gfx.PutPixel( 32 + x,159 + y,208,34,34 );
gfx.PutPixel( 33 + x,159 + y,208,34,34 );
gfx.PutPixel( 34 + x,159 + y,208,34,34 );
gfx.PutPixel( 35 + x,159 + y,208,34,34 );
gfx.PutPixel( 36 + x,159 + y,208,34,34 );
gfx.PutPixel( 37 + x,159 + y,208,34,34 );
gfx.PutPixel( 38 + x,159 + y,208,34,34 );
gfx.PutPixel( 39 + x,159 + y,208,34,34 );
gfx.PutPixel( 40 + x,159 + y,208,34,34 );
gfx.PutPixel( 41 + x,159 + y,208,34,34 );
gfx.PutPixel( 42 + x,159 + y,208,34,34 );
gfx.PutPixel( 43 + x,159 + y,208,34,34 );
gfx.PutPixel( 44 + x,159 + y,208,34,34 );
gfx.PutPixel( 45 + x,159 + y,208,34,34 );
gfx.PutPixel( 46 + x,159 + y,208,34,34 );
gfx.PutPixel( 47 + x,159 + y,208,34,34 );
gfx.PutPixel( 48 + x,159 + y,208,34,34 );
gfx.PutPixel( 49 + x,159 + y,208,34,34 );
gfx.PutPixel( 50 + x,159 + y,208,34,34 );
gfx.PutPixel( 51 + x,159 + y,208,34,34 );
gfx.PutPixel( 52 + x,159 + y,208,34,34 );
gfx.PutPixel( 53 + x,159 + y,208,34,34 );
gfx.PutPixel( 54 + x,159 + y,208,34,34 );
gfx.PutPixel( 55 + x,159 + y,208,34,34 );
gfx.PutPixel( 56 + x,159 + y,208,34,34 );
gfx.PutPixel( 57 + x,159 + y,208,34,34 );
gfx.PutPixel( 58 + x,159 + y,208,34,34 );
gfx.PutPixel( 59 + x,159 + y,208,34,34 );
gfx.PutPixel( 60 + x,159 + y,208,34,34 );
gfx.PutPixel( 61 + x,159 + y,208,34,34 );
gfx.PutPixel( 62 + x,159 + y,208,34,34 );
gfx.PutPixel( 63 + x,159 + y,208,34,34 );
gfx.PutPixel( 64 + x,159 + y,208,34,34 );
gfx.PutPixel( 65 + x,159 + y,208,34,34 );
gfx.PutPixel( 66 + x,159 + y,208,34,34 );
gfx.PutPixel( 67 + x,159 + y,208,34,34 );
gfx.PutPixel( 68 + x,159 + y,208,34,34 );
gfx.PutPixel( 69 + x,159 + y,208,34,34 );
gfx.PutPixel( 70 + x,159 + y,208,34,34 );
gfx.PutPixel( 71 + x,159 + y,208,34,34 );
gfx.PutPixel( 72 + x,159 + y,208,34,34 );
gfx.PutPixel( 73 + x,159 + y,208,34,34 );
gfx.PutPixel( 74 + x,159 + y,208,34,34 );
gfx.PutPixel( 75 + x,159 + y,208,34,34 );
gfx.PutPixel( 76 + x,159 + y,208,34,34 );
gfx.PutPixel( 77 + x,159 + y,208,34,34 );
gfx.PutPixel( 78 + x,159 + y,208,34,34 );
gfx.PutPixel( 79 + x,159 + y,208,34,34 );
gfx.PutPixel( 80 + x,159 + y,208,34,34 );
gfx.PutPixel( 81 + x,159 + y,208,34,34 );
gfx.PutPixel( 82 + x,159 + y,208,34,34 );
gfx.PutPixel( 83 + x,159 + y,208,34,34 );
gfx.PutPixel( 84 + x,159 + y,208,34,34 );
gfx.PutPixel( 85 + x,159 + y,208,34,34 );
gfx.PutPixel( 86 + x,159 + y,208,34,34 );
gfx.PutPixel( 87 + x,159 + y,208,34,34 );
gfx.PutPixel( 88 + x,159 + y,208,34,34 );
gfx.PutPixel( 89 + x,159 + y,208,34,34 );
gfx.PutPixel( 90 + x,159 + y,208,34,34 );
gfx.PutPixel( 91 + x,159 + y,208,34,34 );
gfx.PutPixel( 92 + x,159 + y,208,34,34 );
gfx.PutPixel( 93 + x,159 + y,208,34,34 );
gfx.PutPixel( 94 + x,159 + y,208,34,34 );
gfx.PutPixel( 95 + x,159 + y,208,34,34 );
gfx.PutPixel( 96 + x,159 + y,208,34,34 );
gfx.PutPixel( 97 + x,159 + y,208,34,34 );
gfx.PutPixel( 98 + x,159 + y,208,34,34 );
gfx.PutPixel( 99 + x,159 + y,208,34,34 );
gfx.PutPixel( 100 + x,159 + y,208,34,34 );
gfx.PutPixel( 101 + x,159 + y,208,34,34 );
gfx.PutPixel( 102 + x,159 + y,208,34,34 );
gfx.PutPixel( 103 + x,159 + y,208,34,34 );
gfx.PutPixel( 104 + x,159 + y,208,34,34 );
gfx.PutPixel( 105 + x,159 + y,208,34,34 );
gfx.PutPixel( 106 + x,159 + y,208,34,34 );
gfx.PutPixel( 107 + x,159 + y,208,34,34 );
gfx.PutPixel( 108 + x,159 + y,208,34,34 );
gfx.PutPixel( 109 + x,159 + y,208,34,34 );
gfx.PutPixel( 110 + x,159 + y,208,34,34 );
gfx.PutPixel( 111 + x,159 + y,208,34,34 );
gfx.PutPixel( 112 + x,159 + y,208,34,34 );
gfx.PutPixel( 113 + x,159 + y,208,34,34 );
gfx.PutPixel( 114 + x,159 + y,208,34,34 );
gfx.PutPixel( 115 + x,159 + y,208,34,34 );
gfx.PutPixel( 116 + x,159 + y,208,34,34 );
gfx.PutPixel( 117 + x,159 + y,208,34,34 );
gfx.PutPixel( 118 + x,159 + y,208,34,34 );
gfx.PutPixel( 119 + x,159 + y,208,34,34 );
gfx.PutPixel( 120 + x,159 + y,208,34,34 );
gfx.PutPixel( 121 + x,159 + y,208,34,34 );
gfx.PutPixel( 122 + x,159 + y,208,34,34 );
gfx.PutPixel( 123 + x,159 + y,208,34,34 );
gfx.PutPixel( 124 + x,159 + y,208,34,34 );
gfx.PutPixel( 125 + x,159 + y,208,34,34 );
gfx.PutPixel( 126 + x,159 + y,208,34,34 );
gfx.PutPixel( 127 + x,159 + y,208,34,34 );
gfx.PutPixel( 128 + x,159 + y,208,34,34 );
gfx.PutPixel( 129 + x,159 + y,208,34,34 );
gfx.PutPixel( 130 + x,159 + y,208,34,34 );
gfx.PutPixel( 131 + x,159 + y,208,34,34 );
gfx.PutPixel( 132 + x,159 + y,208,34,34 );
gfx.PutPixel( 133 + x,159 + y,208,34,34 );
gfx.PutPixel( 134 + x,159 + y,208,34,34 );
gfx.PutPixel( 135 + x,159 + y,208,34,34 );
gfx.PutPixel( 136 + x,159 + y,208,34,34 );
gfx.PutPixel( 137 + x,159 + y,208,34,34 );
gfx.PutPixel( 138 + x,159 + y,208,34,34 );
gfx.PutPixel( 139 + x,159 + y,208,34,34 );
gfx.PutPixel( 140 + x,159 + y,208,34,34 );
gfx.PutPixel( 141 + x,159 + y,208,34,34 );
gfx.PutPixel( 142 + x,159 + y,208,34,34 );
gfx.PutPixel( 143 + x,159 + y,208,34,34 );
gfx.PutPixel( 144 + x,159 + y,208,34,34 );
gfx.PutPixel( 145 + x,159 + y,208,34,34 );
gfx.PutPixel( 146 + x,159 + y,208,34,34 );
gfx.PutPixel( 147 + x,159 + y,208,34,34 );
gfx.PutPixel( 148 + x,159 + y,208,34,34 );
gfx.PutPixel( 149 + x,159 + y,208,34,34 );
gfx.PutPixel( 0 + x,160 + y,208,34,34 );
gfx.PutPixel( 1 + x,160 + y,208,34,34 );
gfx.PutPixel( 2 + x,160 + y,208,34,34 );
gfx.PutPixel( 3 + x,160 + y,208,34,34 );
gfx.PutPixel( 4 + x,160 + y,208,34,34 );
gfx.PutPixel( 5 + x,160 + y,208,34,34 );
gfx.PutPixel( 6 + x,160 + y,208,34,34 );
gfx.PutPixel( 7 + x,160 + y,208,34,34 );
gfx.PutPixel( 8 + x,160 + y,208,34,34 );
gfx.PutPixel( 9 + x,160 + y,208,34,34 );
gfx.PutPixel( 10 + x,160 + y,208,34,34 );
gfx.PutPixel( 11 + x,160 + y,208,34,34 );
gfx.PutPixel( 12 + x,160 + y,208,34,34 );
gfx.PutPixel( 13 + x,160 + y,208,34,34 );
gfx.PutPixel( 14 + x,160 + y,208,34,34 );
gfx.PutPixel( 15 + x,160 + y,208,34,34 );
gfx.PutPixel( 16 + x,160 + y,208,34,34 );
gfx.PutPixel( 17 + x,160 + y,208,34,34 );
gfx.PutPixel( 18 + x,160 + y,208,34,34 );
gfx.PutPixel( 19 + x,160 + y,208,34,34 );
gfx.PutPixel( 20 + x,160 + y,208,34,34 );
gfx.PutPixel( 21 + x,160 + y,208,34,34 );
gfx.PutPixel( 22 + x,160 + y,208,34,34 );
gfx.PutPixel( 23 + x,160 + y,208,34,34 );
gfx.PutPixel( 24 + x,160 + y,208,34,34 );
gfx.PutPixel( 25 + x,160 + y,208,34,34 );
gfx.PutPixel( 26 + x,160 + y,208,34,34 );
gfx.PutPixel( 27 + x,160 + y,208,34,34 );
gfx.PutPixel( 28 + x,160 + y,208,34,34 );
gfx.PutPixel( 29 + x,160 + y,208,34,34 );
gfx.PutPixel( 30 + x,160 + y,208,34,34 );
gfx.PutPixel( 31 + x,160 + y,208,34,34 );
gfx.PutPixel( 32 + x,160 + y,208,34,34 );
gfx.PutPixel( 33 + x,160 + y,208,34,34 );
gfx.PutPixel( 34 + x,160 + y,208,34,34 );
gfx.PutPixel( 35 + x,160 + y,208,34,34 );
gfx.PutPixel( 36 + x,160 + y,208,34,34 );
gfx.PutPixel( 37 + x,160 + y,208,34,34 );
gfx.PutPixel( 38 + x,160 + y,208,34,34 );
gfx.PutPixel( 39 + x,160 + y,208,34,34 );
gfx.PutPixel( 40 + x,160 + y,208,34,34 );
gfx.PutPixel( 41 + x,160 + y,208,34,34 );
gfx.PutPixel( 42 + x,160 + y,208,34,34 );
gfx.PutPixel( 43 + x,160 + y,208,34,34 );
gfx.PutPixel( 44 + x,160 + y,208,34,34 );
gfx.PutPixel( 45 + x,160 + y,208,34,34 );
gfx.PutPixel( 46 + x,160 + y,208,34,34 );
gfx.PutPixel( 47 + x,160 + y,208,34,34 );
gfx.PutPixel( 48 + x,160 + y,208,34,34 );
gfx.PutPixel( 49 + x,160 + y,208,34,34 );
gfx.PutPixel( 50 + x,160 + y,208,34,34 );
gfx.PutPixel( 51 + x,160 + y,208,34,34 );
gfx.PutPixel( 52 + x,160 + y,208,34,34 );
gfx.PutPixel( 53 + x,160 + y,208,34,34 );
gfx.PutPixel( 54 + x,160 + y,208,34,34 );
gfx.PutPixel( 55 + x,160 + y,208,34,34 );
gfx.PutPixel( 56 + x,160 + y,208,34,34 );
gfx.PutPixel( 57 + x,160 + y,208,34,34 );
gfx.PutPixel( 58 + x,160 + y,208,34,34 );
gfx.PutPixel( 59 + x,160 + y,208,34,34 );
gfx.PutPixel( 60 + x,160 + y,208,34,34 );
gfx.PutPixel( 61 + x,160 + y,208,34,34 );
gfx.PutPixel( 62 + x,160 + y,208,34,34 );
gfx.PutPixel( 63 + x,160 + y,208,34,34 );
gfx.PutPixel( 64 + x,160 + y,208,34,34 );
gfx.PutPixel( 65 + x,160 + y,208,34,34 );
gfx.PutPixel( 66 + x,160 + y,208,34,34 );
gfx.PutPixel( 67 + x,160 + y,208,34,34 );
gfx.PutPixel( 68 + x,160 + y,208,34,34 );
gfx.PutPixel( 69 + x,160 + y,208,34,34 );
gfx.PutPixel( 70 + x,160 + y,208,34,34 );
gfx.PutPixel( 71 + x,160 + y,208,34,34 );
gfx.PutPixel( 72 + x,160 + y,208,34,34 );
gfx.PutPixel( 73 + x,160 + y,208,34,34 );
gfx.PutPixel( 74 + x,160 + y,208,34,34 );
gfx.PutPixel( 75 + x,160 + y,208,34,34 );
gfx.PutPixel( 76 + x,160 + y,208,34,34 );
gfx.PutPixel( 77 + x,160 + y,208,34,34 );
gfx.PutPixel( 78 + x,160 + y,208,34,34 );
gfx.PutPixel( 79 + x,160 + y,208,34,34 );
gfx.PutPixel( 80 + x,160 + y,208,34,34 );
gfx.PutPixel( 81 + x,160 + y,208,34,34 );
gfx.PutPixel( 82 + x,160 + y,208,34,34 );
gfx.PutPixel( 83 + x,160 + y,208,34,34 );
gfx.PutPixel( 84 + x,160 + y,208,34,34 );
gfx.PutPixel( 85 + x,160 + y,208,34,34 );
gfx.PutPixel( 86 + x,160 + y,208,34,34 );
gfx.PutPixel( 87 + x,160 + y,208,34,34 );
gfx.PutPixel( 88 + x,160 + y,208,34,34 );
gfx.PutPixel( 89 + x,160 + y,208,34,34 );
gfx.PutPixel( 90 + x,160 + y,208,34,34 );
gfx.PutPixel( 91 + x,160 + y,208,34,34 );
gfx.PutPixel( 92 + x,160 + y,208,34,34 );
gfx.PutPixel( 93 + x,160 + y,208,34,34 );
gfx.PutPixel( 94 + x,160 + y,208,34,34 );
gfx.PutPixel( 95 + x,160 + y,208,34,34 );
gfx.PutPixel( 96 + x,160 + y,208,34,34 );
gfx.PutPixel( 97 + x,160 + y,208,34,34 );
gfx.PutPixel( 98 + x,160 + y,208,34,34 );
gfx.PutPixel( 99 + x,160 + y,208,34,34 );
gfx.PutPixel( 100 + x,160 + y,208,34,34 );
gfx.PutPixel( 101 + x,160 + y,208,34,34 );
gfx.PutPixel( 102 + x,160 + y,208,34,34 );
gfx.PutPixel( 103 + x,160 + y,208,34,34 );
gfx.PutPixel( 104 + x,160 + y,208,34,34 );
gfx.PutPixel( 105 + x,160 + y,208,34,34 );
gfx.PutPixel( 106 + x,160 + y,208,34,34 );
gfx.PutPixel( 107 + x,160 + y,208,34,34 );
gfx.PutPixel( 108 + x,160 + y,208,34,34 );
gfx.PutPixel( 109 + x,160 + y,208,34,34 );
gfx.PutPixel( 110 + x,160 + y,208,34,34 );
gfx.PutPixel( 111 + x,160 + y,208,34,34 );
gfx.PutPixel( 112 + x,160 + y,208,34,34 );
gfx.PutPixel( 113 + x,160 + y,208,34,34 );
gfx.PutPixel( 114 + x,160 + y,208,34,34 );
gfx.PutPixel( 115 + x,160 + y,208,34,34 );
gfx.PutPixel( 116 + x,160 + y,208,34,34 );
gfx.PutPixel( 117 + x,160 + y,208,34,34 );
gfx.PutPixel( 118 + x,160 + y,208,34,34 );
gfx.PutPixel( 119 + x,160 + y,208,34,34 );
gfx.PutPixel( 120 + x,160 + y,208,34,34 );
gfx.PutPixel( 121 + x,160 + y,208,34,34 );
gfx.PutPixel( 122 + x,160 + y,208,34,34 );
gfx.PutPixel( 123 + x,160 + y,208,34,34 );
gfx.PutPixel( 124 + x,160 + y,208,34,34 );
gfx.PutPixel( 125 + x,160 + y,208,34,34 );
gfx.PutPixel( 126 + x,160 + y,208,34,34 );
gfx.PutPixel( 127 + x,160 + y,208,34,34 );
gfx.PutPixel( 128 + x,160 + y,208,34,34 );
gfx.PutPixel( 129 + x,160 + y,208,34,34 );
gfx.PutPixel( 130 + x,160 + y,208,34,34 );
gfx.PutPixel( 131 + x,160 + y,208,34,34 );
gfx.PutPixel( 132 + x,160 + y,208,34,34 );
gfx.PutPixel( 133 + x,160 + y,208,34,34 );
gfx.PutPixel( 134 + x,160 + y,208,34,34 );
gfx.PutPixel( 135 + x,160 + y,208,34,34 );
gfx.PutPixel( 136 + x,160 + y,208,34,34 );
gfx.PutPixel( 137 + x,160 + y,208,34,34 );
gfx.PutPixel( 138 + x,160 + y,208,34,34 );
gfx.PutPixel( 139 + x,160 + y,208,34,34 );
gfx.PutPixel( 140 + x,160 + y,208,34,34 );
gfx.PutPixel( 141 + x,160 + y,208,34,34 );
gfx.PutPixel( 142 + x,160 + y,208,34,34 );
gfx.PutPixel( 143 + x,160 + y,208,34,34 );
gfx.PutPixel( 144 + x,160 + y,208,34,34 );
gfx.PutPixel( 145 + x,160 + y,208,34,34 );
gfx.PutPixel( 146 + x,160 + y,208,34,34 );
gfx.PutPixel( 147 + x,160 + y,208,34,34 );
gfx.PutPixel( 148 + x,160 + y,208,34,34 );
gfx.PutPixel( 149 + x,160 + y,208,34,34 );
gfx.PutPixel( 0 + x,161 + y,208,34,34 );
gfx.PutPixel( 1 + x,161 + y,208,34,34 );
gfx.PutPixel( 2 + x,161 + y,208,34,34 );
gfx.PutPixel( 3 + x,161 + y,208,34,34 );
gfx.PutPixel( 4 + x,161 + y,208,34,34 );
gfx.PutPixel( 5 + x,161 + y,208,34,34 );
gfx.PutPixel( 6 + x,161 + y,208,34,34 );
gfx.PutPixel( 7 + x,161 + y,208,34,34 );
gfx.PutPixel( 8 + x,161 + y,208,34,34 );
gfx.PutPixel( 9 + x,161 + y,208,34,34 );
gfx.PutPixel( 10 + x,161 + y,208,34,34 );
gfx.PutPixel( 11 + x,161 + y,208,34,34 );
gfx.PutPixel( 12 + x,161 + y,208,34,34 );
gfx.PutPixel( 13 + x,161 + y,208,34,34 );
gfx.PutPixel( 14 + x,161 + y,208,34,34 );
gfx.PutPixel( 15 + x,161 + y,208,34,34 );
gfx.PutPixel( 16 + x,161 + y,208,34,34 );
gfx.PutPixel( 17 + x,161 + y,208,34,34 );
gfx.PutPixel( 18 + x,161 + y,208,34,34 );
gfx.PutPixel( 19 + x,161 + y,208,34,34 );
gfx.PutPixel( 20 + x,161 + y,208,34,34 );
gfx.PutPixel( 21 + x,161 + y,208,34,34 );
gfx.PutPixel( 22 + x,161 + y,208,34,34 );
gfx.PutPixel( 23 + x,161 + y,208,34,34 );
gfx.PutPixel( 24 + x,161 + y,208,34,34 );
gfx.PutPixel( 25 + x,161 + y,208,34,34 );
gfx.PutPixel( 26 + x,161 + y,208,34,34 );
gfx.PutPixel( 27 + x,161 + y,208,34,34 );
gfx.PutPixel( 28 + x,161 + y,208,34,34 );
gfx.PutPixel( 29 + x,161 + y,208,34,34 );
gfx.PutPixel( 30 + x,161 + y,208,34,34 );
gfx.PutPixel( 31 + x,161 + y,208,34,34 );
gfx.PutPixel( 32 + x,161 + y,208,34,34 );
gfx.PutPixel( 33 + x,161 + y,208,34,34 );
gfx.PutPixel( 34 + x,161 + y,208,34,34 );
gfx.PutPixel( 35 + x,161 + y,208,34,34 );
gfx.PutPixel( 36 + x,161 + y,208,34,34 );
gfx.PutPixel( 37 + x,161 + y,208,34,34 );
gfx.PutPixel( 38 + x,161 + y,208,34,34 );
gfx.PutPixel( 39 + x,161 + y,208,34,34 );
gfx.PutPixel( 40 + x,161 + y,208,34,34 );
gfx.PutPixel( 41 + x,161 + y,208,34,34 );
gfx.PutPixel( 42 + x,161 + y,208,34,34 );
gfx.PutPixel( 43 + x,161 + y,208,34,34 );
gfx.PutPixel( 44 + x,161 + y,208,34,34 );
gfx.PutPixel( 45 + x,161 + y,208,34,34 );
gfx.PutPixel( 46 + x,161 + y,208,34,34 );
gfx.PutPixel( 47 + x,161 + y,208,34,34 );
gfx.PutPixel( 48 + x,161 + y,208,34,34 );
gfx.PutPixel( 49 + x,161 + y,208,34,34 );
gfx.PutPixel( 50 + x,161 + y,208,34,34 );
gfx.PutPixel( 51 + x,161 + y,208,34,34 );
gfx.PutPixel( 52 + x,161 + y,208,34,34 );
gfx.PutPixel( 53 + x,161 + y,208,34,34 );
gfx.PutPixel( 54 + x,161 + y,208,34,34 );
gfx.PutPixel( 55 + x,161 + y,208,34,34 );
gfx.PutPixel( 56 + x,161 + y,208,34,34 );
gfx.PutPixel( 57 + x,161 + y,208,34,34 );
gfx.PutPixel( 58 + x,161 + y,208,34,34 );
gfx.PutPixel( 59 + x,161 + y,208,34,34 );
gfx.PutPixel( 60 + x,161 + y,208,34,34 );
gfx.PutPixel( 61 + x,161 + y,208,34,34 );
gfx.PutPixel( 62 + x,161 + y,208,34,34 );
gfx.PutPixel( 63 + x,161 + y,208,34,34 );
gfx.PutPixel( 64 + x,161 + y,208,34,34 );
gfx.PutPixel( 65 + x,161 + y,208,34,34 );
gfx.PutPixel( 66 + x,161 + y,208,34,34 );
gfx.PutPixel( 67 + x,161 + y,208,34,34 );
gfx.PutPixel( 68 + x,161 + y,208,34,34 );
gfx.PutPixel( 69 + x,161 + y,208,34,34 );
gfx.PutPixel( 70 + x,161 + y,208,34,34 );
gfx.PutPixel( 71 + x,161 + y,208,34,34 );
gfx.PutPixel( 72 + x,161 + y,208,34,34 );
gfx.PutPixel( 73 + x,161 + y,208,34,34 );
gfx.PutPixel( 74 + x,161 + y,208,34,34 );
gfx.PutPixel( 75 + x,161 + y,208,34,34 );
gfx.PutPixel( 76 + x,161 + y,208,34,34 );
gfx.PutPixel( 77 + x,161 + y,208,34,34 );
gfx.PutPixel( 78 + x,161 + y,208,34,34 );
gfx.PutPixel( 79 + x,161 + y,208,34,34 );
gfx.PutPixel( 80 + x,161 + y,208,34,34 );
gfx.PutPixel( 81 + x,161 + y,208,34,34 );
gfx.PutPixel( 82 + x,161 + y,208,34,34 );
gfx.PutPixel( 83 + x,161 + y,208,34,34 );
gfx.PutPixel( 84 + x,161 + y,208,34,34 );
gfx.PutPixel( 85 + x,161 + y,208,34,34 );
gfx.PutPixel( 86 + x,161 + y,208,34,34 );
gfx.PutPixel( 87 + x,161 + y,208,34,34 );
gfx.PutPixel( 88 + x,161 + y,208,34,34 );
gfx.PutPixel( 89 + x,161 + y,208,34,34 );
gfx.PutPixel( 90 + x,161 + y,208,34,34 );
gfx.PutPixel( 91 + x,161 + y,208,34,34 );
gfx.PutPixel( 92 + x,161 + y,208,34,34 );
gfx.PutPixel( 93 + x,161 + y,208,34,34 );
gfx.PutPixel( 94 + x,161 + y,208,34,34 );
gfx.PutPixel( 95 + x,161 + y,208,34,34 );
gfx.PutPixel( 96 + x,161 + y,208,34,34 );
gfx.PutPixel( 97 + x,161 + y,208,34,34 );
gfx.PutPixel( 98 + x,161 + y,208,34,34 );
gfx.PutPixel( 99 + x,161 + y,208,34,34 );
gfx.PutPixel( 100 + x,161 + y,208,34,34 );
gfx.PutPixel( 101 + x,161 + y,208,34,34 );
gfx.PutPixel( 102 + x,161 + y,208,34,34 );
gfx.PutPixel( 103 + x,161 + y,208,34,34 );
gfx.PutPixel( 104 + x,161 + y,208,34,34 );
gfx.PutPixel( 105 + x,161 + y,208,34,34 );
gfx.PutPixel( 106 + x,161 + y,208,34,34 );
gfx.PutPixel( 107 + x,161 + y,208,34,34 );
gfx.PutPixel( 108 + x,161 + y,208,34,34 );
gfx.PutPixel( 109 + x,161 + y,208,34,34 );
gfx.PutPixel( 110 + x,161 + y,208,34,34 );
gfx.PutPixel( 111 + x,161 + y,208,34,34 );
gfx.PutPixel( 112 + x,161 + y,208,34,34 );
gfx.PutPixel( 113 + x,161 + y,208,34,34 );
gfx.PutPixel( 114 + x,161 + y,208,34,34 );
gfx.PutPixel( 115 + x,161 + y,208,34,34 );
gfx.PutPixel( 116 + x,161 + y,208,34,34 );
gfx.PutPixel( 117 + x,161 + y,208,34,34 );
gfx.PutPixel( 118 + x,161 + y,208,34,34 );
gfx.PutPixel( 119 + x,161 + y,208,34,34 );
gfx.PutPixel( 120 + x,161 + y,208,34,34 );
gfx.PutPixel( 121 + x,161 + y,208,34,34 );
gfx.PutPixel( 122 + x,161 + y,208,34,34 );
gfx.PutPixel( 123 + x,161 + y,208,34,34 );
gfx.PutPixel( 124 + x,161 + y,208,34,34 );
gfx.PutPixel( 125 + x,161 + y,208,34,34 );
gfx.PutPixel( 126 + x,161 + y,208,34,34 );
gfx.PutPixel( 127 + x,161 + y,208,34,34 );
gfx.PutPixel( 128 + x,161 + y,208,34,34 );
gfx.PutPixel( 129 + x,161 + y,208,34,34 );
gfx.PutPixel( 130 + x,161 + y,208,34,34 );
gfx.PutPixel( 131 + x,161 + y,208,34,34 );
gfx.PutPixel( 132 + x,161 + y,208,34,34 );
gfx.PutPixel( 133 + x,161 + y,208,34,34 );
gfx.PutPixel( 134 + x,161 + y,208,34,34 );
gfx.PutPixel( 135 + x,161 + y,208,34,34 );
gfx.PutPixel( 136 + x,161 + y,208,34,34 );
gfx.PutPixel( 137 + x,161 + y,208,34,34 );
gfx.PutPixel( 138 + x,161 + y,208,34,34 );
gfx.PutPixel( 139 + x,161 + y,208,34,34 );
gfx.PutPixel( 140 + x,161 + y,208,34,34 );
gfx.PutPixel( 141 + x,161 + y,208,34,34 );
gfx.PutPixel( 142 + x,161 + y,208,34,34 );
gfx.PutPixel( 143 + x,161 + y,208,34,34 );
gfx.PutPixel( 144 + x,161 + y,208,34,34 );
gfx.PutPixel( 145 + x,161 + y,208,34,34 );
gfx.PutPixel( 146 + x,161 + y,208,34,34 );
gfx.PutPixel( 147 + x,161 + y,208,34,34 );
gfx.PutPixel( 148 + x,161 + y,208,34,34 );
gfx.PutPixel( 149 + x,161 + y,208,34,34 );
gfx.PutPixel( 0 + x,162 + y,208,34,34 );
gfx.PutPixel( 1 + x,162 + y,208,34,34 );
gfx.PutPixel( 2 + x,162 + y,208,34,34 );
gfx.PutPixel( 3 + x,162 + y,208,34,34 );
gfx.PutPixel( 4 + x,162 + y,208,34,34 );
gfx.PutPixel( 5 + x,162 + y,208,34,34 );
gfx.PutPixel( 6 + x,162 + y,208,34,34 );
gfx.PutPixel( 7 + x,162 + y,208,34,34 );
gfx.PutPixel( 8 + x,162 + y,208,34,34 );
gfx.PutPixel( 9 + x,162 + y,208,34,34 );
gfx.PutPixel( 10 + x,162 + y,208,34,34 );
gfx.PutPixel( 11 + x,162 + y,208,34,34 );
gfx.PutPixel( 12 + x,162 + y,208,34,34 );
gfx.PutPixel( 13 + x,162 + y,208,34,34 );
gfx.PutPixel( 14 + x,162 + y,208,34,34 );
gfx.PutPixel( 15 + x,162 + y,208,34,34 );
gfx.PutPixel( 16 + x,162 + y,208,34,34 );
gfx.PutPixel( 17 + x,162 + y,208,34,34 );
gfx.PutPixel( 18 + x,162 + y,208,34,34 );
gfx.PutPixel( 19 + x,162 + y,208,34,34 );
gfx.PutPixel( 20 + x,162 + y,208,34,34 );
gfx.PutPixel( 21 + x,162 + y,208,34,34 );
gfx.PutPixel( 22 + x,162 + y,208,34,34 );
gfx.PutPixel( 23 + x,162 + y,208,34,34 );
gfx.PutPixel( 24 + x,162 + y,208,34,34 );
gfx.PutPixel( 25 + x,162 + y,208,34,34 );
gfx.PutPixel( 26 + x,162 + y,208,34,34 );
gfx.PutPixel( 27 + x,162 + y,208,34,34 );
gfx.PutPixel( 28 + x,162 + y,208,34,34 );
gfx.PutPixel( 29 + x,162 + y,208,34,34 );
gfx.PutPixel( 30 + x,162 + y,208,34,34 );
gfx.PutPixel( 31 + x,162 + y,208,34,34 );
gfx.PutPixel( 32 + x,162 + y,208,34,34 );
gfx.PutPixel( 33 + x,162 + y,208,34,34 );
gfx.PutPixel( 34 + x,162 + y,208,34,34 );
gfx.PutPixel( 35 + x,162 + y,208,34,34 );
gfx.PutPixel( 36 + x,162 + y,208,34,34 );
gfx.PutPixel( 37 + x,162 + y,208,34,34 );
gfx.PutPixel( 38 + x,162 + y,208,34,34 );
gfx.PutPixel( 39 + x,162 + y,208,34,34 );
gfx.PutPixel( 40 + x,162 + y,208,34,34 );
gfx.PutPixel( 41 + x,162 + y,208,34,34 );
gfx.PutPixel( 42 + x,162 + y,208,34,34 );
gfx.PutPixel( 43 + x,162 + y,208,34,34 );
gfx.PutPixel( 44 + x,162 + y,208,34,34 );
gfx.PutPixel( 45 + x,162 + y,208,34,34 );
gfx.PutPixel( 46 + x,162 + y,208,34,34 );
gfx.PutPixel( 47 + x,162 + y,208,34,34 );
gfx.PutPixel( 48 + x,162 + y,208,34,34 );
gfx.PutPixel( 49 + x,162 + y,208,34,34 );
gfx.PutPixel( 50 + x,162 + y,208,34,34 );
gfx.PutPixel( 51 + x,162 + y,208,34,34 );
gfx.PutPixel( 52 + x,162 + y,208,34,34 );
gfx.PutPixel( 53 + x,162 + y,208,34,34 );
gfx.PutPixel( 54 + x,162 + y,208,34,34 );
gfx.PutPixel( 55 + x,162 + y,208,34,34 );
gfx.PutPixel( 56 + x,162 + y,208,34,34 );
gfx.PutPixel( 57 + x,162 + y,208,34,34 );
gfx.PutPixel( 58 + x,162 + y,208,34,34 );
gfx.PutPixel( 59 + x,162 + y,208,34,34 );
gfx.PutPixel( 60 + x,162 + y,208,34,34 );
gfx.PutPixel( 61 + x,162 + y,208,34,34 );
gfx.PutPixel( 62 + x,162 + y,208,34,34 );
gfx.PutPixel( 63 + x,162 + y,208,34,34 );
gfx.PutPixel( 64 + x,162 + y,208,34,34 );
gfx.PutPixel( 65 + x,162 + y,208,34,34 );
gfx.PutPixel( 66 + x,162 + y,208,34,34 );
gfx.PutPixel( 67 + x,162 + y,208,34,34 );
gfx.PutPixel( 68 + x,162 + y,208,34,34 );
gfx.PutPixel( 69 + x,162 + y,208,34,34 );
gfx.PutPixel( 70 + x,162 + y,208,34,34 );
gfx.PutPixel( 71 + x,162 + y,208,34,34 );
gfx.PutPixel( 72 + x,162 + y,208,34,34 );
gfx.PutPixel( 73 + x,162 + y,208,34,34 );
gfx.PutPixel( 74 + x,162 + y,208,34,34 );
gfx.PutPixel( 75 + x,162 + y,208,34,34 );
gfx.PutPixel( 76 + x,162 + y,208,34,34 );
gfx.PutPixel( 77 + x,162 + y,208,34,34 );
gfx.PutPixel( 78 + x,162 + y,208,34,34 );
gfx.PutPixel( 79 + x,162 + y,208,34,34 );
gfx.PutPixel( 80 + x,162 + y,208,34,34 );
gfx.PutPixel( 81 + x,162 + y,208,34,34 );
gfx.PutPixel( 82 + x,162 + y,208,34,34 );
gfx.PutPixel( 83 + x,162 + y,208,34,34 );
gfx.PutPixel( 84 + x,162 + y,208,34,34 );
gfx.PutPixel( 85 + x,162 + y,208,34,34 );
gfx.PutPixel( 86 + x,162 + y,208,34,34 );
gfx.PutPixel( 87 + x,162 + y,208,34,34 );
gfx.PutPixel( 88 + x,162 + y,208,34,34 );
gfx.PutPixel( 89 + x,162 + y,208,34,34 );
gfx.PutPixel( 90 + x,162 + y,208,34,34 );
gfx.PutPixel( 91 + x,162 + y,208,34,34 );
gfx.PutPixel( 92 + x,162 + y,208,34,34 );
gfx.PutPixel( 93 + x,162 + y,208,34,34 );
gfx.PutPixel( 94 + x,162 + y,208,34,34 );
gfx.PutPixel( 95 + x,162 + y,208,34,34 );
gfx.PutPixel( 96 + x,162 + y,208,34,34 );
gfx.PutPixel( 97 + x,162 + y,208,34,34 );
gfx.PutPixel( 98 + x,162 + y,208,34,34 );
gfx.PutPixel( 99 + x,162 + y,208,34,34 );
gfx.PutPixel( 100 + x,162 + y,208,34,34 );
gfx.PutPixel( 101 + x,162 + y,208,34,34 );
gfx.PutPixel( 102 + x,162 + y,208,34,34 );
gfx.PutPixel( 103 + x,162 + y,208,34,34 );
gfx.PutPixel( 104 + x,162 + y,208,34,34 );
gfx.PutPixel( 105 + x,162 + y,208,34,34 );
gfx.PutPixel( 106 + x,162 + y,208,34,34 );
gfx.PutPixel( 107 + x,162 + y,208,34,34 );
gfx.PutPixel( 108 + x,162 + y,208,34,34 );
gfx.PutPixel( 109 + x,162 + y,208,34,34 );
gfx.PutPixel( 110 + x,162 + y,208,34,34 );
gfx.PutPixel( 111 + x,162 + y,208,34,34 );
gfx.PutPixel( 112 + x,162 + y,208,34,34 );
gfx.PutPixel( 113 + x,162 + y,208,34,34 );
gfx.PutPixel( 114 + x,162 + y,208,34,34 );
gfx.PutPixel( 115 + x,162 + y,208,34,34 );
gfx.PutPixel( 116 + x,162 + y,208,34,34 );
gfx.PutPixel( 117 + x,162 + y,208,34,34 );
gfx.PutPixel( 118 + x,162 + y,208,34,34 );
gfx.PutPixel( 119 + x,162 + y,208,34,34 );
gfx.PutPixel( 120 + x,162 + y,208,34,34 );
gfx.PutPixel( 121 + x,162 + y,208,34,34 );
gfx.PutPixel( 122 + x,162 + y,208,34,34 );
gfx.PutPixel( 123 + x,162 + y,208,34,34 );
gfx.PutPixel( 124 + x,162 + y,208,34,34 );
gfx.PutPixel( 125 + x,162 + y,208,34,34 );
gfx.PutPixel( 126 + x,162 + y,208,34,34 );
gfx.PutPixel( 127 + x,162 + y,208,34,34 );
gfx.PutPixel( 128 + x,162 + y,208,34,34 );
gfx.PutPixel( 129 + x,162 + y,208,34,34 );
gfx.PutPixel( 130 + x,162 + y,208,34,34 );
gfx.PutPixel( 131 + x,162 + y,208,34,34 );
gfx.PutPixel( 132 + x,162 + y,208,34,34 );
gfx.PutPixel( 133 + x,162 + y,208,34,34 );
gfx.PutPixel( 134 + x,162 + y,208,34,34 );
gfx.PutPixel( 135 + x,162 + y,208,34,34 );
gfx.PutPixel( 136 + x,162 + y,208,34,34 );
gfx.PutPixel( 137 + x,162 + y,208,34,34 );
gfx.PutPixel( 138 + x,162 + y,208,34,34 );
gfx.PutPixel( 139 + x,162 + y,208,34,34 );
gfx.PutPixel( 140 + x,162 + y,208,34,34 );
gfx.PutPixel( 141 + x,162 + y,208,34,34 );
gfx.PutPixel( 142 + x,162 + y,208,34,34 );
gfx.PutPixel( 143 + x,162 + y,208,34,34 );
gfx.PutPixel( 144 + x,162 + y,208,34,34 );
gfx.PutPixel( 145 + x,162 + y,208,34,34 );
gfx.PutPixel( 146 + x,162 + y,208,34,34 );
gfx.PutPixel( 147 + x,162 + y,208,34,34 );
gfx.PutPixel( 148 + x,162 + y,208,34,34 );
gfx.PutPixel( 149 + x,162 + y,208,34,34 );
gfx.PutPixel( 0 + x,163 + y,208,34,34 );
gfx.PutPixel( 1 + x,163 + y,208,34,34 );
gfx.PutPixel( 2 + x,163 + y,208,34,34 );
gfx.PutPixel( 3 + x,163 + y,208,34,34 );
gfx.PutPixel( 4 + x,163 + y,208,34,34 );
gfx.PutPixel( 5 + x,163 + y,208,34,34 );
gfx.PutPixel( 6 + x,163 + y,208,34,34 );
gfx.PutPixel( 7 + x,163 + y,208,34,34 );
gfx.PutPixel( 8 + x,163 + y,208,34,34 );
gfx.PutPixel( 9 + x,163 + y,208,34,34 );
gfx.PutPixel( 10 + x,163 + y,208,34,34 );
gfx.PutPixel( 11 + x,163 + y,208,34,34 );
gfx.PutPixel( 12 + x,163 + y,208,34,34 );
gfx.PutPixel( 13 + x,163 + y,208,34,34 );
gfx.PutPixel( 14 + x,163 + y,208,34,34 );
gfx.PutPixel( 15 + x,163 + y,208,34,34 );
gfx.PutPixel( 16 + x,163 + y,208,34,34 );
gfx.PutPixel( 17 + x,163 + y,208,34,34 );
gfx.PutPixel( 18 + x,163 + y,208,34,34 );
gfx.PutPixel( 19 + x,163 + y,208,34,34 );
gfx.PutPixel( 20 + x,163 + y,208,34,34 );
gfx.PutPixel( 21 + x,163 + y,208,34,34 );
gfx.PutPixel( 22 + x,163 + y,208,34,34 );
gfx.PutPixel( 23 + x,163 + y,208,34,34 );
gfx.PutPixel( 24 + x,163 + y,208,34,34 );
gfx.PutPixel( 25 + x,163 + y,208,34,34 );
gfx.PutPixel( 26 + x,163 + y,208,34,34 );
gfx.PutPixel( 27 + x,163 + y,208,34,34 );
gfx.PutPixel( 28 + x,163 + y,208,34,34 );
gfx.PutPixel( 29 + x,163 + y,208,34,34 );
gfx.PutPixel( 30 + x,163 + y,208,34,34 );
gfx.PutPixel( 31 + x,163 + y,208,34,34 );
gfx.PutPixel( 32 + x,163 + y,208,34,34 );
gfx.PutPixel( 33 + x,163 + y,208,34,34 );
gfx.PutPixel( 34 + x,163 + y,208,34,34 );
gfx.PutPixel( 35 + x,163 + y,208,34,34 );
gfx.PutPixel( 36 + x,163 + y,208,34,34 );
gfx.PutPixel( 37 + x,163 + y,208,34,34 );
gfx.PutPixel( 38 + x,163 + y,208,34,34 );
gfx.PutPixel( 39 + x,163 + y,208,34,34 );
gfx.PutPixel( 40 + x,163 + y,208,34,34 );
gfx.PutPixel( 41 + x,163 + y,208,34,34 );
gfx.PutPixel( 42 + x,163 + y,208,34,34 );
gfx.PutPixel( 43 + x,163 + y,208,34,34 );
gfx.PutPixel( 44 + x,163 + y,208,34,34 );
gfx.PutPixel( 45 + x,163 + y,208,34,34 );
gfx.PutPixel( 46 + x,163 + y,208,34,34 );
gfx.PutPixel( 47 + x,163 + y,208,34,34 );
gfx.PutPixel( 48 + x,163 + y,208,34,34 );
gfx.PutPixel( 49 + x,163 + y,208,34,34 );
gfx.PutPixel( 50 + x,163 + y,208,34,34 );
gfx.PutPixel( 51 + x,163 + y,208,34,34 );
gfx.PutPixel( 52 + x,163 + y,208,34,34 );
gfx.PutPixel( 53 + x,163 + y,208,34,34 );
gfx.PutPixel( 54 + x,163 + y,208,34,34 );
gfx.PutPixel( 55 + x,163 + y,208,34,34 );
gfx.PutPixel( 56 + x,163 + y,208,34,34 );
gfx.PutPixel( 57 + x,163 + y,208,34,34 );
gfx.PutPixel( 58 + x,163 + y,208,34,34 );
gfx.PutPixel( 59 + x,163 + y,208,34,34 );
gfx.PutPixel( 60 + x,163 + y,208,34,34 );
gfx.PutPixel( 61 + x,163 + y,208,34,34 );
gfx.PutPixel( 62 + x,163 + y,208,34,34 );
gfx.PutPixel( 63 + x,163 + y,208,34,34 );
gfx.PutPixel( 64 + x,163 + y,208,34,34 );
gfx.PutPixel( 65 + x,163 + y,208,34,34 );
gfx.PutPixel( 66 + x,163 + y,208,34,34 );
gfx.PutPixel( 67 + x,163 + y,208,34,34 );
gfx.PutPixel( 68 + x,163 + y,208,34,34 );
gfx.PutPixel( 69 + x,163 + y,208,34,34 );
gfx.PutPixel( 70 + x,163 + y,208,34,34 );
gfx.PutPixel( 71 + x,163 + y,208,34,34 );
gfx.PutPixel( 72 + x,163 + y,208,34,34 );
gfx.PutPixel( 73 + x,163 + y,208,34,34 );
gfx.PutPixel( 74 + x,163 + y,208,34,34 );
gfx.PutPixel( 75 + x,163 + y,208,34,34 );
gfx.PutPixel( 76 + x,163 + y,208,34,34 );
gfx.PutPixel( 77 + x,163 + y,208,34,34 );
gfx.PutPixel( 78 + x,163 + y,208,34,34 );
gfx.PutPixel( 79 + x,163 + y,208,34,34 );
gfx.PutPixel( 80 + x,163 + y,208,34,34 );
gfx.PutPixel( 81 + x,163 + y,208,34,34 );
gfx.PutPixel( 82 + x,163 + y,208,34,34 );
gfx.PutPixel( 83 + x,163 + y,208,34,34 );
gfx.PutPixel( 84 + x,163 + y,208,34,34 );
gfx.PutPixel( 85 + x,163 + y,208,34,34 );
gfx.PutPixel( 86 + x,163 + y,208,34,34 );
gfx.PutPixel( 87 + x,163 + y,208,34,34 );
gfx.PutPixel( 88 + x,163 + y,208,34,34 );
gfx.PutPixel( 89 + x,163 + y,208,34,34 );
gfx.PutPixel( 90 + x,163 + y,208,34,34 );
gfx.PutPixel( 91 + x,163 + y,208,34,34 );
gfx.PutPixel( 92 + x,163 + y,208,34,34 );
gfx.PutPixel( 93 + x,163 + y,208,34,34 );
gfx.PutPixel( 94 + x,163 + y,208,34,34 );
gfx.PutPixel( 95 + x,163 + y,208,34,34 );
gfx.PutPixel( 96 + x,163 + y,208,34,34 );
gfx.PutPixel( 97 + x,163 + y,208,34,34 );
gfx.PutPixel( 98 + x,163 + y,208,34,34 );
gfx.PutPixel( 99 + x,163 + y,208,34,34 );
gfx.PutPixel( 100 + x,163 + y,208,34,34 );
gfx.PutPixel( 101 + x,163 + y,208,34,34 );
gfx.PutPixel( 102 + x,163 + y,208,34,34 );
gfx.PutPixel( 103 + x,163 + y,208,34,34 );
gfx.PutPixel( 104 + x,163 + y,208,34,34 );
gfx.PutPixel( 105 + x,163 + y,208,34,34 );
gfx.PutPixel( 106 + x,163 + y,208,34,34 );
gfx.PutPixel( 107 + x,163 + y,208,34,34 );
gfx.PutPixel( 108 + x,163 + y,208,34,34 );
gfx.PutPixel( 109 + x,163 + y,208,34,34 );
gfx.PutPixel( 110 + x,163 + y,208,34,34 );
gfx.PutPixel( 111 + x,163 + y,208,34,34 );
gfx.PutPixel( 112 + x,163 + y,208,34,34 );
gfx.PutPixel( 113 + x,163 + y,208,34,34 );
gfx.PutPixel( 114 + x,163 + y,208,34,34 );
gfx.PutPixel( 115 + x,163 + y,208,34,34 );
gfx.PutPixel( 116 + x,163 + y,208,34,34 );
gfx.PutPixel( 117 + x,163 + y,208,34,34 );
gfx.PutPixel( 118 + x,163 + y,208,34,34 );
gfx.PutPixel( 119 + x,163 + y,208,34,34 );
gfx.PutPixel( 120 + x,163 + y,208,34,34 );
gfx.PutPixel( 121 + x,163 + y,208,34,34 );
gfx.PutPixel( 122 + x,163 + y,208,34,34 );
gfx.PutPixel( 123 + x,163 + y,208,34,34 );
gfx.PutPixel( 124 + x,163 + y,208,34,34 );
gfx.PutPixel( 125 + x,163 + y,208,34,34 );
gfx.PutPixel( 126 + x,163 + y,208,34,34 );
gfx.PutPixel( 127 + x,163 + y,208,34,34 );
gfx.PutPixel( 128 + x,163 + y,208,34,34 );
gfx.PutPixel( 129 + x,163 + y,208,34,34 );
gfx.PutPixel( 130 + x,163 + y,208,34,34 );
gfx.PutPixel( 131 + x,163 + y,208,34,34 );
gfx.PutPixel( 132 + x,163 + y,208,34,34 );
gfx.PutPixel( 133 + x,163 + y,208,34,34 );
gfx.PutPixel( 134 + x,163 + y,208,34,34 );
gfx.PutPixel( 135 + x,163 + y,208,34,34 );
gfx.PutPixel( 136 + x,163 + y,208,34,34 );
gfx.PutPixel( 137 + x,163 + y,208,34,34 );
gfx.PutPixel( 138 + x,163 + y,208,34,34 );
gfx.PutPixel( 139 + x,163 + y,208,34,34 );
gfx.PutPixel( 140 + x,163 + y,208,34,34 );
gfx.PutPixel( 141 + x,163 + y,208,34,34 );
gfx.PutPixel( 142 + x,163 + y,208,34,34 );
gfx.PutPixel( 143 + x,163 + y,208,34,34 );
gfx.PutPixel( 144 + x,163 + y,208,34,34 );
gfx.PutPixel( 145 + x,163 + y,208,34,34 );
gfx.PutPixel( 146 + x,163 + y,208,34,34 );
gfx.PutPixel( 147 + x,163 + y,208,34,34 );
gfx.PutPixel( 148 + x,163 + y,208,34,34 );
gfx.PutPixel( 149 + x,163 + y,208,34,34 );
gfx.PutPixel( 0 + x,164 + y,208,34,34 );
gfx.PutPixel( 1 + x,164 + y,208,34,34 );
gfx.PutPixel( 2 + x,164 + y,208,34,34 );
gfx.PutPixel( 3 + x,164 + y,208,34,34 );
gfx.PutPixel( 4 + x,164 + y,208,34,34 );
gfx.PutPixel( 5 + x,164 + y,208,34,34 );
gfx.PutPixel( 6 + x,164 + y,208,34,34 );
gfx.PutPixel( 7 + x,164 + y,208,34,34 );
gfx.PutPixel( 8 + x,164 + y,208,34,34 );
gfx.PutPixel( 9 + x,164 + y,208,34,34 );
gfx.PutPixel( 10 + x,164 + y,208,34,34 );
gfx.PutPixel( 11 + x,164 + y,208,34,34 );
gfx.PutPixel( 12 + x,164 + y,208,34,34 );
gfx.PutPixel( 13 + x,164 + y,208,34,34 );
gfx.PutPixel( 14 + x,164 + y,208,34,34 );
gfx.PutPixel( 15 + x,164 + y,208,34,34 );
gfx.PutPixel( 16 + x,164 + y,208,34,34 );
gfx.PutPixel( 17 + x,164 + y,208,34,34 );
gfx.PutPixel( 18 + x,164 + y,208,34,34 );
gfx.PutPixel( 19 + x,164 + y,208,34,34 );
gfx.PutPixel( 20 + x,164 + y,208,34,34 );
gfx.PutPixel( 21 + x,164 + y,208,34,34 );
gfx.PutPixel( 22 + x,164 + y,208,34,34 );
gfx.PutPixel( 23 + x,164 + y,208,34,34 );
gfx.PutPixel( 24 + x,164 + y,208,34,34 );
gfx.PutPixel( 25 + x,164 + y,208,34,34 );
gfx.PutPixel( 26 + x,164 + y,208,34,34 );
gfx.PutPixel( 27 + x,164 + y,208,34,34 );
gfx.PutPixel( 28 + x,164 + y,208,34,34 );
gfx.PutPixel( 29 + x,164 + y,208,34,34 );
gfx.PutPixel( 30 + x,164 + y,208,34,34 );
gfx.PutPixel( 31 + x,164 + y,208,34,34 );
gfx.PutPixel( 32 + x,164 + y,208,34,34 );
gfx.PutPixel( 33 + x,164 + y,208,34,34 );
gfx.PutPixel( 34 + x,164 + y,208,34,34 );
gfx.PutPixel( 35 + x,164 + y,208,34,34 );
gfx.PutPixel( 36 + x,164 + y,208,34,34 );
gfx.PutPixel( 37 + x,164 + y,208,34,34 );
gfx.PutPixel( 38 + x,164 + y,208,34,34 );
gfx.PutPixel( 39 + x,164 + y,208,34,34 );
gfx.PutPixel( 40 + x,164 + y,208,34,34 );
gfx.PutPixel( 41 + x,164 + y,208,34,34 );
gfx.PutPixel( 42 + x,164 + y,208,34,34 );
gfx.PutPixel( 43 + x,164 + y,208,34,34 );
gfx.PutPixel( 44 + x,164 + y,215,139,139 );
gfx.PutPixel( 45 + x,164 + y,218,174,174 );
gfx.PutPixel( 46 + x,164 + y,218,174,174 );
gfx.PutPixel( 47 + x,164 + y,217,162,162 );
gfx.PutPixel( 48 + x,164 + y,210,69,69 );
gfx.PutPixel( 49 + x,164 + y,208,34,34 );
gfx.PutPixel( 50 + x,164 + y,215,139,139 );
gfx.PutPixel( 51 + x,164 + y,218,174,174 );
gfx.PutPixel( 52 + x,164 + y,218,174,174 );
gfx.PutPixel( 53 + x,164 + y,218,174,174 );
gfx.PutPixel( 54 + x,164 + y,214,127,127 );
gfx.PutPixel( 55 + x,164 + y,208,34,34 );
gfx.PutPixel( 56 + x,164 + y,210,69,69 );
gfx.PutPixel( 57 + x,164 + y,218,174,174 );
gfx.PutPixel( 58 + x,164 + y,218,174,174 );
gfx.PutPixel( 59 + x,164 + y,218,174,174 );
gfx.PutPixel( 60 + x,164 + y,218,174,174 );
gfx.PutPixel( 61 + x,164 + y,210,69,69 );
gfx.PutPixel( 62 + x,164 + y,208,34,34 );
gfx.PutPixel( 63 + x,164 + y,214,127,127 );
gfx.PutPixel( 64 + x,164 + y,218,174,174 );
gfx.PutPixel( 65 + x,164 + y,217,162,162 );
gfx.PutPixel( 66 + x,164 + y,212,93,93 );
gfx.PutPixel( 67 + x,164 + y,208,34,34 );
gfx.PutPixel( 68 + x,164 + y,208,34,34 );
gfx.PutPixel( 69 + x,164 + y,214,127,127 );
gfx.PutPixel( 70 + x,164 + y,218,174,174 );
gfx.PutPixel( 71 + x,164 + y,217,162,162 );
gfx.PutPixel( 72 + x,164 + y,212,93,93 );
gfx.PutPixel( 73 + x,164 + y,208,34,34 );
gfx.PutPixel( 74 + x,164 + y,208,34,34 );
gfx.PutPixel( 75 + x,164 + y,208,34,34 );
gfx.PutPixel( 76 + x,164 + y,208,34,34 );
gfx.PutPixel( 77 + x,164 + y,215,139,139 );
gfx.PutPixel( 78 + x,164 + y,218,174,174 );
gfx.PutPixel( 79 + x,164 + y,218,174,174 );
gfx.PutPixel( 80 + x,164 + y,218,174,174 );
gfx.PutPixel( 81 + x,164 + y,215,139,139 );
gfx.PutPixel( 82 + x,164 + y,208,34,34 );
gfx.PutPixel( 83 + x,164 + y,215,139,139 );
gfx.PutPixel( 84 + x,164 + y,216,151,151 );
gfx.PutPixel( 85 + x,164 + y,208,34,34 );
gfx.PutPixel( 86 + x,164 + y,208,34,34 );
gfx.PutPixel( 87 + x,164 + y,215,139,139 );
gfx.PutPixel( 88 + x,164 + y,210,69,69 );
gfx.PutPixel( 89 + x,164 + y,215,139,139 );
gfx.PutPixel( 90 + x,164 + y,218,174,174 );
gfx.PutPixel( 91 + x,164 + y,218,174,174 );
gfx.PutPixel( 92 + x,164 + y,218,174,174 );
gfx.PutPixel( 93 + x,164 + y,218,174,174 );
gfx.PutPixel( 94 + x,164 + y,213,104,104 );
gfx.PutPixel( 95 + x,164 + y,215,139,139 );
gfx.PutPixel( 96 + x,164 + y,218,174,174 );
gfx.PutPixel( 97 + x,164 + y,218,174,174 );
gfx.PutPixel( 98 + x,164 + y,218,174,174 );
gfx.PutPixel( 99 + x,164 + y,215,139,139 );
gfx.PutPixel( 100 + x,164 + y,208,34,34 );
gfx.PutPixel( 101 + x,164 + y,215,139,139 );
gfx.PutPixel( 102 + x,164 + y,218,174,174 );
gfx.PutPixel( 103 + x,164 + y,218,174,174 );
gfx.PutPixel( 104 + x,164 + y,218,174,174 );
gfx.PutPixel( 105 + x,164 + y,214,127,127 );
gfx.PutPixel( 106 + x,164 + y,208,34,34 );
gfx.PutPixel( 107 + x,164 + y,208,34,34 );
gfx.PutPixel( 108 + x,164 + y,208,34,34 );
gfx.PutPixel( 109 + x,164 + y,208,34,34 );
gfx.PutPixel( 110 + x,164 + y,208,34,34 );
gfx.PutPixel( 111 + x,164 + y,208,34,34 );
gfx.PutPixel( 112 + x,164 + y,208,34,34 );
gfx.PutPixel( 113 + x,164 + y,208,34,34 );
gfx.PutPixel( 114 + x,164 + y,208,34,34 );
gfx.PutPixel( 115 + x,164 + y,208,34,34 );
gfx.PutPixel( 116 + x,164 + y,208,34,34 );
gfx.PutPixel( 117 + x,164 + y,208,34,34 );
gfx.PutPixel( 118 + x,164 + y,208,34,34 );
gfx.PutPixel( 119 + x,164 + y,208,34,34 );
gfx.PutPixel( 120 + x,164 + y,208,34,34 );
gfx.PutPixel( 121 + x,164 + y,208,34,34 );
gfx.PutPixel( 122 + x,164 + y,208,34,34 );
gfx.PutPixel( 123 + x,164 + y,208,34,34 );
gfx.PutPixel( 124 + x,164 + y,208,34,34 );
gfx.PutPixel( 125 + x,164 + y,208,34,34 );
gfx.PutPixel( 126 + x,164 + y,208,34,34 );
gfx.PutPixel( 127 + x,164 + y,208,34,34 );
gfx.PutPixel( 128 + x,164 + y,208,34,34 );
gfx.PutPixel( 129 + x,164 + y,208,34,34 );
gfx.PutPixel( 130 + x,164 + y,208,34,34 );
gfx.PutPixel( 131 + x,164 + y,208,34,34 );
gfx.PutPixel( 132 + x,164 + y,208,34,34 );
gfx.PutPixel( 133 + x,164 + y,208,34,34 );
gfx.PutPixel( 134 + x,164 + y,208,34,34 );
gfx.PutPixel( 135 + x,164 + y,208,34,34 );
gfx.PutPixel( 136 + x,164 + y,208,34,34 );
gfx.PutPixel( 137 + x,164 + y,208,34,34 );
gfx.PutPixel( 138 + x,164 + y,208,34,34 );
gfx.PutPixel( 139 + x,164 + y,208,34,34 );
gfx.PutPixel( 140 + x,164 + y,208,34,34 );
gfx.PutPixel( 141 + x,164 + y,208,34,34 );
gfx.PutPixel( 142 + x,164 + y,208,34,34 );
gfx.PutPixel( 143 + x,164 + y,208,34,34 );
gfx.PutPixel( 144 + x,164 + y,208,34,34 );
gfx.PutPixel( 145 + x,164 + y,208,34,34 );
gfx.PutPixel( 146 + x,164 + y,208,34,34 );
gfx.PutPixel( 147 + x,164 + y,208,34,34 );
gfx.PutPixel( 148 + x,164 + y,208,34,34 );
gfx.PutPixel( 149 + x,164 + y,208,34,34 );
gfx.PutPixel( 0 + x,165 + y,208,34,34 );
gfx.PutPixel( 1 + x,165 + y,208,34,34 );
gfx.PutPixel( 2 + x,165 + y,208,34,34 );
gfx.PutPixel( 3 + x,165 + y,208,34,34 );
gfx.PutPixel( 4 + x,165 + y,208,34,34 );
gfx.PutPixel( 5 + x,165 + y,208,34,34 );
gfx.PutPixel( 6 + x,165 + y,208,34,34 );
gfx.PutPixel( 7 + x,165 + y,208,34,34 );
gfx.PutPixel( 8 + x,165 + y,208,34,34 );
gfx.PutPixel( 9 + x,165 + y,208,34,34 );
gfx.PutPixel( 10 + x,165 + y,208,34,34 );
gfx.PutPixel( 11 + x,165 + y,208,34,34 );
gfx.PutPixel( 12 + x,165 + y,208,34,34 );
gfx.PutPixel( 13 + x,165 + y,208,34,34 );
gfx.PutPixel( 14 + x,165 + y,208,34,34 );
gfx.PutPixel( 15 + x,165 + y,208,34,34 );
gfx.PutPixel( 16 + x,165 + y,208,34,34 );
gfx.PutPixel( 17 + x,165 + y,208,34,34 );
gfx.PutPixel( 18 + x,165 + y,208,34,34 );
gfx.PutPixel( 19 + x,165 + y,208,34,34 );
gfx.PutPixel( 20 + x,165 + y,208,34,34 );
gfx.PutPixel( 21 + x,165 + y,208,34,34 );
gfx.PutPixel( 22 + x,165 + y,208,34,34 );
gfx.PutPixel( 23 + x,165 + y,208,34,34 );
gfx.PutPixel( 24 + x,165 + y,208,34,34 );
gfx.PutPixel( 25 + x,165 + y,208,34,34 );
gfx.PutPixel( 26 + x,165 + y,208,34,34 );
gfx.PutPixel( 27 + x,165 + y,208,34,34 );
gfx.PutPixel( 28 + x,165 + y,208,34,34 );
gfx.PutPixel( 29 + x,165 + y,208,34,34 );
gfx.PutPixel( 30 + x,165 + y,208,34,34 );
gfx.PutPixel( 31 + x,165 + y,208,34,34 );
gfx.PutPixel( 32 + x,165 + y,208,34,34 );
gfx.PutPixel( 33 + x,165 + y,208,34,34 );
gfx.PutPixel( 34 + x,165 + y,208,34,34 );
gfx.PutPixel( 35 + x,165 + y,208,34,34 );
gfx.PutPixel( 36 + x,165 + y,208,34,34 );
gfx.PutPixel( 37 + x,165 + y,208,34,34 );
gfx.PutPixel( 38 + x,165 + y,208,34,34 );
gfx.PutPixel( 39 + x,165 + y,208,34,34 );
gfx.PutPixel( 40 + x,165 + y,208,34,34 );
gfx.PutPixel( 41 + x,165 + y,208,34,34 );
gfx.PutPixel( 42 + x,165 + y,208,34,34 );
gfx.PutPixel( 43 + x,165 + y,208,34,34 );
gfx.PutPixel( 44 + x,165 + y,218,174,174 );
gfx.PutPixel( 45 + x,165 + y,216,151,151 );
gfx.PutPixel( 46 + x,165 + y,211,81,81 );
gfx.PutPixel( 47 + x,165 + y,216,151,151 );
gfx.PutPixel( 48 + x,165 + y,219,198,198 );
gfx.PutPixel( 49 + x,165 + y,208,34,34 );
gfx.PutPixel( 50 + x,165 + y,218,174,174 );
gfx.PutPixel( 51 + x,165 + y,216,151,151 );
gfx.PutPixel( 52 + x,165 + y,211,81,81 );
gfx.PutPixel( 53 + x,165 + y,212,93,93 );
gfx.PutPixel( 54 + x,165 + y,219,198,198 );
gfx.PutPixel( 55 + x,165 + y,214,116,116 );
gfx.PutPixel( 56 + x,165 + y,211,81,81 );
gfx.PutPixel( 57 + x,165 + y,221,221,221 );
gfx.PutPixel( 58 + x,165 + y,211,81,81 );
gfx.PutPixel( 59 + x,165 + y,211,81,81 );
gfx.PutPixel( 60 + x,165 + y,211,81,81 );
gfx.PutPixel( 61 + x,165 + y,209,46,46 );
gfx.PutPixel( 62 + x,165 + y,213,104,104 );
gfx.PutPixel( 63 + x,165 + y,219,198,198 );
gfx.PutPixel( 64 + x,165 + y,212,93,93 );
gfx.PutPixel( 65 + x,165 + y,214,116,116 );
gfx.PutPixel( 66 + x,165 + y,221,221,221 );
gfx.PutPixel( 67 + x,165 + y,210,57,57 );
gfx.PutPixel( 68 + x,165 + y,213,104,104 );
gfx.PutPixel( 69 + x,165 + y,219,198,198 );
gfx.PutPixel( 70 + x,165 + y,212,93,93 );
gfx.PutPixel( 71 + x,165 + y,214,116,116 );
gfx.PutPixel( 72 + x,165 + y,221,221,221 );
gfx.PutPixel( 73 + x,165 + y,210,57,57 );
gfx.PutPixel( 74 + x,165 + y,208,34,34 );
gfx.PutPixel( 75 + x,165 + y,208,34,34 );
gfx.PutPixel( 76 + x,165 + y,208,34,34 );
gfx.PutPixel( 77 + x,165 + y,218,174,174 );
gfx.PutPixel( 78 + x,165 + y,216,151,151 );
gfx.PutPixel( 79 + x,165 + y,211,81,81 );
gfx.PutPixel( 80 + x,165 + y,211,81,81 );
gfx.PutPixel( 81 + x,165 + y,210,69,69 );
gfx.PutPixel( 82 + x,165 + y,208,34,34 );
gfx.PutPixel( 83 + x,165 + y,218,174,174 );
gfx.PutPixel( 84 + x,165 + y,221,221,221 );
gfx.PutPixel( 85 + x,165 + y,211,81,81 );
gfx.PutPixel( 86 + x,165 + y,208,34,34 );
gfx.PutPixel( 87 + x,165 + y,218,174,174 );
gfx.PutPixel( 88 + x,165 + y,211,81,81 );
gfx.PutPixel( 89 + x,165 + y,210,69,69 );
gfx.PutPixel( 90 + x,165 + y,211,81,81 );
gfx.PutPixel( 91 + x,165 + y,219,186,186 );
gfx.PutPixel( 92 + x,165 + y,216,151,151 );
gfx.PutPixel( 93 + x,165 + y,211,81,81 );
gfx.PutPixel( 94 + x,165 + y,210,57,57 );
gfx.PutPixel( 95 + x,165 + y,218,174,174 );
gfx.PutPixel( 96 + x,165 + y,216,151,151 );
gfx.PutPixel( 97 + x,165 + y,211,81,81 );
gfx.PutPixel( 98 + x,165 + y,211,81,81 );
gfx.PutPixel( 99 + x,165 + y,210,69,69 );
gfx.PutPixel( 100 + x,165 + y,208,34,34 );
gfx.PutPixel( 101 + x,165 + y,218,174,174 );
gfx.PutPixel( 102 + x,165 + y,216,151,151 );
gfx.PutPixel( 103 + x,165 + y,211,81,81 );
gfx.PutPixel( 104 + x,165 + y,212,93,93 );
gfx.PutPixel( 105 + x,165 + y,219,198,198 );
gfx.PutPixel( 106 + x,165 + y,214,116,116 );
gfx.PutPixel( 107 + x,165 + y,208,34,34 );
gfx.PutPixel( 108 + x,165 + y,208,34,34 );
gfx.PutPixel( 109 + x,165 + y,208,34,34 );
gfx.PutPixel( 110 + x,165 + y,208,34,34 );
gfx.PutPixel( 111 + x,165 + y,208,34,34 );
gfx.PutPixel( 112 + x,165 + y,208,34,34 );
gfx.PutPixel( 113 + x,165 + y,208,34,34 );
gfx.PutPixel( 114 + x,165 + y,208,34,34 );
gfx.PutPixel( 115 + x,165 + y,208,34,34 );
gfx.PutPixel( 116 + x,165 + y,208,34,34 );
gfx.PutPixel( 117 + x,165 + y,208,34,34 );
gfx.PutPixel( 118 + x,165 + y,208,34,34 );
gfx.PutPixel( 119 + x,165 + y,208,34,34 );
gfx.PutPixel( 120 + x,165 + y,208,34,34 );
gfx.PutPixel( 121 + x,165 + y,208,34,34 );
gfx.PutPixel( 122 + x,165 + y,208,34,34 );
gfx.PutPixel( 123 + x,165 + y,208,34,34 );
gfx.PutPixel( 124 + x,165 + y,208,34,34 );
gfx.PutPixel( 125 + x,165 + y,208,34,34 );
gfx.PutPixel( 126 + x,165 + y,208,34,34 );
gfx.PutPixel( 127 + x,165 + y,208,34,34 );
gfx.PutPixel( 128 + x,165 + y,208,34,34 );
gfx.PutPixel( 129 + x,165 + y,208,34,34 );
gfx.PutPixel( 130 + x,165 + y,208,34,34 );
gfx.PutPixel( 131 + x,165 + y,208,34,34 );
gfx.PutPixel( 132 + x,165 + y,208,34,34 );
gfx.PutPixel( 133 + x,165 + y,208,34,34 );
gfx.PutPixel( 134 + x,165 + y,208,34,34 );
gfx.PutPixel( 135 + x,165 + y,208,34,34 );
gfx.PutPixel( 136 + x,165 + y,208,34,34 );
gfx.PutPixel( 137 + x,165 + y,208,34,34 );
gfx.PutPixel( 138 + x,165 + y,208,34,34 );
gfx.PutPixel( 139 + x,165 + y,208,34,34 );
gfx.PutPixel( 140 + x,165 + y,208,34,34 );
gfx.PutPixel( 141 + x,165 + y,208,34,34 );
gfx.PutPixel( 142 + x,165 + y,208,34,34 );
gfx.PutPixel( 143 + x,165 + y,208,34,34 );
gfx.PutPixel( 144 + x,165 + y,208,34,34 );
gfx.PutPixel( 145 + x,165 + y,208,34,34 );
gfx.PutPixel( 146 + x,165 + y,208,34,34 );
gfx.PutPixel( 147 + x,165 + y,208,34,34 );
gfx.PutPixel( 148 + x,165 + y,208,34,34 );
gfx.PutPixel( 149 + x,165 + y,208,34,34 );
gfx.PutPixel( 0 + x,166 + y,208,34,34 );
gfx.PutPixel( 1 + x,166 + y,208,34,34 );
gfx.PutPixel( 2 + x,166 + y,208,34,34 );
gfx.PutPixel( 3 + x,166 + y,208,34,34 );
gfx.PutPixel( 4 + x,166 + y,208,34,34 );
gfx.PutPixel( 5 + x,166 + y,208,34,34 );
gfx.PutPixel( 6 + x,166 + y,208,34,34 );
gfx.PutPixel( 7 + x,166 + y,208,34,34 );
gfx.PutPixel( 8 + x,166 + y,208,34,34 );
gfx.PutPixel( 9 + x,166 + y,208,34,34 );
gfx.PutPixel( 10 + x,166 + y,208,34,34 );
gfx.PutPixel( 11 + x,166 + y,208,34,34 );
gfx.PutPixel( 12 + x,166 + y,208,34,34 );
gfx.PutPixel( 13 + x,166 + y,208,34,34 );
gfx.PutPixel( 14 + x,166 + y,208,34,34 );
gfx.PutPixel( 15 + x,166 + y,208,34,34 );
gfx.PutPixel( 16 + x,166 + y,208,34,34 );
gfx.PutPixel( 17 + x,166 + y,208,34,34 );
gfx.PutPixel( 18 + x,166 + y,208,34,34 );
gfx.PutPixel( 19 + x,166 + y,208,34,34 );
gfx.PutPixel( 20 + x,166 + y,208,34,34 );
gfx.PutPixel( 21 + x,166 + y,208,34,34 );
gfx.PutPixel( 22 + x,166 + y,208,34,34 );
gfx.PutPixel( 23 + x,166 + y,208,34,34 );
gfx.PutPixel( 24 + x,166 + y,208,34,34 );
gfx.PutPixel( 25 + x,166 + y,208,34,34 );
gfx.PutPixel( 26 + x,166 + y,208,34,34 );
gfx.PutPixel( 27 + x,166 + y,208,34,34 );
gfx.PutPixel( 28 + x,166 + y,208,34,34 );
gfx.PutPixel( 29 + x,166 + y,208,34,34 );
gfx.PutPixel( 30 + x,166 + y,208,34,34 );
gfx.PutPixel( 31 + x,166 + y,208,34,34 );
gfx.PutPixel( 32 + x,166 + y,208,34,34 );
gfx.PutPixel( 33 + x,166 + y,208,34,34 );
gfx.PutPixel( 34 + x,166 + y,208,34,34 );
gfx.PutPixel( 35 + x,166 + y,208,34,34 );
gfx.PutPixel( 36 + x,166 + y,208,34,34 );
gfx.PutPixel( 37 + x,166 + y,208,34,34 );
gfx.PutPixel( 38 + x,166 + y,208,34,34 );
gfx.PutPixel( 39 + x,166 + y,208,34,34 );
gfx.PutPixel( 40 + x,166 + y,208,34,34 );
gfx.PutPixel( 41 + x,166 + y,208,34,34 );
gfx.PutPixel( 42 + x,166 + y,208,34,34 );
gfx.PutPixel( 43 + x,166 + y,208,34,34 );
gfx.PutPixel( 44 + x,166 + y,218,174,174 );
gfx.PutPixel( 45 + x,166 + y,214,127,127 );
gfx.PutPixel( 46 + x,166 + y,208,34,34 );
gfx.PutPixel( 47 + x,166 + y,212,93,93 );
gfx.PutPixel( 48 + x,166 + y,221,221,221 );
gfx.PutPixel( 49 + x,166 + y,208,34,34 );
gfx.PutPixel( 50 + x,166 + y,218,174,174 );
gfx.PutPixel( 51 + x,166 + y,214,127,127 );
gfx.PutPixel( 52 + x,166 + y,208,34,34 );
gfx.PutPixel( 53 + x,166 + y,209,46,46 );
gfx.PutPixel( 54 + x,166 + y,219,198,198 );
gfx.PutPixel( 55 + x,166 + y,214,116,116 );
gfx.PutPixel( 56 + x,166 + y,211,81,81 );
gfx.PutPixel( 57 + x,166 + y,221,221,221 );
gfx.PutPixel( 58 + x,166 + y,211,81,81 );
gfx.PutPixel( 59 + x,166 + y,211,81,81 );
gfx.PutPixel( 60 + x,166 + y,211,81,81 );
gfx.PutPixel( 61 + x,166 + y,208,34,34 );
gfx.PutPixel( 62 + x,166 + y,214,116,116 );
gfx.PutPixel( 63 + x,166 + y,220,209,209 );
gfx.PutPixel( 64 + x,166 + y,214,116,116 );
gfx.PutPixel( 65 + x,166 + y,210,57,57 );
gfx.PutPixel( 66 + x,166 + y,211,81,81 );
gfx.PutPixel( 67 + x,166 + y,209,46,46 );
gfx.PutPixel( 68 + x,166 + y,214,116,116 );
gfx.PutPixel( 69 + x,166 + y,220,209,209 );
gfx.PutPixel( 70 + x,166 + y,214,116,116 );
gfx.PutPixel( 71 + x,166 + y,210,57,57 );
gfx.PutPixel( 72 + x,166 + y,211,81,81 );
gfx.PutPixel( 73 + x,166 + y,209,46,46 );
gfx.PutPixel( 74 + x,166 + y,208,34,34 );
gfx.PutPixel( 75 + x,166 + y,208,34,34 );
gfx.PutPixel( 76 + x,166 + y,208,34,34 );
gfx.PutPixel( 77 + x,166 + y,218,174,174 );
gfx.PutPixel( 78 + x,166 + y,216,151,151 );
gfx.PutPixel( 79 + x,166 + y,211,81,81 );
gfx.PutPixel( 80 + x,166 + y,211,81,81 );
gfx.PutPixel( 81 + x,166 + y,210,57,57 );
gfx.PutPixel( 82 + x,166 + y,208,34,34 );
gfx.PutPixel( 83 + x,166 + y,218,174,174 );
gfx.PutPixel( 84 + x,166 + y,216,151,151 );
gfx.PutPixel( 85 + x,166 + y,218,174,174 );
gfx.PutPixel( 86 + x,166 + y,208,34,34 );
gfx.PutPixel( 87 + x,166 + y,218,174,174 );
gfx.PutPixel( 88 + x,166 + y,211,81,81 );
gfx.PutPixel( 89 + x,166 + y,208,34,34 );
gfx.PutPixel( 90 + x,166 + y,208,34,34 );
gfx.PutPixel( 91 + x,166 + y,218,174,174 );
gfx.PutPixel( 92 + x,166 + y,214,127,127 );
gfx.PutPixel( 93 + x,166 + y,208,34,34 );
gfx.PutPixel( 94 + x,166 + y,208,34,34 );
gfx.PutPixel( 95 + x,166 + y,218,174,174 );
gfx.PutPixel( 96 + x,166 + y,216,151,151 );
gfx.PutPixel( 97 + x,166 + y,211,81,81 );
gfx.PutPixel( 98 + x,166 + y,211,81,81 );
gfx.PutPixel( 99 + x,166 + y,210,57,57 );
gfx.PutPixel( 100 + x,166 + y,208,34,34 );
gfx.PutPixel( 101 + x,166 + y,218,174,174 );
gfx.PutPixel( 102 + x,166 + y,214,127,127 );
gfx.PutPixel( 103 + x,166 + y,208,34,34 );
gfx.PutPixel( 104 + x,166 + y,209,46,46 );
gfx.PutPixel( 105 + x,166 + y,219,198,198 );
gfx.PutPixel( 106 + x,166 + y,214,116,116 );
gfx.PutPixel( 107 + x,166 + y,208,34,34 );
gfx.PutPixel( 108 + x,166 + y,208,34,34 );
gfx.PutPixel( 109 + x,166 + y,208,34,34 );
gfx.PutPixel( 110 + x,166 + y,208,34,34 );
gfx.PutPixel( 111 + x,166 + y,208,34,34 );
gfx.PutPixel( 112 + x,166 + y,208,34,34 );
gfx.PutPixel( 113 + x,166 + y,208,34,34 );
gfx.PutPixel( 114 + x,166 + y,208,34,34 );
gfx.PutPixel( 115 + x,166 + y,208,34,34 );
gfx.PutPixel( 116 + x,166 + y,208,34,34 );
gfx.PutPixel( 117 + x,166 + y,208,34,34 );
gfx.PutPixel( 118 + x,166 + y,208,34,34 );
gfx.PutPixel( 119 + x,166 + y,208,34,34 );
gfx.PutPixel( 120 + x,166 + y,208,34,34 );
gfx.PutPixel( 121 + x,166 + y,208,34,34 );
gfx.PutPixel( 122 + x,166 + y,208,34,34 );
gfx.PutPixel( 123 + x,166 + y,208,34,34 );
gfx.PutPixel( 124 + x,166 + y,208,34,34 );
gfx.PutPixel( 125 + x,166 + y,208,34,34 );
gfx.PutPixel( 126 + x,166 + y,208,34,34 );
gfx.PutPixel( 127 + x,166 + y,208,34,34 );
gfx.PutPixel( 128 + x,166 + y,208,34,34 );
gfx.PutPixel( 129 + x,166 + y,208,34,34 );
gfx.PutPixel( 130 + x,166 + y,208,34,34 );
gfx.PutPixel( 131 + x,166 + y,208,34,34 );
gfx.PutPixel( 132 + x,166 + y,208,34,34 );
gfx.PutPixel( 133 + x,166 + y,208,34,34 );
gfx.PutPixel( 134 + x,166 + y,208,34,34 );
gfx.PutPixel( 135 + x,166 + y,208,34,34 );
gfx.PutPixel( 136 + x,166 + y,208,34,34 );
gfx.PutPixel( 137 + x,166 + y,208,34,34 );
gfx.PutPixel( 138 + x,166 + y,208,34,34 );
gfx.PutPixel( 139 + x,166 + y,208,34,34 );
gfx.PutPixel( 140 + x,166 + y,208,34,34 );
gfx.PutPixel( 141 + x,166 + y,208,34,34 );
gfx.PutPixel( 142 + x,166 + y,208,34,34 );
gfx.PutPixel( 143 + x,166 + y,208,34,34 );
gfx.PutPixel( 144 + x,166 + y,208,34,34 );
gfx.PutPixel( 145 + x,166 + y,208,34,34 );
gfx.PutPixel( 146 + x,166 + y,208,34,34 );
gfx.PutPixel( 147 + x,166 + y,208,34,34 );
gfx.PutPixel( 148 + x,166 + y,208,34,34 );
gfx.PutPixel( 149 + x,166 + y,208,34,34 );
gfx.PutPixel( 0 + x,167 + y,208,34,34 );
gfx.PutPixel( 1 + x,167 + y,208,34,34 );
gfx.PutPixel( 2 + x,167 + y,208,34,34 );
gfx.PutPixel( 3 + x,167 + y,208,34,34 );
gfx.PutPixel( 4 + x,167 + y,208,34,34 );
gfx.PutPixel( 5 + x,167 + y,208,34,34 );
gfx.PutPixel( 6 + x,167 + y,208,34,34 );
gfx.PutPixel( 7 + x,167 + y,208,34,34 );
gfx.PutPixel( 8 + x,167 + y,208,34,34 );
gfx.PutPixel( 9 + x,167 + y,208,34,34 );
gfx.PutPixel( 10 + x,167 + y,208,34,34 );
gfx.PutPixel( 11 + x,167 + y,208,34,34 );
gfx.PutPixel( 12 + x,167 + y,208,34,34 );
gfx.PutPixel( 13 + x,167 + y,208,34,34 );
gfx.PutPixel( 14 + x,167 + y,208,34,34 );
gfx.PutPixel( 15 + x,167 + y,208,34,34 );
gfx.PutPixel( 16 + x,167 + y,208,34,34 );
gfx.PutPixel( 17 + x,167 + y,208,34,34 );
gfx.PutPixel( 18 + x,167 + y,208,34,34 );
gfx.PutPixel( 19 + x,167 + y,208,34,34 );
gfx.PutPixel( 20 + x,167 + y,208,34,34 );
gfx.PutPixel( 21 + x,167 + y,208,34,34 );
gfx.PutPixel( 22 + x,167 + y,208,34,34 );
gfx.PutPixel( 23 + x,167 + y,208,34,34 );
gfx.PutPixel( 24 + x,167 + y,208,34,34 );
gfx.PutPixel( 25 + x,167 + y,208,34,34 );
gfx.PutPixel( 26 + x,167 + y,208,34,34 );
gfx.PutPixel( 27 + x,167 + y,208,34,34 );
gfx.PutPixel( 28 + x,167 + y,208,34,34 );
gfx.PutPixel( 29 + x,167 + y,208,34,34 );
gfx.PutPixel( 30 + x,167 + y,208,34,34 );
gfx.PutPixel( 31 + x,167 + y,208,34,34 );
gfx.PutPixel( 32 + x,167 + y,208,34,34 );
gfx.PutPixel( 33 + x,167 + y,208,34,34 );
gfx.PutPixel( 34 + x,167 + y,208,34,34 );
gfx.PutPixel( 35 + x,167 + y,208,34,34 );
gfx.PutPixel( 36 + x,167 + y,208,34,34 );
gfx.PutPixel( 37 + x,167 + y,208,34,34 );
gfx.PutPixel( 38 + x,167 + y,208,34,34 );
gfx.PutPixel( 39 + x,167 + y,208,34,34 );
gfx.PutPixel( 40 + x,167 + y,208,34,34 );
gfx.PutPixel( 41 + x,167 + y,208,34,34 );
gfx.PutPixel( 42 + x,167 + y,208,34,34 );
gfx.PutPixel( 43 + x,167 + y,208,34,34 );
gfx.PutPixel( 44 + x,167 + y,218,174,174 );
gfx.PutPixel( 45 + x,167 + y,219,198,198 );
gfx.PutPixel( 46 + x,167 + y,218,174,174 );
gfx.PutPixel( 47 + x,167 + y,220,209,209 );
gfx.PutPixel( 48 + x,167 + y,215,139,139 );
gfx.PutPixel( 49 + x,167 + y,208,34,34 );
gfx.PutPixel( 50 + x,167 + y,218,174,174 );
gfx.PutPixel( 51 + x,167 + y,221,221,221 );
gfx.PutPixel( 52 + x,167 + y,221,221,221 );
gfx.PutPixel( 53 + x,167 + y,221,221,221 );
gfx.PutPixel( 54 + x,167 + y,216,151,151 );
gfx.PutPixel( 55 + x,167 + y,209,46,46 );
gfx.PutPixel( 56 + x,167 + y,211,81,81 );
gfx.PutPixel( 57 + x,167 + y,221,221,221 );
gfx.PutPixel( 58 + x,167 + y,218,174,174 );
gfx.PutPixel( 59 + x,167 + y,218,174,174 );
gfx.PutPixel( 60 + x,167 + y,218,174,174 );
gfx.PutPixel( 61 + x,167 + y,208,34,34 );
gfx.PutPixel( 62 + x,167 + y,208,34,34 );
gfx.PutPixel( 63 + x,167 + y,214,127,127 );
gfx.PutPixel( 64 + x,167 + y,219,198,198 );
gfx.PutPixel( 65 + x,167 + y,221,221,221 );
gfx.PutPixel( 66 + x,167 + y,218,174,174 );
gfx.PutPixel( 67 + x,167 + y,209,46,46 );
gfx.PutPixel( 68 + x,167 + y,208,34,34 );
gfx.PutPixel( 69 + x,167 + y,214,127,127 );
gfx.PutPixel( 70 + x,167 + y,219,198,198 );
gfx.PutPixel( 71 + x,167 + y,221,221,221 );
gfx.PutPixel( 72 + x,167 + y,218,174,174 );
gfx.PutPixel( 73 + x,167 + y,209,46,46 );
gfx.PutPixel( 74 + x,167 + y,208,34,34 );
gfx.PutPixel( 75 + x,167 + y,208,34,34 );
gfx.PutPixel( 76 + x,167 + y,208,34,34 );
gfx.PutPixel( 77 + x,167 + y,218,174,174 );
gfx.PutPixel( 78 + x,167 + y,219,198,198 );
gfx.PutPixel( 79 + x,167 + y,218,174,174 );
gfx.PutPixel( 80 + x,167 + y,218,174,174 );
gfx.PutPixel( 81 + x,167 + y,213,104,104 );
gfx.PutPixel( 82 + x,167 + y,208,34,34 );
gfx.PutPixel( 83 + x,167 + y,218,174,174 );
gfx.PutPixel( 84 + x,167 + y,211,81,81 );
gfx.PutPixel( 85 + x,167 + y,219,198,198 );
gfx.PutPixel( 86 + x,167 + y,211,81,81 );
gfx.PutPixel( 87 + x,167 + y,218,174,174 );
gfx.PutPixel( 88 + x,167 + y,211,81,81 );
gfx.PutPixel( 89 + x,167 + y,208,34,34 );
gfx.PutPixel( 90 + x,167 + y,208,34,34 );
gfx.PutPixel( 91 + x,167 + y,218,174,174 );
gfx.PutPixel( 92 + x,167 + y,214,127,127 );
gfx.PutPixel( 93 + x,167 + y,208,34,34 );
gfx.PutPixel( 94 + x,167 + y,208,34,34 );
gfx.PutPixel( 95 + x,167 + y,218,174,174 );
gfx.PutPixel( 96 + x,167 + y,219,198,198 );
gfx.PutPixel( 97 + x,167 + y,218,174,174 );
gfx.PutPixel( 98 + x,167 + y,218,174,174 );
gfx.PutPixel( 99 + x,167 + y,213,104,104 );
gfx.PutPixel( 100 + x,167 + y,208,34,34 );
gfx.PutPixel( 101 + x,167 + y,218,174,174 );
gfx.PutPixel( 102 + x,167 + y,221,221,221 );
gfx.PutPixel( 103 + x,167 + y,221,221,221 );
gfx.PutPixel( 104 + x,167 + y,221,221,221 );
gfx.PutPixel( 105 + x,167 + y,216,151,151 );
gfx.PutPixel( 106 + x,167 + y,209,46,46 );
gfx.PutPixel( 107 + x,167 + y,208,34,34 );
gfx.PutPixel( 108 + x,167 + y,208,34,34 );
gfx.PutPixel( 109 + x,167 + y,208,34,34 );
gfx.PutPixel( 110 + x,167 + y,208,34,34 );
gfx.PutPixel( 111 + x,167 + y,208,34,34 );
gfx.PutPixel( 112 + x,167 + y,208,34,34 );
gfx.PutPixel( 113 + x,167 + y,208,34,34 );
gfx.PutPixel( 114 + x,167 + y,208,34,34 );
gfx.PutPixel( 115 + x,167 + y,208,34,34 );
gfx.PutPixel( 116 + x,167 + y,208,34,34 );
gfx.PutPixel( 117 + x,167 + y,208,34,34 );
gfx.PutPixel( 118 + x,167 + y,208,34,34 );
gfx.PutPixel( 119 + x,167 + y,208,34,34 );
gfx.PutPixel( 120 + x,167 + y,208,34,34 );
gfx.PutPixel( 121 + x,167 + y,208,34,34 );
gfx.PutPixel( 122 + x,167 + y,208,34,34 );
gfx.PutPixel( 123 + x,167 + y,208,34,34 );
gfx.PutPixel( 124 + x,167 + y,208,34,34 );
gfx.PutPixel( 125 + x,167 + y,208,34,34 );
gfx.PutPixel( 126 + x,167 + y,208,34,34 );
gfx.PutPixel( 127 + x,167 + y,208,34,34 );
gfx.PutPixel( 128 + x,167 + y,208,34,34 );
gfx.PutPixel( 129 + x,167 + y,208,34,34 );
gfx.PutPixel( 130 + x,167 + y,208,34,34 );
gfx.PutPixel( 131 + x,167 + y,208,34,34 );
gfx.PutPixel( 132 + x,167 + y,208,34,34 );
gfx.PutPixel( 133 + x,167 + y,208,34,34 );
gfx.PutPixel( 134 + x,167 + y,208,34,34 );
gfx.PutPixel( 135 + x,167 + y,208,34,34 );
gfx.PutPixel( 136 + x,167 + y,208,34,34 );
gfx.PutPixel( 137 + x,167 + y,208,34,34 );
gfx.PutPixel( 138 + x,167 + y,208,34,34 );
gfx.PutPixel( 139 + x,167 + y,208,34,34 );
gfx.PutPixel( 140 + x,167 + y,208,34,34 );
gfx.PutPixel( 141 + x,167 + y,208,34,34 );
gfx.PutPixel( 142 + x,167 + y,208,34,34 );
gfx.PutPixel( 143 + x,167 + y,208,34,34 );
gfx.PutPixel( 144 + x,167 + y,208,34,34 );
gfx.PutPixel( 145 + x,167 + y,208,34,34 );
gfx.PutPixel( 146 + x,167 + y,208,34,34 );
gfx.PutPixel( 147 + x,167 + y,208,34,34 );
gfx.PutPixel( 148 + x,167 + y,208,34,34 );
gfx.PutPixel( 149 + x,167 + y,208,34,34 );
gfx.PutPixel( 0 + x,168 + y,208,34,34 );
gfx.PutPixel( 1 + x,168 + y,208,34,34 );
gfx.PutPixel( 2 + x,168 + y,208,34,34 );
gfx.PutPixel( 3 + x,168 + y,208,34,34 );
gfx.PutPixel( 4 + x,168 + y,208,34,34 );
gfx.PutPixel( 5 + x,168 + y,208,34,34 );
gfx.PutPixel( 6 + x,168 + y,208,34,34 );
gfx.PutPixel( 7 + x,168 + y,208,34,34 );
gfx.PutPixel( 8 + x,168 + y,208,34,34 );
gfx.PutPixel( 9 + x,168 + y,208,34,34 );
gfx.PutPixel( 10 + x,168 + y,208,34,34 );
gfx.PutPixel( 11 + x,168 + y,208,34,34 );
gfx.PutPixel( 12 + x,168 + y,208,34,34 );
gfx.PutPixel( 13 + x,168 + y,208,34,34 );
gfx.PutPixel( 14 + x,168 + y,208,34,34 );
gfx.PutPixel( 15 + x,168 + y,208,34,34 );
gfx.PutPixel( 16 + x,168 + y,208,34,34 );
gfx.PutPixel( 17 + x,168 + y,208,34,34 );
gfx.PutPixel( 18 + x,168 + y,208,34,34 );
gfx.PutPixel( 19 + x,168 + y,208,34,34 );
gfx.PutPixel( 20 + x,168 + y,208,34,34 );
gfx.PutPixel( 21 + x,168 + y,208,34,34 );
gfx.PutPixel( 22 + x,168 + y,208,34,34 );
gfx.PutPixel( 23 + x,168 + y,208,34,34 );
gfx.PutPixel( 24 + x,168 + y,208,34,34 );
gfx.PutPixel( 25 + x,168 + y,208,34,34 );
gfx.PutPixel( 26 + x,168 + y,208,34,34 );
gfx.PutPixel( 27 + x,168 + y,208,34,34 );
gfx.PutPixel( 28 + x,168 + y,208,34,34 );
gfx.PutPixel( 29 + x,168 + y,208,34,34 );
gfx.PutPixel( 30 + x,168 + y,208,34,34 );
gfx.PutPixel( 31 + x,168 + y,208,34,34 );
gfx.PutPixel( 32 + x,168 + y,208,34,34 );
gfx.PutPixel( 33 + x,168 + y,208,34,34 );
gfx.PutPixel( 34 + x,168 + y,208,34,34 );
gfx.PutPixel( 35 + x,168 + y,208,34,34 );
gfx.PutPixel( 36 + x,168 + y,208,34,34 );
gfx.PutPixel( 37 + x,168 + y,208,34,34 );
gfx.PutPixel( 38 + x,168 + y,208,34,34 );
gfx.PutPixel( 39 + x,168 + y,208,34,34 );
gfx.PutPixel( 40 + x,168 + y,208,34,34 );
gfx.PutPixel( 41 + x,168 + y,208,34,34 );
gfx.PutPixel( 42 + x,168 + y,208,34,34 );
gfx.PutPixel( 43 + x,168 + y,208,34,34 );
gfx.PutPixel( 44 + x,168 + y,218,174,174 );
gfx.PutPixel( 45 + x,168 + y,216,151,151 );
gfx.PutPixel( 46 + x,168 + y,211,81,81 );
gfx.PutPixel( 47 + x,168 + y,210,69,69 );
gfx.PutPixel( 48 + x,168 + y,208,34,34 );
gfx.PutPixel( 49 + x,168 + y,208,34,34 );
gfx.PutPixel( 50 + x,168 + y,218,174,174 );
gfx.PutPixel( 51 + x,168 + y,214,127,127 );
gfx.PutPixel( 52 + x,168 + y,210,57,57 );
gfx.PutPixel( 53 + x,168 + y,219,198,198 );
gfx.PutPixel( 54 + x,168 + y,215,139,139 );
gfx.PutPixel( 55 + x,168 + y,208,34,34 );
gfx.PutPixel( 56 + x,168 + y,211,81,81 );
gfx.PutPixel( 57 + x,168 + y,221,221,221 );
gfx.PutPixel( 58 + x,168 + y,208,34,34 );
gfx.PutPixel( 59 + x,168 + y,208,34,34 );
gfx.PutPixel( 60 + x,168 + y,208,34,34 );
gfx.PutPixel( 61 + x,168 + y,208,34,34 );
gfx.PutPixel( 62 + x,168 + y,211,81,81 );
gfx.PutPixel( 63 + x,168 + y,211,81,81 );
gfx.PutPixel( 64 + x,168 + y,208,34,34 );
gfx.PutPixel( 65 + x,168 + y,210,57,57 );
gfx.PutPixel( 66 + x,168 + y,219,198,198 );
gfx.PutPixel( 67 + x,168 + y,214,127,127 );
gfx.PutPixel( 68 + x,168 + y,211,81,81 );
gfx.PutPixel( 69 + x,168 + y,211,81,81 );
gfx.PutPixel( 70 + x,168 + y,208,34,34 );
gfx.PutPixel( 71 + x,168 + y,210,57,57 );
gfx.PutPixel( 72 + x,168 + y,219,198,198 );
gfx.PutPixel( 73 + x,168 + y,214,127,127 );
gfx.PutPixel( 74 + x,168 + y,208,34,34 );
gfx.PutPixel( 75 + x,168 + y,208,34,34 );
gfx.PutPixel( 76 + x,168 + y,208,34,34 );
gfx.PutPixel( 77 + x,168 + y,218,174,174 );
gfx.PutPixel( 78 + x,168 + y,214,127,127 );
gfx.PutPixel( 79 + x,168 + y,208,34,34 );
gfx.PutPixel( 80 + x,168 + y,208,34,34 );
gfx.PutPixel( 81 + x,168 + y,208,34,34 );
gfx.PutPixel( 82 + x,168 + y,208,34,34 );
gfx.PutPixel( 83 + x,168 + y,218,174,174 );
gfx.PutPixel( 84 + x,168 + y,211,81,81 );
gfx.PutPixel( 85 + x,168 + y,213,104,104 );
gfx.PutPixel( 86 + x,168 + y,218,174,174 );
gfx.PutPixel( 87 + x,168 + y,218,174,174 );
gfx.PutPixel( 88 + x,168 + y,211,81,81 );
gfx.PutPixel( 89 + x,168 + y,208,34,34 );
gfx.PutPixel( 90 + x,168 + y,208,34,34 );
gfx.PutPixel( 91 + x,168 + y,218,174,174 );
gfx.PutPixel( 92 + x,168 + y,214,127,127 );
gfx.PutPixel( 93 + x,168 + y,208,34,34 );
gfx.PutPixel( 94 + x,168 + y,208,34,34 );
gfx.PutPixel( 95 + x,168 + y,218,174,174 );
gfx.PutPixel( 96 + x,168 + y,214,127,127 );
gfx.PutPixel( 97 + x,168 + y,208,34,34 );
gfx.PutPixel( 98 + x,168 + y,208,34,34 );
gfx.PutPixel( 99 + x,168 + y,208,34,34 );
gfx.PutPixel( 100 + x,168 + y,208,34,34 );
gfx.PutPixel( 101 + x,168 + y,218,174,174 );
gfx.PutPixel( 102 + x,168 + y,214,127,127 );
gfx.PutPixel( 103 + x,168 + y,210,57,57 );
gfx.PutPixel( 104 + x,168 + y,219,198,198 );
gfx.PutPixel( 105 + x,168 + y,215,139,139 );
gfx.PutPixel( 106 + x,168 + y,208,34,34 );
gfx.PutPixel( 107 + x,168 + y,208,34,34 );
gfx.PutPixel( 108 + x,168 + y,208,34,34 );
gfx.PutPixel( 109 + x,168 + y,208,34,34 );
gfx.PutPixel( 110 + x,168 + y,208,34,34 );
gfx.PutPixel( 111 + x,168 + y,208,34,34 );
gfx.PutPixel( 112 + x,168 + y,208,34,34 );
gfx.PutPixel( 113 + x,168 + y,208,34,34 );
gfx.PutPixel( 114 + x,168 + y,208,34,34 );
gfx.PutPixel( 115 + x,168 + y,208,34,34 );
gfx.PutPixel( 116 + x,168 + y,208,34,34 );
gfx.PutPixel( 117 + x,168 + y,208,34,34 );
gfx.PutPixel( 118 + x,168 + y,208,34,34 );
gfx.PutPixel( 119 + x,168 + y,208,34,34 );
gfx.PutPixel( 120 + x,168 + y,208,34,34 );
gfx.PutPixel( 121 + x,168 + y,208,34,34 );
gfx.PutPixel( 122 + x,168 + y,208,34,34 );
gfx.PutPixel( 123 + x,168 + y,208,34,34 );
gfx.PutPixel( 124 + x,168 + y,208,34,34 );
gfx.PutPixel( 125 + x,168 + y,208,34,34 );
gfx.PutPixel( 126 + x,168 + y,208,34,34 );
gfx.PutPixel( 127 + x,168 + y,208,34,34 );
gfx.PutPixel( 128 + x,168 + y,208,34,34 );
gfx.PutPixel( 129 + x,168 + y,208,34,34 );
gfx.PutPixel( 130 + x,168 + y,208,34,34 );
gfx.PutPixel( 131 + x,168 + y,208,34,34 );
gfx.PutPixel( 132 + x,168 + y,208,34,34 );
gfx.PutPixel( 133 + x,168 + y,208,34,34 );
gfx.PutPixel( 134 + x,168 + y,208,34,34 );
gfx.PutPixel( 135 + x,168 + y,208,34,34 );
gfx.PutPixel( 136 + x,168 + y,208,34,34 );
gfx.PutPixel( 137 + x,168 + y,208,34,34 );
gfx.PutPixel( 138 + x,168 + y,208,34,34 );
gfx.PutPixel( 139 + x,168 + y,208,34,34 );
gfx.PutPixel( 140 + x,168 + y,208,34,34 );
gfx.PutPixel( 141 + x,168 + y,208,34,34 );
gfx.PutPixel( 142 + x,168 + y,208,34,34 );
gfx.PutPixel( 143 + x,168 + y,208,34,34 );
gfx.PutPixel( 144 + x,168 + y,208,34,34 );
gfx.PutPixel( 145 + x,168 + y,208,34,34 );
gfx.PutPixel( 146 + x,168 + y,208,34,34 );
gfx.PutPixel( 147 + x,168 + y,208,34,34 );
gfx.PutPixel( 148 + x,168 + y,208,34,34 );
gfx.PutPixel( 149 + x,168 + y,208,34,34 );
gfx.PutPixel( 0 + x,169 + y,208,34,34 );
gfx.PutPixel( 1 + x,169 + y,208,34,34 );
gfx.PutPixel( 2 + x,169 + y,208,34,34 );
gfx.PutPixel( 3 + x,169 + y,208,34,34 );
gfx.PutPixel( 4 + x,169 + y,208,34,34 );
gfx.PutPixel( 5 + x,169 + y,208,34,34 );
gfx.PutPixel( 6 + x,169 + y,208,34,34 );
gfx.PutPixel( 7 + x,169 + y,208,34,34 );
gfx.PutPixel( 8 + x,169 + y,208,34,34 );
gfx.PutPixel( 9 + x,169 + y,208,34,34 );
gfx.PutPixel( 10 + x,169 + y,208,34,34 );
gfx.PutPixel( 11 + x,169 + y,208,34,34 );
gfx.PutPixel( 12 + x,169 + y,208,34,34 );
gfx.PutPixel( 13 + x,169 + y,208,34,34 );
gfx.PutPixel( 14 + x,169 + y,208,34,34 );
gfx.PutPixel( 15 + x,169 + y,208,34,34 );
gfx.PutPixel( 16 + x,169 + y,208,34,34 );
gfx.PutPixel( 17 + x,169 + y,208,34,34 );
gfx.PutPixel( 18 + x,169 + y,208,34,34 );
gfx.PutPixel( 19 + x,169 + y,208,34,34 );
gfx.PutPixel( 20 + x,169 + y,208,34,34 );
gfx.PutPixel( 21 + x,169 + y,208,34,34 );
gfx.PutPixel( 22 + x,169 + y,208,34,34 );
gfx.PutPixel( 23 + x,169 + y,208,34,34 );
gfx.PutPixel( 24 + x,169 + y,208,34,34 );
gfx.PutPixel( 25 + x,169 + y,208,34,34 );
gfx.PutPixel( 26 + x,169 + y,208,34,34 );
gfx.PutPixel( 27 + x,169 + y,208,34,34 );
gfx.PutPixel( 28 + x,169 + y,208,34,34 );
gfx.PutPixel( 29 + x,169 + y,208,34,34 );
gfx.PutPixel( 30 + x,169 + y,208,34,34 );
gfx.PutPixel( 31 + x,169 + y,208,34,34 );
gfx.PutPixel( 32 + x,169 + y,208,34,34 );
gfx.PutPixel( 33 + x,169 + y,208,34,34 );
gfx.PutPixel( 34 + x,169 + y,208,34,34 );
gfx.PutPixel( 35 + x,169 + y,208,34,34 );
gfx.PutPixel( 36 + x,169 + y,208,34,34 );
gfx.PutPixel( 37 + x,169 + y,208,34,34 );
gfx.PutPixel( 38 + x,169 + y,208,34,34 );
gfx.PutPixel( 39 + x,169 + y,208,34,34 );
gfx.PutPixel( 40 + x,169 + y,208,34,34 );
gfx.PutPixel( 41 + x,169 + y,208,34,34 );
gfx.PutPixel( 42 + x,169 + y,208,34,34 );
gfx.PutPixel( 43 + x,169 + y,208,34,34 );
gfx.PutPixel( 44 + x,169 + y,218,174,174 );
gfx.PutPixel( 45 + x,169 + y,214,127,127 );
gfx.PutPixel( 46 + x,169 + y,208,34,34 );
gfx.PutPixel( 47 + x,169 + y,208,34,34 );
gfx.PutPixel( 48 + x,169 + y,208,34,34 );
gfx.PutPixel( 49 + x,169 + y,208,34,34 );
gfx.PutPixel( 50 + x,169 + y,218,174,174 );
gfx.PutPixel( 51 + x,169 + y,214,127,127 );
gfx.PutPixel( 52 + x,169 + y,208,34,34 );
gfx.PutPixel( 53 + x,169 + y,211,81,81 );
gfx.PutPixel( 54 + x,169 + y,221,221,221 );
gfx.PutPixel( 55 + x,169 + y,211,81,81 );
gfx.PutPixel( 56 + x,169 + y,211,81,81 );
gfx.PutPixel( 57 + x,169 + y,221,221,221 );
gfx.PutPixel( 58 + x,169 + y,211,81,81 );
gfx.PutPixel( 59 + x,169 + y,211,81,81 );
gfx.PutPixel( 60 + x,169 + y,211,81,81 );
gfx.PutPixel( 61 + x,169 + y,210,57,57 );
gfx.PutPixel( 62 + x,169 + y,214,127,127 );
gfx.PutPixel( 63 + x,169 + y,220,209,209 );
gfx.PutPixel( 64 + x,169 + y,212,93,93 );
gfx.PutPixel( 65 + x,169 + y,212,93,93 );
gfx.PutPixel( 66 + x,169 + y,220,209,209 );
gfx.PutPixel( 67 + x,169 + y,213,104,104 );
gfx.PutPixel( 68 + x,169 + y,214,127,127 );
gfx.PutPixel( 69 + x,169 + y,220,209,209 );
gfx.PutPixel( 70 + x,169 + y,212,93,93 );
gfx.PutPixel( 71 + x,169 + y,212,93,93 );
gfx.PutPixel( 72 + x,169 + y,220,209,209 );
gfx.PutPixel( 73 + x,169 + y,213,104,104 );
gfx.PutPixel( 74 + x,169 + y,208,34,34 );
gfx.PutPixel( 75 + x,169 + y,208,34,34 );
gfx.PutPixel( 76 + x,169 + y,208,34,34 );
gfx.PutPixel( 77 + x,169 + y,218,174,174 );
gfx.PutPixel( 78 + x,169 + y,216,151,151 );
gfx.PutPixel( 79 + x,169 + y,211,81,81 );
gfx.PutPixel( 80 + x,169 + y,211,81,81 );
gfx.PutPixel( 81 + x,169 + y,211,81,81 );
gfx.PutPixel( 82 + x,169 + y,208,34,34 );
gfx.PutPixel( 83 + x,169 + y,218,174,174 );
gfx.PutPixel( 84 + x,169 + y,211,81,81 );
gfx.PutPixel( 85 + x,169 + y,208,34,34 );
gfx.PutPixel( 86 + x,169 + y,219,198,198 );
gfx.PutPixel( 87 + x,169 + y,220,209,209 );
gfx.PutPixel( 88 + x,169 + y,211,81,81 );
gfx.PutPixel( 89 + x,169 + y,208,34,34 );
gfx.PutPixel( 90 + x,169 + y,208,34,34 );
gfx.PutPixel( 91 + x,169 + y,218,174,174 );
gfx.PutPixel( 92 + x,169 + y,214,127,127 );
gfx.PutPixel( 93 + x,169 + y,208,34,34 );
gfx.PutPixel( 94 + x,169 + y,208,34,34 );
gfx.PutPixel( 95 + x,169 + y,218,174,174 );
gfx.PutPixel( 96 + x,169 + y,216,151,151 );
gfx.PutPixel( 97 + x,169 + y,211,81,81 );
gfx.PutPixel( 98 + x,169 + y,211,81,81 );
gfx.PutPixel( 99 + x,169 + y,211,81,81 );
gfx.PutPixel( 100 + x,169 + y,208,34,34 );
gfx.PutPixel( 101 + x,169 + y,218,174,174 );
gfx.PutPixel( 102 + x,169 + y,214,127,127 );
gfx.PutPixel( 103 + x,169 + y,208,34,34 );
gfx.PutPixel( 104 + x,169 + y,211,81,81 );
gfx.PutPixel( 105 + x,169 + y,221,221,221 );
gfx.PutPixel( 106 + x,169 + y,211,81,81 );
gfx.PutPixel( 107 + x,169 + y,208,34,34 );
gfx.PutPixel( 108 + x,169 + y,208,34,34 );
gfx.PutPixel( 109 + x,169 + y,208,34,34 );
gfx.PutPixel( 110 + x,169 + y,208,34,34 );
gfx.PutPixel( 111 + x,169 + y,208,34,34 );
gfx.PutPixel( 112 + x,169 + y,208,34,34 );
gfx.PutPixel( 113 + x,169 + y,208,34,34 );
gfx.PutPixel( 114 + x,169 + y,208,34,34 );
gfx.PutPixel( 115 + x,169 + y,208,34,34 );
gfx.PutPixel( 116 + x,169 + y,208,34,34 );
gfx.PutPixel( 117 + x,169 + y,208,34,34 );
gfx.PutPixel( 118 + x,169 + y,208,34,34 );
gfx.PutPixel( 119 + x,169 + y,208,34,34 );
gfx.PutPixel( 120 + x,169 + y,208,34,34 );
gfx.PutPixel( 121 + x,169 + y,208,34,34 );
gfx.PutPixel( 122 + x,169 + y,208,34,34 );
gfx.PutPixel( 123 + x,169 + y,208,34,34 );
gfx.PutPixel( 124 + x,169 + y,208,34,34 );
gfx.PutPixel( 125 + x,169 + y,208,34,34 );
gfx.PutPixel( 126 + x,169 + y,208,34,34 );
gfx.PutPixel( 127 + x,169 + y,208,34,34 );
gfx.PutPixel( 128 + x,169 + y,208,34,34 );
gfx.PutPixel( 129 + x,169 + y,208,34,34 );
gfx.PutPixel( 130 + x,169 + y,208,34,34 );
gfx.PutPixel( 131 + x,169 + y,208,34,34 );
gfx.PutPixel( 132 + x,169 + y,208,34,34 );
gfx.PutPixel( 133 + x,169 + y,208,34,34 );
gfx.PutPixel( 134 + x,169 + y,208,34,34 );
gfx.PutPixel( 135 + x,169 + y,208,34,34 );
gfx.PutPixel( 136 + x,169 + y,208,34,34 );
gfx.PutPixel( 137 + x,169 + y,208,34,34 );
gfx.PutPixel( 138 + x,169 + y,208,34,34 );
gfx.PutPixel( 139 + x,169 + y,208,34,34 );
gfx.PutPixel( 140 + x,169 + y,208,34,34 );
gfx.PutPixel( 141 + x,169 + y,208,34,34 );
gfx.PutPixel( 142 + x,169 + y,208,34,34 );
gfx.PutPixel( 143 + x,169 + y,208,34,34 );
gfx.PutPixel( 144 + x,169 + y,208,34,34 );
gfx.PutPixel( 145 + x,169 + y,208,34,34 );
gfx.PutPixel( 146 + x,169 + y,208,34,34 );
gfx.PutPixel( 147 + x,169 + y,208,34,34 );
gfx.PutPixel( 148 + x,169 + y,208,34,34 );
gfx.PutPixel( 149 + x,169 + y,208,34,34 );
gfx.PutPixel( 0 + x,170 + y,208,34,34 );
gfx.PutPixel( 1 + x,170 + y,208,34,34 );
gfx.PutPixel( 2 + x,170 + y,208,34,34 );
gfx.PutPixel( 3 + x,170 + y,208,34,34 );
gfx.PutPixel( 4 + x,170 + y,208,34,34 );
gfx.PutPixel( 5 + x,170 + y,208,34,34 );
gfx.PutPixel( 6 + x,170 + y,208,34,34 );
gfx.PutPixel( 7 + x,170 + y,208,34,34 );
gfx.PutPixel( 8 + x,170 + y,208,34,34 );
gfx.PutPixel( 9 + x,170 + y,208,34,34 );
gfx.PutPixel( 10 + x,170 + y,208,34,34 );
gfx.PutPixel( 11 + x,170 + y,208,34,34 );
gfx.PutPixel( 12 + x,170 + y,208,34,34 );
gfx.PutPixel( 13 + x,170 + y,208,34,34 );
gfx.PutPixel( 14 + x,170 + y,208,34,34 );
gfx.PutPixel( 15 + x,170 + y,208,34,34 );
gfx.PutPixel( 16 + x,170 + y,208,34,34 );
gfx.PutPixel( 17 + x,170 + y,208,34,34 );
gfx.PutPixel( 18 + x,170 + y,208,34,34 );
gfx.PutPixel( 19 + x,170 + y,208,34,34 );
gfx.PutPixel( 20 + x,170 + y,208,34,34 );
gfx.PutPixel( 21 + x,170 + y,208,34,34 );
gfx.PutPixel( 22 + x,170 + y,208,34,34 );
gfx.PutPixel( 23 + x,170 + y,208,34,34 );
gfx.PutPixel( 24 + x,170 + y,208,34,34 );
gfx.PutPixel( 25 + x,170 + y,208,34,34 );
gfx.PutPixel( 26 + x,170 + y,208,34,34 );
gfx.PutPixel( 27 + x,170 + y,208,34,34 );
gfx.PutPixel( 28 + x,170 + y,208,34,34 );
gfx.PutPixel( 29 + x,170 + y,208,34,34 );
gfx.PutPixel( 30 + x,170 + y,208,34,34 );
gfx.PutPixel( 31 + x,170 + y,208,34,34 );
gfx.PutPixel( 32 + x,170 + y,208,34,34 );
gfx.PutPixel( 33 + x,170 + y,208,34,34 );
gfx.PutPixel( 34 + x,170 + y,208,34,34 );
gfx.PutPixel( 35 + x,170 + y,208,34,34 );
gfx.PutPixel( 36 + x,170 + y,208,34,34 );
gfx.PutPixel( 37 + x,170 + y,208,34,34 );
gfx.PutPixel( 38 + x,170 + y,208,34,34 );
gfx.PutPixel( 39 + x,170 + y,208,34,34 );
gfx.PutPixel( 40 + x,170 + y,208,34,34 );
gfx.PutPixel( 41 + x,170 + y,208,34,34 );
gfx.PutPixel( 42 + x,170 + y,208,34,34 );
gfx.PutPixel( 43 + x,170 + y,208,34,34 );
gfx.PutPixel( 44 + x,170 + y,215,139,139 );
gfx.PutPixel( 45 + x,170 + y,213,104,104 );
gfx.PutPixel( 46 + x,170 + y,208,34,34 );
gfx.PutPixel( 47 + x,170 + y,208,34,34 );
gfx.PutPixel( 48 + x,170 + y,208,34,34 );
gfx.PutPixel( 49 + x,170 + y,208,34,34 );
gfx.PutPixel( 50 + x,170 + y,215,139,139 );
gfx.PutPixel( 51 + x,170 + y,213,104,104 );
gfx.PutPixel( 52 + x,170 + y,208,34,34 );
gfx.PutPixel( 53 + x,170 + y,208,34,34 );
gfx.PutPixel( 54 + x,170 + y,214,127,127 );
gfx.PutPixel( 55 + x,170 + y,215,139,139 );
gfx.PutPixel( 56 + x,170 + y,210,69,69 );
gfx.PutPixel( 57 + x,170 + y,218,174,174 );
gfx.PutPixel( 58 + x,170 + y,218,174,174 );
gfx.PutPixel( 59 + x,170 + y,218,174,174 );
gfx.PutPixel( 60 + x,170 + y,218,174,174 );
gfx.PutPixel( 61 + x,170 + y,213,104,104 );
gfx.PutPixel( 62 + x,170 + y,208,34,34 );
gfx.PutPixel( 63 + x,170 + y,214,127,127 );
gfx.PutPixel( 64 + x,170 + y,218,174,174 );
gfx.PutPixel( 65 + x,170 + y,218,174,174 );
gfx.PutPixel( 66 + x,170 + y,213,104,104 );
gfx.PutPixel( 67 + x,170 + y,208,34,34 );
gfx.PutPixel( 68 + x,170 + y,208,34,34 );
gfx.PutPixel( 69 + x,170 + y,214,127,127 );
gfx.PutPixel( 70 + x,170 + y,218,174,174 );
gfx.PutPixel( 71 + x,170 + y,218,174,174 );
gfx.PutPixel( 72 + x,170 + y,213,104,104 );
gfx.PutPixel( 73 + x,170 + y,208,34,34 );
gfx.PutPixel( 74 + x,170 + y,208,34,34 );
gfx.PutPixel( 75 + x,170 + y,208,34,34 );
gfx.PutPixel( 76 + x,170 + y,208,34,34 );
gfx.PutPixel( 77 + x,170 + y,215,139,139 );
gfx.PutPixel( 78 + x,170 + y,218,174,174 );
gfx.PutPixel( 79 + x,170 + y,218,174,174 );
gfx.PutPixel( 80 + x,170 + y,218,174,174 );
gfx.PutPixel( 81 + x,170 + y,218,174,174 );
gfx.PutPixel( 82 + x,170 + y,208,34,34 );
gfx.PutPixel( 83 + x,170 + y,215,139,139 );
gfx.PutPixel( 84 + x,170 + y,210,69,69 );
gfx.PutPixel( 85 + x,170 + y,208,34,34 );
gfx.PutPixel( 86 + x,170 + y,212,93,93 );
gfx.PutPixel( 87 + x,170 + y,218,174,174 );
gfx.PutPixel( 88 + x,170 + y,210,69,69 );
gfx.PutPixel( 89 + x,170 + y,208,34,34 );
gfx.PutPixel( 90 + x,170 + y,208,34,34 );
gfx.PutPixel( 91 + x,170 + y,215,139,139 );
gfx.PutPixel( 92 + x,170 + y,213,104,104 );
gfx.PutPixel( 93 + x,170 + y,208,34,34 );
gfx.PutPixel( 94 + x,170 + y,208,34,34 );
gfx.PutPixel( 95 + x,170 + y,215,139,139 );
gfx.PutPixel( 96 + x,170 + y,218,174,174 );
gfx.PutPixel( 97 + x,170 + y,218,174,174 );
gfx.PutPixel( 98 + x,170 + y,218,174,174 );
gfx.PutPixel( 99 + x,170 + y,218,174,174 );
gfx.PutPixel( 100 + x,170 + y,208,34,34 );
gfx.PutPixel( 101 + x,170 + y,215,139,139 );
gfx.PutPixel( 102 + x,170 + y,213,104,104 );
gfx.PutPixel( 103 + x,170 + y,208,34,34 );
gfx.PutPixel( 104 + x,170 + y,208,34,34 );
gfx.PutPixel( 105 + x,170 + y,214,127,127 );
gfx.PutPixel( 106 + x,170 + y,215,139,139 );
gfx.PutPixel( 107 + x,170 + y,208,34,34 );
gfx.PutPixel( 108 + x,170 + y,208,34,34 );
gfx.PutPixel( 109 + x,170 + y,208,34,34 );
gfx.PutPixel( 110 + x,170 + y,208,34,34 );
gfx.PutPixel( 111 + x,170 + y,208,34,34 );
gfx.PutPixel( 112 + x,170 + y,208,34,34 );
gfx.PutPixel( 113 + x,170 + y,208,34,34 );
gfx.PutPixel( 114 + x,170 + y,208,34,34 );
gfx.PutPixel( 115 + x,170 + y,208,34,34 );
gfx.PutPixel( 116 + x,170 + y,208,34,34 );
gfx.PutPixel( 117 + x,170 + y,208,34,34 );
gfx.PutPixel( 118 + x,170 + y,208,34,34 );
gfx.PutPixel( 119 + x,170 + y,208,34,34 );
gfx.PutPixel( 120 + x,170 + y,208,34,34 );
gfx.PutPixel( 121 + x,170 + y,208,34,34 );
gfx.PutPixel( 122 + x,170 + y,208,34,34 );
gfx.PutPixel( 123 + x,170 + y,208,34,34 );
gfx.PutPixel( 124 + x,170 + y,208,34,34 );
gfx.PutPixel( 125 + x,170 + y,208,34,34 );
gfx.PutPixel( 126 + x,170 + y,208,34,34 );
gfx.PutPixel( 127 + x,170 + y,208,34,34 );
gfx.PutPixel( 128 + x,170 + y,208,34,34 );
gfx.PutPixel( 129 + x,170 + y,208,34,34 );
gfx.PutPixel( 130 + x,170 + y,208,34,34 );
gfx.PutPixel( 131 + x,170 + y,208,34,34 );
gfx.PutPixel( 132 + x,170 + y,208,34,34 );
gfx.PutPixel( 133 + x,170 + y,208,34,34 );
gfx.PutPixel( 134 + x,170 + y,208,34,34 );
gfx.PutPixel( 135 + x,170 + y,208,34,34 );
gfx.PutPixel( 136 + x,170 + y,208,34,34 );
gfx.PutPixel( 137 + x,170 + y,208,34,34 );
gfx.PutPixel( 138 + x,170 + y,208,34,34 );
gfx.PutPixel( 139 + x,170 + y,208,34,34 );
gfx.PutPixel( 140 + x,170 + y,208,34,34 );
gfx.PutPixel( 141 + x,170 + y,208,34,34 );
gfx.PutPixel( 142 + x,170 + y,208,34,34 );
gfx.PutPixel( 143 + x,170 + y,208,34,34 );
gfx.PutPixel( 144 + x,170 + y,208,34,34 );
gfx.PutPixel( 145 + x,170 + y,208,34,34 );
gfx.PutPixel( 146 + x,170 + y,208,34,34 );
gfx.PutPixel( 147 + x,170 + y,208,34,34 );
gfx.PutPixel( 148 + x,170 + y,208,34,34 );
gfx.PutPixel( 149 + x,170 + y,208,34,34 );
gfx.PutPixel( 0 + x,171 + y,208,34,34 );
gfx.PutPixel( 1 + x,171 + y,208,34,34 );
gfx.PutPixel( 2 + x,171 + y,208,34,34 );
gfx.PutPixel( 3 + x,171 + y,208,34,34 );
gfx.PutPixel( 4 + x,171 + y,208,34,34 );
gfx.PutPixel( 5 + x,171 + y,208,34,34 );
gfx.PutPixel( 6 + x,171 + y,208,34,34 );
gfx.PutPixel( 7 + x,171 + y,208,34,34 );
gfx.PutPixel( 8 + x,171 + y,208,34,34 );
gfx.PutPixel( 9 + x,171 + y,208,34,34 );
gfx.PutPixel( 10 + x,171 + y,208,34,34 );
gfx.PutPixel( 11 + x,171 + y,208,34,34 );
gfx.PutPixel( 12 + x,171 + y,208,34,34 );
gfx.PutPixel( 13 + x,171 + y,208,34,34 );
gfx.PutPixel( 14 + x,171 + y,208,34,34 );
gfx.PutPixel( 15 + x,171 + y,208,34,34 );
gfx.PutPixel( 16 + x,171 + y,208,34,34 );
gfx.PutPixel( 17 + x,171 + y,208,34,34 );
gfx.PutPixel( 18 + x,171 + y,208,34,34 );
gfx.PutPixel( 19 + x,171 + y,208,34,34 );
gfx.PutPixel( 20 + x,171 + y,208,34,34 );
gfx.PutPixel( 21 + x,171 + y,208,34,34 );
gfx.PutPixel( 22 + x,171 + y,208,34,34 );
gfx.PutPixel( 23 + x,171 + y,208,34,34 );
gfx.PutPixel( 24 + x,171 + y,208,34,34 );
gfx.PutPixel( 25 + x,171 + y,208,34,34 );
gfx.PutPixel( 26 + x,171 + y,208,34,34 );
gfx.PutPixel( 27 + x,171 + y,208,34,34 );
gfx.PutPixel( 28 + x,171 + y,208,34,34 );
gfx.PutPixel( 29 + x,171 + y,208,34,34 );
gfx.PutPixel( 30 + x,171 + y,208,34,34 );
gfx.PutPixel( 31 + x,171 + y,208,34,34 );
gfx.PutPixel( 32 + x,171 + y,208,34,34 );
gfx.PutPixel( 33 + x,171 + y,208,34,34 );
gfx.PutPixel( 34 + x,171 + y,208,34,34 );
gfx.PutPixel( 35 + x,171 + y,208,34,34 );
gfx.PutPixel( 36 + x,171 + y,208,34,34 );
gfx.PutPixel( 37 + x,171 + y,208,34,34 );
gfx.PutPixel( 38 + x,171 + y,208,34,34 );
gfx.PutPixel( 39 + x,171 + y,208,34,34 );
gfx.PutPixel( 40 + x,171 + y,208,34,34 );
gfx.PutPixel( 41 + x,171 + y,208,34,34 );
gfx.PutPixel( 42 + x,171 + y,208,34,34 );
gfx.PutPixel( 43 + x,171 + y,208,34,34 );
gfx.PutPixel( 44 + x,171 + y,208,34,34 );
gfx.PutPixel( 45 + x,171 + y,208,34,34 );
gfx.PutPixel( 46 + x,171 + y,208,34,34 );
gfx.PutPixel( 47 + x,171 + y,208,34,34 );
gfx.PutPixel( 48 + x,171 + y,208,34,34 );
gfx.PutPixel( 49 + x,171 + y,208,34,34 );
gfx.PutPixel( 50 + x,171 + y,208,34,34 );
gfx.PutPixel( 51 + x,171 + y,208,34,34 );
gfx.PutPixel( 52 + x,171 + y,208,34,34 );
gfx.PutPixel( 53 + x,171 + y,208,34,34 );
gfx.PutPixel( 54 + x,171 + y,208,34,34 );
gfx.PutPixel( 55 + x,171 + y,208,34,34 );
gfx.PutPixel( 56 + x,171 + y,208,34,34 );
gfx.PutPixel( 57 + x,171 + y,208,34,34 );
gfx.PutPixel( 58 + x,171 + y,208,34,34 );
gfx.PutPixel( 59 + x,171 + y,208,34,34 );
gfx.PutPixel( 60 + x,171 + y,208,34,34 );
gfx.PutPixel( 61 + x,171 + y,208,34,34 );
gfx.PutPixel( 62 + x,171 + y,208,34,34 );
gfx.PutPixel( 63 + x,171 + y,208,34,34 );
gfx.PutPixel( 64 + x,171 + y,208,34,34 );
gfx.PutPixel( 65 + x,171 + y,208,34,34 );
gfx.PutPixel( 66 + x,171 + y,208,34,34 );
gfx.PutPixel( 67 + x,171 + y,208,34,34 );
gfx.PutPixel( 68 + x,171 + y,208,34,34 );
gfx.PutPixel( 69 + x,171 + y,208,34,34 );
gfx.PutPixel( 70 + x,171 + y,208,34,34 );
gfx.PutPixel( 71 + x,171 + y,208,34,34 );
gfx.PutPixel( 72 + x,171 + y,208,34,34 );
gfx.PutPixel( 73 + x,171 + y,208,34,34 );
gfx.PutPixel( 74 + x,171 + y,208,34,34 );
gfx.PutPixel( 75 + x,171 + y,208,34,34 );
gfx.PutPixel( 76 + x,171 + y,208,34,34 );
gfx.PutPixel( 77 + x,171 + y,208,34,34 );
gfx.PutPixel( 78 + x,171 + y,208,34,34 );
gfx.PutPixel( 79 + x,171 + y,208,34,34 );
gfx.PutPixel( 80 + x,171 + y,208,34,34 );
gfx.PutPixel( 81 + x,171 + y,208,34,34 );
gfx.PutPixel( 82 + x,171 + y,208,34,34 );
gfx.PutPixel( 83 + x,171 + y,208,34,34 );
gfx.PutPixel( 84 + x,171 + y,208,34,34 );
gfx.PutPixel( 85 + x,171 + y,208,34,34 );
gfx.PutPixel( 86 + x,171 + y,208,34,34 );
gfx.PutPixel( 87 + x,171 + y,208,34,34 );
gfx.PutPixel( 88 + x,171 + y,208,34,34 );
gfx.PutPixel( 89 + x,171 + y,208,34,34 );
gfx.PutPixel( 90 + x,171 + y,208,34,34 );
gfx.PutPixel( 91 + x,171 + y,208,34,34 );
gfx.PutPixel( 92 + x,171 + y,208,34,34 );
gfx.PutPixel( 93 + x,171 + y,208,34,34 );
gfx.PutPixel( 94 + x,171 + y,208,34,34 );
gfx.PutPixel( 95 + x,171 + y,208,34,34 );
gfx.PutPixel( 96 + x,171 + y,208,34,34 );
gfx.PutPixel( 97 + x,171 + y,208,34,34 );
gfx.PutPixel( 98 + x,171 + y,208,34,34 );
gfx.PutPixel( 99 + x,171 + y,208,34,34 );
gfx.PutPixel( 100 + x,171 + y,208,34,34 );
gfx.PutPixel( 101 + x,171 + y,208,34,34 );
gfx.PutPixel( 102 + x,171 + y,208,34,34 );
gfx.PutPixel( 103 + x,171 + y,208,34,34 );
gfx.PutPixel( 104 + x,171 + y,208,34,34 );
gfx.PutPixel( 105 + x,171 + y,208,34,34 );
gfx.PutPixel( 106 + x,171 + y,208,34,34 );
gfx.PutPixel( 107 + x,171 + y,208,34,34 );
gfx.PutPixel( 108 + x,171 + y,208,34,34 );
gfx.PutPixel( 109 + x,171 + y,208,34,34 );
gfx.PutPixel( 110 + x,171 + y,208,34,34 );
gfx.PutPixel( 111 + x,171 + y,208,34,34 );
gfx.PutPixel( 112 + x,171 + y,208,34,34 );
gfx.PutPixel( 113 + x,171 + y,208,34,34 );
gfx.PutPixel( 114 + x,171 + y,208,34,34 );
gfx.PutPixel( 115 + x,171 + y,208,34,34 );
gfx.PutPixel( 116 + x,171 + y,208,34,34 );
gfx.PutPixel( 117 + x,171 + y,208,34,34 );
gfx.PutPixel( 118 + x,171 + y,208,34,34 );
gfx.PutPixel( 119 + x,171 + y,208,34,34 );
gfx.PutPixel( 120 + x,171 + y,208,34,34 );
gfx.PutPixel( 121 + x,171 + y,208,34,34 );
gfx.PutPixel( 122 + x,171 + y,208,34,34 );
gfx.PutPixel( 123 + x,171 + y,208,34,34 );
gfx.PutPixel( 124 + x,171 + y,208,34,34 );
gfx.PutPixel( 125 + x,171 + y,208,34,34 );
gfx.PutPixel( 126 + x,171 + y,208,34,34 );
gfx.PutPixel( 127 + x,171 + y,208,34,34 );
gfx.PutPixel( 128 + x,171 + y,208,34,34 );
gfx.PutPixel( 129 + x,171 + y,208,34,34 );
gfx.PutPixel( 130 + x,171 + y,208,34,34 );
gfx.PutPixel( 131 + x,171 + y,208,34,34 );
gfx.PutPixel( 132 + x,171 + y,208,34,34 );
gfx.PutPixel( 133 + x,171 + y,208,34,34 );
gfx.PutPixel( 134 + x,171 + y,208,34,34 );
gfx.PutPixel( 135 + x,171 + y,208,34,34 );
gfx.PutPixel( 136 + x,171 + y,208,34,34 );
gfx.PutPixel( 137 + x,171 + y,208,34,34 );
gfx.PutPixel( 138 + x,171 + y,208,34,34 );
gfx.PutPixel( 139 + x,171 + y,208,34,34 );
gfx.PutPixel( 140 + x,171 + y,208,34,34 );
gfx.PutPixel( 141 + x,171 + y,208,34,34 );
gfx.PutPixel( 142 + x,171 + y,208,34,34 );
gfx.PutPixel( 143 + x,171 + y,208,34,34 );
gfx.PutPixel( 144 + x,171 + y,208,34,34 );
gfx.PutPixel( 145 + x,171 + y,208,34,34 );
gfx.PutPixel( 146 + x,171 + y,208,34,34 );
gfx.PutPixel( 147 + x,171 + y,208,34,34 );
gfx.PutPixel( 148 + x,171 + y,208,34,34 );
gfx.PutPixel( 149 + x,171 + y,208,34,34 );
gfx.PutPixel( 0 + x,172 + y,208,34,34 );
gfx.PutPixel( 1 + x,172 + y,208,34,34 );
gfx.PutPixel( 2 + x,172 + y,208,34,34 );
gfx.PutPixel( 3 + x,172 + y,208,34,34 );
gfx.PutPixel( 4 + x,172 + y,208,34,34 );
gfx.PutPixel( 5 + x,172 + y,208,34,34 );
gfx.PutPixel( 6 + x,172 + y,208,34,34 );
gfx.PutPixel( 7 + x,172 + y,208,34,34 );
gfx.PutPixel( 8 + x,172 + y,208,34,34 );
gfx.PutPixel( 9 + x,172 + y,208,34,34 );
gfx.PutPixel( 10 + x,172 + y,208,34,34 );
gfx.PutPixel( 11 + x,172 + y,208,34,34 );
gfx.PutPixel( 12 + x,172 + y,208,34,34 );
gfx.PutPixel( 13 + x,172 + y,208,34,34 );
gfx.PutPixel( 14 + x,172 + y,208,34,34 );
gfx.PutPixel( 15 + x,172 + y,208,34,34 );
gfx.PutPixel( 16 + x,172 + y,208,34,34 );
gfx.PutPixel( 17 + x,172 + y,208,34,34 );
gfx.PutPixel( 18 + x,172 + y,208,34,34 );
gfx.PutPixel( 19 + x,172 + y,208,34,34 );
gfx.PutPixel( 20 + x,172 + y,208,34,34 );
gfx.PutPixel( 21 + x,172 + y,208,34,34 );
gfx.PutPixel( 22 + x,172 + y,208,34,34 );
gfx.PutPixel( 23 + x,172 + y,208,34,34 );
gfx.PutPixel( 24 + x,172 + y,208,34,34 );
gfx.PutPixel( 25 + x,172 + y,208,34,34 );
gfx.PutPixel( 26 + x,172 + y,208,34,34 );
gfx.PutPixel( 27 + x,172 + y,208,34,34 );
gfx.PutPixel( 28 + x,172 + y,208,34,34 );
gfx.PutPixel( 29 + x,172 + y,208,34,34 );
gfx.PutPixel( 30 + x,172 + y,208,34,34 );
gfx.PutPixel( 31 + x,172 + y,208,34,34 );
gfx.PutPixel( 32 + x,172 + y,208,34,34 );
gfx.PutPixel( 33 + x,172 + y,208,34,34 );
gfx.PutPixel( 34 + x,172 + y,208,34,34 );
gfx.PutPixel( 35 + x,172 + y,208,34,34 );
gfx.PutPixel( 36 + x,172 + y,208,34,34 );
gfx.PutPixel( 37 + x,172 + y,208,34,34 );
gfx.PutPixel( 38 + x,172 + y,208,34,34 );
gfx.PutPixel( 39 + x,172 + y,208,34,34 );
gfx.PutPixel( 40 + x,172 + y,208,34,34 );
gfx.PutPixel( 41 + x,172 + y,208,34,34 );
gfx.PutPixel( 42 + x,172 + y,208,34,34 );
gfx.PutPixel( 43 + x,172 + y,208,34,34 );
gfx.PutPixel( 44 + x,172 + y,208,34,34 );
gfx.PutPixel( 45 + x,172 + y,208,34,34 );
gfx.PutPixel( 46 + x,172 + y,208,34,34 );
gfx.PutPixel( 47 + x,172 + y,208,34,34 );
gfx.PutPixel( 48 + x,172 + y,208,34,34 );
gfx.PutPixel( 49 + x,172 + y,208,34,34 );
gfx.PutPixel( 50 + x,172 + y,208,34,34 );
gfx.PutPixel( 51 + x,172 + y,208,34,34 );
gfx.PutPixel( 52 + x,172 + y,208,34,34 );
gfx.PutPixel( 53 + x,172 + y,208,34,34 );
gfx.PutPixel( 54 + x,172 + y,208,34,34 );
gfx.PutPixel( 55 + x,172 + y,208,34,34 );
gfx.PutPixel( 56 + x,172 + y,208,34,34 );
gfx.PutPixel( 57 + x,172 + y,208,34,34 );
gfx.PutPixel( 58 + x,172 + y,208,34,34 );
gfx.PutPixel( 59 + x,172 + y,208,34,34 );
gfx.PutPixel( 60 + x,172 + y,208,34,34 );
gfx.PutPixel( 61 + x,172 + y,208,34,34 );
gfx.PutPixel( 62 + x,172 + y,208,34,34 );
gfx.PutPixel( 63 + x,172 + y,208,34,34 );
gfx.PutPixel( 64 + x,172 + y,208,34,34 );
gfx.PutPixel( 65 + x,172 + y,208,34,34 );
gfx.PutPixel( 66 + x,172 + y,208,34,34 );
gfx.PutPixel( 67 + x,172 + y,208,34,34 );
gfx.PutPixel( 68 + x,172 + y,208,34,34 );
gfx.PutPixel( 69 + x,172 + y,208,34,34 );
gfx.PutPixel( 70 + x,172 + y,208,34,34 );
gfx.PutPixel( 71 + x,172 + y,208,34,34 );
gfx.PutPixel( 72 + x,172 + y,208,34,34 );
gfx.PutPixel( 73 + x,172 + y,208,34,34 );
gfx.PutPixel( 74 + x,172 + y,208,34,34 );
gfx.PutPixel( 75 + x,172 + y,208,34,34 );
gfx.PutPixel( 76 + x,172 + y,208,34,34 );
gfx.PutPixel( 77 + x,172 + y,208,34,34 );
gfx.PutPixel( 78 + x,172 + y,208,34,34 );
gfx.PutPixel( 79 + x,172 + y,208,34,34 );
gfx.PutPixel( 80 + x,172 + y,208,34,34 );
gfx.PutPixel( 81 + x,172 + y,208,34,34 );
gfx.PutPixel( 82 + x,172 + y,208,34,34 );
gfx.PutPixel( 83 + x,172 + y,208,34,34 );
gfx.PutPixel( 84 + x,172 + y,208,34,34 );
gfx.PutPixel( 85 + x,172 + y,208,34,34 );
gfx.PutPixel( 86 + x,172 + y,208,34,34 );
gfx.PutPixel( 87 + x,172 + y,208,34,34 );
gfx.PutPixel( 88 + x,172 + y,208,34,34 );
gfx.PutPixel( 89 + x,172 + y,208,34,34 );
gfx.PutPixel( 90 + x,172 + y,208,34,34 );
gfx.PutPixel( 91 + x,172 + y,208,34,34 );
gfx.PutPixel( 92 + x,172 + y,208,34,34 );
gfx.PutPixel( 93 + x,172 + y,208,34,34 );
gfx.PutPixel( 94 + x,172 + y,208,34,34 );
gfx.PutPixel( 95 + x,172 + y,208,34,34 );
gfx.PutPixel( 96 + x,172 + y,208,34,34 );
gfx.PutPixel( 97 + x,172 + y,208,34,34 );
gfx.PutPixel( 98 + x,172 + y,208,34,34 );
gfx.PutPixel( 99 + x,172 + y,208,34,34 );
gfx.PutPixel( 100 + x,172 + y,208,34,34 );
gfx.PutPixel( 101 + x,172 + y,208,34,34 );
gfx.PutPixel( 102 + x,172 + y,208,34,34 );
gfx.PutPixel( 103 + x,172 + y,208,34,34 );
gfx.PutPixel( 104 + x,172 + y,208,34,34 );
gfx.PutPixel( 105 + x,172 + y,208,34,34 );
gfx.PutPixel( 106 + x,172 + y,208,34,34 );
gfx.PutPixel( 107 + x,172 + y,208,34,34 );
gfx.PutPixel( 108 + x,172 + y,208,34,34 );
gfx.PutPixel( 109 + x,172 + y,208,34,34 );
gfx.PutPixel( 110 + x,172 + y,208,34,34 );
gfx.PutPixel( 111 + x,172 + y,208,34,34 );
gfx.PutPixel( 112 + x,172 + y,208,34,34 );
gfx.PutPixel( 113 + x,172 + y,208,34,34 );
gfx.PutPixel( 114 + x,172 + y,208,34,34 );
gfx.PutPixel( 115 + x,172 + y,208,34,34 );
gfx.PutPixel( 116 + x,172 + y,208,34,34 );
gfx.PutPixel( 117 + x,172 + y,208,34,34 );
gfx.PutPixel( 118 + x,172 + y,208,34,34 );
gfx.PutPixel( 119 + x,172 + y,208,34,34 );
gfx.PutPixel( 120 + x,172 + y,208,34,34 );
gfx.PutPixel( 121 + x,172 + y,208,34,34 );
gfx.PutPixel( 122 + x,172 + y,208,34,34 );
gfx.PutPixel( 123 + x,172 + y,208,34,34 );
gfx.PutPixel( 124 + x,172 + y,208,34,34 );
gfx.PutPixel( 125 + x,172 + y,208,34,34 );
gfx.PutPixel( 126 + x,172 + y,208,34,34 );
gfx.PutPixel( 127 + x,172 + y,208,34,34 );
gfx.PutPixel( 128 + x,172 + y,208,34,34 );
gfx.PutPixel( 129 + x,172 + y,208,34,34 );
gfx.PutPixel( 130 + x,172 + y,208,34,34 );
gfx.PutPixel( 131 + x,172 + y,208,34,34 );
gfx.PutPixel( 132 + x,172 + y,208,34,34 );
gfx.PutPixel( 133 + x,172 + y,208,34,34 );
gfx.PutPixel( 134 + x,172 + y,208,34,34 );
gfx.PutPixel( 135 + x,172 + y,208,34,34 );
gfx.PutPixel( 136 + x,172 + y,208,34,34 );
gfx.PutPixel( 137 + x,172 + y,208,34,34 );
gfx.PutPixel( 138 + x,172 + y,208,34,34 );
gfx.PutPixel( 139 + x,172 + y,208,34,34 );
gfx.PutPixel( 140 + x,172 + y,208,34,34 );
gfx.PutPixel( 141 + x,172 + y,208,34,34 );
gfx.PutPixel( 142 + x,172 + y,208,34,34 );
gfx.PutPixel( 143 + x,172 + y,208,34,34 );
gfx.PutPixel( 144 + x,172 + y,208,34,34 );
gfx.PutPixel( 145 + x,172 + y,208,34,34 );
gfx.PutPixel( 146 + x,172 + y,208,34,34 );
gfx.PutPixel( 147 + x,172 + y,208,34,34 );
gfx.PutPixel( 148 + x,172 + y,208,34,34 );
gfx.PutPixel( 149 + x,172 + y,208,34,34 );
gfx.PutPixel( 0 + x,173 + y,208,34,34 );
gfx.PutPixel( 1 + x,173 + y,208,34,34 );
gfx.PutPixel( 2 + x,173 + y,208,34,34 );
gfx.PutPixel( 3 + x,173 + y,208,34,34 );
gfx.PutPixel( 4 + x,173 + y,208,34,34 );
gfx.PutPixel( 5 + x,173 + y,208,34,34 );
gfx.PutPixel( 6 + x,173 + y,208,34,34 );
gfx.PutPixel( 7 + x,173 + y,208,34,34 );
gfx.PutPixel( 8 + x,173 + y,208,34,34 );
gfx.PutPixel( 9 + x,173 + y,208,34,34 );
gfx.PutPixel( 10 + x,173 + y,208,34,34 );
gfx.PutPixel( 11 + x,173 + y,208,34,34 );
gfx.PutPixel( 12 + x,173 + y,208,34,34 );
gfx.PutPixel( 13 + x,173 + y,208,34,34 );
gfx.PutPixel( 14 + x,173 + y,208,34,34 );
gfx.PutPixel( 15 + x,173 + y,208,34,34 );
gfx.PutPixel( 16 + x,173 + y,208,34,34 );
gfx.PutPixel( 17 + x,173 + y,208,34,34 );
gfx.PutPixel( 18 + x,173 + y,208,34,34 );
gfx.PutPixel( 19 + x,173 + y,208,34,34 );
gfx.PutPixel( 20 + x,173 + y,208,34,34 );
gfx.PutPixel( 21 + x,173 + y,208,34,34 );
gfx.PutPixel( 22 + x,173 + y,208,34,34 );
gfx.PutPixel( 23 + x,173 + y,208,34,34 );
gfx.PutPixel( 24 + x,173 + y,208,34,34 );
gfx.PutPixel( 25 + x,173 + y,208,34,34 );
gfx.PutPixel( 26 + x,173 + y,208,34,34 );
gfx.PutPixel( 27 + x,173 + y,208,34,34 );
gfx.PutPixel( 28 + x,173 + y,208,34,34 );
gfx.PutPixel( 29 + x,173 + y,208,34,34 );
gfx.PutPixel( 30 + x,173 + y,208,34,34 );
gfx.PutPixel( 31 + x,173 + y,208,34,34 );
gfx.PutPixel( 32 + x,173 + y,208,34,34 );
gfx.PutPixel( 33 + x,173 + y,208,34,34 );
gfx.PutPixel( 34 + x,173 + y,208,34,34 );
gfx.PutPixel( 35 + x,173 + y,208,34,34 );
gfx.PutPixel( 36 + x,173 + y,208,34,34 );
gfx.PutPixel( 37 + x,173 + y,208,34,34 );
gfx.PutPixel( 38 + x,173 + y,208,34,34 );
gfx.PutPixel( 39 + x,173 + y,208,34,34 );
gfx.PutPixel( 40 + x,173 + y,208,34,34 );
gfx.PutPixel( 41 + x,173 + y,208,34,34 );
gfx.PutPixel( 42 + x,173 + y,208,34,34 );
gfx.PutPixel( 43 + x,173 + y,208,34,34 );
gfx.PutPixel( 44 + x,173 + y,208,34,34 );
gfx.PutPixel( 45 + x,173 + y,208,34,34 );
gfx.PutPixel( 46 + x,173 + y,208,34,34 );
gfx.PutPixel( 47 + x,173 + y,208,34,34 );
gfx.PutPixel( 48 + x,173 + y,208,34,34 );
gfx.PutPixel( 49 + x,173 + y,208,34,34 );
gfx.PutPixel( 50 + x,173 + y,208,34,34 );
gfx.PutPixel( 51 + x,173 + y,208,34,34 );
gfx.PutPixel( 52 + x,173 + y,208,34,34 );
gfx.PutPixel( 53 + x,173 + y,208,34,34 );
gfx.PutPixel( 54 + x,173 + y,208,34,34 );
gfx.PutPixel( 55 + x,173 + y,208,34,34 );
gfx.PutPixel( 56 + x,173 + y,208,34,34 );
gfx.PutPixel( 57 + x,173 + y,208,34,34 );
gfx.PutPixel( 58 + x,173 + y,208,34,34 );
gfx.PutPixel( 59 + x,173 + y,208,34,34 );
gfx.PutPixel( 60 + x,173 + y,208,34,34 );
gfx.PutPixel( 61 + x,173 + y,208,34,34 );
gfx.PutPixel( 62 + x,173 + y,208,34,34 );
gfx.PutPixel( 63 + x,173 + y,208,34,34 );
gfx.PutPixel( 64 + x,173 + y,208,34,34 );
gfx.PutPixel( 65 + x,173 + y,208,34,34 );
gfx.PutPixel( 66 + x,173 + y,208,34,34 );
gfx.PutPixel( 67 + x,173 + y,208,34,34 );
gfx.PutPixel( 68 + x,173 + y,208,34,34 );
gfx.PutPixel( 69 + x,173 + y,208,34,34 );
gfx.PutPixel( 70 + x,173 + y,208,34,34 );
gfx.PutPixel( 71 + x,173 + y,208,34,34 );
gfx.PutPixel( 72 + x,173 + y,208,34,34 );
gfx.PutPixel( 73 + x,173 + y,208,34,34 );
gfx.PutPixel( 74 + x,173 + y,208,34,34 );
gfx.PutPixel( 75 + x,173 + y,208,34,34 );
gfx.PutPixel( 76 + x,173 + y,208,34,34 );
gfx.PutPixel( 77 + x,173 + y,208,34,34 );
gfx.PutPixel( 78 + x,173 + y,208,34,34 );
gfx.PutPixel( 79 + x,173 + y,208,34,34 );
gfx.PutPixel( 80 + x,173 + y,208,34,34 );
gfx.PutPixel( 81 + x,173 + y,208,34,34 );
gfx.PutPixel( 82 + x,173 + y,208,34,34 );
gfx.PutPixel( 83 + x,173 + y,208,34,34 );
gfx.PutPixel( 84 + x,173 + y,208,34,34 );
gfx.PutPixel( 85 + x,173 + y,208,34,34 );
gfx.PutPixel( 86 + x,173 + y,208,34,34 );
gfx.PutPixel( 87 + x,173 + y,208,34,34 );
gfx.PutPixel( 88 + x,173 + y,208,34,34 );
gfx.PutPixel( 89 + x,173 + y,208,34,34 );
gfx.PutPixel( 90 + x,173 + y,208,34,34 );
gfx.PutPixel( 91 + x,173 + y,208,34,34 );
gfx.PutPixel( 92 + x,173 + y,208,34,34 );
gfx.PutPixel( 93 + x,173 + y,208,34,34 );
gfx.PutPixel( 94 + x,173 + y,208,34,34 );
gfx.PutPixel( 95 + x,173 + y,208,34,34 );
gfx.PutPixel( 96 + x,173 + y,208,34,34 );
gfx.PutPixel( 97 + x,173 + y,208,34,34 );
gfx.PutPixel( 98 + x,173 + y,208,34,34 );
gfx.PutPixel( 99 + x,173 + y,208,34,34 );
gfx.PutPixel( 100 + x,173 + y,208,34,34 );
gfx.PutPixel( 101 + x,173 + y,208,34,34 );
gfx.PutPixel( 102 + x,173 + y,208,34,34 );
gfx.PutPixel( 103 + x,173 + y,208,34,34 );
gfx.PutPixel( 104 + x,173 + y,208,34,34 );
gfx.PutPixel( 105 + x,173 + y,208,34,34 );
gfx.PutPixel( 106 + x,173 + y,208,34,34 );
gfx.PutPixel( 107 + x,173 + y,208,34,34 );
gfx.PutPixel( 108 + x,173 + y,208,34,34 );
gfx.PutPixel( 109 + x,173 + y,208,34,34 );
gfx.PutPixel( 110 + x,173 + y,208,34,34 );
gfx.PutPixel( 111 + x,173 + y,208,34,34 );
gfx.PutPixel( 112 + x,173 + y,208,34,34 );
gfx.PutPixel( 113 + x,173 + y,208,34,34 );
gfx.PutPixel( 114 + x,173 + y,208,34,34 );
gfx.PutPixel( 115 + x,173 + y,208,34,34 );
gfx.PutPixel( 116 + x,173 + y,208,34,34 );
gfx.PutPixel( 117 + x,173 + y,208,34,34 );
gfx.PutPixel( 118 + x,173 + y,208,34,34 );
gfx.PutPixel( 119 + x,173 + y,208,34,34 );
gfx.PutPixel( 120 + x,173 + y,208,34,34 );
gfx.PutPixel( 121 + x,173 + y,208,34,34 );
gfx.PutPixel( 122 + x,173 + y,208,34,34 );
gfx.PutPixel( 123 + x,173 + y,208,34,34 );
gfx.PutPixel( 124 + x,173 + y,208,34,34 );
gfx.PutPixel( 125 + x,173 + y,208,34,34 );
gfx.PutPixel( 126 + x,173 + y,208,34,34 );
gfx.PutPixel( 127 + x,173 + y,208,34,34 );
gfx.PutPixel( 128 + x,173 + y,208,34,34 );
gfx.PutPixel( 129 + x,173 + y,208,34,34 );
gfx.PutPixel( 130 + x,173 + y,208,34,34 );
gfx.PutPixel( 131 + x,173 + y,208,34,34 );
gfx.PutPixel( 132 + x,173 + y,208,34,34 );
gfx.PutPixel( 133 + x,173 + y,208,34,34 );
gfx.PutPixel( 134 + x,173 + y,208,34,34 );
gfx.PutPixel( 135 + x,173 + y,208,34,34 );
gfx.PutPixel( 136 + x,173 + y,208,34,34 );
gfx.PutPixel( 137 + x,173 + y,208,34,34 );
gfx.PutPixel( 138 + x,173 + y,208,34,34 );
gfx.PutPixel( 139 + x,173 + y,208,34,34 );
gfx.PutPixel( 140 + x,173 + y,208,34,34 );
gfx.PutPixel( 141 + x,173 + y,208,34,34 );
gfx.PutPixel( 142 + x,173 + y,208,34,34 );
gfx.PutPixel( 143 + x,173 + y,208,34,34 );
gfx.PutPixel( 144 + x,173 + y,208,34,34 );
gfx.PutPixel( 145 + x,173 + y,208,34,34 );
gfx.PutPixel( 146 + x,173 + y,208,34,34 );
gfx.PutPixel( 147 + x,173 + y,208,34,34 );
gfx.PutPixel( 148 + x,173 + y,208,34,34 );
gfx.PutPixel( 149 + x,173 + y,208,34,34 );
gfx.PutPixel( 0 + x,174 + y,208,34,34 );
gfx.PutPixel( 1 + x,174 + y,208,34,34 );
gfx.PutPixel( 2 + x,174 + y,208,34,34 );
gfx.PutPixel( 3 + x,174 + y,208,34,34 );
gfx.PutPixel( 4 + x,174 + y,208,34,34 );
gfx.PutPixel( 5 + x,174 + y,208,34,34 );
gfx.PutPixel( 6 + x,174 + y,208,34,34 );
gfx.PutPixel( 7 + x,174 + y,208,34,34 );
gfx.PutPixel( 8 + x,174 + y,208,34,34 );
gfx.PutPixel( 9 + x,174 + y,208,34,34 );
gfx.PutPixel( 10 + x,174 + y,208,34,34 );
gfx.PutPixel( 11 + x,174 + y,208,34,34 );
gfx.PutPixel( 12 + x,174 + y,208,34,34 );
gfx.PutPixel( 13 + x,174 + y,208,34,34 );
gfx.PutPixel( 14 + x,174 + y,208,34,34 );
gfx.PutPixel( 15 + x,174 + y,208,34,34 );
gfx.PutPixel( 16 + x,174 + y,208,34,34 );
gfx.PutPixel( 17 + x,174 + y,208,34,34 );
gfx.PutPixel( 18 + x,174 + y,208,34,34 );
gfx.PutPixel( 19 + x,174 + y,208,34,34 );
gfx.PutPixel( 20 + x,174 + y,208,34,34 );
gfx.PutPixel( 21 + x,174 + y,208,34,34 );
gfx.PutPixel( 22 + x,174 + y,208,34,34 );
gfx.PutPixel( 23 + x,174 + y,208,34,34 );
gfx.PutPixel( 24 + x,174 + y,208,34,34 );
gfx.PutPixel( 25 + x,174 + y,208,34,34 );
gfx.PutPixel( 26 + x,174 + y,208,34,34 );
gfx.PutPixel( 27 + x,174 + y,208,34,34 );
gfx.PutPixel( 28 + x,174 + y,208,34,34 );
gfx.PutPixel( 29 + x,174 + y,208,34,34 );
gfx.PutPixel( 30 + x,174 + y,208,34,34 );
gfx.PutPixel( 31 + x,174 + y,208,34,34 );
gfx.PutPixel( 32 + x,174 + y,208,34,34 );
gfx.PutPixel( 33 + x,174 + y,208,34,34 );
gfx.PutPixel( 34 + x,174 + y,208,34,34 );
gfx.PutPixel( 35 + x,174 + y,208,34,34 );
gfx.PutPixel( 36 + x,174 + y,208,34,34 );
gfx.PutPixel( 37 + x,174 + y,208,34,34 );
gfx.PutPixel( 38 + x,174 + y,208,34,34 );
gfx.PutPixel( 39 + x,174 + y,208,34,34 );
gfx.PutPixel( 40 + x,174 + y,208,34,34 );
gfx.PutPixel( 41 + x,174 + y,208,34,34 );
gfx.PutPixel( 42 + x,174 + y,208,34,34 );
gfx.PutPixel( 43 + x,174 + y,208,34,34 );
gfx.PutPixel( 44 + x,174 + y,208,34,34 );
gfx.PutPixel( 45 + x,174 + y,208,34,34 );
gfx.PutPixel( 46 + x,174 + y,208,34,34 );
gfx.PutPixel( 47 + x,174 + y,208,34,34 );
gfx.PutPixel( 48 + x,174 + y,208,34,34 );
gfx.PutPixel( 49 + x,174 + y,208,34,34 );
gfx.PutPixel( 50 + x,174 + y,208,34,34 );
gfx.PutPixel( 51 + x,174 + y,208,34,34 );
gfx.PutPixel( 52 + x,174 + y,208,34,34 );
gfx.PutPixel( 53 + x,174 + y,208,34,34 );
gfx.PutPixel( 54 + x,174 + y,208,34,34 );
gfx.PutPixel( 55 + x,174 + y,208,34,34 );
gfx.PutPixel( 56 + x,174 + y,208,34,34 );
gfx.PutPixel( 57 + x,174 + y,208,34,34 );
gfx.PutPixel( 58 + x,174 + y,208,34,34 );
gfx.PutPixel( 59 + x,174 + y,208,34,34 );
gfx.PutPixel( 60 + x,174 + y,208,34,34 );
gfx.PutPixel( 61 + x,174 + y,208,34,34 );
gfx.PutPixel( 62 + x,174 + y,208,34,34 );
gfx.PutPixel( 63 + x,174 + y,208,34,34 );
gfx.PutPixel( 64 + x,174 + y,208,34,34 );
gfx.PutPixel( 65 + x,174 + y,208,34,34 );
gfx.PutPixel( 66 + x,174 + y,208,34,34 );
gfx.PutPixel( 67 + x,174 + y,208,34,34 );
gfx.PutPixel( 68 + x,174 + y,208,34,34 );
gfx.PutPixel( 69 + x,174 + y,208,34,34 );
gfx.PutPixel( 70 + x,174 + y,208,34,34 );
gfx.PutPixel( 71 + x,174 + y,208,34,34 );
gfx.PutPixel( 72 + x,174 + y,208,34,34 );
gfx.PutPixel( 73 + x,174 + y,208,34,34 );
gfx.PutPixel( 74 + x,174 + y,208,34,34 );
gfx.PutPixel( 75 + x,174 + y,208,34,34 );
gfx.PutPixel( 76 + x,174 + y,208,34,34 );
gfx.PutPixel( 77 + x,174 + y,208,34,34 );
gfx.PutPixel( 78 + x,174 + y,208,34,34 );
gfx.PutPixel( 79 + x,174 + y,208,34,34 );
gfx.PutPixel( 80 + x,174 + y,208,34,34 );
gfx.PutPixel( 81 + x,174 + y,208,34,34 );
gfx.PutPixel( 82 + x,174 + y,208,34,34 );
gfx.PutPixel( 83 + x,174 + y,208,34,34 );
gfx.PutPixel( 84 + x,174 + y,208,34,34 );
gfx.PutPixel( 85 + x,174 + y,208,34,34 );
gfx.PutPixel( 86 + x,174 + y,208,34,34 );
gfx.PutPixel( 87 + x,174 + y,208,34,34 );
gfx.PutPixel( 88 + x,174 + y,208,34,34 );
gfx.PutPixel( 89 + x,174 + y,208,34,34 );
gfx.PutPixel( 90 + x,174 + y,208,34,34 );
gfx.PutPixel( 91 + x,174 + y,208,34,34 );
gfx.PutPixel( 92 + x,174 + y,208,34,34 );
gfx.PutPixel( 93 + x,174 + y,208,34,34 );
gfx.PutPixel( 94 + x,174 + y,208,34,34 );
gfx.PutPixel( 95 + x,174 + y,208,34,34 );
gfx.PutPixel( 96 + x,174 + y,208,34,34 );
gfx.PutPixel( 97 + x,174 + y,208,34,34 );
gfx.PutPixel( 98 + x,174 + y,208,34,34 );
gfx.PutPixel( 99 + x,174 + y,208,34,34 );
gfx.PutPixel( 100 + x,174 + y,208,34,34 );
gfx.PutPixel( 101 + x,174 + y,208,34,34 );
gfx.PutPixel( 102 + x,174 + y,208,34,34 );
gfx.PutPixel( 103 + x,174 + y,208,34,34 );
gfx.PutPixel( 104 + x,174 + y,208,34,34 );
gfx.PutPixel( 105 + x,174 + y,208,34,34 );
gfx.PutPixel( 106 + x,174 + y,208,34,34 );
gfx.PutPixel( 107 + x,174 + y,208,34,34 );
gfx.PutPixel( 108 + x,174 + y,208,34,34 );
gfx.PutPixel( 109 + x,174 + y,208,34,34 );
gfx.PutPixel( 110 + x,174 + y,208,34,34 );
gfx.PutPixel( 111 + x,174 + y,208,34,34 );
gfx.PutPixel( 112 + x,174 + y,208,34,34 );
gfx.PutPixel( 113 + x,174 + y,208,34,34 );
gfx.PutPixel( 114 + x,174 + y,208,34,34 );
gfx.PutPixel( 115 + x,174 + y,208,34,34 );
gfx.PutPixel( 116 + x,174 + y,208,34,34 );
gfx.PutPixel( 117 + x,174 + y,208,34,34 );
gfx.PutPixel( 118 + x,174 + y,208,34,34 );
gfx.PutPixel( 119 + x,174 + y,208,34,34 );
gfx.PutPixel( 120 + x,174 + y,208,34,34 );
gfx.PutPixel( 121 + x,174 + y,208,34,34 );
gfx.PutPixel( 122 + x,174 + y,208,34,34 );
gfx.PutPixel( 123 + x,174 + y,208,34,34 );
gfx.PutPixel( 124 + x,174 + y,208,34,34 );
gfx.PutPixel( 125 + x,174 + y,208,34,34 );
gfx.PutPixel( 126 + x,174 + y,208,34,34 );
gfx.PutPixel( 127 + x,174 + y,208,34,34 );
gfx.PutPixel( 128 + x,174 + y,208,34,34 );
gfx.PutPixel( 129 + x,174 + y,208,34,34 );
gfx.PutPixel( 130 + x,174 + y,208,34,34 );
gfx.PutPixel( 131 + x,174 + y,208,34,34 );
gfx.PutPixel( 132 + x,174 + y,208,34,34 );
gfx.PutPixel( 133 + x,174 + y,208,34,34 );
gfx.PutPixel( 134 + x,174 + y,208,34,34 );
gfx.PutPixel( 135 + x,174 + y,208,34,34 );
gfx.PutPixel( 136 + x,174 + y,208,34,34 );
gfx.PutPixel( 137 + x,174 + y,208,34,34 );
gfx.PutPixel( 138 + x,174 + y,208,34,34 );
gfx.PutPixel( 139 + x,174 + y,208,34,34 );
gfx.PutPixel( 140 + x,174 + y,208,34,34 );
gfx.PutPixel( 141 + x,174 + y,208,34,34 );
gfx.PutPixel( 142 + x,174 + y,208,34,34 );
gfx.PutPixel( 143 + x,174 + y,208,34,34 );
gfx.PutPixel( 144 + x,174 + y,208,34,34 );
gfx.PutPixel( 145 + x,174 + y,208,34,34 );
gfx.PutPixel( 146 + x,174 + y,208,34,34 );
gfx.PutPixel( 147 + x,174 + y,208,34,34 );
gfx.PutPixel( 148 + x,174 + y,208,34,34 );
gfx.PutPixel( 149 + x,174 + y,208,34,34 );
}
void Game::ComposeFrame()
{
if( !isStarted )
{
DrawTitleScreen( 325,211 );
}
else
{
goal.Draw( gfx );
for( int i = 0; i < nPoo; ++i )
{
poos[i].Draw( gfx );
}
dude.Draw( gfx );
if( isGameOver )
{
DrawGameOver( 358,268 );
}
meter.Draw( gfx );
}
}
| [
"dandreevd@gmail.com"
] | dandreevd@gmail.com |
49fc88cf99c32ada3e3958b43a24c1c91a3e1b1f | a186d7c63d5ccc74238dec82307a10454f92e499 | /Source/BansheeD3D9RenderAPI/Source/BsD3D9RenderWindow.cpp | 67fc312c24687c40470aa0315166448ab5b9386d | [] | no_license | venscn/BansheeEngine | 9f48b89838fbab15c6bf73fc8f296ef3d538dc49 | e1daf513a521e59b702001da920165d23b4b9f50 | refs/heads/master | 2020-04-06T06:49:38.631456 | 2016-07-28T12:10:44 | 2016-07-28T12:10:44 | 64,410,616 | 2 | 0 | null | 2016-07-28T16:17:46 | 2016-07-28T16:17:44 | null | UTF-8 | C++ | false | false | 15,814 | cpp | //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
//**************** Copyright (c) 2016 Marko Pintera (marko.pintera@gmail.com). All rights reserved. **********************//
#include "BsD3D9RenderWindow.h"
#include "BsInput.h"
#include "BsCoreThread.h"
#include "BsViewport.h"
#include "BsException.h"
#include "BsD3D9RenderAPI.h"
#include "BsRenderAPI.h"
#include "Win32/BsWin32Platform.h"
#include "BsD3D9VideoModeInfo.h"
#include "BsMath.h"
#include "BsRenderWindowManager.h"
#include "Win32/BsWin32Window.h"
namespace BansheeEngine
{
D3D9RenderWindowProperties::D3D9RenderWindowProperties(const RENDER_WINDOW_DESC& desc)
:RenderWindowProperties(desc)
{
}
D3D9RenderWindowCore::D3D9RenderWindowCore(const RENDER_WINDOW_DESC& desc, UINT32 windowId, HINSTANCE instance)
: RenderWindowCore(desc, windowId), mInstance(instance), mProperties(desc), mSyncedProperties(desc),
mIsDepthBuffered(true), mIsChild(false), mWindow(nullptr),mDevice(nullptr), mDisplayFrequency(0),
mDeviceValid(false), mShowOnSwap(false)
{ }
D3D9RenderWindowCore::~D3D9RenderWindowCore()
{
if (mDevice != nullptr)
{
mDevice->detachRenderWindow(this);
mDevice = nullptr;
}
if (mWindow != nullptr)
{
bs_delete(mWindow);
mWindow = nullptr;
}
mProperties.mActive = false;
}
void D3D9RenderWindowCore::initialize()
{
D3D9RenderWindowProperties& props = mProperties;
mMultisampleType = D3DMULTISAMPLE_NONE;
mMultisampleQuality = 0;
mDisplayFrequency = Math::roundToInt(mDesc.videoMode.getRefreshRate());
WINDOW_DESC windowDesc;
windowDesc.border = mDesc.border;
windowDesc.enableDoubleClick = mDesc.enableDoubleClick;
windowDesc.fullscreen = mDesc.fullscreen;
windowDesc.width = mDesc.videoMode.getWidth();
windowDesc.height = mDesc.videoMode.getHeight();
windowDesc.hidden = mDesc.hidden || mDesc.hideUntilSwap;
windowDesc.left = mDesc.left;
windowDesc.top = mDesc.top;
windowDesc.outerDimensions = mDesc.outerDimensions;
windowDesc.title = mDesc.title;
windowDesc.toolWindow = mDesc.toolWindow;
windowDesc.creationParams = this;
windowDesc.module = mInstance;
windowDesc.modal = mDesc.modal;
windowDesc.wndProc = &Win32Platform::_win32WndProc;
NameValuePairList::const_iterator opt;
opt = mDesc.platformSpecific.find("parentWindowHandle");
if (opt != mDesc.platformSpecific.end())
windowDesc.parent = (HWND)parseUINT64(opt->second);
opt = mDesc.platformSpecific.find("externalWindowHandle");
if (opt != mDesc.platformSpecific.end())
windowDesc.external = (HWND)parseUINT64(opt->second);
mIsChild = windowDesc.parent != nullptr;
props.mIsFullScreen = mDesc.fullscreen && !mIsChild;
props.mColorDepth = 32;
props.mActive = true;
const D3D9VideoModeInfo& videoModeInfo = static_cast<const D3D9VideoModeInfo&>(RenderAPICore::instance().getVideoModeInfo());
UINT32 numOutputs = videoModeInfo.getNumOutputs();
if (numOutputs > 0)
{
UINT32 actualMonitorIdx = std::min(mDesc.videoMode.getOutputIdx(), numOutputs - 1);
const D3D9VideoOutputInfo& outputInfo = static_cast<const D3D9VideoOutputInfo&>(videoModeInfo.getOutputInfo(actualMonitorIdx));
windowDesc.monitor = outputInfo.getMonitorHandle();
}
if (!windowDesc.external)
{
mShowOnSwap = mDesc.hideUntilSwap;
props.mHidden = mDesc.hideUntilSwap;
}
mWindow = bs_new<Win32Window>(windowDesc);
props.mWidth = mWindow->getWidth();
props.mHeight = mWindow->getHeight();
props.mTop = mWindow->getTop();
props.mLeft = mWindow->getLeft();
mIsDepthBuffered = mDesc.depthBuffer;
D3D9RenderAPI* rs = static_cast<D3D9RenderAPI*>(RenderAPICore::instancePtr());
rs->registerWindow(*this);
{
ScopedSpinLock lock(mLock);
mSyncedProperties = props;
}
RenderWindowManager::instance().notifySyncDataDirty(this);
RenderWindowCore::initialize();
}
void D3D9RenderWindowCore::setFullscreen(UINT32 width, UINT32 height, float refreshRate, UINT32 monitorIdx)
{
THROW_IF_NOT_CORE_THREAD;
if (mIsChild)
return;
const D3D9VideoModeInfo& videoModeInfo = static_cast<const D3D9VideoModeInfo&>(RenderAPICore::instance().getVideoModeInfo());
UINT32 numOutputs = videoModeInfo.getNumOutputs();
if (numOutputs == 0)
return;
UINT32 actualMonitorIdx = std::min(monitorIdx, numOutputs - 1);
const D3D9VideoOutputInfo& outputInfo = static_cast<const D3D9VideoOutputInfo&>(videoModeInfo.getOutputInfo(actualMonitorIdx));
D3D9RenderWindowProperties& props = mProperties;
props.mWidth = width;
props.mHeight = height;
mDisplayFrequency = Math::roundToInt(refreshRate);
props.mIsFullScreen = true;
HMONITOR hMonitor = outputInfo.getMonitorHandle();
MONITORINFO monitorInfo;
memset(&monitorInfo, 0, sizeof(MONITORINFO));
monitorInfo.cbSize = sizeof(MONITORINFO);
GetMonitorInfo(hMonitor, &monitorInfo);
props.mTop = monitorInfo.rcMonitor.top;
props.mLeft = monitorInfo.rcMonitor.left;
// Invalidate device, which resets it
mDevice->invalidate(this);
mDevice->acquire();
_windowMovedOrResized();
}
void D3D9RenderWindowCore::setFullscreen(const VideoMode& mode)
{
THROW_IF_NOT_CORE_THREAD;
setFullscreen(mode.getWidth(), mode.getHeight(), mode.getRefreshRate(), mode.getOutputIdx());
}
void D3D9RenderWindowCore::setWindowed(UINT32 width, UINT32 height)
{
THROW_IF_NOT_CORE_THREAD;
D3D9RenderWindowProperties& props = mProperties;
if (!props.mIsFullScreen)
return;
props.mIsFullScreen = false;
props.mWidth = width;
props.mHeight = height;
UINT32 winWidth = 0;
UINT32 winHeight = 0;
RECT rect;
SetRect(&rect, 0, 0, winWidth, winHeight);
AdjustWindowRect(&rect, mWindow->getStyle(), false);
winWidth = rect.right - rect.left;
winHeight = rect.bottom - rect.top;
// Deal with centering when switching down to smaller resolution
HMONITOR hMonitor = MonitorFromWindow(mWindow->getHWnd(), MONITOR_DEFAULTTONEAREST);
MONITORINFO monitorInfo;
memset(&monitorInfo, 0, sizeof(MONITORINFO));
monitorInfo.cbSize = sizeof(MONITORINFO);
GetMonitorInfo(hMonitor, &monitorInfo);
LONG screenw = monitorInfo.rcWork.right - monitorInfo.rcWork.left;
LONG screenh = monitorInfo.rcWork.bottom - monitorInfo.rcWork.top;
int left = screenw > int(winWidth) ? ((screenw - int(winWidth)) / 2) : 0;
int top = screenh > int(winHeight) ? ((screenh - int(winHeight)) / 2) : 0;
SetWindowLong(mWindow->getHWnd(), GWL_STYLE, mWindow->getStyle());
SetWindowLong(mWindow->getHWnd(), GWL_EXSTYLE, mWindow->getStyleEx());
SetWindowPos(mWindow->getHWnd(), HWND_NOTOPMOST, left, top, winWidth, winHeight,
SWP_DRAWFRAME | SWP_FRAMECHANGED | SWP_NOACTIVATE);
mDevice->invalidate(this);
mDevice->acquire();
_windowMovedOrResized();
}
void D3D9RenderWindowCore::setActive(bool state)
{
THROW_IF_NOT_CORE_THREAD;
mWindow->setActive(state);
RenderWindowCore::setActive(state);
}
void D3D9RenderWindowCore::setHidden(bool hidden)
{
THROW_IF_NOT_CORE_THREAD;
mShowOnSwap = false;
mWindow->setHidden(hidden);
RenderWindowCore::setHidden(hidden);
}
void D3D9RenderWindowCore::minimize()
{
THROW_IF_NOT_CORE_THREAD;
mWindow->minimize();
}
void D3D9RenderWindowCore::maximize()
{
THROW_IF_NOT_CORE_THREAD;
mWindow->maximize();
}
void D3D9RenderWindowCore::restore()
{
THROW_IF_NOT_CORE_THREAD;
mWindow->restore();
}
void D3D9RenderWindowCore::move(INT32 left, INT32 top)
{
THROW_IF_NOT_CORE_THREAD;
D3D9RenderWindowProperties& props = mProperties;
if (!props.mIsFullScreen)
{
mWindow->move(left, top);
props.mTop = mWindow->getTop();
props.mLeft = mWindow->getLeft();
{
ScopedSpinLock lock(mLock);
mSyncedProperties.mLeft = props.mLeft;
mSyncedProperties.mTop = props.mTop;
}
RenderWindowManager::instance().notifySyncDataDirty(this);
}
}
void D3D9RenderWindowCore::resize(UINT32 width, UINT32 height)
{
THROW_IF_NOT_CORE_THREAD;
D3D9RenderWindowProperties& props = mProperties;
if (!props.mIsFullScreen)
{
mWindow->resize(width, height);
props.mWidth = mWindow->getWidth();
props.mHeight = mWindow->getHeight();
{
ScopedSpinLock lock(mLock);
mSyncedProperties.mWidth = props.mWidth;
mSyncedProperties.mHeight = props.mHeight;
}
RenderWindowManager::instance().notifySyncDataDirty(this);
}
}
void D3D9RenderWindowCore::getCustomAttribute(const String& name, void* pData) const
{
// Valid attributes and their equivalent native functions:
// D3DDEVICE : getD3DDevice
// WINDOW : getWindowHandle
if( name == "D3DDEVICE" )
{
IDirect3DDevice9* *pDev = (IDirect3DDevice9**)pData;
*pDev = _getD3D9Device();
return;
}
else if( name == "WINDOW" )
{
UINT64 *pHwnd = (UINT64*)pData;
*pHwnd = (UINT64)_getWindowHandle();
return;
}
else if( name == "isTexture" )
{
bool *b = reinterpret_cast< bool * >( pData );
*b = false;
return;
}
else if( name == "D3DZBUFFER" )
{
IDirect3DSurface9* *pSurf = (IDirect3DSurface9**)pData;
*pSurf = mDevice->getDepthBuffer(this);
return;
}
else if( name == "DDBACKBUFFER" )
{
IDirect3DSurface9* *pSurf = (IDirect3DSurface9**)pData;
*pSurf = mDevice->getBackBuffer(this);
return;
}
else if( name == "DDFRONTBUFFER" )
{
IDirect3DSurface9* *pSurf = (IDirect3DSurface9**)pData;
*pSurf = mDevice->getBackBuffer(this);
return;
}
}
void D3D9RenderWindowCore::swapBuffers()
{
THROW_IF_NOT_CORE_THREAD;
if (mShowOnSwap)
setHidden(false);
if (mDeviceValid)
mDevice->present(this);
}
void D3D9RenderWindowCore::copyToMemory(PixelData &dst, FrameBuffer buffer)
{
THROW_IF_NOT_CORE_THREAD;
mDevice->copyContentsToMemory(this, dst, buffer);
}
void D3D9RenderWindowCore::_windowMovedOrResized()
{
THROW_IF_NOT_CORE_THREAD;
if (!mWindow)
return;
mWindow->_windowMovedOrResized();
D3D9RenderWindowProperties& props = mProperties;
if (!props.isFullScreen()) // Fullscreen is handled directly by this object
{
props.mTop = mWindow->getTop();
props.mLeft = mWindow->getLeft();
props.mWidth = mWindow->getWidth();
props.mHeight = mWindow->getHeight();
}
RenderWindowCore::_windowMovedOrResized();
}
/************************************************************************/
/* D3D9 IMPLEMENTATION SPECIFIC */
/************************************************************************/
void D3D9RenderWindowCore::_buildPresentParameters(D3DPRESENT_PARAMETERS* presentParams) const
{
const D3D9RenderWindowProperties& props = mProperties;
IDirect3D9* pD3D = D3D9RenderAPI::getDirect3D9();
D3DDEVTYPE devType = D3DDEVTYPE_HAL;
if (mDevice != NULL)
devType = mDevice->getDeviceType();
ZeroMemory( presentParams, sizeof(D3DPRESENT_PARAMETERS) );
presentParams->Windowed = !props.mIsFullScreen;
presentParams->SwapEffect = D3DSWAPEFFECT_DISCARD;
presentParams->BackBufferCount = 1;
presentParams->EnableAutoDepthStencil = mIsDepthBuffered;
presentParams->hDeviceWindow = mWindow->getHWnd();
presentParams->BackBufferWidth = props.mWidth;
presentParams->BackBufferHeight = props.mHeight;
presentParams->FullScreen_RefreshRateInHz = props.mIsFullScreen ? mDisplayFrequency : 0;
if (presentParams->BackBufferWidth == 0)
presentParams->BackBufferWidth = 1;
if (presentParams->BackBufferHeight == 0)
presentParams->BackBufferHeight = 1;
if (props.getVSync())
{
if (props.isFullScreen())
{
switch(mVSyncInterval)
{
case 1:
default:
presentParams->PresentationInterval = D3DPRESENT_INTERVAL_ONE;
break;
case 2:
presentParams->PresentationInterval = D3DPRESENT_INTERVAL_TWO;
break;
case 3:
presentParams->PresentationInterval = D3DPRESENT_INTERVAL_THREE;
break;
case 4:
presentParams->PresentationInterval = D3DPRESENT_INTERVAL_FOUR;
break;
};
D3DCAPS9 caps;
pD3D->GetDeviceCaps(mDevice->getAdapterNumber(), devType, &caps);
if (!(caps.PresentationIntervals & presentParams->PresentationInterval))
{
presentParams->PresentationInterval = D3DPRESENT_INTERVAL_ONE;
}
}
else
{
presentParams->PresentationInterval = D3DPRESENT_INTERVAL_ONE;
}
}
else
{
presentParams->PresentationInterval = D3DPRESENT_INTERVAL_IMMEDIATE;
}
presentParams->BackBufferFormat = D3DFMT_X8R8G8B8;
if (FAILED(pD3D->CheckDeviceFormat(mDevice->getAdapterNumber(),
devType, presentParams->BackBufferFormat, D3DUSAGE_DEPTHSTENCIL,
D3DRTYPE_SURFACE, D3DFMT_D24S8)))
{
if (FAILED(pD3D->CheckDeviceFormat(mDevice->getAdapterNumber(),
devType, presentParams->BackBufferFormat, D3DUSAGE_DEPTHSTENCIL,
D3DRTYPE_SURFACE, D3DFMT_D32)))
{
presentParams->AutoDepthStencilFormat = D3DFMT_D16;
}
else
{
presentParams->AutoDepthStencilFormat = D3DFMT_D32;
}
}
else
{
if (SUCCEEDED(pD3D->CheckDepthStencilMatch(mDevice->getAdapterNumber(), devType,
presentParams->BackBufferFormat, presentParams->BackBufferFormat, D3DFMT_D24S8)))
{
presentParams->AutoDepthStencilFormat = D3DFMT_D24S8;
}
else
{
presentParams->AutoDepthStencilFormat = D3DFMT_D24X8;
}
}
D3D9RenderAPI* rs = static_cast<D3D9RenderAPI*>(BansheeEngine::RenderAPICore::instancePtr());
D3DMULTISAMPLE_TYPE multisampleType;
DWORD multisampleQuality;
rs->determineMultisampleSettings(mDevice->getD3D9Device(), props.getMultisampleCount(),
presentParams->BackBufferFormat, props.isFullScreen(), &multisampleType, &multisampleQuality);
presentParams->MultiSampleType = multisampleType;
presentParams->MultiSampleQuality = (multisampleQuality == 0) ? 0 : multisampleQuality;
}
HWND D3D9RenderWindowCore::_getWindowHandle() const
{
return mWindow->getHWnd();
}
IDirect3DDevice9* D3D9RenderWindowCore::_getD3D9Device() const
{
return mDevice->getD3D9Device();
}
IDirect3DSurface9* D3D9RenderWindowCore::_getRenderSurface() const
{
return mDevice->getBackBuffer(this);
}
D3D9Device* D3D9RenderWindowCore::_getDevice() const
{
return mDevice;
}
void D3D9RenderWindowCore::_setDevice(D3D9Device* device)
{
mDevice = device;
mDeviceValid = false;
}
bool D3D9RenderWindowCore::_isDepthBuffered() const
{
return mIsDepthBuffered;
}
bool D3D9RenderWindowCore::_validateDevice()
{
mDeviceValid = mDevice->validate(this);
return mDeviceValid;
}
void D3D9RenderWindowCore::syncProperties()
{
ScopedSpinLock lock(mLock);
mProperties = mSyncedProperties;
}
D3D9RenderWindow::D3D9RenderWindow(const RENDER_WINDOW_DESC& desc, UINT32 windowId, HINSTANCE instance)
:RenderWindow(desc, windowId), mInstance(instance), mProperties(desc)
{
}
void D3D9RenderWindow::getCustomAttribute(const String& name, void* pData) const
{
if (name == "WINDOW")
{
UINT64 *pHwnd = (UINT64*)pData;
*pHwnd = (UINT64)getHWnd();
return;
}
}
Vector2I D3D9RenderWindow::screenToWindowPos(const Vector2I& screenPos) const
{
POINT pos;
pos.x = screenPos.x;
pos.y = screenPos.y;
ScreenToClient(getHWnd(), &pos);
return Vector2I(pos.x, pos.y);
}
Vector2I D3D9RenderWindow::windowToScreenPos(const Vector2I& windowPos) const
{
POINT pos;
pos.x = windowPos.x;
pos.y = windowPos.y;
ClientToScreen(getHWnd(), &pos);
return Vector2I(pos.x, pos.y);
}
HWND D3D9RenderWindow::getHWnd() const
{
blockUntilCoreInitialized();
return getCore()->_getWindowHandle();
}
SPtr<D3D9RenderWindowCore> D3D9RenderWindow::getCore() const
{
return std::static_pointer_cast<D3D9RenderWindowCore>(mCoreSpecific);
}
void D3D9RenderWindow::syncProperties()
{
ScopedSpinLock lock(getCore()->mLock);
mProperties = getCore()->mSyncedProperties;
}
}
| [
"bearishsun@gmail.com"
] | bearishsun@gmail.com |
37471784ba382a7a1c8aa357fcc7b2d72e673109 | e02a75042ee1f0da2d32996b7cd7269a80c8502e | /AtCoder/abc155/c.cpp | d20f1677bc8a9e7635f730679c6d49a6753358c1 | [] | no_license | KL-Lru/Competitive-Programming | 35131245d630e7b8728e2707066dc871e6363230 | d9395043ea439c68bcbdd1ed52fe080444dcc140 | refs/heads/master | 2021-06-18T03:17:16.583231 | 2021-04-05T14:09:00 | 2021-04-05T14:09:00 | 193,652,887 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 605 | cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
map<string, int> m;
string s;
for(int i=0;i<n;i++){
cin >> s;
m[s]++;
}
vector<pair<int , string>> v;
for(auto p: m){
v.push_back({p.second, p.first});
}
sort(v.begin(), v.end(), [](const pair<int, string> x, const pair<int, string> y){
if (x.first != y.first) return x.first > y.first;
else return x.second < y.second;
});
int buf = v[0].first;
for(auto p: v){
if(p.first != buf) break;
cout << p.second << endl;
}
} | [
"kilattoeruru@outlook.jp"
] | kilattoeruru@outlook.jp |
d4cabe9ba917f619c71af112c23c07a0f75bb731 | 64f47b20adb8abe22a50beb6da01316faa016fbd | /emul/US0371/src/DEBUG.CPP | 5a284b91343a99b0faf7eb26f2d882ddac2f9c92 | [] | no_license | ZXSpectrumVault/MightyFinalFight | 14699369b23b6cf1957aafb64abf2806678a3a2a | 105bf618cbd35cdb9d17eeddc2f6d088006f7eea | refs/heads/master | 2021-10-09T07:03:24.309133 | 2018-12-23T08:58:33 | 2018-12-23T08:58:33 | 162,875,347 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,608 | cpp |
#ifdef MOD_MONITOR
#define trace_size 21
#define trace_x 1
#define trace_y 6
unsigned trace_curs, trace_top, trace_mode;
unsigned char trace_labels;
#define wat_x 34
#define wat_y 1
#define wat_sz 13
unsigned show_scrshot;
unsigned user_watches[3] = { 0x4000, 0x8000, 0xC000 };
#define mem_size 12
#define mem_x 34
#define mem_y 15
unsigned mem_curs, mem_top, mem_second, mem_sz = 8;
unsigned mem_disk, mem_track, mem_max;
enum { ED_MEM, ED_PHYS, ED_LOG };
unsigned char mem_ascii, mem_dump, editor = ED_MEM;
#define regs_x 1
#define regs_y 1
unsigned regs_curs;
#define stack_x 72
#define stack_y 12
#define stack_size 10
#define ay_x 31
#define ay_y 28
#define time_x 1
#define time_y 28
#define copy_x 1
#define copy_y 28
#define banks_x 72
#define banks_y 22
#define ports_x 72
#define ports_y 1
unsigned dbg_extport; unsigned char dgb_extval; // extended memory port like 1FFD or DFFD
#define dos_x 72
#define dos_y 6
#define W_SEL 0x17
#define W_NORM 0x07
#define W_CURS 0x30
#define BACKGR 0x50
#define FRAME_CURS 0x02
#define W_TITLE 0x59
#define W_OTHER 0x40
#define W_OTHEROFF 0x47
#define BACKGR_CH 0xB1
#define W_AYNUM 0x4F
#define W_AYON 0x41
#define W_AYOFF 0x40
#define W_BANK 0x40
#define W_BANKRO 0x41
#define W_DIHALT1 0x1A
#define W_DIHALT2 0x0A
#define W_TRACEPOS 0x70
#define W_INPUTCUR 0x60
#define W_INPUTBG 0x40
#define W_TRACE_JINFO_CURS_FG 0x0D
#define W_TRACE_JINFO_NOCURS_FG 0x02
#define W_TRACE_JARROW_FOREGR 0x0D
#define FRAME 0x01
#define FFRAME_FRAME 0x04
#define FFRAME_INSIDE 0x50
#define FFRAME_ERROR 0x52
#define FRM_HEADER 0xD0
#define MENU_INSIDE 0x70
#define MENU_HEADER 0xF0
#define MENU_CURSOR 0xE0
#define MENU_ITEM MENU_INSIDE
#define MENU_ITEM_DIS 0x7A
unsigned ripper; // ripper mode (none/read/write)
__int64 debug_last_t; // used to find time delta
enum DBGWND {
WNDNO, WNDMEM, WNDTRACE, WNDREGS
} activedbg = WNDTRACE;
void debugscr();
unsigned find1dlg(unsigned start);
unsigned find2dlg(unsigned start);
#include "dbgpaint.cpp"
#include "dbglabls.cpp"
#include "z80asm.cpp"
#include "dbgreg.cpp"
#include "dbgmem.cpp"
#include "dbgtrace.cpp"
#include "dbgrwdlg.cpp"
#include "dbgcmd.cpp"
#include "dbgbpx.cpp"
#include "dbgoth.cpp"
void debugscr()
{
memset(txtscr, BACKGR_CH, sizeof txtscr/2);
memset(txtscr+sizeof txtscr/2, BACKGR, sizeof txtscr/2);
nfr = 0;
showregs();
showtrace();
showmem();
showwatch();
showstack();
show_ay();
showbanks();
showports();
showdos();
#if 1
show_time();
#else
tprint(copy_x, copy_y, "\x1A", 0x9C);
tprint(copy_x+1, copy_y, "UnrealSpeccy " VERS_STRING, 0x9E);
tprint(copy_x+20, copy_y, "by SMT", 0x9D);
tprint(copy_x+26, copy_y, "\x1B", 0x9C);
frame(copy_x, copy_y, 27, 1, 0x0A);
#endif
}
void handle_mouse()
{
unsigned mx = ((mousepos & 0xFFFF)-temp.gx)/8,
my = (((mousepos >> 16) & 0x7FFF)-temp.gy)/16;
if (my >= trace_y && my < trace_y+trace_size && mx >= trace_x && mx < trace_x+32) {
needclr++; activedbg = WNDTRACE;
trace_curs = trpc[my - trace_y];
if (mx - trace_x < cs[1][0]) trace_mode = 0;
else if (mx - trace_x < cs[2][0]) trace_mode = 1;
else trace_mode = 2;
}
if (my >= mem_y && my < mem_y+mem_size && mx >= mem_x && mx < mem_x+37) {
needclr++; activedbg = WNDMEM;
unsigned dx = mx-mem_x;
if (mem_dump) {
if (dx >= 5) mem_curs = mem_top + (dx-5) + (my-mem_y)*32;
} else {
unsigned mem_se = (dx-5)%3;
if (dx >= 29) mem_curs = mem_top + (dx-29) + (my-mem_y)*8, mem_ascii=1;
if (dx >= 5 && mem_se != 2 && dx < 29)
mem_curs = mem_top + (dx-5)/3 + (my-mem_y)*8,
mem_second = mem_se, mem_ascii=0;
}
}
if (mx >= regs_x && my >= regs_y && mx < regs_x+32 && my < regs_y+4) {
needclr++; activedbg = WNDREGS;
for (unsigned i = 0; i < sizeof regs_layout / sizeof *regs_layout; i++) {
unsigned delta = 1;
if (regs_layout[i].width == 16) delta = 4;
if (regs_layout[i].width == 8) delta = 2;
if (my-regs_y == regs_layout[i].y && mx-regs_x-regs_layout[i].x < delta) regs_curs = i;
}
}
if (mousepos & 0x80000000) { // right-click
enum { IDM_BPX=1, IDM_SOME_OTHER };
HMENU menu = CreatePopupMenu();
if (activedbg == WNDTRACE) {
AppendMenu(menu, MF_STRING, IDM_BPX, "breakpoint");
} else {
AppendMenu(menu, MF_STRING, 0, "I don't know");
AppendMenu(menu, MF_STRING, 0, "what to place");
AppendMenu(menu, MF_STRING, 0, "to menu, so");
AppendMenu(menu, MF_STRING, 0, "No Stuff Here");
}
int cmd = TrackPopupMenu(menu, TPM_RETURNCMD | TPM_NONOTIFY | TPM_LEFTALIGN | TPM_TOPALIGN,
(mousepos & 0xFFFF) + temp.client.left,
((mousepos>>16) & 0x7FFF) + temp.client.top, 0, wnd, 0);
DestroyMenu(menu);
if (cmd == IDM_BPX) cbpx();
//if (cmd == IDM_SOME_OTHER) some_other();
//needclr++;
}
mousepos = 0;
}
/* ------------------------------------------------------------- */
void debug()
{
sound_stop();
temp.rflags = RF_MONITOR;
needclr = dbgbreak = 1;
set_video();
trace_curs = cpu.pc;
dbg_stopsp = dbg_stophere = -1;
dbg_loop_r1 = 0, dbg_loop_r2 = 0xFFFF;
mousepos = 0;
while (dbgbreak)
{
if (trace_labels)
mon_labels.notify_user_labels();
repaint_dbg:
trace_top &= 0xFFFF, trace_curs &= 0xFFFF;
debugscr();
if (trace_curs < trace_top || trace_curs >= trpc[trace_size] || asmii==-1)
trace_top = trace_curs, debugscr();
debugflip();
sleep:
while (!dispatch(0)) {
if (mousepos) handle_mouse();
if (needclr) { needclr--; goto repaint_dbg; }
Sleep(20);
}
if (activedbg == WNDREGS && dispatch_more(ac_regs) > 0) continue;
if (activedbg == WNDTRACE && dispatch_more(ac_trace) > 0) continue;
if (activedbg == WNDMEM && dispatch_more(ac_mem) > 0) continue;
if (activedbg == WNDREGS && dispatch_regs()) continue;
if (activedbg == WNDTRACE && dispatch_trace()) continue;
if (activedbg == WNDMEM && dispatch_mem()) continue;
if (needclr) { needclr--; continue; }
goto sleep;
}
prevcpu = cpu;
debug_last_t = comp.t_states + cpu.t;
apply_video();
sound_play();
}
void debug_events()
{
unsigned pc = cpu.pc & 0xFFFF;
unsigned char *membit = membits + pc;
*membit |= MEMBITS_X; dbgbreak |= (*membit & MEMBITS_BPX);
if (pc == dbg_stophere) dbgbreak = 1;
if ((cpu.sp & 0xFFFF) == dbg_stopsp) {
if (pc > dbg_stophere && pc < dbg_stophere+0x100) dbgbreak = 1;
if (pc < dbg_loop_r1 || pc > dbg_loop_r2) dbgbreak = 1;
}
if (cbpn) {
cpu.r_low = (cpu.r_low & 0x7F) + cpu.r_hi;
for (unsigned i = 0; i < cbpn; i++)
if (calc(cbp[i])) dbgbreak = 1;
}
brk_port_in = brk_port_out = -1; // reset only when breakpoints active
if (dbgbreak) { debug(); return; }
}
#endif // MOD_MONITOR
unsigned char isbrk() // is there breakpoints active or any other reason to use debug z80 loop?
{
#ifndef MOD_DEBUGCORE
return 0;
#else
#ifdef MOD_MEMBAND_LED
if (conf.led.memband & 0x80000000) return 1;
#endif
if (conf.mem_model == MM_PROFSCORP) return 1; // breakpoint on read ROM switches ROM bank
#ifdef MOD_MONITOR
if (cbpn) return 1;
unsigned char res = 0;
for (int i = 0; i < 0x10000; i++) res |= membits[i];
return (res & (MEMBITS_BPR | MEMBITS_BPW | MEMBITS_BPX));
#endif
#endif
}
| [
"damieng@gmail.com"
] | damieng@gmail.com |
f83923c0d9859784e7ddd7ec29e9fc7284142b2b | b72698e6ff8c36a35e34dd5c80f3499e59ca5169 | /libs/hwdrivers/src/CGPSInterface_unittest.cpp | 667435310384c61c5711b223e4a7f091908dfc73 | [
"BSD-3-Clause"
] | permissive | jolting/mrpt | 1d76a8811bbf09866bc9620fe720383f3badd257 | 2cfcd3a97aebd49290df5405976b15f8923c35cb | refs/heads/develop | 2023-04-10T01:39:58.757569 | 2021-02-06T17:57:26 | 2021-02-06T17:57:26 | 54,604,509 | 1 | 2 | BSD-3-Clause | 2023-04-04T01:28:54 | 2016-03-24T01:15:39 | C++ | UTF-8 | C++ | false | false | 17,521 | cpp | /* +------------------------------------------------------------------------+
| Mobile Robot Programming Toolkit (MRPT) |
| https://www.mrpt.org/ |
| |
| Copyright (c) 2005-2021, Individual contributors, see AUTHORS file |
| See: https://www.mrpt.org/Authors - All rights reserved. |
| Released under BSD License. See: https://www.mrpt.org/License |
+------------------------------------------------------------------------+ */
#include <gtest/gtest.h>
#include <mrpt/hwdrivers/CGPSInterface.h>
#include <mrpt/io/CMemoryStream.h>
using namespace mrpt;
using namespace mrpt::hwdrivers;
using namespace mrpt::obs;
using namespace std;
// Example cmds:
// https://www.sparkfun.com/datasheets/GPS/NMEA%20Reference%20Manual-Rev2.1-Dec07.pdf
TEST(CGPSInterface, parse_NMEA_GGA)
{
// Test with a correct frame:
{
const char* test_cmd =
"$GPGGA,101830.00,3649.76162994,N,00224.53709052,W,2,08,1.1,9.3,M,"
"47.4,M,5.0,0120*58";
mrpt::obs::CObservationGPS obsGPS;
const bool parse_ret = CGPSInterface::parse_NMEA(test_cmd, obsGPS);
EXPECT_TRUE(parse_ret) << "Failed parse of: " << test_cmd << endl;
const gnss::Message_NMEA_GGA* msg =
obsGPS.getMsgByClassPtr<gnss::Message_NMEA_GGA>();
EXPECT_TRUE(msg != nullptr);
if (!msg) return;
EXPECT_NEAR(
msg->fields.latitude_degrees, 36 + 49.76162994 / 60.0, 1e-10);
EXPECT_NEAR(
msg->fields.longitude_degrees, -(002 + 24.53709052 / 60.0), 1e-10);
EXPECT_NEAR(msg->fields.altitude_meters, 9.3, 1e-10);
}
// Test with an empty frame:
{
const char* test_cmd = "$GPGGA,,,,,,0,,,,M,,M,,*6";
mrpt::obs::CObservationGPS obsGPS;
const bool parse_ret = CGPSInterface::parse_NMEA(test_cmd, obsGPS);
EXPECT_FALSE(parse_ret);
}
}
TEST(CGPSInterface, parse_NMEA_RMC)
{
const char* test_cmd =
"$GPRMC,161229.487,A,3723.2475,N,12158.3416,W,0.13,309.62,120598, ,*10";
mrpt::obs::CObservationGPS obsGPS;
const bool parse_ret = CGPSInterface::parse_NMEA(test_cmd, obsGPS);
EXPECT_TRUE(parse_ret) << "Failed parse of: " << test_cmd << endl;
const gnss::Message_NMEA_RMC* msg =
obsGPS.getMsgByClassPtr<gnss::Message_NMEA_RMC>();
EXPECT_TRUE(msg != nullptr);
if (!msg) return;
EXPECT_NEAR(msg->fields.latitude_degrees, 37 + 23.2475 / 60.0, 1e-10);
EXPECT_NEAR(msg->fields.longitude_degrees, -(121 + 58.3416 / 60.0), 1e-10);
}
TEST(CGPSInterface, parse_NMEA_GLL)
{
const char* test_cmd = "$GPGLL,3723.2475,N,12158.3416,W,161229.487,A,A*41";
mrpt::obs::CObservationGPS obsGPS;
const bool parse_ret = CGPSInterface::parse_NMEA(test_cmd, obsGPS);
EXPECT_TRUE(parse_ret) << "Failed parse of: " << test_cmd << endl;
const gnss::Message_NMEA_GLL* msg =
obsGPS.getMsgByClassPtr<gnss::Message_NMEA_GLL>();
EXPECT_TRUE(msg != nullptr);
if (!msg) return;
EXPECT_NEAR(msg->fields.latitude_degrees, 37 + 23.2475 / 60.0, 1e-10);
EXPECT_NEAR(msg->fields.longitude_degrees, -(121 + 58.3416 / 60.0), 1e-10);
}
TEST(CGPSInterface, parse_NMEA_VTG)
{
const char* test_cmd = "$GPVTG,054.7,T,034.4,M,005.5,N,010.2,K*48";
mrpt::obs::CObservationGPS obsGPS;
const bool parse_ret = CGPSInterface::parse_NMEA(test_cmd, obsGPS);
EXPECT_TRUE(parse_ret) << "Failed parse of: " << test_cmd << endl;
const gnss::Message_NMEA_VTG* msg =
obsGPS.getMsgByClassPtr<gnss::Message_NMEA_VTG>();
EXPECT_TRUE(msg != nullptr);
if (!msg) return;
EXPECT_NEAR(msg->fields.true_track, 54.7, 1e-6);
EXPECT_NEAR(msg->fields.magnetic_track, 34.4, 1e-6);
EXPECT_NEAR(msg->fields.ground_speed_knots, 5.5, 1e-6);
EXPECT_NEAR(msg->fields.ground_speed_kmh, 10.2, 1e-6);
}
TEST(CGPSInterface, parse_NMEA_ZDA)
{
const char* test_cmd = "$GPZDA,181813,14,10,2003,00,00*4F";
mrpt::obs::CObservationGPS obsGPS;
const bool parse_ret = CGPSInterface::parse_NMEA(test_cmd, obsGPS);
EXPECT_TRUE(parse_ret) << "Failed parse of: " << test_cmd << endl;
const gnss::Message_NMEA_ZDA* msg =
obsGPS.getMsgByClassPtr<gnss::Message_NMEA_ZDA>();
EXPECT_TRUE(msg != nullptr);
if (!msg) return;
EXPECT_TRUE(msg->fields.date_day == 14);
EXPECT_TRUE(msg->fields.date_month == 10);
EXPECT_TRUE(msg->fields.date_year == 2003);
EXPECT_TRUE(msg->fields.UTCTime.hour == 18);
EXPECT_TRUE(msg->fields.UTCTime.minute == 18);
EXPECT_TRUE(msg->fields.UTCTime.sec == 13.0);
// Replaced from EXPECT_EQ() to avoid a "bus error" in a gtest template
// under armhf.
}
TEST(CGPSInterface, parse_NMEA_ZDA_stream)
{
auto buf = std::make_shared<mrpt::io::CMemoryStream>();
{
const std::string s("$GPZDA,181813,14,10,2003,00,00*4F\n");
buf->Write(s.c_str(), s.size());
buf->Seek(0);
}
CGPSInterface gps;
gps.bindStream(buf);
gps.initialize();
gps.doProcess();
mrpt::hwdrivers::CGenericSensor::TListObservations obss;
gps.getObservations(obss);
EXPECT_EQ(obss.size(), 1U);
auto obsGPS = mrpt::ptr_cast<CObservationGPS>::from(obss.begin()->second);
const gnss::Message_NMEA_ZDA* msg =
obsGPS->getMsgByClassPtr<gnss::Message_NMEA_ZDA>();
EXPECT_TRUE(msg != nullptr);
if (!msg) return;
EXPECT_TRUE(msg->fields.date_day == 14);
EXPECT_TRUE(msg->fields.date_month == 10);
EXPECT_TRUE(msg->fields.date_year == 2003);
EXPECT_TRUE(msg->fields.UTCTime.hour == 18);
EXPECT_TRUE(msg->fields.UTCTime.minute == 18);
EXPECT_TRUE(msg->fields.UTCTime.sec == 13.0);
// Replaced from EXPECT_EQ() to avoid a "bus error" in a gtest template
// under armhf.
}
TEST(CGPSInterface, parse_NOVATEL6_stream)
{
auto buf = std::make_shared<mrpt::io::CMemoryStream>();
{
const uint8_t sample_novatel6_gps[] = {
0xaa, 0x44, 0x12, 0x1c, 0x2a, 0x00, 0x00, 0xa0, 0x48, 0x00, 0x00,
0x00, 0x5a, 0xb4, 0x59, 0x07, 0x10, 0x4a, 0xb7, 0x16, 0x00, 0x00,
0x00, 0x00, 0xf6, 0xb1, 0x4a, 0x34, 0x00, 0x00, 0x00, 0x00, 0x38,
0x00, 0x00, 0x00, 0x97, 0x2b, 0x45, 0xa9, 0xc8, 0x6a, 0x42, 0x40,
0xfc, 0x54, 0x43, 0x6f, 0x11, 0x18, 0x03, 0xc0, 0x00, 0x00, 0x20,
0x8f, 0xe8, 0x0e, 0x1c, 0x40, 0x66, 0x66, 0x48, 0x42, 0x3d, 0x00,
0x00, 0x00, 0x1d, 0x9b, 0x96, 0x3c, 0x2c, 0xd5, 0x9c, 0x3c, 0xd1,
0x39, 0xa8, 0x3c, 0x35, 0x35, 0x35, 0x00, 0x00, 0x00, 0x60, 0x41,
0x00, 0x00, 0x00, 0x00, 0x0f, 0x0e, 0x0e, 0x0d, 0x00, 0x00, 0x00,
0x33, 0x82, 0xba, 0x79, 0xe5, 0xaa, 0x44, 0x13, 0x58, 0xfc, 0x01,
0x59, 0x07, 0x10, 0x4a, 0xb7, 0x16, 0x59, 0x07, 0x00, 0x00, 0x33,
0x33, 0x33, 0x33, 0xdb, 0x42, 0x17, 0x41, 0xa7, 0xf0, 0xaf, 0xa5,
0xc8, 0x6a, 0x42, 0x40, 0xa2, 0xad, 0xac, 0x28, 0x12, 0x18, 0x03,
0xc0, 0x00, 0x00, 0x8a, 0x8b, 0x52, 0x8d, 0x4c, 0x40, 0x10, 0xe2,
0xdb, 0x3c, 0x4b, 0xbd, 0x82, 0xbf, 0x52, 0x23, 0x1e, 0x50, 0x08,
0xf1, 0x9b, 0xbf, 0xd4, 0xa6, 0xd1, 0x7c, 0xcd, 0x16, 0xc8, 0x3f,
0x31, 0x27, 0xe1, 0x16, 0xa2, 0x6b, 0x10, 0x40, 0xc7, 0x1c, 0xc7,
0x39, 0x6a, 0x9c, 0x00, 0x40, 0xa0, 0x3c, 0x9f, 0x79, 0xca, 0xdd,
0x63, 0x40, 0x03, 0x00, 0x00, 0x00, 0x27, 0xbb, 0xff, 0xf8, 0xaa,
0x44, 0x12, 0x1c, 0x2a, 0x00, 0x00, 0xa0, 0x48, 0x00, 0x00, 0x00,
0x5a, 0xb4, 0x59, 0x07, 0x42, 0x4a, 0xb7, 0x16, 0x00, 0x00, 0x00,
0x00, 0xf6, 0xb1, 0x4a, 0x34, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00,
0x00, 0x00, 0xf0, 0x23, 0x3c, 0xa9, 0xc8, 0x6a, 0x42, 0x40, 0xdd,
0x10, 0x6c, 0x71, 0x11, 0x18, 0x03, 0xc0, 0x00, 0x00, 0x00, 0x03,
0xa7, 0x18, 0x1c, 0x40, 0x66, 0x66, 0x48, 0x42, 0x3d, 0x00, 0x00,
0x00, 0x32, 0x9b, 0x96, 0x3c, 0x82, 0xd4, 0x9c, 0x3c, 0x5d, 0x3a,
0xa8, 0x3c, 0x35, 0x35, 0x35, 0x00, 0x00, 0x00, 0x60, 0x41, 0x00,
0x00, 0x00, 0x00, 0x0f, 0x0e, 0x0e, 0x0d, 0x00, 0x00, 0x00, 0x33,
0xcb, 0x95, 0xa0, 0x9b, 0xaa, 0x44, 0x13, 0x58, 0xfc, 0x01, 0x59,
0x07, 0x42, 0x4a, 0xb7, 0x16, 0x59, 0x07, 0x00, 0x00, 0x67, 0x66,
0x66, 0x66, 0xdb, 0x42, 0x17, 0x41, 0xe6, 0xae, 0xa1, 0xa5, 0xc8,
0x6a, 0x42, 0x40, 0x26, 0x1e, 0x82, 0x2b, 0x12, 0x18, 0x03, 0xc0,
0x00, 0x00, 0x62, 0xb6, 0x8b, 0x8e, 0x4c, 0x40, 0x10, 0x63, 0x42,
0x19, 0x38, 0x19, 0x7a, 0xbf, 0x1e, 0xa9, 0x79, 0x02, 0x24, 0x6c,
0x9d, 0xbf, 0x52, 0x13, 0x38, 0xa4, 0x35, 0x2c, 0xc8, 0x3f, 0xa9,
0x3b, 0x21, 0x59, 0xe0, 0xa0, 0x10, 0x40, 0x51, 0xd1, 0x8c, 0x50,
0x0b, 0xa0, 0x00, 0x40, 0x16, 0x40, 0x94, 0xbe, 0xc2, 0xdd, 0x63,
0x40, 0x03, 0x00, 0x00, 0x00, 0x20, 0x4d, 0xe7, 0xa2, 0xaa, 0x44,
0x12, 0x1c, 0x2a, 0x00, 0x00, 0xa0, 0x48, 0x00, 0x00, 0x00, 0x5a,
0xb4, 0x59, 0x07, 0x74, 0x4a, 0xb7, 0x16, 0x00, 0x00, 0x00, 0x00,
0xf6, 0xb1, 0x4a, 0x34, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00,
0x00, 0xaa, 0x41, 0x32, 0xa9, 0xc8, 0x6a, 0x42, 0x40, 0xff, 0x59,
0xa8, 0x73, 0x11, 0x18, 0x03, 0xc0, 0x00, 0x00, 0xa0, 0xd6, 0x6b,
0x22, 0x1c, 0x40, 0x66, 0x66, 0x48, 0x42, 0x3d, 0x00, 0x00, 0x00,
0x92, 0x9b, 0x96, 0x3c, 0x70, 0xd3, 0x9c, 0x3c, 0x06, 0x3b, 0xa8,
0x3c, 0x35, 0x35, 0x35, 0x00};
const unsigned int sample_novatel6_gps_len = 500;
buf->Write(sample_novatel6_gps, sample_novatel6_gps_len);
buf->Seek(0);
}
CGPSInterface gps;
gps.bindStream(buf);
gps.initialize();
gps.doProcess();
mrpt::hwdrivers::CGenericSensor::TListObservations obss;
gps.getObservations(obss);
EXPECT_EQ(obss.size(), 4U);
if (obss.empty()) return;
auto itObs = obss.begin();
auto obsGPS1 = mrpt::ptr_cast<CObservationGPS>::from(itObs->second);
++itObs;
auto obsGPS2 = mrpt::ptr_cast<CObservationGPS>::from(itObs->second);
EXPECT_TRUE(obsGPS1);
EXPECT_TRUE(obsGPS2);
const auto* msg1 =
obsGPS1->getMsgByClassPtr<gnss::Message_NV_OEM6_BESTPOS>();
EXPECT_TRUE(msg1 != nullptr);
if (!msg1) return;
EXPECT_TRUE(msg1->fields.num_sats_tracked == 15);
const auto* msg2 =
obsGPS2->getMsgByClassPtr<gnss::Message_NV_OEM6_INSPVAS>();
EXPECT_TRUE(msg2 != nullptr);
if (!msg2) return;
EXPECT_NEAR(msg2->fields.roll, 4.10511, 1e-4);
}
TEST(CGPSInterface, parse_NMEA_stream)
{
auto buf = std::make_shared<mrpt::io::CMemoryStream>();
{
// Data captured with a uBlox8 (University of Almeria, 2020)
const uint8_t sample_nmea_gps[] = {
0x31, 0x33, 0x2c, 0x32, 0x34, 0x2c, 0x33, 0x30, 0x2c, 0x32, 0x36,
0x34, 0x2c, 0x33, 0x30, 0x2c, 0x32, 0x38, 0x2c, 0x34, 0x35, 0x2c,
0x30, 0x36, 0x30, 0x2c, 0x31, 0x37, 0x2c, 0x33, 0x30, 0x2c, 0x31,
0x38, 0x2c, 0x30, 0x35, 0x39, 0x2c, 0x33, 0x31, 0x2c, 0x33, 0x36,
0x2c, 0x33, 0x34, 0x2c, 0x31, 0x33, 0x32, 0x2c, 0x2a, 0x37, 0x37,
0x0a, 0x24, 0x47, 0x50, 0x47, 0x53, 0x56, 0x2c, 0x34, 0x2c, 0x34,
0x2c, 0x31, 0x33, 0x2c, 0x34, 0x39, 0x2c, 0x34, 0x37, 0x2c, 0x31,
0x36, 0x38, 0x2c, 0x2a, 0x34, 0x41, 0x0a, 0x24, 0x47, 0x4c, 0x47,
0x53, 0x56, 0x2c, 0x32, 0x2c, 0x31, 0x2c, 0x30, 0x36, 0x2c, 0x36,
0x36, 0x2c, 0x34, 0x32, 0x2c, 0x31, 0x34, 0x30, 0x2c, 0x2c, 0x36,
0x37, 0x2c, 0x37, 0x39, 0x2c, 0x33, 0x34, 0x37, 0x2c, 0x31, 0x30,
0x2c, 0x36, 0x38, 0x2c, 0x32, 0x35, 0x2c, 0x33, 0x32, 0x38, 0x2c,
0x32, 0x36, 0x2c, 0x37, 0x36, 0x2c, 0x32, 0x35, 0x2c, 0x30, 0x33,
0x34, 0x2c, 0x31, 0x31, 0x2a, 0x36, 0x38, 0x0a, 0x24, 0x47, 0x4c,
0x47, 0x53, 0x56, 0x2c, 0x32, 0x2c, 0x32, 0x2c, 0x30, 0x36, 0x2c,
0x37, 0x37, 0x2c, 0x37, 0x36, 0x2c, 0x33, 0x34, 0x33, 0x2c, 0x2c,
0x37, 0x38, 0x2c, 0x33, 0x39, 0x2c, 0x32, 0x33, 0x32, 0x2c, 0x31,
0x38, 0x2a, 0x36, 0x39, 0x0a, 0x24, 0x47, 0x4e, 0x47, 0x53, 0x54,
0x2c, 0x31, 0x30, 0x30, 0x33, 0x35, 0x34, 0x2e, 0x34, 0x30, 0x2c,
0x32, 0x35, 0x2c, 0x2c, 0x2c, 0x2c, 0x34, 0x35, 0x2c, 0x32, 0x30,
0x2c, 0x36, 0x31, 0x2a, 0x36, 0x33, 0x0a, 0xb5, 0x62, 0x01, 0x01,
0x14, 0x00, 0xb8, 0x9b, 0xc2, 0x16, 0xc1, 0x84, 0x70, 0x1e, 0x24,
0x55, 0xb8, 0xfe, 0xb0, 0xee, 0xa9, 0x16, 0x8e, 0x19, 0x00, 0x00,
0x47, 0xb2, 0xb5, 0x62, 0x01, 0x12, 0x24, 0x00, 0xb8, 0x9b, 0xc2,
0x16, 0xee, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xff, 0xff, 0xea, 0xff,
0xff, 0xff, 0x1d, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x99,
0xa6, 0x14, 0x02, 0x08, 0x01, 0x00, 0x00, 0x80, 0xa8, 0x12, 0x01,
0xf3, 0xeb, 0x24, 0x47, 0x4e, 0x52, 0x4d, 0x43, 0x2c, 0x31, 0x30,
0x30, 0x33, 0x35, 0x34, 0x2e, 0x36, 0x30, 0x2c, 0x41, 0x2c, 0x33,
0x36, 0x34, 0x39, 0x2e, 0x37, 0x38, 0x39, 0x32, 0x39, 0x2c, 0x4e,
0x2c, 0x30, 0x30, 0x32, 0x32, 0x34, 0x2e, 0x34, 0x36, 0x38, 0x36,
0x33, 0x2c, 0x57, 0x2c, 0x30, 0x2e, 0x33, 0x37, 0x38, 0x2c, 0x33,
0x34, 0x39, 0x2e, 0x30, 0x38, 0x2c, 0x32, 0x37, 0x30, 0x32, 0x32,
0x30, 0x2c, 0x2c, 0x2c, 0x41, 0x2a, 0x36, 0x36, 0x0a, 0x24, 0x47,
0x4e, 0x47, 0x4e, 0x53, 0x2c, 0x31, 0x30, 0x30, 0x33, 0x35, 0x34,
0x2e, 0x36, 0x30, 0x2c, 0x33, 0x36, 0x34, 0x39, 0x2e, 0x37, 0x38,
0x39, 0x32, 0x39, 0x2c, 0x4e, 0x2c, 0x30, 0x30, 0x32, 0x32, 0x34,
0x2e, 0x34, 0x36, 0x38, 0x36, 0x33, 0x2c, 0x57, 0x2c, 0x41, 0x4e,
0x2c, 0x30, 0x34, 0x2c, 0x32, 0x2e, 0x33, 0x31, 0x2c, 0x35, 0x35,
0x2e, 0x34, 0x2c, 0x34, 0x36, 0x2e, 0x32, 0x2c, 0x2c, 0x2a, 0x34,
0x45, 0x0a, 0x24, 0x47, 0x4e, 0x47, 0x53, 0x41, 0x2c, 0x4d, 0x2c,
0x33, 0x2c, 0x31, 0x35, 0x2c, 0x32, 0x34, 0x2c, 0x33, 0x30, 0x2c,
0x31, 0x37, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c,
0x34, 0x2e, 0x32, 0x31, 0x2c, 0x32, 0x2e, 0x33, 0x31, 0x2c, 0x33,
0x2e, 0x35, 0x32, 0x2a, 0x31, 0x34, 0x0a, 0x24, 0x47, 0x4e, 0x47,
0x53, 0x41, 0x2c, 0x4d, 0x2c, 0x33, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c,
0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x2c, 0x34, 0x2e, 0x32,
0x31, 0x2c, 0x32, 0x2e, 0x33, 0x31, 0x2c, 0x33, 0x2e, 0x35, 0x32,
0x2a, 0x31, 0x33, 0x0a, 0x24, 0x47, 0x50, 0x47, 0x53, 0x56, 0x2c,
0x34, 0x2c, 0x31, 0x2c, 0x31, 0x33, 0x2c, 0x30, 0x35, 0x2c, 0x33,
0x36, 0x2c, 0x31, 0x38, 0x32, 0x2c, 0x32, 0x30, 0x2c, 0x31, 0x32,
0x2c, 0x30, 0x33, 0x2c, 0x32, 0x30, 0x32, 0x2c, 0x2c, 0x31, 0x33,
0x2c, 0x36, 0x39, 0x2c, 0x30, 0x34, 0x36, 0x2c, 0x31, 0x32, 0x2c,
0x31, 0x35, 0x2c, 0x36, 0x31, 0x2c, 0x33, 0x32, 0x31, 0x2c, 0x32,
0x39, 0x2a, 0x37, 0x33, 0x0a, 0x24, 0x47, 0x50, 0x47, 0x53, 0x56,
0x2c, 0x34, 0x2c, 0x32, 0x2c, 0x31, 0x33, 0x2c, 0x31, 0x37, 0x2c,
0x31, 0x31, 0x2c, 0x31, 0x30, 0x38, 0x2c, 0x32, 0x38, 0x2c, 0x31,
0x39, 0x2c, 0x30, 0x34, 0x2c, 0x31, 0x33, 0x31, 0x2c, 0x31, 0x36,
0x2c, 0x32, 0x30, 0x2c, 0x31, 0x33, 0x2c, 0x33, 0x31, 0x38, 0x2c,
0x31, 0x37, 0x2c, 0x32, 0x31, 0x2c, 0x30, 0x33, 0x2c, 0x32, 0x38,
0x38, 0x2c, 0x2a, 0x37, 0x45, 0x0a, 0x24, 0x47, 0x50, 0x47, 0x53,
0x56, 0x2c, 0x34, 0x2c, 0x33, 0x2c, 0x31, 0x33, 0x2c, 0x32, 0x34,
0x2c, 0x33, 0x30, 0x2c, 0x32, 0x36, 0x34, 0x2c, 0x33, 0x30, 0x2c,
0x32, 0x38, 0x2c, 0x34, 0x35, 0x2c, 0x30, 0x36, 0x30, 0x2c, 0x31,
0x37, 0x2c, 0x33, 0x30, 0x2c, 0x31, 0x38, 0x2c, 0x30, 0x35, 0x39,
0x2c, 0x33, 0x31, 0x2c, 0x33, 0x36, 0x2c, 0x33, 0x34, 0x2c, 0x31,
0x33, 0x32, 0x2c, 0x2a, 0x37, 0x37, 0x0a, 0x24, 0x47, 0x50, 0x47,
0x53, 0x56, 0x2c, 0x34, 0x2c, 0x34, 0x2c, 0x31, 0x33, 0x2c, 0x34,
0x39, 0x2c, 0x34, 0x37, 0x2c, 0x31, 0x36, 0x38, 0x2c, 0x2a, 0x34,
0x41, 0x0a, 0x24, 0x47, 0x4c, 0x47, 0x53, 0x56, 0x2c, 0x32, 0x2c,
0x31, 0x2c, 0x30, 0x36, 0x2c, 0x36, 0x36, 0x2c, 0x34, 0x32, 0x2c,
0x31, 0x34, 0x30, 0x2c, 0x2c, 0x36, 0x37, 0x2c, 0x37, 0x39, 0x2c,
0x33, 0x34, 0x37, 0x2c, 0x31, 0x31, 0x2c, 0x36, 0x38, 0x2c, 0x32,
0x35, 0x2c, 0x33, 0x32, 0x38, 0x2c, 0x32, 0x36, 0x2c, 0x37, 0x36,
0x2c, 0x32, 0x35, 0x2c, 0x30, 0x33, 0x34, 0x2c, 0x31, 0x31, 0x2a,
0x36, 0x39, 0x0a, 0x24, 0x47, 0x4c, 0x47, 0x53, 0x56, 0x2c, 0x32,
0x2c, 0x32, 0x2c, 0x30, 0x36, 0x2c, 0x37, 0x37, 0x2c, 0x37, 0x36,
0x2c, 0x33, 0x34, 0x33, 0x2c, 0x2c, 0x37, 0x38, 0x2c, 0x33, 0x39,
0x2c, 0x32, 0x33, 0x32, 0x2c, 0x31, 0x38, 0x2a, 0x36, 0x39, 0x0a,
0x24, 0x47, 0x4e, 0x47, 0x53, 0x54, 0x2c, 0x31, 0x30, 0x30, 0x33,
0x35, 0x34, 0x2e, 0x36, 0x30, 0x2c, 0x32, 0x35, 0x2c, 0x2c, 0x2c,
0x2c, 0x33, 0x36, 0x2c, 0x31, 0x37, 0x2c, 0x35, 0x32, 0x2a, 0x36,
0x31, 0x0a, 0xb5, 0x62, 0x01, 0x01, 0x14, 0x00, 0x80, 0x9c, 0xc2,
0x16, 0xc6, 0x84, 0x70, 0x1e, 0x22, 0x55, 0xb8, 0xfe, 0xaf, 0xee,
0xa9, 0x16, 0x90, 0x19, 0x00, 0x00, 0x14, 0x9d, 0xb5, 0x62, 0x01,
0x12, 0x24, 0x00, 0x80, 0x9c, 0xc2, 0x16, 0xee, 0xff, 0xff, 0xff,
0xf9, 0xff, 0xff, 0xff, 0xea, 0xff, 0xff, 0xff, 0x1d, 0x00, 0x00,
0x00, 0x13, 0x00, 0x00, 0x00, 0x99, 0xa6, 0x14, 0x02, 0x14, 0x02,
0x00, 0x00, 0x80, 0xa8, 0x12, 0x01, 0xc9, 0x95, 0x24, 0x47, 0x4e,
0x52, 0x4d, 0x43, 0x2c, 0x31, 0x30, 0x30, 0x33, 0x35, 0x34, 0x2e,
0x38, 0x30, 0x2c, 0x56, 0x2c, 0x33, 0x36, 0x34, 0x39, 0x2e};
const unsigned int sample_nmea_gps_len = 1000;
buf->Write(sample_nmea_gps, sample_nmea_gps_len);
buf->Seek(0);
}
CGPSInterface gps;
gps.bindStream(buf);
gps.initialize();
gps.doProcess();
mrpt::hwdrivers::CGenericSensor::TListObservations obss;
gps.getObservations(obss);
EXPECT_EQ(obss.size(), 3U);
if (obss.empty()) return;
auto itObs = obss.begin();
auto obsGPS1 = mrpt::ptr_cast<CObservationGPS>::from(itObs->second);
++itObs;
auto obsGPS2 = mrpt::ptr_cast<CObservationGPS>::from(itObs->second);
++itObs;
auto obsGPS3 = mrpt::ptr_cast<CObservationGPS>::from(itObs->second);
EXPECT_TRUE(obsGPS1);
EXPECT_TRUE(obsGPS2);
EXPECT_TRUE(obsGPS3);
const auto* msg1 = obsGPS1->getMsgByClassPtr<gnss::Message_NMEA_GSA>();
EXPECT_TRUE(msg1 != nullptr);
if (!msg1) return;
EXPECT_EQ(msg1->fields.PRNs[0][0], '1');
EXPECT_EQ(msg1->fields.PRNs[0][1], '5');
EXPECT_NEAR(msg1->fields.HDOP, 2.31, 0.1);
const auto* msg2 = obsGPS2->getMsgByClassPtr<gnss::Message_NMEA_GSA>();
EXPECT_TRUE(msg2 != nullptr);
const auto* msg3 = obsGPS3->getMsgByClassPtr<gnss::Message_NMEA_RMC>();
EXPECT_TRUE(msg3 != nullptr);
if (!msg3) return;
EXPECT_NEAR(msg3->fields.longitude_degrees, -2.407810500, 0.0001);
EXPECT_NEAR(msg3->fields.latitude_degrees, 36.829821500, 0.0001);
}
| [
"joseluisblancoc@gmail.com"
] | joseluisblancoc@gmail.com |
bce32707340743db8e14876b01c8d236ea4339f3 | db111ff94903f0b24658c328d93f5cc28b670b8d | /chrome/browser/component_updater/registration.cc | 54d0ac2e43fb6a3b70fba67b98c773ba19e0a2be | [
"BSD-3-Clause"
] | permissive | nibilin33/chromium | 21e505ab4c6dec858d3b0fe2bfbaf56d023d9f0d | 3dea9ffa737bc9c9a9f58d4bab7074e3bc84f349 | refs/heads/master | 2023-01-16T10:54:57.353825 | 2020-04-02T04:24:11 | 2020-04-02T04:24:11 | 252,359,157 | 1 | 0 | BSD-3-Clause | 2020-04-02T04:57:37 | 2020-04-02T04:57:37 | null | UTF-8 | C++ | false | false | 7,607 | cc | // Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/component_updater/registration.h"
#include "base/path_service.h"
#include "build/branding_buildflags.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/component_updater/crl_set_component_installer.h"
#include "chrome/browser/component_updater/crowd_deny_component_installer.h"
#include "chrome/browser/component_updater/file_type_policies_component_installer.h"
#include "chrome/browser/component_updater/games_component_installer.h"
#include "chrome/browser/component_updater/mei_preload_component_installer.h"
#include "chrome/browser/component_updater/optimization_hints_component_installer.h"
#include "chrome/browser/component_updater/origin_trials_component_installer.h"
#include "chrome/browser/component_updater/safety_tips_component_installer.h"
#include "chrome/browser/component_updater/soda_component_installer.h"
#include "chrome/browser/component_updater/ssl_error_assistant_component_installer.h"
#include "chrome/browser/component_updater/sth_set_component_remover.h"
#include "chrome/browser/component_updater/subresource_filter_component_installer.h"
#include "chrome/browser/component_updater/tls_deprecation_config_component_installer.h"
#include "chrome/common/buildflags.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/pref_names.h"
#include "components/component_updater/component_updater_service.h"
#include "components/component_updater/crl_set_remover.h"
#include "components/component_updater/installer_policies/on_device_head_suggest_component_installer.h"
#include "components/nacl/common/buildflags.h"
#include "device/vr/buildflags/buildflags.h"
#include "third_party/widevine/cdm/buildflags.h"
#if defined(OS_WIN)
#include "chrome/browser/component_updater/sw_reporter_installer_win.h"
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
#include "chrome/browser/component_updater/third_party_module_list_component_installer_win.h"
#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING)
#endif // defined(OS_WIN)
#if defined(OS_WIN)
#include "chrome/browser/component_updater/recovery_improved_component_installer.h"
#else
#include "chrome/browser/component_updater/recovery_component_installer.h"
#endif // defined(OS_WIN)
#if !defined(OS_ANDROID)
#include "chrome/browser/component_updater/intervention_policy_database_component_installer.h"
#include "chrome/browser/resource_coordinator/tab_manager.h"
#endif
#if defined(OS_CHROMEOS)
#include "chrome/browser/component_updater/smart_dim_component_installer.h"
#endif // defined(OS_CHROMEOS)
#if BUILDFLAG(ENABLE_NACL)
#include "chrome/browser/component_updater/pnacl_component_installer.h"
#endif // BUILDFLAG(ENABLE_NACL)
#if BUILDFLAG(ENABLE_PLUGINS)
#include "chrome/browser/component_updater/pepper_flash_component_installer.h"
#endif
#if BUILDFLAG(ENABLE_VR)
#include "chrome/browser/component_updater/vr_assets_component_installer.h"
#endif
#if BUILDFLAG(ENABLE_WIDEVINE_CDM_COMPONENT)
#include "chrome/browser/component_updater/widevine_cdm_component_installer.h"
#endif // BUILDFLAG(ENABLE_WIDEVINE_CDM_COMPONENT)
#if defined(USE_AURA)
#include "ui/aura/env.h"
#endif
#if BUILDFLAG(ENABLE_SUPERVISED_USERS)
#include "chrome/browser/component_updater/supervised_user_whitelist_installer.h"
#endif
namespace component_updater {
void RegisterComponentsForUpdate(bool is_off_the_record_profile,
PrefService* profile_prefs) {
auto* const cus = g_browser_process->component_updater();
#if defined(OS_WIN)
RegisterRecoveryImprovedComponent(cus, g_browser_process->local_state());
#else
// TODO(crbug.com/687231): Implement the Improved component on Mac, etc.
RegisterRecoveryComponent(cus, g_browser_process->local_state());
#endif // defined(OS_WIN)
#if BUILDFLAG(ENABLE_PLUGINS)
RegisterPepperFlashComponent(cus);
#endif
#if BUILDFLAG(ENABLE_WIDEVINE_CDM_COMPONENT)
RegisterWidevineCdmComponent(cus);
#endif // BUILDFLAG(ENABLE_WIDEVINE_CDM_COMPONENT)
#if BUILDFLAG(ENABLE_NACL) && !defined(OS_ANDROID)
#if defined(OS_CHROMEOS)
// PNaCl on Chrome OS is on rootfs and there is no need to download it. But
// Chrome4ChromeOS on Linux doesn't contain PNaCl so enable component
// installer when running on Linux. See crbug.com/422121 for more details.
if (!base::SysInfo::IsRunningOnChromeOS())
#endif // defined(OS_CHROMEOS)
RegisterPnaclComponent(cus);
#endif // BUILDFLAG(ENABLE_NACL) && !defined(OS_ANDROID)
#if BUILDFLAG(ENABLE_SUPERVISED_USERS)
component_updater::SupervisedUserWhitelistInstaller* whitelist_installer =
g_browser_process->supervised_user_whitelist_installer();
whitelist_installer->RegisterComponents();
#endif
RegisterSubresourceFilterComponent(cus);
RegisterOnDeviceHeadSuggestComponent(
cus, g_browser_process->GetApplicationLocale());
RegisterOptimizationHintsComponent(cus, is_off_the_record_profile,
profile_prefs);
base::FilePath path;
if (base::PathService::Get(chrome::DIR_USER_DATA, &path)) {
// The CRLSet component previously resided in a different location: delete
// the old file.
component_updater::DeleteLegacyCRLSet(path);
#if !defined(OS_CHROMEOS) && !defined(OS_ANDROID)
// Clean up previous STH sets that may have been installed. This is not
// done for:
// Android: Because STH sets were never used
// Chrome OS: On Chrome OS, this cleanup is delayed until user login.
component_updater::DeleteLegacySTHSet(path);
#endif
#if !defined(OS_CHROMEOS)
// CRLSetFetcher attempts to load a CRL set from either the local disk or
// network.
// For Chrome OS this registration is delayed until user login.
component_updater::RegisterCRLSetComponent(cus, path);
#endif // !defined(OS_CHROMEOS)
RegisterOriginTrialsComponent(cus, path);
RegisterFileTypePoliciesComponent(cus, path);
RegisterSSLErrorAssistantComponent(cus, path);
}
RegisterMediaEngagementPreloadComponent(cus, base::OnceClosure());
#if defined(OS_WIN)
// SwReporter is only needed for official builds. However, to enable testing
// on chromium build bots, it is always registered here and
// RegisterSwReporterComponent() has support for running only in official
// builds or tests.
RegisterSwReporterComponent(cus);
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
RegisterThirdPartyModuleListComponent(cus);
#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING)
#endif // defined(OS_WIN)
#if !defined(OS_ANDROID)
RegisterInterventionPolicyDatabaseComponent(
cus, g_browser_process->GetTabManager()->intervention_policy_database());
#endif
#if BUILDFLAG(ENABLE_VR)
if (component_updater::ShouldRegisterVrAssetsComponentOnStartup()) {
component_updater::RegisterVrAssetsComponent(cus);
}
#endif
RegisterSafetyTipsComponent(cus, path);
RegisterCrowdDenyComponent(cus, path);
RegisterTLSDeprecationConfigComponent(cus, path);
#if BUILDFLAG(GOOGLE_CHROME_BRANDING) && defined(OS_ANDROID)
component_updater::RegisterGamesComponent(cus, profile_prefs);
#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING) && defined(OS_ANDROID)
if (profile_prefs->GetBoolean(prefs::kLiveCaptionEnabled))
component_updater::RegisterSODAComponent(cus, profile_prefs,
base::OnceClosure());
#if defined(OS_CHROMEOS)
RegisterSmartDimComponent(cus);
#endif // !defined(OS_CHROMEOS)
}
} // namespace component_updater
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
a7604d7a53fb96eeebdfc421e3804b24a5df5f2d | f68c1a09ade5d969f3973246747466e4a540ff74 | /src/prod/src/data/utilities/ConcurrentSkipList.h | d45ab35ad794184434e19e45ec47328f5a191860 | [
"MIT"
] | permissive | GitTorre/service-fabric | ab38752d4cc7c8f2ee03553372c0f3e05911ff67 | 88da19dc5ea8edfe1c9abebe25a5c5079995db63 | refs/heads/master | 2021-04-09T10:57:45.678751 | 2018-08-20T19:17:28 | 2018-08-20T19:17:28 | 125,401,516 | 0 | 0 | MIT | 2018-03-15T17:13:53 | 2018-03-15T17:13:52 | null | UTF-8 | C++ | false | false | 43,613 | h | // ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
#pragma once
#define CONCURRENTSKIPLIST_TAG 'tlSC'
namespace Data
{
namespace Utilities
{
// This is a lock-based concurrent skip list.
//
// SkipList is a probabilistic logarithmic search data structure.
// It is probabilistic because unlike other search data structures (AVL, RedBlackTree, BTree) it does not balance.
//
// SkipList is an ideal data structure to be concurrent because
// 1. Low contention: Only predecessors need to be locked for writes.
// 2. Minimized memory synchronization: Only predecessor nodes whose links are changed are synchronized.
//
// This ConcurrentSkipList provides
// 1. Expected O(log n), Lock-free and wait-free ContainsKey and TryGetValue.
// 2. Expected O(log n), TryAdd, Update and TryRemove.
// 3. Lock-free key enumerations.
//
// Notes:
// Logical delete is used to avaid double skiplist traversal for adds and removes.
// For logical delete, isDeleted mark is used where a node is marked (under lock) to be deleted before it is phsyically removed from the skip list.
//
// Logical insert is used since the node needs to be linked into the list one level at a time.
//
// Invariants:
// List(level1) is a super set of List(level2) iff level1 less than or equal to level2.
// Side effect of this is that nodes are added bottom up and removed top down.
//
// Locks: Bottom up. (Unlock order is irrelevant).
class MonitorLock
{
private:
inline ULONGLONG Encode(DWORD tid)
{
return ((ULONGLONG)tid) << 31 | 0x40000000;
}
inline ULONGLONG GetTid(ULONGLONG Encoded)
{
return Encoded & ~((ULONGLONG)0x3FFFFFFF);
}
inline ULONGLONG GetCount(ULONGLONG Encoded)
{
return Encoded & ((ULONGLONG)0x3FFFFFFF);
}
public:
MonitorLock() : value_(0) {}
void Acquire()
{
ULONGLONG tid = Encode(GetCurrentThreadId());
if (GetTid(value_) != tid)
{
spin_.Acquire();
ULONGLONG oldValue = InterlockedCompareExchange64((volatile LONGLONG*)&value_, tid + 1, 0);
ASSERT_IFNOT(oldValue == 0, "ConcurrentSkipList Acquire() old value is expected to be 0. It is {0}", oldValue);
}
else
{
InterlockedIncrement64((volatile LONGLONG*)&value_);
}
}
void Release()
{
ULONGLONG tid = Encode(GetCurrentThreadId());
ULONGLONG newValue = InterlockedDecrement64((volatile LONGLONG*)&value_);
ASSERT_IFNOT(GetTid(newValue) == tid, "ConcurrentSkipList Release() tid {0} is not equal to GetTid(newValue) {1}", tid, GetTid(newValue));
if (GetCount(newValue) == 0)
{
value_ = 0;
spin_.Release();
}
}
private:
volatile ULONGLONG value_;
KSpinLock spin_;
};
template<typename TKey, typename TValue>
class ConcurrentSkipList sealed :
public KObject<ConcurrentSkipList<TKey, TValue>>,
public KShared<ConcurrentSkipList<TKey, TValue>>
{
K_FORCE_SHARED(ConcurrentSkipList)
public:
typedef KDelegate<int(__in const TKey& KeyOne, __in const TKey& KeyTwo)> ComparisonFunctionType;
typedef KDelegate<TValue(__in const TKey& Key, __in const TValue& Value)> UpdateFunctionType;
typedef KDelegate<TValue(__in const TKey& Key)> ValueFactoryType;
private:
class SearchResult;
class SearchResultForRead;
public:
class Node;
class Enumerator;
private:
static const int InvalidLevel = -1;
static const int BottomLevel = 0;
static const int DefaultNumberOfLevels = 32;
static constexpr double DefaultPromotionProbability = 0.5;
private:
int numberOfLevels_;
int topLevel_;
double promotionProbability_;
ThreadSafeSPtrCache<Node> head_ = { nullptr };
ThreadSafeSPtrCache<Node> tail_ = { nullptr };
typename IComparer<TKey>::SPtr keyComparer_;
RandomGenerator randomGenerator_;
public:
static NTSTATUS Create(
__in KAllocator & allocator,
__out SPtr & result)
{
NTSTATUS status;
KSharedPtr<IComparer<TKey>> comparer;
status = DefaultComparer<TKey>::Create(allocator, comparer);
if (!NT_SUCCESS(status))
{
return status;
}
return Create(comparer,
DefaultNumberOfLevels,
DefaultPromotionProbability,
allocator,
result);
}
static NTSTATUS Create(
__in KSharedPtr<IComparer<TKey>> const & comparer,
__in KAllocator & allocator,
__out SPtr & result)
{
return Create(comparer,
DefaultNumberOfLevels,
DefaultPromotionProbability,
allocator,
result);
}
static NTSTATUS Create(
__in KSharedPtr<IComparer<TKey>> const & comparer,
__in LONG32 numberOfLevels,
__in double promotionProbability,
__in KAllocator & allocator,
__out SPtr & result)
{
NTSTATUS status;
SPtr output = _new(CONCURRENTSKIPLIST_TAG, allocator) ConcurrentSkipList(comparer, numberOfLevels, promotionProbability, allocator);
if (!output)
{
status = STATUS_INSUFFICIENT_RESOURCES;
return status;
}
status = output->Status();
if (!NT_SUCCESS(status))
{
return status;
}
result = Ktl::Move(output);
return STATUS_SUCCESS;
}
private:
FAILABLE ConcurrentSkipList(
__in KSharedPtr<IComparer<TKey>> const & keyComparer,
__in int numberOfLevels,
__in double promotionProbability,
__in KAllocator & allocator)
: keyComparer_(keyComparer),
numberOfLevels_(numberOfLevels),
topLevel_(numberOfLevels - 1),
promotionProbability_(promotionProbability)
{
ASSERT_IFNOT(numberOfLevels > 0, "Invalid number of levels: {0}", numberOfLevels);
ASSERT_IFNOT(promotionProbability > 0, "Invalid promotion probability: {0}", promotionProbability);
ASSERT_IFNOT(promotionProbability < 1, "Invalid promotion probability: {0}", promotionProbability);
typename Node::SPtr headNode = _new(CONCURRENTSKIPLIST_TAG, allocator) Node(Node::NodeType::Head, topLevel_);
if (headNode == nullptr)
{
this->SetConstructorStatus(STATUS_INSUFFICIENT_RESOURCES);
}
this->head_.Put(Ktl::Move(headNode));
headNode = this->head_.Get();
typename Node::SPtr tailNode = _new(CONCURRENTSKIPLIST_TAG, allocator) Node(Node::NodeType::Tail, topLevel_);
if (tailNode == nullptr)
{
this->SetConstructorStatus(STATUS_INSUFFICIENT_RESOURCES);
}
this->tail_.Put(Ktl::Move(tailNode));
tailNode = this->tail_.Get();
// Always link in bottom up.
for (int level = 0; level <= topLevel_; level++)
{
typename Node::SPtr cachedTailNode = this->tail_.Get();
headNode->SetNextNode(level, cachedTailNode);
}
headNode->IsInserted = true;
tailNode->IsInserted = true;
}
public:
__declspec(property(get = get_Count)) ULONG Count;
ULONG ConcurrentSkipList::get_Count()
{
return GetCount(BottomLevel);
}
__declspec(property(get = get_IsEmpty)) bool IsEmpty;
bool ConcurrentSkipList::get_IsEmpty()
{
return get_Count() == 0;
}
void Clear()
{
typename Node::SPtr cachedHead = head_.Get();
for (int level = 0; level <= topLevel_; level++)
{
typename Node::SPtr cachedTail = tail_.Get();
cachedHead->SetNextNode(level, cachedTail);
}
}
bool ContainsKey(__in TKey const & key) const
{
auto searchResult = this->WeakSearchForRead(key);
// If node is not found, not logically inserted or logically removed, return false.
if (searchResult->IsFound && searchResult->SearchNode->IsInserted && searchResult->SearchNode->IsDeleted == false)
{
return true;
}
return false;
}
KSharedPtr<Node> Head() const
{
return head_.Get();
}
// Finds the node for the key >= the given key
KSharedPtr<Node> FindNode(__in TKey const & key) const
{
auto searchResult = this->WeakSearchForRead(key);
return searchResult->GetNode();
}
bool TryGetValue(__in TKey const & key, __out TValue & value)
{
typename SearchResultForRead::SPtr searchResult = WeakSearchForRead(key);
if (!searchResult->IsFound)
{
return false;
}
typename Node::SPtr node = searchResult->SearchNode;
if (!node->IsInserted || node->IsDeleted)
{
return false;
}
node->Lock();
KFinally([&]()
{
node->Unlock();
});
if (node->IsDeleted)
{
return false;
}
value = node->Value;
return true;
}
template <typename ValueFactory,
typename UpdateValueFactory>
TValue AddOrUpdate(
__in TKey const & key,
__in ValueFactory valueFactory,
__in UpdateValueFactory updateValueFactory)
{
auto nodeUpdateFunc = [&] (__in typename Node::SPtr & node)
{
node->Value = updateValueFactory(key, node->Value);
};
return GetOrAddOrUpdate(key, valueFactory, nodeUpdateFunc);
}
template <typename UpdateValueFactory>
TValue AddOrUpdate(
__in TKey const & key,
__in TValue const & value,
__in UpdateValueFactory updateValueFactory)
{
auto valueFactory = [&] (TKey const &)
{
return value;
};
return AddOrUpdate(key, valueFactory, updateValueFactory);
}
template <typename ValueFactoryFunc>
TValue GetOrAdd(
__in TKey const & key,
__in ValueFactoryFunc valueFactory,
__out_opt bool * added = nullptr)
{
auto nodeUpdateFunc = [] (__in typename Node::SPtr &)
{
return;
};
return GetOrAddOrUpdate(key, valueFactory, nodeUpdateFunc, added);
}
TValue GetOrAdd(
__in TKey const & key,
__in TValue const & value)
{
auto valueFactory = [&] (TKey const &)
{
return value;
};
return GetOrAdd(key, valueFactory);
}
bool TryAdd(
__in TKey const & key,
__in TValue const & value)
{
bool added = false;
auto valueFactory = [&] (TKey const &)
{
return value;
};
GetOrAdd(key, valueFactory, &added);
return added;
}
template <typename ValueEqualFunc>
bool TryUpdate(
__in TKey const & key,
__in TValue const & newValue,
__in TValue const & comparisonValue,
__in ValueEqualFunc valueEqualFunc)
{
typename SearchResult::SPtr searchResult = this->WeakSearch(key);
typename Node::SPtr nodeToBeUpdated = nullptr;
if (searchResult->IsFound)
{
nodeToBeUpdated = searchResult->GetNodeFound();
}
if (searchResult->IsFound == false || nodeToBeUpdated->IsInserted == false || nodeToBeUpdated->IsDeleted)
{
return false;
}
nodeToBeUpdated = searchResult->GetNodeFound();
nodeToBeUpdated->Lock();
KFinally([&]()
{
nodeToBeUpdated->Unlock();
});
if (nodeToBeUpdated->IsDeleted)
{
return false;
}
if (!valueEqualFunc(nodeToBeUpdated->Value, comparisonValue)) {
return false;
}
nodeToBeUpdated->Value = newValue;
return true;
}
bool TryUpdate(
__in TKey const & key,
__in TValue const & newValue,
__in TValue const & comparisonValue)
{
auto valueEqualFunc = [] (__in TValue const & lhs, __in TValue const & rhs)
{
return lhs == rhs;
};
return TryUpdate(key, newValue, comparisonValue, valueEqualFunc);
}
void Update(
__in TKey const & key,
__in TValue const & value)
{
typename SearchResult::SPtr searchResult = this->WeakSearch(key);
typename Node::SPtr nodeToBeUpdated = nullptr;
if (searchResult->IsFound)
{
nodeToBeUpdated = searchResult->GetNodeFound();
}
if (searchResult->IsFound == false || nodeToBeUpdated->IsInserted == false || nodeToBeUpdated->IsDeleted)
{
throw ktl::Exception(STATUS_INVALID_PARAMETER_1);
}
nodeToBeUpdated = searchResult->GetNodeFound();
nodeToBeUpdated->Lock();
KFinally([&]()
{
nodeToBeUpdated->Unlock();
});
try
{
if (nodeToBeUpdated->IsDeleted)
{
throw ktl::Exception(STATUS_INVALID_PARAMETER);
}
nodeToBeUpdated->Value = value;
}
catch(...)
{
throw;
}
}
void Update(
__in TKey const & key,
__in UpdateFunctionType updateFunction)
{
typename SearchResult::SPtr searchResult = this->WeakSearch(key);
typename Node::SPtr nodeToBeUpdated = nullptr;
if (searchResult->IsFound)
{
nodeToBeUpdated = searchResult->GetNodeFound();
}
if (searchResult->IsFound == false || nodeToBeUpdated->IsInserted == false || nodeToBeUpdated->IsDeleted)
{
throw ktl::Exception(STATUS_INVALID_PARAMETER);
}
nodeToBeUpdated = searchResult->GetNodeFound();
nodeToBeUpdated->Lock();
KFinally([&]()
{
nodeToBeUpdated->Unlock();
});
try
{
if (nodeToBeUpdated->IsDeleted)
{
throw ktl::Exception(STATUS_INVALID_PARAMETER);
}
auto newValue = updateFunction(key, nodeToBeUpdated->Value);
nodeToBeUpdated->Value = newValue;
}
catch(...)
{
throw;
}
}
bool TryRemove(
__in TKey const & key,
__out TValue & value)
{
// Node to be deleted (if it exists).
typename Node::SPtr nodeToBeDeleted = nullptr;
// Indicates whether the node to be deleted is already locked and logically marked as deleted.
bool isLogicallyDeleted = false;
// Level at which the to be deleted node was found.
int topLevel = InvalidLevel;
while (true)
{
typename SearchResult::SPtr searchResult = this->WeakSearch(key);
if (searchResult->IsFound)
{
nodeToBeDeleted = searchResult->GetNodeFound();
}
// MCoskun: Why do we have a top level check?
// A node gets physically linked from level 0 up to its top level.
// Top level check ensures that we found the node at the level we were expecting it.
// Due to the lock-free nature of weak-search, there is a race between predecessors being physically linked to the node and node being marked logically inserted.
// It is possible for the weak search to snap predecessors in between the above points, then node gets marked as logically inserted and then the IsInserted below happening.
if (!isLogicallyDeleted && (searchResult->IsFound == false || nodeToBeDeleted->IsInserted == false || nodeToBeDeleted->TopLevel != searchResult->LevelFound || nodeToBeDeleted->IsDeleted))
{
return false;
}
// If not already logically removed, lock it and mark it.
if (!isLogicallyDeleted)
{
topLevel = searchResult->LevelFound;
nodeToBeDeleted->Lock();
if (nodeToBeDeleted->IsDeleted)
{
nodeToBeDeleted->Unlock();
return false;
}
// Linearization point: IsDeleted is volatile.
nodeToBeDeleted->IsDeleted = true;
isLogicallyDeleted = true;
}
int highestLevelLocked = InvalidLevel;
KFinally([&]()
{
for (int level = highestLevelLocked; level >= 0; level--)
{
searchResult->GetPredecessor(level)->Unlock();
}
});
try
{
bool isValid = true;
for (int level = 0; isValid && level <= topLevel; level++)
{
auto predecessor = searchResult->GetPredecessor(level);
predecessor->Lock();
highestLevelLocked = level;
isValid = predecessor->IsDeleted == false && predecessor->GetNextNode(level) == nodeToBeDeleted;
}
if (isValid == false)
{
KNt::YieldExecution();
continue;
}
// MCoskun: To preserve the invariant that lower levels are super-set of higher levels, always unlink top to bottom.
// Memory Barrier could have been used to guarantee above but the node is already under lock
for (int level = topLevel; level >= 0; level--)
{
auto predecessor = searchResult->GetPredecessor(level);
auto newLink = nodeToBeDeleted->GetNextNode(level);
predecessor->SetNextNode(level, newLink);
}
// This requires that not between the nodeToBeDeleted.Lock and this throws.
nodeToBeDeleted->Unlock();
value = nodeToBeDeleted->Value;
#ifdef DBG
// This is an expensive assert that ensures that the node is physically removed from the skip list.
auto temp = this->WeakSearch(key);
ASSERT_IFNOT(temp->IsFound == false, "Node not removed from skip list");
#endif
return true;
}
catch(...)
{
throw;
}
}
}
private:
template <typename ValueFactory,
typename NodeUpdateFunc>
TValue GetOrAddOrUpdate(
__in TKey const & key,
__in ValueFactory valueFactory,
__in NodeUpdateFunc nodeUpdateFunc,
__out_opt bool * added = nullptr)
{
int insertLevel = this->GenerateLevel();
while (true)
{
typename SearchResult::SPtr searchResult = WeakSearch(key);
if (searchResult->IsFound)
{
typename Node::SPtr cachedNodeToBeUpdated = searchResult->GetNodeFound();
if (cachedNodeToBeUpdated->IsDeleted)
{
continue;
}
// Spin until the duplicate key is logically inserted.
this->WaitUntilIsInserted(cachedNodeToBeUpdated);
cachedNodeToBeUpdated->Lock();
KFinally([&]()
{
cachedNodeToBeUpdated->Unlock();
});
if (cachedNodeToBeUpdated->IsDeleted)
{
continue;
}
nodeUpdateFunc(cachedNodeToBeUpdated);
if (added)
{
*added = false;
}
return cachedNodeToBeUpdated->Value;
}
int highestLevelLocked = InvalidLevel;
KFinally([&]()
{
// Unlock order is not important.
for (int level = highestLevelLocked; level >= 0; level--)
{
searchResult->GetPredecessor(level)->Unlock();
}
});
try
{
bool isValid = true;
for (int level = 0; isValid && level <= insertLevel; level++)
{
auto predecessor = searchResult->GetPredecessor(level);
auto successor = searchResult->GetSuccessor(level);
predecessor->Lock();
highestLevelLocked = level;
// If predecessor is locked and the predecessor is still pointing at the successor, successor cannot be deleted.
isValid = this->IsValidLevel(predecessor, successor, level);
}
if (isValid == false)
{
continue;
}
// Create the new node and initialize all the next pointers.
TValue value = valueFactory(key);
typename Node::SPtr newNode = _new(CONCURRENTSKIPLIST_TAG, this->GetThisAllocator()) Node(key, value, insertLevel);
if (newNode == nullptr)
{
throw ktl::Exception(STATUS_INSUFFICIENT_RESOURCES);
}
for (int level = 0; level <= insertLevel; level++)
{
newNode->SetNextNode(level, searchResult->GetSuccessor(level));
}
// MCoskun: Ensure that the node is fully initialized before physical linking starts.
MemoryBarrier();
for (int level = 0; level <= insertLevel; level++)
{
// MCoskun: Note that this is required for correctness.
// Remove takes a dependency of the fact that if found at expected level, all the predecessors have already been correctly linked.
// Hence we only need to use a MemoryBarrier before linking in the top level.
if (level == insertLevel)
{
MemoryBarrier();
}
searchResult->GetPredecessor(level)->SetNextNode(level, newNode);
}
// Linearization point: MemoryBarrier not required since IsInserted is a volatile member (hence implicitly uses MemoryBarrier).
newNode->IsInserted = true;
if (added)
{
*added = true;
}
return value;
}
catch(...)
{
throw;
}
}
}
int GetCount(__in int level)
{
int count = 0;
typename Node::SPtr current = this->head_.Get();
while (true)
{
current = current->GetNextNode(level);
ASSERT_IFNOT(current->Type != Node::Head, "Corrupted internal list");
// If current is tail, this must be the end of the list.
if (current->Type == Node::Tail)
{
return count;
}
count++;
}
}
void Verify()
{
// Verify the invariant that lower level lists are always super-set of higher-level lists.
for (int i = BottomLevel; i < this->topLevel_; i++)
{
auto lowLevelCount = this->GetCount(i);
auto highLevelCount = this->GetCount(i + 1);
ASSERT_IFNOT(
lowLevelCount >= highLevelCount,
"Lower level lists should be superset of higher level lists - low level count: {0}, high level count: {1}",
lowLevelcount, highLevelCount);
}
}
inline void WaitUntilIsInserted(__in typename Node::SPtr const & node)
{
while (node->IsInserted == false)
{
KNt::YieldExecution();
}
}
inline int GenerateLevel()
{
int level = 0;
while (level < this->topLevel_)
{
double divineChoice = randomGenerator_.NextDouble();
if (divineChoice <= this->promotionProbability_)
{
level++;
}
else
{
break;
}
}
#ifdef DBG
ASSERT_IFNOT(level > InvalidLevel && level <= this->topLevel_, "Invalid level: {0}", level);
#endif
return level;
}
typename SearchResult::SPtr WeakSearch(__in TKey const & key) const
{
int levelFound = InvalidLevel;
typename ShareableArray<ThreadSafeSPtrCache<Node>>::SPtr predecessorArray = nullptr;
NTSTATUS status = ShareableArray<ThreadSafeSPtrCache<Node>>::Create(this->GetThisAllocator(), predecessorArray, this->numberOfLevels_, this->numberOfLevels_, 0);
if (!NT_SUCCESS(status))
{
throw ktl::Exception(status);
}
typename ShareableArray<ThreadSafeSPtrCache<Node>>::SPtr successorArray = nullptr;
status = ShareableArray<ThreadSafeSPtrCache<Node>>::Create(this->GetThisAllocator(), successorArray, this->numberOfLevels_, this->numberOfLevels_, 0);
if (!NT_SUCCESS(status))
{
throw ktl::Exception(status);
}
typename Node::SPtr predecessor = this->head_.Get();
for (int level = this->topLevel_; level >= 0; level--)
{
// TODO: Is MemoryBarrier required?
typename Node::SPtr current = predecessor->GetNextNode(level);
while (true)
{
int nodeComparison = this->Compare(current, key);
if (levelFound == InvalidLevel && nodeComparison == 0)
{
levelFound = level;
}
// current is >= searchKey, search at this level is over.
if (nodeComparison >= 0)
{
(*predecessorArray)[level].Put(predecessor.RawPtr());
(*successorArray)[level].Put(current.RawPtr());
break;
}
predecessor = Ktl::Move(current);
current = predecessor->GetNextNode(level);
}
}
#ifdef DBG
ASSERT_IFNOT(levelFound >= InvalidLevel && levelFound <= this->topLevel_, "Invalid level found: {0}", levelFound);
#endif
typename SearchResult::SPtr result = _new(CONCURRENTSKIPLIST_TAG, this->GetThisAllocator()) SearchResult(levelFound, predecessorArray, successorArray);
if (result == nullptr)
{
throw ktl::Exception(STATUS_INSUFFICIENT_RESOURCES);
}
return result;
}
typename SearchResultForRead::SPtr WeakSearchForRead(__in TKey const & key) const
{
int levelFound = InvalidLevel;
typename Node::SPtr predecessor = this->head_.Get();
typename Node::SPtr current = nullptr;
for (int level = this->topLevel_; level >= 0; level--)
{
// TODO: Is MemoryBarrier required?
current = predecessor->GetNextNode(level);
while (true)
{
int nodeComparison = this->Compare(current, key);
if (levelFound == InvalidLevel && nodeComparison == 0)
{
levelFound = level;
}
// current is >= searchKey, search at this level is over.
if (nodeComparison >= 0)
{
break;
}
predecessor = current;
current = predecessor->GetNextNode(level);
}
}
#ifdef DBG
ASSERT_IFNOT(levelFound >= InvalidLevel && levelFound <= this->topLevel_, "Invalid level found: {0}", levelFound);
#endif
typename SearchResultForRead::SPtr result = _new(CONCURRENTSKIPLIST_TAG, this->GetThisAllocator()) SearchResultForRead(levelFound, *current);
if (result == nullptr)
{
throw ktl::Exception(STATUS_INSUFFICIENT_RESOURCES);
}
return result;
}
int Compare(typename Node::SPtr const & node, TKey const & key) const
{
if (node->Type == Node::NodeType::Head)
{
return -1;
}
if (node->Type == Node::NodeType::Tail)
{
return 1;
}
return this->keyComparer_->Compare(node->Key, key);
}
bool IsValidLevel(typename Node::SPtr const & predecessor, typename Node::SPtr const & successor, int level)
{
ASSERT_IFNOT(predecessor != nullptr, "Predecessor is null");
ASSERT_IFNOT(successor != nullptr, "Successor is null");
return predecessor->IsDeleted == false && successor->IsDeleted == false && predecessor->GetNextNode(level) == successor;
}
public:
class Node :
public KObject<Node>,
public KShared<Node>
{
K_FORCE_SHARED(Node)
public:
enum NodeType : unsigned char
{
Head = 0,
Tail = 1,
Data = 2
};
Node(__in NodeType nodeType, __in int height)
: nodeType_(nodeType),
key_(),
value_(),
isInserted_(false),
isDeleted_(false)
{
NTSTATUS status = ShareableArray<ThreadSafeSPtrCache<Node>>::Create(this->GetThisAllocator(), nextNodeArray_, height + 1, height + 1, 0);
if (!NT_SUCCESS(status))
{
this->SetConstructorStatus(status);
}
}
Node(__in TKey const & key, __in TValue const & value, __in int height)
: nodeType_(NodeType::Data),
key_(key),
value_(value),
isInserted_(false),
isDeleted_(false)
{
NTSTATUS status = ShareableArray<ThreadSafeSPtrCache<Node>>::Create(this->GetThisAllocator(), nextNodeArray_, height + 1, height + 1, 0);
if (!NT_SUCCESS(status))
{
this->SetConstructorStatus(status);
}
}
__declspec(property(get = get_Key)) TKey const & Key;
TKey const & get_Key() const
{
return key_;
}
__declspec(property(get = get_Value, put = put_Value)) TValue const & Value;
TValue const & get_Value() const
{
return value_;
}
void put_Value(TValue const & val)
{
value_ = val;
}
__declspec(property(get = get_Type)) NodeType Type;
NodeType get_Type() const
{
return nodeType_;
}
__declspec(property(get = get_IsInserted, put = put_IsInserted)) bool IsInserted;
bool get_IsInserted() const
{
return isInserted_;
}
void put_IsInserted(bool val)
{
isInserted_ = val;
}
__declspec(property(get = get_IsDeleted, put = put_IsDeleted)) bool IsDeleted;
bool get_IsDeleted() const
{
return isDeleted_;
}
void put_IsDeleted(bool val)
{
isDeleted_ = val;
}
__declspec(property(get = get_TopLevel)) int TopLevel;
int get_TopLevel() const
{
return nextNodeArray_->Count() - 1;;
}
SPtr GetNextNode(__in int height) const
{
return (*nextNodeArray_)[height].Get();
}
void SetNextNode(__in int height, __in SPtr const & next)
{
typename Node::SPtr nextCast = const_cast<Node *>(next.RawPtr());
(*nextNodeArray_)[height].Put(Ktl::Move(nextCast));
//(*nextNodeArray_)[height] = next;
}
void Lock()
{
nodeLock_.Acquire();
}
void Unlock()
{
nodeLock_.Release();
}
private:
mutable MonitorLock nodeLock_;
KSharedPtr<ShareableArray<ThreadSafeSPtrCache<Node>>> nextNodeArray_;
NodeType nodeType_;
TKey key_;
TValue value_;
volatile bool isInserted_;
volatile bool isDeleted_;
};
private:
class SearchResult :
public KObject<SearchResult>,
public KShared<SearchResult>
{
K_FORCE_SHARED(SearchResult)
private:
int levelFound_;
typename ShareableArray<ThreadSafeSPtrCache<Node>>::SPtr predecessorArray_;
typename ShareableArray<ThreadSafeSPtrCache<Node>>::SPtr successorArray_;
public:
SearchResult(
__in int lvlFound,
__in typename ShareableArray<ThreadSafeSPtrCache<Node>>::SPtr const & predArray,
__in typename ShareableArray<ThreadSafeSPtrCache<Node>>::SPtr const & succArray)
: levelFound_(lvlFound),
predecessorArray_(predArray),
successorArray_(succArray)
{
}
__declspec(property(get = get_LevelFound)) int LevelFound;
int get_LevelFound() const
{
return this->levelFound_;
}
__declspec(property(get = get_IsFound)) bool IsFound;
bool get_IsFound() const
{
return this->levelFound_ != InvalidLevel;
}
typename Node::SPtr GetPredecessor(int level)
{
ASSERT_IFNOT(this->predecessorArray_ != nullptr, "Predecessor array is null");
return (*predecessorArray_)[level].Get();
}
typename Node::SPtr GetSuccessor(int level)
{
ASSERT_IFNOT(this->successorArray_ != nullptr, "Successor array is null");
return (*successorArray_)[level].Get();
}
typename Node::SPtr GetNodeFound()
{
#ifdef DBG
ASSERT_IFNOT(this->successorArray_ != nullptr, "Successor array is null");
ASSERT_IFNOT(this->IsFound, "Node not found");
#endif
return (*successorArray_)[levelFound_].Get();
}
};
class SearchResultForRead :
public KObject<SearchResultForRead>,
public KShared<SearchResultForRead>
{
K_FORCE_SHARED(SearchResultForRead)
private:
int levelFound_;
typename ThreadSafeSPtrCache<Node> searchNode_ = { nullptr };
public:
SearchResultForRead(
__in int levelFound,
__in Node& node)
: levelFound_(levelFound)
{
typename Node::SPtr nodeSPtr = &node;
searchNode_.Put(Ktl::Move(nodeSPtr));
}
__declspec(property(get = get_LevelFound)) int LevelFound;
int get_LevelFound() const
{
return this->levelFound_;
}
__declspec(property(get = get_IsFound)) bool IsFound;
bool get_IsFound() const
{
return this->levelFound_ != InvalidLevel;
}
__declspec(property(get = get_SearchNode)) typename Node::SPtr SearchNode;
typename Node::SPtr get_SearchNode() const
{
#ifdef DBG
ASSERT_IFNOT(this->IsFound, "Node not found");
#endif
return this->searchNode_.Get();
}
typename Node::SPtr GetNode() const
{
return this->searchNode_.Get();
}
};
};
template<typename TKey, typename TValue>
ConcurrentSkipList<TKey, TValue>::~ConcurrentSkipList()
{
}
template<typename TKey, typename TValue>
ConcurrentSkipList<TKey, TValue>::Node::~Node()
{
}
template<typename TKey, typename TValue>
ConcurrentSkipList<TKey, TValue>::SearchResult::~SearchResult()
{
}
template<typename TKey, typename TValue>
ConcurrentSkipList<TKey, TValue>::SearchResultForRead::~SearchResultForRead()
{
}
}
}
| [
"noreply-sfteam@microsoft.com"
] | noreply-sfteam@microsoft.com |
f95ab6338a222a70d826cc239bb621063994a7fb | 83fd474d6a906c00d82f7bd274f13d5294f26c12 | /Test/googletest/include/gtest/gtest.h | 4e8d6c1534931bf1a45b27c3e873fe94f12e37a8 | [
"BSD-3-Clause"
] | permissive | andre3pazo/Laboratorio-Paoletti | dc5076e1f945e323b61a226f62bab42d6f75d57a | d65a73a35b37c346c2b734ec8fa0e070e6d732a0 | refs/heads/master | 2021-02-17T15:45:17.725837 | 2020-04-18T14:55:12 | 2020-04-18T14:55:12 | 245,108,825 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 94,412 | h | // Copyright 2005, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// The Google C++ Testing and Mocking Framework (Google Test)
//
// This header file defines the public API for Google Test. It should be
// included by any test program that uses Google Test.
//
// IMPORTANT NOTE: Due to limitation of the C++ language, we have to
// leave some internal implementation details in this header file.
// They are clearly marked by comments like this:
//
// // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
//
// Such code is NOT meant to be used by a user directly, and is subject
// to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user
// program!
//
// Acknowledgment: Google Test borrowed the idea of automatic test
// registration from Barthelemy Dagenais' (barthelemy@prologique.com)
// easyUnit framework.
// GOOGLETEST_CM0001 DO NOT DELETE
#ifndef GTEST_INCLUDE_GTEST_GTEST_H_
#define GTEST_INCLUDE_GTEST_GTEST_H_
#include <cstddef>
#include <limits>
#include <memory>
#include <ostream>
#include <type_traits>
#include <vector>
#include "googletest/include/gtest/internal/gtest-internal.h"
#include "googletest/include/gtest/internal/gtest-string.h"
#include "googletest/include/gtest/gtest-death-test.h"
#include "googletest/include/gtest/gtest-matchers.h"
#include "googletest/include/gtest/gtest-message.h"
#include "googletest/include/gtest/gtest-param-test.h"
#include "googletest/include/gtest/gtest-printers.h"
#include "googletest/include/gtest/gtest_prod.h"
#include "googletest/include/gtest/gtest-test-part.h"
#include "googletest/include/gtest/gtest-typed-test.h"
GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \
/* class A needs to have dll-interface to be used by clients of class B */)
namespace testing {
// Silence C4100 (unreferenced formal parameter) and 4805
// unsafe mix of type 'const int' and type 'const bool'
#ifdef _MSC_VER
# pragma warning(push)
# pragma warning(disable:4805)
# pragma warning(disable:4100)
#endif
// Declares the flags.
// This flag temporary enables the disabled tests.
GTEST_DECLARE_bool_(also_run_disabled_tests);
// This flag brings the debugger on an assertion failure.
GTEST_DECLARE_bool_(break_on_failure);
// This flag controls whether Google Test catches all test-thrown exceptions
// and logs them as failures.
GTEST_DECLARE_bool_(catch_exceptions);
// This flag enables using colors in terminal output. Available values are
// "yes" to enable colors, "no" (disable colors), or "auto" (the default)
// to let Google Test decide.
GTEST_DECLARE_string_(color);
// This flag sets up the filter to select by name using a glob pattern
// the tests to run. If the filter is not given all tests are executed.
GTEST_DECLARE_string_(filter);
// This flag controls whether Google Test installs a signal handler that dumps
// debugging information when fatal signals are raised.
GTEST_DECLARE_bool_(install_failure_signal_handler);
// This flag causes the Google Test to list tests. None of the tests listed
// are actually run if the flag is provided.
GTEST_DECLARE_bool_(list_tests);
// This flag controls whether Google Test emits a detailed XML report to a file
// in addition to its normal textual output.
GTEST_DECLARE_string_(output);
// This flags control whether Google Test prints the elapsed time for each
// test.
GTEST_DECLARE_bool_(print_time);
// This flags control whether Google Test prints UTF8 characters as text.
GTEST_DECLARE_bool_(print_utf8);
// This flag specifies the random number seed.
GTEST_DECLARE_int32_(random_seed);
// This flag sets how many times the tests are repeated. The default value
// is 1. If the value is -1 the tests are repeating forever.
GTEST_DECLARE_int32_(repeat);
// This flag controls whether Google Test includes Google Test internal
// stack frames in failure stack traces.
GTEST_DECLARE_bool_(show_internal_stack_frames);
// When this flag is specified, tests' order is randomized on every iteration.
GTEST_DECLARE_bool_(shuffle);
// This flag specifies the maximum number of stack frames to be
// printed in a failure message.
GTEST_DECLARE_int32_(stack_trace_depth);
// When this flag is specified, a failed assertion will throw an
// exception if exceptions are enabled, or exit the program with a
// non-zero code otherwise. For use with an external test framework.
GTEST_DECLARE_bool_(throw_on_failure);
// When this flag is set with a "host:port" string, on supported
// platforms test results are streamed to the specified port on
// the specified host machine.
GTEST_DECLARE_string_(stream_result_to);
#if GTEST_USE_OWN_FLAGFILE_FLAG_
GTEST_DECLARE_string_(flagfile);
#endif // GTEST_USE_OWN_FLAGFILE_FLAG_
// The upper limit for valid stack trace depths.
const int kMaxStackTraceDepth = 100;
namespace internal {
class AssertHelper;
class DefaultGlobalTestPartResultReporter;
class ExecDeathTest;
class NoExecDeathTest;
class FinalSuccessChecker;
class GTestFlagSaver;
class StreamingListenerTest;
class TestResultAccessor;
class TestEventListenersAccessor;
class TestEventRepeater;
class UnitTestRecordPropertyTestHelper;
class WindowsDeathTest;
class FuchsiaDeathTest;
class UnitTestImpl* GetUnitTestImpl();
void ReportFailureInUnknownLocation(TestPartResult::Type result_type,
const std::string& message);
std::set<std::string>* GetIgnoredParameterizedTestSuites();
} // namespace internal
// The friend relationship of some of these classes is cyclic.
// If we don't forward declare them the compiler might confuse the classes
// in friendship clauses with same named classes on the scope.
class Test;
class TestSuite;
// Old API is still available but deprecated
#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
using TestCase = TestSuite;
#endif
class TestInfo;
class UnitTest;
// A class for indicating whether an assertion was successful. When
// the assertion wasn't successful, the AssertionResult object
// remembers a non-empty message that describes how it failed.
//
// To create an instance of this class, use one of the factory functions
// (AssertionSuccess() and AssertionFailure()).
//
// This class is useful for two purposes:
// 1. Defining predicate functions to be used with Boolean test assertions
// EXPECT_TRUE/EXPECT_FALSE and their ASSERT_ counterparts
// 2. Defining predicate-format functions to be
// used with predicate assertions (ASSERT_PRED_FORMAT*, etc).
//
// For example, if you define IsEven predicate:
//
// testing::AssertionResult IsEven(int n) {
// if ((n % 2) == 0)
// return testing::AssertionSuccess();
// else
// return testing::AssertionFailure() << n << " is odd";
// }
//
// Then the failed expectation EXPECT_TRUE(IsEven(Fib(5)))
// will print the message
//
// Value of: IsEven(Fib(5))
// Actual: false (5 is odd)
// Expected: true
//
// instead of a more opaque
//
// Value of: IsEven(Fib(5))
// Actual: false
// Expected: true
//
// in case IsEven is a simple Boolean predicate.
//
// If you expect your predicate to be reused and want to support informative
// messages in EXPECT_FALSE and ASSERT_FALSE (negative assertions show up
// about half as often as positive ones in our tests), supply messages for
// both success and failure cases:
//
// testing::AssertionResult IsEven(int n) {
// if ((n % 2) == 0)
// return testing::AssertionSuccess() << n << " is even";
// else
// return testing::AssertionFailure() << n << " is odd";
// }
//
// Then a statement EXPECT_FALSE(IsEven(Fib(6))) will print
//
// Value of: IsEven(Fib(6))
// Actual: true (8 is even)
// Expected: false
//
// NB: Predicates that support negative Boolean assertions have reduced
// performance in positive ones so be careful not to use them in tests
// that have lots (tens of thousands) of positive Boolean assertions.
//
// To use this class with EXPECT_PRED_FORMAT assertions such as:
//
// // Verifies that Foo() returns an even number.
// EXPECT_PRED_FORMAT1(IsEven, Foo());
//
// you need to define:
//
// testing::AssertionResult IsEven(const char* expr, int n) {
// if ((n % 2) == 0)
// return testing::AssertionSuccess();
// else
// return testing::AssertionFailure()
// << "Expected: " << expr << " is even\n Actual: it's " << n;
// }
//
// If Foo() returns 5, you will see the following message:
//
// Expected: Foo() is even
// Actual: it's 5
//
class GTEST_API_ AssertionResult {
public:
// Copy constructor.
// Used in EXPECT_TRUE/FALSE(assertion_result).
AssertionResult(const AssertionResult& other);
// C4800 is a level 3 warning in Visual Studio 2015 and earlier.
// This warning is not emitted in Visual Studio 2017.
// This warning is off by default starting in Visual Studio 2019 but can be
// enabled with command-line options.
#if defined(_MSC_VER) && (_MSC_VER < 1910 || _MSC_VER >= 1920)
GTEST_DISABLE_MSC_WARNINGS_PUSH_(4800 /* forcing value to bool */)
#endif
// Used in the EXPECT_TRUE/FALSE(bool_expression).
//
// T must be contextually convertible to bool.
//
// The second parameter prevents this overload from being considered if
// the argument is implicitly convertible to AssertionResult. In that case
// we want AssertionResult's copy constructor to be used.
template <typename T>
explicit AssertionResult(
const T& success,
typename std::enable_if<
!std::is_convertible<T, AssertionResult>::value>::type*
/*enabler*/
= nullptr)
: success_(success) {}
#if defined(_MSC_VER) && (_MSC_VER < 1910 || _MSC_VER >= 1920)
GTEST_DISABLE_MSC_WARNINGS_POP_()
#endif
// Assignment operator.
AssertionResult& operator=(AssertionResult other) {
swap(other);
return *this;
}
// Returns true if and only if the assertion succeeded.
operator bool() const { return success_; } // NOLINT
// Returns the assertion's negation. Used with EXPECT/ASSERT_FALSE.
AssertionResult operator!() const;
// Returns the text streamed into this AssertionResult. Test assertions
// use it when they fail (i.e., the predicate's outcome doesn't match the
// assertion's expectation). When nothing has been streamed into the
// object, returns an empty string.
const char* message() const {
return message_.get() != nullptr ? message_->c_str() : "";
}
// Deprecated; please use message() instead.
const char* failure_message() const { return message(); }
// Streams a custom failure message into this object.
template <typename T> AssertionResult& operator<<(const T& value) {
AppendMessage(Message() << value);
return *this;
}
// Allows streaming basic output manipulators such as endl or flush into
// this object.
AssertionResult& operator<<(
::std::ostream& (*basic_manipulator)(::std::ostream& stream)) {
AppendMessage(Message() << basic_manipulator);
return *this;
}
private:
// Appends the contents of message to message_.
void AppendMessage(const Message& a_message) {
if (message_.get() == nullptr) message_.reset(new ::std::string);
message_->append(a_message.GetString().c_str());
}
// Swap the contents of this AssertionResult with other.
void swap(AssertionResult& other);
// Stores result of the assertion predicate.
bool success_;
// Stores the message describing the condition in case the expectation
// construct is not satisfied with the predicate's outcome.
// Referenced via a pointer to avoid taking too much stack frame space
// with test assertions.
std::unique_ptr< ::std::string> message_;
};
// Makes a successful assertion result.
GTEST_API_ AssertionResult AssertionSuccess();
// Makes a failed assertion result.
GTEST_API_ AssertionResult AssertionFailure();
// Makes a failed assertion result with the given failure message.
// Deprecated; use AssertionFailure() << msg.
GTEST_API_ AssertionResult AssertionFailure(const Message& msg);
} // namespace testing
// Includes the auto-generated header that implements a family of generic
// predicate assertion macros. This include comes late because it relies on
// APIs declared above.
#include "gtest/gtest_pred_impl.h"
namespace testing {
// The abstract class that all tests inherit from.
//
// In Google Test, a unit test program contains one or many TestSuites, and
// each TestSuite contains one or many Tests.
//
// When you define a test using the TEST macro, you don't need to
// explicitly derive from Test - the TEST macro automatically does
// this for you.
//
// The only time you derive from Test is when defining a test fixture
// to be used in a TEST_F. For example:
//
// class FooTest : public testing::Test {
// protected:
// void SetUp() override { ... }
// void TearDown() override { ... }
// ...
// };
//
// TEST_F(FooTest, Bar) { ... }
// TEST_F(FooTest, Baz) { ... }
//
// Test is not copyable.
class GTEST_API_ Test {
public:
friend class TestInfo;
// The d'tor is virtual as we intend to inherit from Test.
virtual ~Test();
// Sets up the stuff shared by all tests in this test case.
//
// Google Test will call Foo::SetUpTestSuite() before running the first
// test in test case Foo. Hence a sub-class can define its own
// SetUpTestSuite() method to shadow the one defined in the super
// class.
static void SetUpTestSuite() {}
// Tears down the stuff shared by all tests in this test suite.
//
// Google Test will call Foo::TearDownTestSuite() after running the last
// test in test case Foo. Hence a sub-class can define its own
// TearDownTestSuite() method to shadow the one defined in the super
// class.
static void TearDownTestSuite() {}
// Legacy API is deprecated but still available
#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
static void TearDownTestCase() {}
static void SetUpTestCase() {}
#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
// Returns true if and only if the current test has a fatal failure.
static bool HasFatalFailure();
// Returns true if and only if the current test has a non-fatal failure.
static bool HasNonfatalFailure();
// Returns true if and only if the current test was skipped.
static bool IsSkipped();
// Returns true if and only if the current test has a (either fatal or
// non-fatal) failure.
static bool HasFailure() { return HasFatalFailure() || HasNonfatalFailure(); }
// Logs a property for the current test, test suite, or for the entire
// invocation of the test program when used outside of the context of a
// test suite. Only the last value for a given key is remembered. These
// are public static so they can be called from utility functions that are
// not members of the test fixture. Calls to RecordProperty made during
// lifespan of the test (from the moment its constructor starts to the
// moment its destructor finishes) will be output in XML as attributes of
// the <testcase> element. Properties recorded from fixture's
// SetUpTestSuite or TearDownTestSuite are logged as attributes of the
// corresponding <testsuite> element. Calls to RecordProperty made in the
// global context (before or after invocation of RUN_ALL_TESTS and from
// SetUp/TearDown method of Environment objects registered with Google
// Test) will be output as attributes of the <testsuites> element.
static void RecordProperty(const std::string& key, const std::string& value);
static void RecordProperty(const std::string& key, int value);
protected:
// Creates a Test object.
Test();
// Sets up the test fixture.
virtual void SetUp();
// Tears down the test fixture.
virtual void TearDown();
private:
// Returns true if and only if the current test has the same fixture class
// as the first test in the current test suite.
static bool HasSameFixtureClass();
// Runs the test after the test fixture has been set up.
//
// A sub-class must implement this to define the test logic.
//
// DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM.
// Instead, use the TEST or TEST_F macro.
virtual void TestBody() = 0;
// Sets up, executes, and tears down the test.
void Run();
// Deletes self. We deliberately pick an unusual name for this
// internal method to avoid clashing with names used in user TESTs.
void DeleteSelf_() { delete this; }
const std::unique_ptr<GTEST_FLAG_SAVER_> gtest_flag_saver_;
// Often a user misspells SetUp() as Setup() and spends a long time
// wondering why it is never called by Google Test. The declaration of
// the following method is solely for catching such an error at
// compile time:
//
// - The return type is deliberately chosen to be not void, so it
// will be a conflict if void Setup() is declared in the user's
// test fixture.
//
// - This method is private, so it will be another compiler error
// if the method is called from the user's test fixture.
//
// DO NOT OVERRIDE THIS FUNCTION.
//
// If you see an error about overriding the following function or
// about it being private, you have mis-spelled SetUp() as Setup().
struct Setup_should_be_spelled_SetUp {};
virtual Setup_should_be_spelled_SetUp* Setup() { return nullptr; }
// We disallow copying Tests.
GTEST_DISALLOW_COPY_AND_ASSIGN_(Test);
};
typedef internal::TimeInMillis TimeInMillis;
// A copyable object representing a user specified test property which can be
// output as a key/value string pair.
//
// Don't inherit from TestProperty as its destructor is not virtual.
class TestProperty {
public:
// C'tor. TestProperty does NOT have a default constructor.
// Always use this constructor (with parameters) to create a
// TestProperty object.
TestProperty(const std::string& a_key, const std::string& a_value) :
key_(a_key), value_(a_value) {
}
// Gets the user supplied key.
const char* key() const {
return key_.c_str();
}
// Gets the user supplied value.
const char* value() const {
return value_.c_str();
}
// Sets a new value, overriding the one supplied in the constructor.
void SetValue(const std::string& new_value) {
value_ = new_value;
}
private:
// The key supplied by the user.
std::string key_;
// The value supplied by the user.
std::string value_;
};
// The result of a single Test. This includes a list of
// TestPartResults, a list of TestProperties, a count of how many
// death tests there are in the Test, and how much time it took to run
// the Test.
//
// TestResult is not copyable.
class GTEST_API_ TestResult {
public:
// Creates an empty TestResult.
TestResult();
// D'tor. Do not inherit from TestResult.
~TestResult();
// Gets the number of all test parts. This is the sum of the number
// of successful test parts and the number of failed test parts.
int total_part_count() const;
// Returns the number of the test properties.
int test_property_count() const;
// Returns true if and only if the test passed (i.e. no test part failed).
bool Passed() const { return !Skipped() && !Failed(); }
// Returns true if and only if the test was skipped.
bool Skipped() const;
// Returns true if and only if the test failed.
bool Failed() const;
// Returns true if and only if the test fatally failed.
bool HasFatalFailure() const;
// Returns true if and only if the test has a non-fatal failure.
bool HasNonfatalFailure() const;
// Returns the elapsed time, in milliseconds.
TimeInMillis elapsed_time() const { return elapsed_time_; }
// Gets the time of the test case start, in ms from the start of the
// UNIX epoch.
TimeInMillis start_timestamp() const { return start_timestamp_; }
// Returns the i-th test part result among all the results. i can range from 0
// to total_part_count() - 1. If i is not in that range, aborts the program.
const TestPartResult& GetTestPartResult(int i) const;
// Returns the i-th test property. i can range from 0 to
// test_property_count() - 1. If i is not in that range, aborts the
// program.
const TestProperty& GetTestProperty(int i) const;
private:
friend class TestInfo;
friend class TestSuite;
friend class UnitTest;
friend class internal::DefaultGlobalTestPartResultReporter;
friend class internal::ExecDeathTest;
friend class internal::TestResultAccessor;
friend class internal::UnitTestImpl;
friend class internal::WindowsDeathTest;
friend class internal::FuchsiaDeathTest;
// Gets the vector of TestPartResults.
const std::vector<TestPartResult>& test_part_results() const {
return test_part_results_;
}
// Gets the vector of TestProperties.
const std::vector<TestProperty>& test_properties() const {
return test_properties_;
}
// Sets the start time.
void set_start_timestamp(TimeInMillis start) { start_timestamp_ = start; }
// Sets the elapsed time.
void set_elapsed_time(TimeInMillis elapsed) { elapsed_time_ = elapsed; }
// Adds a test property to the list. The property is validated and may add
// a non-fatal failure if invalid (e.g., if it conflicts with reserved
// key names). If a property is already recorded for the same key, the
// value will be updated, rather than storing multiple values for the same
// key. xml_element specifies the element for which the property is being
// recorded and is used for validation.
void RecordProperty(const std::string& xml_element,
const TestProperty& test_property);
// Adds a failure if the key is a reserved attribute of Google Test
// testsuite tags. Returns true if the property is valid.
// FIXME: Validate attribute names are legal and human readable.
static bool ValidateTestProperty(const std::string& xml_element,
const TestProperty& test_property);
// Adds a test part result to the list.
void AddTestPartResult(const TestPartResult& test_part_result);
// Returns the death test count.
int death_test_count() const { return death_test_count_; }
// Increments the death test count, returning the new count.
int increment_death_test_count() { return ++death_test_count_; }
// Clears the test part results.
void ClearTestPartResults();
// Clears the object.
void Clear();
// Protects mutable state of the property vector and of owned
// properties, whose values may be updated.
internal::Mutex test_properites_mutex_;
// The vector of TestPartResults
std::vector<TestPartResult> test_part_results_;
// The vector of TestProperties
std::vector<TestProperty> test_properties_;
// Running count of death tests.
int death_test_count_;
// The start time, in milliseconds since UNIX Epoch.
TimeInMillis start_timestamp_;
// The elapsed time, in milliseconds.
TimeInMillis elapsed_time_;
// We disallow copying TestResult.
GTEST_DISALLOW_COPY_AND_ASSIGN_(TestResult);
}; // class TestResult
// A TestInfo object stores the following information about a test:
//
// Test suite name
// Test name
// Whether the test should be run
// A function pointer that creates the test object when invoked
// Test result
//
// The constructor of TestInfo registers itself with the UnitTest
// singleton such that the RUN_ALL_TESTS() macro knows which tests to
// run.
class GTEST_API_ TestInfo {
public:
// Destructs a TestInfo object. This function is not virtual, so
// don't inherit from TestInfo.
~TestInfo();
// Returns the test suite name.
const char* test_suite_name() const { return test_suite_name_.c_str(); }
// Legacy API is deprecated but still available
#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
const char* test_case_name() const { return test_suite_name(); }
#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
// Returns the test name.
const char* name() const { return name_.c_str(); }
// Returns the name of the parameter type, or NULL if this is not a typed
// or a type-parameterized test.
const char* type_param() const {
if (type_param_.get() != nullptr) return type_param_->c_str();
return nullptr;
}
// Returns the text representation of the value parameter, or NULL if this
// is not a value-parameterized test.
const char* value_param() const {
if (value_param_.get() != nullptr) return value_param_->c_str();
return nullptr;
}
// Returns the file name where this test is defined.
const char* file() const { return location_.file.c_str(); }
// Returns the line where this test is defined.
int line() const { return location_.line; }
// Return true if this test should not be run because it's in another shard.
bool is_in_another_shard() const { return is_in_another_shard_; }
// Returns true if this test should run, that is if the test is not
// disabled (or it is disabled but the also_run_disabled_tests flag has
// been specified) and its full name matches the user-specified filter.
//
// Google Test allows the user to filter the tests by their full names.
// The full name of a test Bar in test suite Foo is defined as
// "Foo.Bar". Only the tests that match the filter will run.
//
// A filter is a colon-separated list of glob (not regex) patterns,
// optionally followed by a '-' and a colon-separated list of
// negative patterns (tests to exclude). A test is run if it
// matches one of the positive patterns and does not match any of
// the negative patterns.
//
// For example, *A*:Foo.* is a filter that matches any string that
// contains the character 'A' or starts with "Foo.".
bool should_run() const { return should_run_; }
// Returns true if and only if this test will appear in the XML report.
bool is_reportable() const {
// The XML report includes tests matching the filter, excluding those
// run in other shards.
return matches_filter_ && !is_in_another_shard_;
}
// Returns the result of the test.
const TestResult* result() const { return &result_; }
private:
#if GTEST_HAS_DEATH_TEST
friend class internal::DefaultDeathTestFactory;
#endif // GTEST_HAS_DEATH_TEST
friend class Test;
friend class TestSuite;
friend class internal::UnitTestImpl;
friend class internal::StreamingListenerTest;
friend TestInfo* internal::MakeAndRegisterTestInfo(
const char* test_suite_name, const char* name, const char* type_param,
const char* value_param, internal::CodeLocation code_location,
internal::TypeId fixture_class_id, internal::SetUpTestSuiteFunc set_up_tc,
internal::TearDownTestSuiteFunc tear_down_tc,
internal::TestFactoryBase* factory);
// Constructs a TestInfo object. The newly constructed instance assumes
// ownership of the factory object.
TestInfo(const std::string& test_suite_name, const std::string& name,
const char* a_type_param, // NULL if not a type-parameterized test
const char* a_value_param, // NULL if not a value-parameterized test
internal::CodeLocation a_code_location,
internal::TypeId fixture_class_id,
internal::TestFactoryBase* factory);
// Increments the number of death tests encountered in this test so
// far.
int increment_death_test_count() {
return result_.increment_death_test_count();
}
// Creates the test object, runs it, records its result, and then
// deletes it.
void Run();
static void ClearTestResult(TestInfo* test_info) {
test_info->result_.Clear();
}
// These fields are immutable properties of the test.
const std::string test_suite_name_; // test suite name
const std::string name_; // Test name
// Name of the parameter type, or NULL if this is not a typed or a
// type-parameterized test.
const std::unique_ptr<const ::std::string> type_param_;
// Text representation of the value parameter, or NULL if this is not a
// value-parameterized test.
const std::unique_ptr<const ::std::string> value_param_;
internal::CodeLocation location_;
const internal::TypeId fixture_class_id_; // ID of the test fixture class
bool should_run_; // True if and only if this test should run
bool is_disabled_; // True if and only if this test is disabled
bool matches_filter_; // True if this test matches the
// user-specified filter.
bool is_in_another_shard_; // Will be run in another shard.
internal::TestFactoryBase* const factory_; // The factory that creates
// the test object
// This field is mutable and needs to be reset before running the
// test for the second time.
TestResult result_;
GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo);
};
// A test suite, which consists of a vector of TestInfos.
//
// TestSuite is not copyable.
class GTEST_API_ TestSuite {
public:
// Creates a TestSuite with the given name.
//
// TestSuite does NOT have a default constructor. Always use this
// constructor to create a TestSuite object.
//
// Arguments:
//
// name: name of the test suite
// a_type_param: the name of the test's type parameter, or NULL if
// this is not a type-parameterized test.
// set_up_tc: pointer to the function that sets up the test suite
// tear_down_tc: pointer to the function that tears down the test suite
TestSuite(const char* name, const char* a_type_param,
internal::SetUpTestSuiteFunc set_up_tc,
internal::TearDownTestSuiteFunc tear_down_tc);
// Destructor of TestSuite.
virtual ~TestSuite();
// Gets the name of the TestSuite.
const char* name() const { return name_.c_str(); }
// Returns the name of the parameter type, or NULL if this is not a
// type-parameterized test suite.
const char* type_param() const {
if (type_param_.get() != nullptr) return type_param_->c_str();
return nullptr;
}
// Returns true if any test in this test suite should run.
bool should_run() const { return should_run_; }
// Gets the number of successful tests in this test suite.
int successful_test_count() const;
// Gets the number of skipped tests in this test suite.
int skipped_test_count() const;
// Gets the number of failed tests in this test suite.
int failed_test_count() const;
// Gets the number of disabled tests that will be reported in the XML report.
int reportable_disabled_test_count() const;
// Gets the number of disabled tests in this test suite.
int disabled_test_count() const;
// Gets the number of tests to be printed in the XML report.
int reportable_test_count() const;
// Get the number of tests in this test suite that should run.
int test_to_run_count() const;
// Gets the number of all tests in this test suite.
int total_test_count() const;
// Returns true if and only if the test suite passed.
bool Passed() const { return !Failed(); }
// Returns true if and only if the test suite failed.
bool Failed() const {
return failed_test_count() > 0 || ad_hoc_test_result().Failed();
}
// Returns the elapsed time, in milliseconds.
TimeInMillis elapsed_time() const { return elapsed_time_; }
// Gets the time of the test suite start, in ms from the start of the
// UNIX epoch.
TimeInMillis start_timestamp() const { return start_timestamp_; }
// Returns the i-th test among all the tests. i can range from 0 to
// total_test_count() - 1. If i is not in that range, returns NULL.
const TestInfo* GetTestInfo(int i) const;
// Returns the TestResult that holds test properties recorded during
// execution of SetUpTestSuite and TearDownTestSuite.
const TestResult& ad_hoc_test_result() const { return ad_hoc_test_result_; }
private:
friend class Test;
friend class internal::UnitTestImpl;
// Gets the (mutable) vector of TestInfos in this TestSuite.
std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
// Gets the (immutable) vector of TestInfos in this TestSuite.
const std::vector<TestInfo*>& test_info_list() const {
return test_info_list_;
}
// Returns the i-th test among all the tests. i can range from 0 to
// total_test_count() - 1. If i is not in that range, returns NULL.
TestInfo* GetMutableTestInfo(int i);
// Sets the should_run member.
void set_should_run(bool should) { should_run_ = should; }
// Adds a TestInfo to this test suite. Will delete the TestInfo upon
// destruction of the TestSuite object.
void AddTestInfo(TestInfo * test_info);
// Clears the results of all tests in this test suite.
void ClearResult();
// Clears the results of all tests in the given test suite.
static void ClearTestSuiteResult(TestSuite* test_suite) {
test_suite->ClearResult();
}
// Runs every test in this TestSuite.
void Run();
// Runs SetUpTestSuite() for this TestSuite. This wrapper is needed
// for catching exceptions thrown from SetUpTestSuite().
void RunSetUpTestSuite() {
if (set_up_tc_ != nullptr) {
(*set_up_tc_)();
}
}
// Runs TearDownTestSuite() for this TestSuite. This wrapper is
// needed for catching exceptions thrown from TearDownTestSuite().
void RunTearDownTestSuite() {
if (tear_down_tc_ != nullptr) {
(*tear_down_tc_)();
}
}
// Returns true if and only if test passed.
static bool TestPassed(const TestInfo* test_info) {
return test_info->should_run() && test_info->result()->Passed();
}
// Returns true if and only if test skipped.
static bool TestSkipped(const TestInfo* test_info) {
return test_info->should_run() && test_info->result()->Skipped();
}
// Returns true if and only if test failed.
static bool TestFailed(const TestInfo* test_info) {
return test_info->should_run() && test_info->result()->Failed();
}
// Returns true if and only if the test is disabled and will be reported in
// the XML report.
static bool TestReportableDisabled(const TestInfo* test_info) {
return test_info->is_reportable() && test_info->is_disabled_;
}
// Returns true if and only if test is disabled.
static bool TestDisabled(const TestInfo* test_info) {
return test_info->is_disabled_;
}
// Returns true if and only if this test will appear in the XML report.
static bool TestReportable(const TestInfo* test_info) {
return test_info->is_reportable();
}
// Returns true if the given test should run.
static bool ShouldRunTest(const TestInfo* test_info) {
return test_info->should_run();
}
// Shuffles the tests in this test suite.
void ShuffleTests(internal::Random* random);
// Restores the test order to before the first shuffle.
void UnshuffleTests();
// Name of the test suite.
std::string name_;
// Name of the parameter type, or NULL if this is not a typed or a
// type-parameterized test.
const std::unique_ptr<const ::std::string> type_param_;
// The vector of TestInfos in their original order. It owns the
// elements in the vector.
std::vector<TestInfo*> test_info_list_;
// Provides a level of indirection for the test list to allow easy
// shuffling and restoring the test order. The i-th element in this
// vector is the index of the i-th test in the shuffled test list.
std::vector<int> test_indices_;
// Pointer to the function that sets up the test suite.
internal::SetUpTestSuiteFunc set_up_tc_;
// Pointer to the function that tears down the test suite.
internal::TearDownTestSuiteFunc tear_down_tc_;
// True if and only if any test in this test suite should run.
bool should_run_;
// The start time, in milliseconds since UNIX Epoch.
TimeInMillis start_timestamp_;
// Elapsed time, in milliseconds.
TimeInMillis elapsed_time_;
// Holds test properties recorded during execution of SetUpTestSuite and
// TearDownTestSuite.
TestResult ad_hoc_test_result_;
// We disallow copying TestSuites.
GTEST_DISALLOW_COPY_AND_ASSIGN_(TestSuite);
};
// An Environment object is capable of setting up and tearing down an
// environment. You should subclass this to define your own
// environment(s).
//
// An Environment object does the set-up and tear-down in virtual
// methods SetUp() and TearDown() instead of the constructor and the
// destructor, as:
//
// 1. You cannot safely throw from a destructor. This is a problem
// as in some cases Google Test is used where exceptions are enabled, and
// we may want to implement ASSERT_* using exceptions where they are
// available.
// 2. You cannot use ASSERT_* directly in a constructor or
// destructor.
class Environment {
public:
// The d'tor is virtual as we need to subclass Environment.
virtual ~Environment() {}
// Override this to define how to set up the environment.
virtual void SetUp() {}
// Override this to define how to tear down the environment.
virtual void TearDown() {}
private:
// If you see an error about overriding the following function or
// about it being private, you have mis-spelled SetUp() as Setup().
struct Setup_should_be_spelled_SetUp {};
virtual Setup_should_be_spelled_SetUp* Setup() { return nullptr; }
};
#if GTEST_HAS_EXCEPTIONS
// Exception which can be thrown from TestEventListener::OnTestPartResult.
class GTEST_API_ AssertionException
: public internal::GoogleTestFailureException {
public:
explicit AssertionException(const TestPartResult& result)
: GoogleTestFailureException(result) {}
};
#endif // GTEST_HAS_EXCEPTIONS
// The interface for tracing execution of tests. The methods are organized in
// the order the corresponding events are fired.
class TestEventListener {
public:
virtual ~TestEventListener() {}
// Fired before any test activity starts.
virtual void OnTestProgramStart(const UnitTest& unit_test) = 0;
// Fired before each iteration of tests starts. There may be more than
// one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration
// index, starting from 0.
virtual void OnTestIterationStart(const UnitTest& unit_test,
int iteration) = 0;
// Fired before environment set-up for each iteration of tests starts.
virtual void OnEnvironmentsSetUpStart(const UnitTest& unit_test) = 0;
// Fired after environment set-up for each iteration of tests ends.
virtual void OnEnvironmentsSetUpEnd(const UnitTest& unit_test) = 0;
// Fired before the test suite starts.
virtual void OnTestSuiteStart(const TestSuite& /*test_suite*/) {}
// Legacy API is deprecated but still available
#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
virtual void OnTestCaseStart(const TestCase& /*test_case*/) {}
#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
// Fired before the test starts.
virtual void OnTestStart(const TestInfo& test_info) = 0;
// Fired after a failed assertion or a SUCCEED() invocation.
// If you want to throw an exception from this function to skip to the next
// TEST, it must be AssertionException defined above, or inherited from it.
virtual void OnTestPartResult(const TestPartResult& test_part_result) = 0;
// Fired after the test ends.
virtual void OnTestEnd(const TestInfo& test_info) = 0;
// Fired after the test suite ends.
virtual void OnTestSuiteEnd(const TestSuite& /*test_suite*/) {}
// Legacy API is deprecated but still available
#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {}
#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
// Fired before environment tear-down for each iteration of tests starts.
virtual void OnEnvironmentsTearDownStart(const UnitTest& unit_test) = 0;
// Fired after environment tear-down for each iteration of tests ends.
virtual void OnEnvironmentsTearDownEnd(const UnitTest& unit_test) = 0;
// Fired after each iteration of tests finishes.
virtual void OnTestIterationEnd(const UnitTest& unit_test,
int iteration) = 0;
// Fired after all test activities have ended.
virtual void OnTestProgramEnd(const UnitTest& unit_test) = 0;
};
// The convenience class for users who need to override just one or two
// methods and are not concerned that a possible change to a signature of
// the methods they override will not be caught during the build. For
// comments about each method please see the definition of TestEventListener
// above.
class EmptyTestEventListener : public TestEventListener {
public:
void OnTestProgramStart(const UnitTest& /*unit_test*/) override {}
void OnTestIterationStart(const UnitTest& /*unit_test*/,
int /*iteration*/) override {}
void OnEnvironmentsSetUpStart(const UnitTest& /*unit_test*/) override {}
void OnEnvironmentsSetUpEnd(const UnitTest& /*unit_test*/) override {}
void OnTestSuiteStart(const TestSuite& /*test_suite*/) override {}
// Legacy API is deprecated but still available
#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
void OnTestCaseStart(const TestCase& /*test_case*/) override {}
#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
void OnTestStart(const TestInfo& /*test_info*/) override {}
void OnTestPartResult(const TestPartResult& /*test_part_result*/) override {}
void OnTestEnd(const TestInfo& /*test_info*/) override {}
void OnTestSuiteEnd(const TestSuite& /*test_suite*/) override {}
#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
void OnTestCaseEnd(const TestCase& /*test_case*/) override {}
#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
void OnEnvironmentsTearDownStart(const UnitTest& /*unit_test*/) override {}
void OnEnvironmentsTearDownEnd(const UnitTest& /*unit_test*/) override {}
void OnTestIterationEnd(const UnitTest& /*unit_test*/,
int /*iteration*/) override {}
void OnTestProgramEnd(const UnitTest& /*unit_test*/) override {}
};
// TestEventListeners lets users add listeners to track events in Google Test.
class GTEST_API_ TestEventListeners {
public:
TestEventListeners();
~TestEventListeners();
// Appends an event listener to the end of the list. Google Test assumes
// the ownership of the listener (i.e. it will delete the listener when
// the test program finishes).
void Append(TestEventListener* listener);
// Removes the given event listener from the list and returns it. It then
// becomes the caller's responsibility to delete the listener. Returns
// NULL if the listener is not found in the list.
TestEventListener* Release(TestEventListener* listener);
// Returns the standard listener responsible for the default console
// output. Can be removed from the listeners list to shut down default
// console output. Note that removing this object from the listener list
// with Release transfers its ownership to the caller and makes this
// function return NULL the next time.
TestEventListener* default_result_printer() const {
return default_result_printer_;
}
// Returns the standard listener responsible for the default XML output
// controlled by the --gtest_output=xml flag. Can be removed from the
// listeners list by users who want to shut down the default XML output
// controlled by this flag and substitute it with custom one. Note that
// removing this object from the listener list with Release transfers its
// ownership to the caller and makes this function return NULL the next
// time.
TestEventListener* default_xml_generator() const {
return default_xml_generator_;
}
private:
friend class TestSuite;
friend class TestInfo;
friend class internal::DefaultGlobalTestPartResultReporter;
friend class internal::NoExecDeathTest;
friend class internal::TestEventListenersAccessor;
friend class internal::UnitTestImpl;
// Returns repeater that broadcasts the TestEventListener events to all
// subscribers.
TestEventListener* repeater();
// Sets the default_result_printer attribute to the provided listener.
// The listener is also added to the listener list and previous
// default_result_printer is removed from it and deleted. The listener can
// also be NULL in which case it will not be added to the list. Does
// nothing if the previous and the current listener objects are the same.
void SetDefaultResultPrinter(TestEventListener* listener);
// Sets the default_xml_generator attribute to the provided listener. The
// listener is also added to the listener list and previous
// default_xml_generator is removed from it and deleted. The listener can
// also be NULL in which case it will not be added to the list. Does
// nothing if the previous and the current listener objects are the same.
void SetDefaultXmlGenerator(TestEventListener* listener);
// Controls whether events will be forwarded by the repeater to the
// listeners in the list.
bool EventForwardingEnabled() const;
void SuppressEventForwarding();
// The actual list of listeners.
internal::TestEventRepeater* repeater_;
// Listener responsible for the standard result output.
TestEventListener* default_result_printer_;
// Listener responsible for the creation of the XML output file.
TestEventListener* default_xml_generator_;
// We disallow copying TestEventListeners.
GTEST_DISALLOW_COPY_AND_ASSIGN_(TestEventListeners);
};
// A UnitTest consists of a vector of TestSuites.
//
// This is a singleton class. The only instance of UnitTest is
// created when UnitTest::GetInstance() is first called. This
// instance is never deleted.
//
// UnitTest is not copyable.
//
// This class is thread-safe as long as the methods are called
// according to their specification.
class GTEST_API_ UnitTest {
public:
// Gets the singleton UnitTest object. The first time this method
// is called, a UnitTest object is constructed and returned.
// Consecutive calls will return the same object.
static UnitTest* GetInstance();
// Runs all tests in this UnitTest object and prints the result.
// Returns 0 if successful, or 1 otherwise.
//
// This method can only be called from the main thread.
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
int Run() GTEST_MUST_USE_RESULT_;
// Returns the working directory when the first TEST() or TEST_F()
// was executed. The UnitTest object owns the string.
const char* original_working_dir() const;
// Returns the TestSuite object for the test that's currently running,
// or NULL if no test is running.
const TestSuite* current_test_suite() const GTEST_LOCK_EXCLUDED_(mutex_);
// Legacy API is still available but deprecated
#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
const TestCase* current_test_case() const GTEST_LOCK_EXCLUDED_(mutex_);
#endif
// Returns the TestInfo object for the test that's currently running,
// or NULL if no test is running.
const TestInfo* current_test_info() const
GTEST_LOCK_EXCLUDED_(mutex_);
// Returns the random seed used at the start of the current test run.
int random_seed() const;
// Returns the ParameterizedTestSuiteRegistry object used to keep track of
// value-parameterized tests and instantiate and register them.
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
internal::ParameterizedTestSuiteRegistry& parameterized_test_registry()
GTEST_LOCK_EXCLUDED_(mutex_);
// Gets the number of successful test suites.
int successful_test_suite_count() const;
// Gets the number of failed test suites.
int failed_test_suite_count() const;
// Gets the number of all test suites.
int total_test_suite_count() const;
// Gets the number of all test suites that contain at least one test
// that should run.
int test_suite_to_run_count() const;
// Legacy API is deprecated but still available
#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
int successful_test_case_count() const;
int failed_test_case_count() const;
int total_test_case_count() const;
int test_case_to_run_count() const;
#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
// Gets the number of successful tests.
int successful_test_count() const;
// Gets the number of skipped tests.
int skipped_test_count() const;
// Gets the number of failed tests.
int failed_test_count() const;
// Gets the number of disabled tests that will be reported in the XML report.
int reportable_disabled_test_count() const;
// Gets the number of disabled tests.
int disabled_test_count() const;
// Gets the number of tests to be printed in the XML report.
int reportable_test_count() const;
// Gets the number of all tests.
int total_test_count() const;
// Gets the number of tests that should run.
int test_to_run_count() const;
// Gets the time of the test program start, in ms from the start of the
// UNIX epoch.
TimeInMillis start_timestamp() const;
// Gets the elapsed time, in milliseconds.
TimeInMillis elapsed_time() const;
// Returns true if and only if the unit test passed (i.e. all test suites
// passed).
bool Passed() const;
// Returns true if and only if the unit test failed (i.e. some test suite
// failed or something outside of all tests failed).
bool Failed() const;
// Gets the i-th test suite among all the test suites. i can range from 0 to
// total_test_suite_count() - 1. If i is not in that range, returns NULL.
const TestSuite* GetTestSuite(int i) const;
// Legacy API is deprecated but still available
#ifndef GTEST_REMOVE_LEGACY_TEST_CASEAPI_
const TestCase* GetTestCase(int i) const;
#endif // GTEST_REMOVE_LEGACY_TEST_CASEAPI_
// Returns the TestResult containing information on test failures and
// properties logged outside of individual test suites.
const TestResult& ad_hoc_test_result() const;
// Returns the list of event listeners that can be used to track events
// inside Google Test.
TestEventListeners& listeners();
private:
// Registers and returns a global test environment. When a test
// program is run, all global test environments will be set-up in
// the order they were registered. After all tests in the program
// have finished, all global test environments will be torn-down in
// the *reverse* order they were registered.
//
// The UnitTest object takes ownership of the given environment.
//
// This method can only be called from the main thread.
Environment* AddEnvironment(Environment* env);
// Adds a TestPartResult to the current TestResult object. All
// Google Test assertion macros (e.g. ASSERT_TRUE, EXPECT_EQ, etc)
// eventually call this to report their results. The user code
// should use the assertion macros instead of calling this directly.
void AddTestPartResult(TestPartResult::Type result_type,
const char* file_name,
int line_number,
const std::string& message,
const std::string& os_stack_trace)
GTEST_LOCK_EXCLUDED_(mutex_);
// Adds a TestProperty to the current TestResult object when invoked from
// inside a test, to current TestSuite's ad_hoc_test_result_ when invoked
// from SetUpTestSuite or TearDownTestSuite, or to the global property set
// when invoked elsewhere. If the result already contains a property with
// the same key, the value will be updated.
void RecordProperty(const std::string& key, const std::string& value);
// Gets the i-th test suite among all the test suites. i can range from 0 to
// total_test_suite_count() - 1. If i is not in that range, returns NULL.
TestSuite* GetMutableTestSuite(int i);
// Accessors for the implementation object.
internal::UnitTestImpl* impl() { return impl_; }
const internal::UnitTestImpl* impl() const { return impl_; }
// These classes and functions are friends as they need to access private
// members of UnitTest.
friend class ScopedTrace;
friend class Test;
friend class internal::AssertHelper;
friend class internal::StreamingListenerTest;
friend class internal::UnitTestRecordPropertyTestHelper;
friend Environment* AddGlobalTestEnvironment(Environment* env);
friend std::set<std::string>* internal::GetIgnoredParameterizedTestSuites();
friend internal::UnitTestImpl* internal::GetUnitTestImpl();
friend void internal::ReportFailureInUnknownLocation(
TestPartResult::Type result_type,
const std::string& message);
// Creates an empty UnitTest.
UnitTest();
// D'tor
virtual ~UnitTest();
// Pushes a trace defined by SCOPED_TRACE() on to the per-thread
// Google Test trace stack.
void PushGTestTrace(const internal::TraceInfo& trace)
GTEST_LOCK_EXCLUDED_(mutex_);
// Pops a trace from the per-thread Google Test trace stack.
void PopGTestTrace()
GTEST_LOCK_EXCLUDED_(mutex_);
// Protects mutable state in *impl_. This is mutable as some const
// methods need to lock it too.
mutable internal::Mutex mutex_;
// Opaque implementation object. This field is never changed once
// the object is constructed. We don't mark it as const here, as
// doing so will cause a warning in the constructor of UnitTest.
// Mutable state in *impl_ is protected by mutex_.
internal::UnitTestImpl* impl_;
// We disallow copying UnitTest.
GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest);
};
// A convenient wrapper for adding an environment for the test
// program.
//
// You should call this before RUN_ALL_TESTS() is called, probably in
// main(). If you use gtest_main, you need to call this before main()
// starts for it to take effect. For example, you can define a global
// variable like this:
//
// testing::Environment* const foo_env =
// testing::AddGlobalTestEnvironment(new FooEnvironment);
//
// However, we strongly recommend you to write your own main() and
// call AddGlobalTestEnvironment() there, as relying on initialization
// of global variables makes the code harder to read and may cause
// problems when you register multiple environments from different
// translation units and the environments have dependencies among them
// (remember that the compiler doesn't guarantee the order in which
// global variables from different translation units are initialized).
inline Environment* AddGlobalTestEnvironment(Environment* env) {
return UnitTest::GetInstance()->AddEnvironment(env);
}
// Initializes Google Test. This must be called before calling
// RUN_ALL_TESTS(). In particular, it parses a command line for the
// flags that Google Test recognizes. Whenever a Google Test flag is
// seen, it is removed from argv, and *argc is decremented.
//
// No value is returned. Instead, the Google Test flag variables are
// updated.
//
// Calling the function for the second time has no user-visible effect.
GTEST_API_ void InitGoogleTest(int* argc, char** argv);
// This overloaded version can be used in Windows programs compiled in
// UNICODE mode.
GTEST_API_ void InitGoogleTest(int* argc, wchar_t** argv);
// This overloaded version can be used on Arduino/embedded platforms where
// there is no argc/argv.
GTEST_API_ void InitGoogleTest();
namespace internal {
// Separate the error generating code from the code path to reduce the stack
// frame size of CmpHelperEQ. This helps reduce the overhead of some sanitizers
// when calling EXPECT_* in a tight loop.
template <typename T1, typename T2>
AssertionResult CmpHelperEQFailure(const char* lhs_expression,
const char* rhs_expression,
const T1& lhs, const T2& rhs) {
return EqFailure(lhs_expression,
rhs_expression,
FormatForComparisonFailureMessage(lhs, rhs),
FormatForComparisonFailureMessage(rhs, lhs),
false);
}
// This block of code defines operator==/!=
// to block lexical scope lookup.
// It prevents using invalid operator==/!= defined at namespace scope.
struct faketype {};
inline bool operator==(faketype, faketype) { return true; }
inline bool operator!=(faketype, faketype) { return false; }
// The helper function for {ASSERT|EXPECT}_EQ.
template <typename T1, typename T2>
AssertionResult CmpHelperEQ(const char* lhs_expression,
const char* rhs_expression,
const T1& lhs,
const T2& rhs) {
if (lhs == rhs) {
return AssertionSuccess();
}
return CmpHelperEQFailure(lhs_expression, rhs_expression, lhs, rhs);
}
// With this overloaded version, we allow anonymous enums to be used
// in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous enums
// can be implicitly cast to BiggestInt.
GTEST_API_ AssertionResult CmpHelperEQ(const char* lhs_expression,
const char* rhs_expression,
BiggestInt lhs,
BiggestInt rhs);
class EqHelper {
public:
// This templatized version is for the general case.
template <
typename T1, typename T2,
// Disable this overload for cases where one argument is a pointer
// and the other is the null pointer constant.
typename std::enable_if<!std::is_integral<T1>::value ||
!std::is_pointer<T2>::value>::type* = nullptr>
static AssertionResult Compare(const char* lhs_expression,
const char* rhs_expression, const T1& lhs,
const T2& rhs) {
return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs);
}
// With this overloaded version, we allow anonymous enums to be used
// in {ASSERT|EXPECT}_EQ when compiled with gcc 4, as anonymous
// enums can be implicitly cast to BiggestInt.
//
// Even though its body looks the same as the above version, we
// cannot merge the two, as it will make anonymous enums unhappy.
static AssertionResult Compare(const char* lhs_expression,
const char* rhs_expression,
BiggestInt lhs,
BiggestInt rhs) {
return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs);
}
template <typename T>
static AssertionResult Compare(
const char* lhs_expression, const char* rhs_expression,
// Handle cases where '0' is used as a null pointer literal.
std::nullptr_t /* lhs */, T* rhs) {
// We already know that 'lhs' is a null pointer.
return CmpHelperEQ(lhs_expression, rhs_expression, static_cast<T*>(nullptr),
rhs);
}
};
// Separate the error generating code from the code path to reduce the stack
// frame size of CmpHelperOP. This helps reduce the overhead of some sanitizers
// when calling EXPECT_OP in a tight loop.
template <typename T1, typename T2>
AssertionResult CmpHelperOpFailure(const char* expr1, const char* expr2,
const T1& val1, const T2& val2,
const char* op) {
return AssertionFailure()
<< "Expected: (" << expr1 << ") " << op << " (" << expr2
<< "), actual: " << FormatForComparisonFailureMessage(val1, val2)
<< " vs " << FormatForComparisonFailureMessage(val2, val1);
}
// A macro for implementing the helper functions needed to implement
// ASSERT_?? and EXPECT_??. It is here just to avoid copy-and-paste
// of similar code.
//
// For each templatized helper function, we also define an overloaded
// version for BiggestInt in order to reduce code bloat and allow
// anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled
// with gcc 4.
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
#define GTEST_IMPL_CMP_HELPER_(op_name, op)\
template <typename T1, typename T2>\
AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
const T1& val1, const T2& val2) {\
if (val1 op val2) {\
return AssertionSuccess();\
} else {\
return CmpHelperOpFailure(expr1, expr2, val1, val2, #op);\
}\
}\
GTEST_API_ AssertionResult CmpHelper##op_name(\
const char* expr1, const char* expr2, BiggestInt val1, BiggestInt val2)
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
// Implements the helper function for {ASSERT|EXPECT}_NE
GTEST_IMPL_CMP_HELPER_(NE, !=);
// Implements the helper function for {ASSERT|EXPECT}_LE
GTEST_IMPL_CMP_HELPER_(LE, <=);
// Implements the helper function for {ASSERT|EXPECT}_LT
GTEST_IMPL_CMP_HELPER_(LT, <);
// Implements the helper function for {ASSERT|EXPECT}_GE
GTEST_IMPL_CMP_HELPER_(GE, >=);
// Implements the helper function for {ASSERT|EXPECT}_GT
GTEST_IMPL_CMP_HELPER_(GT, >);
#undef GTEST_IMPL_CMP_HELPER_
// The helper function for {ASSERT|EXPECT}_STREQ.
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
GTEST_API_ AssertionResult CmpHelperSTREQ(const char* s1_expression,
const char* s2_expression,
const char* s1,
const char* s2);
// The helper function for {ASSERT|EXPECT}_STRCASEEQ.
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* s1_expression,
const char* s2_expression,
const char* s1,
const char* s2);
// The helper function for {ASSERT|EXPECT}_STRNE.
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
const char* s2_expression,
const char* s1,
const char* s2);
// The helper function for {ASSERT|EXPECT}_STRCASENE.
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression,
const char* s2_expression,
const char* s1,
const char* s2);
// Helper function for *_STREQ on wide strings.
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
GTEST_API_ AssertionResult CmpHelperSTREQ(const char* s1_expression,
const char* s2_expression,
const wchar_t* s1,
const wchar_t* s2);
// Helper function for *_STRNE on wide strings.
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
const char* s2_expression,
const wchar_t* s1,
const wchar_t* s2);
} // namespace internal
// IsSubstring() and IsNotSubstring() are intended to be used as the
// first argument to {EXPECT,ASSERT}_PRED_FORMAT2(), not by
// themselves. They check whether needle is a substring of haystack
// (NULL is considered a substring of itself only), and return an
// appropriate error message when they fail.
//
// The {needle,haystack}_expr arguments are the stringified
// expressions that generated the two real arguments.
GTEST_API_ AssertionResult IsSubstring(
const char* needle_expr, const char* haystack_expr,
const char* needle, const char* haystack);
GTEST_API_ AssertionResult IsSubstring(
const char* needle_expr, const char* haystack_expr,
const wchar_t* needle, const wchar_t* haystack);
GTEST_API_ AssertionResult IsNotSubstring(
const char* needle_expr, const char* haystack_expr,
const char* needle, const char* haystack);
GTEST_API_ AssertionResult IsNotSubstring(
const char* needle_expr, const char* haystack_expr,
const wchar_t* needle, const wchar_t* haystack);
GTEST_API_ AssertionResult IsSubstring(
const char* needle_expr, const char* haystack_expr,
const ::std::string& needle, const ::std::string& haystack);
GTEST_API_ AssertionResult IsNotSubstring(
const char* needle_expr, const char* haystack_expr,
const ::std::string& needle, const ::std::string& haystack);
#if GTEST_HAS_STD_WSTRING
GTEST_API_ AssertionResult IsSubstring(
const char* needle_expr, const char* haystack_expr,
const ::std::wstring& needle, const ::std::wstring& haystack);
GTEST_API_ AssertionResult IsNotSubstring(
const char* needle_expr, const char* haystack_expr,
const ::std::wstring& needle, const ::std::wstring& haystack);
#endif // GTEST_HAS_STD_WSTRING
namespace internal {
// Helper template function for comparing floating-points.
//
// Template parameter:
//
// RawType: the raw floating-point type (either float or double)
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
template <typename RawType>
AssertionResult CmpHelperFloatingPointEQ(const char* lhs_expression,
const char* rhs_expression,
RawType lhs_value,
RawType rhs_value) {
const FloatingPoint<RawType> lhs(lhs_value), rhs(rhs_value);
if (lhs.AlmostEquals(rhs)) {
return AssertionSuccess();
}
::std::stringstream lhs_ss;
lhs_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
<< lhs_value;
::std::stringstream rhs_ss;
rhs_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
<< rhs_value;
return EqFailure(lhs_expression,
rhs_expression,
StringStreamToString(&lhs_ss),
StringStreamToString(&rhs_ss),
false);
}
// Helper function for implementing ASSERT_NEAR.
//
// INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1,
const char* expr2,
const char* abs_error_expr,
double val1,
double val2,
double abs_error);
// INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
// A class that enables one to stream messages to assertion macros
class GTEST_API_ AssertHelper {
public:
// Constructor.
AssertHelper(TestPartResult::Type type,
const char* file,
int line,
const char* message);
~AssertHelper();
// Message assignment is a semantic trick to enable assertion
// streaming; see the GTEST_MESSAGE_ macro below.
void operator=(const Message& message) const;
private:
// We put our data in a struct so that the size of the AssertHelper class can
// be as small as possible. This is important because gcc is incapable of
// re-using stack space even for temporary variables, so every EXPECT_EQ
// reserves stack space for another AssertHelper.
struct AssertHelperData {
AssertHelperData(TestPartResult::Type t,
const char* srcfile,
int line_num,
const char* msg)
: type(t), file(srcfile), line(line_num), message(msg) { }
TestPartResult::Type const type;
const char* const file;
int const line;
std::string const message;
private:
GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData);
};
AssertHelperData* const data_;
GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper);
};
enum class GTestColor { kDefault, kRed, kGreen, kYellow };
GTEST_API_ GTEST_ATTRIBUTE_PRINTF_(2, 3) void ColoredPrintf(GTestColor color,
const char* fmt,
...);
} // namespace internal
// The pure interface class that all value-parameterized tests inherit from.
// A value-parameterized class must inherit from both ::testing::Test and
// ::testing::WithParamInterface. In most cases that just means inheriting
// from ::testing::TestWithParam, but more complicated test hierarchies
// may need to inherit from Test and WithParamInterface at different levels.
//
// This interface has support for accessing the test parameter value via
// the GetParam() method.
//
// Use it with one of the parameter generator defining functions, like Range(),
// Values(), ValuesIn(), Bool(), and Combine().
//
// class FooTest : public ::testing::TestWithParam<int> {
// protected:
// FooTest() {
// // Can use GetParam() here.
// }
// ~FooTest() override {
// // Can use GetParam() here.
// }
// void SetUp() override {
// // Can use GetParam() here.
// }
// void TearDown override {
// // Can use GetParam() here.
// }
// };
// TEST_P(FooTest, DoesBar) {
// // Can use GetParam() method here.
// Foo foo;
// ASSERT_TRUE(foo.DoesBar(GetParam()));
// }
// INSTANTIATE_TEST_SUITE_P(OneToTenRange, FooTest, ::testing::Range(1, 10));
template <typename T>
class WithParamInterface {
public:
typedef T ParamType;
virtual ~WithParamInterface() {}
// The current parameter value. Is also available in the test fixture's
// constructor.
static const ParamType& GetParam() {
GTEST_CHECK_(parameter_ != nullptr)
<< "GetParam() can only be called inside a value-parameterized test "
<< "-- did you intend to write TEST_P instead of TEST_F?";
return *parameter_;
}
private:
// Sets parameter value. The caller is responsible for making sure the value
// remains alive and unchanged throughout the current test.
static void SetParam(const ParamType* parameter) {
parameter_ = parameter;
}
// Static value used for accessing parameter during a test lifetime.
static const ParamType* parameter_;
// TestClass must be a subclass of WithParamInterface<T> and Test.
template <class TestClass> friend class internal::ParameterizedTestFactory;
};
template <typename T>
const T* WithParamInterface<T>::parameter_ = nullptr;
// Most value-parameterized classes can ignore the existence of
// WithParamInterface, and can just inherit from ::testing::TestWithParam.
template <typename T>
class TestWithParam : public Test, public WithParamInterface<T> {
};
// Macros for indicating success/failure in test code.
// Skips test in runtime.
// Skipping test aborts current function.
// Skipped tests are neither successful nor failed.
#define GTEST_SKIP() GTEST_SKIP_("")
// ADD_FAILURE unconditionally adds a failure to the current test.
// SUCCEED generates a success - it doesn't automatically make the
// current test successful, as a test is only successful when it has
// no failure.
//
// EXPECT_* verifies that a certain condition is satisfied. If not,
// it behaves like ADD_FAILURE. In particular:
//
// EXPECT_TRUE verifies that a Boolean condition is true.
// EXPECT_FALSE verifies that a Boolean condition is false.
//
// FAIL and ASSERT_* are similar to ADD_FAILURE and EXPECT_*, except
// that they will also abort the current function on failure. People
// usually want the fail-fast behavior of FAIL and ASSERT_*, but those
// writing data-driven tests often find themselves using ADD_FAILURE
// and EXPECT_* more.
// Generates a nonfatal failure with a generic message.
#define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed")
// Generates a nonfatal failure at the given source file location with
// a generic message.
#define ADD_FAILURE_AT(file, line) \
GTEST_MESSAGE_AT_(file, line, "Failed", \
::testing::TestPartResult::kNonFatalFailure)
// Generates a fatal failure with a generic message.
#define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed")
// Like GTEST_FAIL(), but at the given source file location.
#define GTEST_FAIL_AT(file, line) \
GTEST_MESSAGE_AT_(file, line, "Failed", \
::testing::TestPartResult::kFatalFailure)
// Define this macro to 1 to omit the definition of FAIL(), which is a
// generic name and clashes with some other libraries.
#if !GTEST_DONT_DEFINE_FAIL
# define FAIL() GTEST_FAIL()
#endif
// Generates a success with a generic message.
#define GTEST_SUCCEED() GTEST_SUCCESS_("Succeeded")
// Define this macro to 1 to omit the definition of SUCCEED(), which
// is a generic name and clashes with some other libraries.
#if !GTEST_DONT_DEFINE_SUCCEED
# define SUCCEED() GTEST_SUCCEED()
#endif
// Macros for testing exceptions.
//
// * {ASSERT|EXPECT}_THROW(statement, expected_exception):
// Tests that the statement throws the expected exception.
// * {ASSERT|EXPECT}_NO_THROW(statement):
// Tests that the statement doesn't throw any exception.
// * {ASSERT|EXPECT}_ANY_THROW(statement):
// Tests that the statement throws an exception.
#define EXPECT_THROW(statement, expected_exception) \
GTEST_TEST_THROW_(statement, expected_exception, GTEST_NONFATAL_FAILURE_)
#define EXPECT_NO_THROW(statement) \
GTEST_TEST_NO_THROW_(statement, GTEST_NONFATAL_FAILURE_)
#define EXPECT_ANY_THROW(statement) \
GTEST_TEST_ANY_THROW_(statement, GTEST_NONFATAL_FAILURE_)
#define ASSERT_THROW(statement, expected_exception) \
GTEST_TEST_THROW_(statement, expected_exception, GTEST_FATAL_FAILURE_)
#define ASSERT_NO_THROW(statement) \
GTEST_TEST_NO_THROW_(statement, GTEST_FATAL_FAILURE_)
#define ASSERT_ANY_THROW(statement) \
GTEST_TEST_ANY_THROW_(statement, GTEST_FATAL_FAILURE_)
// Boolean assertions. Condition can be either a Boolean expression or an
// AssertionResult. For more information on how to use AssertionResult with
// these macros see comments on that class.
#define EXPECT_TRUE(condition) \
GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
GTEST_NONFATAL_FAILURE_)
#define EXPECT_FALSE(condition) \
GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
GTEST_NONFATAL_FAILURE_)
#define ASSERT_TRUE(condition) \
GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
GTEST_FATAL_FAILURE_)
#define ASSERT_FALSE(condition) \
GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
GTEST_FATAL_FAILURE_)
// Macros for testing equalities and inequalities.
//
// * {ASSERT|EXPECT}_EQ(v1, v2): Tests that v1 == v2
// * {ASSERT|EXPECT}_NE(v1, v2): Tests that v1 != v2
// * {ASSERT|EXPECT}_LT(v1, v2): Tests that v1 < v2
// * {ASSERT|EXPECT}_LE(v1, v2): Tests that v1 <= v2
// * {ASSERT|EXPECT}_GT(v1, v2): Tests that v1 > v2
// * {ASSERT|EXPECT}_GE(v1, v2): Tests that v1 >= v2
//
// When they are not, Google Test prints both the tested expressions and
// their actual values. The values must be compatible built-in types,
// or you will get a compiler error. By "compatible" we mean that the
// values can be compared by the respective operator.
//
// Note:
//
// 1. It is possible to make a user-defined type work with
// {ASSERT|EXPECT}_??(), but that requires overloading the
// comparison operators and is thus discouraged by the Google C++
// Usage Guide. Therefore, you are advised to use the
// {ASSERT|EXPECT}_TRUE() macro to assert that two objects are
// equal.
//
// 2. The {ASSERT|EXPECT}_??() macros do pointer comparisons on
// pointers (in particular, C strings). Therefore, if you use it
// with two C strings, you are testing how their locations in memory
// are related, not how their content is related. To compare two C
// strings by content, use {ASSERT|EXPECT}_STR*().
//
// 3. {ASSERT|EXPECT}_EQ(v1, v2) is preferred to
// {ASSERT|EXPECT}_TRUE(v1 == v2), as the former tells you
// what the actual value is when it fails, and similarly for the
// other comparisons.
//
// 4. Do not depend on the order in which {ASSERT|EXPECT}_??()
// evaluate their arguments, which is undefined.
//
// 5. These macros evaluate their arguments exactly once.
//
// Examples:
//
// EXPECT_NE(Foo(), 5);
// EXPECT_EQ(a_pointer, NULL);
// ASSERT_LT(i, array_size);
// ASSERT_GT(records.size(), 0) << "There is no record left.";
#define EXPECT_EQ(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2)
#define EXPECT_NE(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2)
#define EXPECT_LE(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2)
#define EXPECT_LT(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2)
#define EXPECT_GE(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2)
#define EXPECT_GT(val1, val2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2)
#define GTEST_ASSERT_EQ(val1, val2) \
ASSERT_PRED_FORMAT2(::testing::internal::EqHelper::Compare, val1, val2)
#define GTEST_ASSERT_NE(val1, val2) \
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNE, val1, val2)
#define GTEST_ASSERT_LE(val1, val2) \
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLE, val1, val2)
#define GTEST_ASSERT_LT(val1, val2) \
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperLT, val1, val2)
#define GTEST_ASSERT_GE(val1, val2) \
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGE, val1, val2)
#define GTEST_ASSERT_GT(val1, val2) \
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperGT, val1, val2)
// Define macro GTEST_DONT_DEFINE_ASSERT_XY to 1 to omit the definition of
// ASSERT_XY(), which clashes with some users' own code.
#if !GTEST_DONT_DEFINE_ASSERT_EQ
# define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2)
#endif
#if !GTEST_DONT_DEFINE_ASSERT_NE
# define ASSERT_NE(val1, val2) GTEST_ASSERT_NE(val1, val2)
#endif
#if !GTEST_DONT_DEFINE_ASSERT_LE
# define ASSERT_LE(val1, val2) GTEST_ASSERT_LE(val1, val2)
#endif
#if !GTEST_DONT_DEFINE_ASSERT_LT
# define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2)
#endif
#if !GTEST_DONT_DEFINE_ASSERT_GE
# define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2)
#endif
#if !GTEST_DONT_DEFINE_ASSERT_GT
# define ASSERT_GT(val1, val2) GTEST_ASSERT_GT(val1, val2)
#endif
// C-string Comparisons. All tests treat NULL and any non-NULL string
// as different. Two NULLs are equal.
//
// * {ASSERT|EXPECT}_STREQ(s1, s2): Tests that s1 == s2
// * {ASSERT|EXPECT}_STRNE(s1, s2): Tests that s1 != s2
// * {ASSERT|EXPECT}_STRCASEEQ(s1, s2): Tests that s1 == s2, ignoring case
// * {ASSERT|EXPECT}_STRCASENE(s1, s2): Tests that s1 != s2, ignoring case
//
// For wide or narrow string objects, you can use the
// {ASSERT|EXPECT}_??() macros.
//
// Don't depend on the order in which the arguments are evaluated,
// which is undefined.
//
// These macros evaluate their arguments exactly once.
#define EXPECT_STREQ(s1, s2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, s1, s2)
#define EXPECT_STRNE(s1, s2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2)
#define EXPECT_STRCASEEQ(s1, s2) \
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, s1, s2)
#define EXPECT_STRCASENE(s1, s2)\
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2)
#define ASSERT_STREQ(s1, s2) \
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTREQ, s1, s2)
#define ASSERT_STRNE(s1, s2) \
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRNE, s1, s2)
#define ASSERT_STRCASEEQ(s1, s2) \
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASEEQ, s1, s2)
#define ASSERT_STRCASENE(s1, s2)\
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperSTRCASENE, s1, s2)
// Macros for comparing floating-point numbers.
//
// * {ASSERT|EXPECT}_FLOAT_EQ(val1, val2):
// Tests that two float values are almost equal.
// * {ASSERT|EXPECT}_DOUBLE_EQ(val1, val2):
// Tests that two double values are almost equal.
// * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error):
// Tests that v1 and v2 are within the given distance to each other.
//
// Google Test uses ULP-based comparison to automatically pick a default
// error bound that is appropriate for the operands. See the
// FloatingPoint template class in gtest-internal.h if you are
// interested in the implementation details.
#define EXPECT_FLOAT_EQ(val1, val2)\
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<float>, \
val1, val2)
#define EXPECT_DOUBLE_EQ(val1, val2)\
EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<double>, \
val1, val2)
#define ASSERT_FLOAT_EQ(val1, val2)\
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<float>, \
val1, val2)
#define ASSERT_DOUBLE_EQ(val1, val2)\
ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperFloatingPointEQ<double>, \
val1, val2)
#define EXPECT_NEAR(val1, val2, abs_error)\
EXPECT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \
val1, val2, abs_error)
#define ASSERT_NEAR(val1, val2, abs_error)\
ASSERT_PRED_FORMAT3(::testing::internal::DoubleNearPredFormat, \
val1, val2, abs_error)
// These predicate format functions work on floating-point values, and
// can be used in {ASSERT|EXPECT}_PRED_FORMAT2*(), e.g.
//
// EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0);
// Asserts that val1 is less than, or almost equal to, val2. Fails
// otherwise. In particular, it fails if either val1 or val2 is NaN.
GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
float val1, float val2);
GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,
double val1, double val2);
#if GTEST_OS_WINDOWS
// Macros that test for HRESULT failure and success, these are only useful
// on Windows, and rely on Windows SDK macros and APIs to compile.
//
// * {ASSERT|EXPECT}_HRESULT_{SUCCEEDED|FAILED}(expr)
//
// When expr unexpectedly fails or succeeds, Google Test prints the
// expected result and the actual result with both a human-readable
// string representation of the error, if available, as well as the
// hex result code.
# define EXPECT_HRESULT_SUCCEEDED(expr) \
EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr))
# define ASSERT_HRESULT_SUCCEEDED(expr) \
ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTSuccess, (expr))
# define EXPECT_HRESULT_FAILED(expr) \
EXPECT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr))
# define ASSERT_HRESULT_FAILED(expr) \
ASSERT_PRED_FORMAT1(::testing::internal::IsHRESULTFailure, (expr))
#endif // GTEST_OS_WINDOWS
// Macros that execute statement and check that it doesn't generate new fatal
// failures in the current thread.
//
// * {ASSERT|EXPECT}_NO_FATAL_FAILURE(statement);
//
// Examples:
//
// EXPECT_NO_FATAL_FAILURE(Process());
// ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed";
//
#define ASSERT_NO_FATAL_FAILURE(statement) \
GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_)
#define EXPECT_NO_FATAL_FAILURE(statement) \
GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_)
// Causes a trace (including the given source file path and line number,
// and the given message) to be included in every test failure message generated
// by code in the scope of the lifetime of an instance of this class. The effect
// is undone with the destruction of the instance.
//
// The message argument can be anything streamable to std::ostream.
//
// Example:
// testing::ScopedTrace trace("file.cc", 123, "message");
//
class GTEST_API_ ScopedTrace {
public:
// The c'tor pushes the given source file location and message onto
// a trace stack maintained by Google Test.
// Template version. Uses Message() to convert the values into strings.
// Slow, but flexible.
template <typename T>
ScopedTrace(const char* file, int line, const T& message) {
PushTrace(file, line, (Message() << message).GetString());
}
// Optimize for some known types.
ScopedTrace(const char* file, int line, const char* message) {
PushTrace(file, line, message ? message : "(null)");
}
ScopedTrace(const char* file, int line, const std::string& message) {
PushTrace(file, line, message);
}
// The d'tor pops the info pushed by the c'tor.
//
// Note that the d'tor is not virtual in order to be efficient.
// Don't inherit from ScopedTrace!
~ScopedTrace();
private:
void PushTrace(const char* file, int line, std::string message);
GTEST_DISALLOW_COPY_AND_ASSIGN_(ScopedTrace);
} GTEST_ATTRIBUTE_UNUSED_; // A ScopedTrace object does its job in its
// c'tor and d'tor. Therefore it doesn't
// need to be used otherwise.
// Causes a trace (including the source file path, the current line
// number, and the given message) to be included in every test failure
// message generated by code in the current scope. The effect is
// undone when the control leaves the current scope.
//
// The message argument can be anything streamable to std::ostream.
//
// In the implementation, we include the current line number as part
// of the dummy variable name, thus allowing multiple SCOPED_TRACE()s
// to appear in the same block - as long as they are on different
// lines.
//
// Assuming that each thread maintains its own stack of traces.
// Therefore, a SCOPED_TRACE() would (correctly) only affect the
// assertions in its own thread.
#define SCOPED_TRACE(message) \
::testing::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\
__FILE__, __LINE__, (message))
// Compile-time assertion for type equality.
// StaticAssertTypeEq<type1, type2>() compiles if and only if type1 and type2
// are the same type. The value it returns is not interesting.
//
// Instead of making StaticAssertTypeEq a class template, we make it a
// function template that invokes a helper class template. This
// prevents a user from misusing StaticAssertTypeEq<T1, T2> by
// defining objects of that type.
//
// CAVEAT:
//
// When used inside a method of a class template,
// StaticAssertTypeEq<T1, T2>() is effective ONLY IF the method is
// instantiated. For example, given:
//
// template <typename T> class Foo {
// public:
// void Bar() { testing::StaticAssertTypeEq<int, T>(); }
// };
//
// the code:
//
// void Test1() { Foo<bool> foo; }
//
// will NOT generate a compiler error, as Foo<bool>::Bar() is never
// actually instantiated. Instead, you need:
//
// void Test2() { Foo<bool> foo; foo.Bar(); }
//
// to cause a compiler error.
template <typename T1, typename T2>
constexpr bool StaticAssertTypeEq() noexcept {
static_assert(std::is_same<T1, T2>::value, "T1 and T2 are not the same type");
return true;
}
// Defines a test.
//
// The first parameter is the name of the test suite, and the second
// parameter is the name of the test within the test suite.
//
// The convention is to end the test suite name with "Test". For
// example, a test suite for the Foo class can be named FooTest.
//
// Test code should appear between braces after an invocation of
// this macro. Example:
//
// TEST(FooTest, InitializesCorrectly) {
// Foo foo;
// EXPECT_TRUE(foo.StatusIsOK());
// }
// Note that we call GetTestTypeId() instead of GetTypeId<
// ::testing::Test>() here to get the type ID of testing::Test. This
// is to work around a suspected linker bug when using Google Test as
// a framework on Mac OS X. The bug causes GetTypeId<
// ::testing::Test>() to return different values depending on whether
// the call is from the Google Test framework itself or from user test
// code. GetTestTypeId() is guaranteed to always return the same
// value, as it always calls GetTypeId<>() from the Google Test
// framework.
#define GTEST_TEST(test_suite_name, test_name) \
GTEST_TEST_(test_suite_name, test_name, ::testing::Test, \
::testing::internal::GetTestTypeId())
// Define this macro to 1 to omit the definition of TEST(), which
// is a generic name and clashes with some other libraries.
#if !GTEST_DONT_DEFINE_TEST
#define TEST(test_suite_name, test_name) GTEST_TEST(test_suite_name, test_name)
#endif
// Defines a test that uses a test fixture.
//
// The first parameter is the name of the test fixture class, which
// also doubles as the test suite name. The second parameter is the
// name of the test within the test suite.
//
// A test fixture class must be declared earlier. The user should put
// the test code between braces after using this macro. Example:
//
// class FooTest : public testing::Test {
// protected:
// void SetUp() override { b_.AddElement(3); }
//
// Foo a_;
// Foo b_;
// };
//
// TEST_F(FooTest, InitializesCorrectly) {
// EXPECT_TRUE(a_.StatusIsOK());
// }
//
// TEST_F(FooTest, ReturnsElementCountCorrectly) {
// EXPECT_EQ(a_.size(), 0);
// EXPECT_EQ(b_.size(), 1);
// }
//
// GOOGLETEST_CM0011 DO NOT DELETE
#if !GTEST_DONT_DEFINE_TEST
#define TEST_F(test_fixture, test_name)\
GTEST_TEST_(test_fixture, test_name, test_fixture, \
::testing::internal::GetTypeId<test_fixture>())
#endif // !GTEST_DONT_DEFINE_TEST
// Returns a path to temporary directory.
// Tries to determine an appropriate directory for the platform.
GTEST_API_ std::string TempDir();
#ifdef _MSC_VER
# pragma warning(pop)
#endif
// Dynamically registers a test with the framework.
//
// This is an advanced API only to be used when the `TEST` macros are
// insufficient. The macros should be preferred when possible, as they avoid
// most of the complexity of calling this function.
//
// The `factory` argument is a factory callable (move-constructible) object or
// function pointer that creates a new instance of the Test object. It
// handles ownership to the caller. The signature of the callable is
// `Fixture*()`, where `Fixture` is the test fixture class for the test. All
// tests registered with the same `test_suite_name` must return the same
// fixture type. This is checked at runtime.
//
// The framework will infer the fixture class from the factory and will call
// the `SetUpTestSuite` and `TearDownTestSuite` for it.
//
// Must be called before `RUN_ALL_TESTS()` is invoked, otherwise behavior is
// undefined.
//
// Use case example:
//
// class MyFixture : public ::testing::Test {
// public:
// // All of these optional, just like in regular macro usage.
// static void SetUpTestSuite() { ... }
// static void TearDownTestSuite() { ... }
// void SetUp() override { ... }
// void TearDown() override { ... }
// };
//
// class MyTest : public MyFixture {
// public:
// explicit MyTest(int data) : data_(data) {}
// void TestBody() override { ... }
//
// private:
// int data_;
// };
//
// void RegisterMyTests(const std::vector<int>& values) {
// for (int v : values) {
// ::testing::RegisterTest(
// "MyFixture", ("Test" + std::to_string(v)).c_str(), nullptr,
// std::to_string(v).c_str(),
// __FILE__, __LINE__,
// // Important to use the fixture type as the return type here.
// [=]() -> MyFixture* { return new MyTest(v); });
// }
// }
// ...
// int main(int argc, char** argv) {
// std::vector<int> values_to_test = LoadValuesFromConfig();
// RegisterMyTests(values_to_test);
// ...
// return RUN_ALL_TESTS();
// }
//
template <int&... ExplicitParameterBarrier, typename Factory>
TestInfo* RegisterTest(const char* test_suite_name, const char* test_name,
const char* type_param, const char* value_param,
const char* file, int line, Factory factory) {
using TestT = typename std::remove_pointer<decltype(factory())>::type;
class FactoryImpl : public internal::TestFactoryBase {
public:
explicit FactoryImpl(Factory f) : factory_(std::move(f)) {}
Test* CreateTest() override { return factory_(); }
private:
Factory factory_;
};
return internal::MakeAndRegisterTestInfo(
test_suite_name, test_name, type_param, value_param,
internal::CodeLocation(file, line), internal::GetTypeId<TestT>(),
internal::SuiteApiResolver<TestT>::GetSetUpCaseOrSuite(file, line),
internal::SuiteApiResolver<TestT>::GetTearDownCaseOrSuite(file, line),
new FactoryImpl{std::move(factory)});
}
} // namespace testing
// Use this function in main() to run all tests. It returns 0 if all
// tests are successful, or 1 otherwise.
//
// RUN_ALL_TESTS() should be invoked after the command line has been
// parsed by InitGoogleTest().
//
// This function was formerly a macro; thus, it is in the global
// namespace and has an all-caps name.
int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_;
inline int RUN_ALL_TESTS() {
return ::testing::UnitTest::GetInstance()->Run();
}
GTEST_DISABLE_MSC_WARNINGS_POP_() // 4251
#endif // GTEST_INCLUDE_GTEST_GTEST_H_
| [
"61413176+andre3pazo@users.noreply.github.com"
] | 61413176+andre3pazo@users.noreply.github.com |
7f59de5c046967f5f8af94a991400d9b0ce2eea3 | e3d7ff2ec7721b21575a2ab801c64b78f605698f | /1152 단어 갯수/1152 단어 갯수.cpp | b670bfcb9bbea168627b9f00238c590f30b303bf | [] | no_license | KimYongHwan97/Algorithms | a9afea819181f84ff9b1309775a2db9546097380 | 2aa8f4854495ae53f6b0d8e5f5d09807758a7dad | refs/heads/master | 2023-04-11T21:05:15.166726 | 2021-04-30T16:23:50 | 2021-04-30T16:23:50 | 325,365,339 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 381 | cpp | #include <stdio.h>
int main()
{
int N = 1000000,count = 0;
int i = 0;
char a[N];
for(;;)
{
scanf("%c",&a[i]);
if(a[i] == ' ' && i == 0)
{
i++;
continue;
}
else if(a[i] == ' ' && a[i-1] != ' ')
{
count++;
}
if(a[i] == '\n')
{
if(a[i-1] == ' ')
{
count = count - 1;
}
break;
}
i++;
}
printf("%d",count+1);
}
| [
"koh5594@Naver.com"
] | koh5594@Naver.com |
21ff88865f2bda6f21dc3aae299fb49df803df51 | a1a65f548426057da58ef70dad8b83648ca1b601 | /semihosting/ros_lib/rosapi/TopicType.h | 463abf0931d2b72f71e068256d372cbe31d4c1a6 | [] | no_license | jgdo/arips_dev | 9ef575a53359afe8b7cbb19f7f47580893d0f6b9 | c2d2a0a3121d154f395169c51413b73cf9dbf666 | refs/heads/master | 2021-01-19T03:10:24.519680 | 2014-12-18T20:28:36 | 2014-12-18T20:28:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,379 | h | #ifndef _ROS_SERVICE_TopicType_h
#define _ROS_SERVICE_TopicType_h
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "ros/msg.h"
namespace rosapi
{
static const char TOPICTYPE[] = "rosapi/TopicType";
class TopicTypeRequest : public ros::Msg
{
public:
char * topic = nullptr;
virtual int serialize(unsigned char *outbuffer) const
{
int offset = 0;
{
uint32_t length_ = strlen( (const char*) this->topic);
memcpy(outbuffer + offset, &length_, sizeof(uint32_t));
offset += 4;
memcpy(outbuffer + offset, this->topic, length_);
offset += length_;
}
return offset;
}
virtual int deserialize(unsigned char *inbuffer)
{
int offset = 0;
{
uint32_t length_;
memcpy(&length_, (inbuffer + offset), sizeof(uint32_t));
offset += 4;
for(unsigned int k= offset; k< offset+length_; ++k){
inbuffer[k-1]=inbuffer[k];
}
inbuffer[offset+length_-1]=0;
this->topic = (char *)(inbuffer + offset-1);
offset += length_;
}
return offset;
}
const char * getType(){ return TOPICTYPE; };
const char * getMD5(){ return "d8f94bae31b356b24d0427f80426d0c3"; };
};
class TopicTypeResponse : public ros::Msg
{
public:
char * type = nullptr;
virtual int serialize(unsigned char *outbuffer) const
{
int offset = 0;
{
uint32_t length_ = strlen( (const char*) this->type);
memcpy(outbuffer + offset, &length_, sizeof(uint32_t));
offset += 4;
memcpy(outbuffer + offset, this->type, length_);
offset += length_;
}
return offset;
}
virtual int deserialize(unsigned char *inbuffer)
{
int offset = 0;
{
uint32_t length_;
memcpy(&length_, (inbuffer + offset), sizeof(uint32_t));
offset += 4;
for(unsigned int k= offset; k< offset+length_; ++k){
inbuffer[k-1]=inbuffer[k];
}
inbuffer[offset+length_-1]=0;
this->type = (char *)(inbuffer + offset-1);
offset += length_;
}
return offset;
}
const char * getType(){ return TOPICTYPE; };
const char * getMD5(){ return "dc67331de85cf97091b7d45e5c64ab75"; };
};
class TopicType {
public:
typedef TopicTypeRequest Request;
typedef TopicTypeResponse Response;
};
}
#endif
| [
"markprediger@gmail.com"
] | markprediger@gmail.com |
7964a4fda536ce5188981bb71f203f019b9f2947 | 83549eabb619b3c1c16c57f4caee8ad176dbf6f8 | /src/lib/libkrbn/src/libkrbn.cpp | 76bc35ea8f15167fc40772f8c0698b8b4a49ebba | [
"Unlicense"
] | permissive | ninixon/Karabiner-Elements | 0cc2594b5fa5bab9706e06884d3b4bf233ad0482 | 52010b5d191c822218db96429f41fb6b9bb03190 | refs/heads/master | 2020-04-16T21:37:20.130640 | 2019-01-15T15:21:55 | 2019-01-15T15:21:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,475 | cpp | #include "libkrbn/libkrbn.h"
#include "application_launcher.hpp"
#include "constants.hpp"
#include "core_configuration/core_configuration.hpp"
#include "dispatcher_utility.hpp"
#include "json_utility.hpp"
#include "launchctl_utility.hpp"
#include "libkrbn/impl/libkrbn_components_manager.hpp"
#include "libkrbn/impl/libkrbn_cpp.hpp"
#include "process_utility.hpp"
#include "types.hpp"
#include "update_utility.hpp"
#include <fstream>
#include <iostream>
#include <nlohmann/json.hpp>
#include <string>
namespace {
std::unique_ptr<libkrbn_components_manager> libkrbn_components_manager_;
} // namespace
void libkrbn_initialize(void) {
krbn::dispatcher_utility::initialize_dispatchers();
if (!libkrbn_components_manager_) {
libkrbn_components_manager_ = std::make_unique<libkrbn_components_manager>();
}
}
void libkrbn_terminate(void) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_ = nullptr;
}
krbn::dispatcher_utility::terminate_dispatchers();
}
const char* libkrbn_get_distributed_notification_observed_object(void) {
return krbn::constants::get_distributed_notification_observed_object();
}
const char* libkrbn_get_distributed_notification_console_user_server_is_disabled(void) {
return krbn::constants::get_distributed_notification_console_user_server_is_disabled();
}
const char* libkrbn_get_distributed_notification_device_grabbing_state_is_changed(void) {
return krbn::constants::get_distributed_notification_device_grabbing_state_is_changed();
}
const char* libkrbn_get_grabber_alerts_json_file_path(void) {
return krbn::constants::get_grabber_alerts_json_file_path();
}
const char* libkrbn_get_devices_json_file_path(void) {
return krbn::constants::get_devices_json_file_path();
}
const char* libkrbn_get_device_details_json_file_path(void) {
return krbn::constants::get_device_details_json_file_path();
}
const char* libkrbn_get_manipulator_environment_json_file_path(void) {
return krbn::constants::get_manipulator_environment_json_file_path();
}
const char* libkrbn_get_user_complex_modifications_assets_directory(void) {
return krbn::constants::get_user_complex_modifications_assets_directory().c_str();
}
bool libkrbn_lock_single_application_with_user_pid_file(const char* _Nonnull pid_file_name) {
return krbn::process_utility::lock_single_application_with_user_pid_file(pid_file_name);
}
void libkrbn_unlock_single_application(void) {
krbn::process_utility::unlock_single_application();
}
void libkrbn_launchctl_manage_console_user_server(bool load) {
krbn::launchctl_utility::manage_console_user_server(load);
}
void libkrbn_launchctl_restart_console_user_server(void) {
krbn::launchctl_utility::restart_console_user_server();
}
void libkrbn_check_for_updates_in_background(void) {
krbn::update_utility::check_for_updates_in_background();
}
void libkrbn_check_for_updates_stable_only(void) {
krbn::update_utility::check_for_updates_stable_only();
}
void libkrbn_check_for_updates_with_beta_version(void) {
krbn::update_utility::check_for_updates_with_beta_version();
}
void libkrbn_launch_event_viewer(void) {
krbn::application_launcher::launch_event_viewer();
}
void libkrbn_launch_menu(void) {
krbn::application_launcher::launch_menu();
}
void libkrbn_launch_preferences(void) {
krbn::application_launcher::launch_preferences();
}
bool libkrbn_system_core_configuration_file_path_exists(void) {
return pqrs::filesystem::exists(krbn::constants::get_system_core_configuration_file_path());
}
void libkrbn_get_key_code_name(char* buffer, size_t length, uint32_t key_code) {
buffer[0] = '\0';
if (auto name = krbn::types::make_key_code_name(krbn::key_code(key_code))) {
strlcpy(buffer, name->c_str(), length);
}
}
void libkrbn_get_consumer_key_code_name(char* buffer, size_t length, uint32_t consumer_key_code) {
buffer[0] = '\0';
if (auto name = krbn::types::make_consumer_key_code_name(krbn::consumer_key_code(consumer_key_code))) {
strlcpy(buffer, name->c_str(), length);
}
}
bool libkrbn_device_identifiers_is_apple(const libkrbn_device_identifiers* p) {
if (p) {
return libkrbn_cpp::make_device_identifiers(*p).is_apple();
}
return false;
}
// ============================================================
// version_monitor
// ============================================================
void libkrbn_enable_version_monitor(libkrbn_version_monitor_callback callback,
void* refcon) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_->enable_version_monitor(callback,
refcon);
}
}
void libkrbn_disable_version_monitor(void) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_->disable_version_monitor();
}
}
// ============================================================
// system_preferences_monitor
// ============================================================
void libkrbn_enable_system_preferences_monitor(libkrbn_system_preferences_monitor_callback _Nullable callback,
void* _Nullable refcon) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_->enable_system_preferences_monitor(callback,
refcon);
}
}
void libkrbn_disable_system_preferences_monitor(void) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_->disable_system_preferences_monitor();
}
}
// ============================================================
// connected_devices_monitor
// ============================================================
void libkrbn_enable_connected_devices_monitor(libkrbn_connected_devices_monitor_callback callback,
void* refcon) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_->enable_connected_devices_monitor(callback,
refcon);
}
}
void libkrbn_disable_connected_devices_monitor(void) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_->disable_connected_devices_monitor();
}
}
// ============================================================
// frontmost_application_monitor
// ============================================================
void libkrbn_enable_frontmost_application_monitor(libkrbn_frontmost_application_monitor_callback callback,
void* refcon) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_->enable_frontmost_application_monitor(callback,
refcon);
}
}
void libkrbn_disable_frontmost_application_monitor(void) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_->disable_frontmost_application_monitor();
}
}
// ============================================================
// log_monitor
// ============================================================
void libkrbn_enable_log_monitor(libkrbn_log_monitor_callback callback,
void* refcon) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_->enable_log_monitor(callback,
refcon);
}
}
void libkrbn_disable_log_monitor(void) {
if (libkrbn_components_manager_) {
libkrbn_components_manager_->disable_log_monitor();
}
}
| [
"tekezo@pqrs.org"
] | tekezo@pqrs.org |
6eae8545d57cf2e46fa03da464dcf6f34b7c4ecf | 251dc7f60d26e4ae0998628a91cd620fad70944d | /tensorflow/core/framework/collective.h | 362d345133aa292ac1755c0bc8c0ab04d10efab6 | [
"Apache-2.0"
] | permissive | markostam/tensorflow | 8e148fdf5b11502cf7b846995e903c54edc5d58e | 90df8ab4ab127fac239597ce0708577a335613bf | refs/heads/master | 2020-03-07T13:08:31.584600 | 2018-03-30T20:16:16 | 2018-03-30T20:16:16 | 127,493,571 | 3 | 1 | Apache-2.0 | 2018-03-31T02:55:38 | 2018-03-31T02:55:37 | null | UTF-8 | C++ | false | false | 12,021 | h | /* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef TENSORFLOW_FRAMEWORK_COLLECTIVE_EXECUTOR_H_
#define TENSORFLOW_FRAMEWORK_COLLECTIVE_EXECUTOR_H_
#include <string>
#include <vector>
#include "tensorflow/core/framework/device_base.h"
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/lib/core/refcount.h"
#include "tensorflow/core/lib/core/status.h"
namespace tensorflow {
class BufRendezvous;
class CancellationManager;
class CompleteGroupRequest;
class CompleteGroupResponse;
class CompleteInstanceRequest;
class CompleteInstanceResponse;
class DeviceLocality;
class GetStepSequenceRequest;
class GetStepSequenceResponse;
class Op;
class Tensor;
// Types of supported collective operations.
enum CollectiveType {
REDUCTION_COLLECTIVE = 0,
BROADCAST_COLLECTIVE,
UNDEFINED_COLLECTIVE,
};
// Data common to all members of a device group.
// All members share the same device set but its order is
// particular to an instance so it is stored there.
struct CollGroupParams {
int32 group_key;
int32 group_size;
DeviceType device_type;
int32 num_tasks; // number of distinct tasks in group
string ToString() const;
CollGroupParams() : device_type(DEVICE_CPU) {}
};
// The best implementation of a collective op depends on many factors
// including the number of devices involved, the topology of
// interconnects between them and the sizes of inputs. This structure
// is used in generating and representing data movement choreography
// for each specific algorithm, hence it does not have a single, fixed
// interpretation. On first execution the runtime will update this
// structure with decisions that will guide all subsequent executions.
struct CollImplDetails {
std::vector<std::vector<int>> subdiv_permutations;
std::vector<int> subdiv_offsets;
// broadcast only: rank of source in each subdiv
std::vector<int> subdiv_source_rank;
};
// Data common to all members of a collective instance.
struct CollInstanceParams {
int32 instance_key; // Identifies all participating graph nodes.
CollectiveType type;
DataType data_type;
TensorShape shape;
// Fully qualified name of device for each member, in default rank order.
std::vector<string> device_names;
// Task name prefix of corresponding device name.
std::vector<string> task_names;
CollImplDetails impl_details;
string ToString() const;
CollInstanceParams& operator=(const struct CollInstanceParams& other);
};
// Data common to all instance members in the same task.
struct CollTaskParams {
// True for devices that are local to the process, i.e. no RPC needed.
std::vector<bool> is_local;
string ToString() const;
};
// Unique to a single CollectiveOp node.
struct CollectiveParams {
CollGroupParams group;
CollInstanceParams instance;
CollTaskParams task;
string name; // node name used only for log or error messages
int default_rank; // index of this op within device_names
bool is_source; // broadcast only
// Rank of this device in each subdivision permutation.
std::vector<int> subdiv_rank;
std::vector<int> subdiv_source_rank;
const Tensor* in_tensor; // kernel input
Tensor* out_tensor; // kernel output
std::unique_ptr<OpKernel> merge_op; // reduction only
std::unique_ptr<OpKernel> final_op; // reduction only
OpKernelContext* op_context;
string ToString() const;
};
class CollectiveExecutor;
// Interface that provides resolution of device localities.
class DeviceResolverInterface {
public:
virtual ~DeviceResolverInterface() {}
// Collects DeviceLocality protobufs from all of the devices identified
// in 'col_params'.
virtual void GetDeviceLocalitiesAsync(const CollInstanceParams& inst_params,
std::vector<DeviceLocality>* localities,
const StatusCallback& done) = 0;
// Populate *locality with the DeviceLocality of the specified
// device.
virtual void GetLocalityAsync(const string& device, const string& task,
DeviceLocality* locality,
const StatusCallback& done) = 0;
// Clear the cache of device data belonging
// to the specified task.
virtual void ClearTask(const string& task) = 0;
};
// Interface that provides resolution of shared CollectiveParams fields.
class ParamResolverInterface {
public:
virtual ~ParamResolverInterface() {}
// Called by each collective op at first execution in order to fill out
// the CollectiveParams structure with data gathered from the full
// (maybe distributed) collection of peer nodes.
virtual void CompleteParamsAsync(const string& device, CollectiveParams* cp,
CancellationManager* cancel_mgr,
const StatusCallback& done) = 0;
// Used within a distributed implementation to discover/verify
// data shared across a device group.
virtual void CompleteGroupAsync(const CompleteGroupRequest* request,
CompleteGroupResponse* response,
CancellationManager* cancel_mgr,
const StatusCallback& done) = 0;
// Used within a distributed implementation to discover/verify data
// shared across an instance group.
virtual void CompleteInstanceAsync(const CompleteInstanceRequest* request,
CompleteInstanceResponse* response,
CancellationManager* cancel_mgr,
const StatusCallback& done) = 0;
};
// Graphs which utilize Collective Ops in a common instance must
// execute with identical step_ids even if they are disjoint graphs
// run by otherwise independent tasks. This interface supplies
// coordinated step_ids to use in such cases.
class StepSequenceInterface {
public:
virtual ~StepSequenceInterface() {}
// Used with a distributed implementation to coordinate step_id
// sequences across tasks.
virtual void GetStepSequenceAsync(const GetStepSequenceRequest* request,
GetStepSequenceResponse* response,
const StatusCallback& done) = 0;
// Refresh the local per-graph_key step_id sequence from collective
// group leader, if applicable.
virtual void RefreshStepIdSequenceAsync(int64 graph_key,
const StatusCallback& done) = 0;
// Returns the the step_id that should be used for initiating a new execution
// on the specified graph. May return the same step_id multiple times if
// RetireStepId or RefreshStepIdReservation is not called.
virtual int64 NextStepId(int64 graph_key) = 0;
// Reports that execution of the given step has completed successfully.
// Should be called immediately after a step completes with OK status,
// prior to calling NextStepId(). If the step fails, don't call.
virtual void RetireStepId(int64 graph_key, int64 step_id) = 0;
};
// Interface that provides access to per-step CollectiveExecutor
// instances and various distributed resolution capabilities.
class CollectiveExecutorMgrInterface : public StepSequenceInterface {
public:
virtual ~CollectiveExecutorMgrInterface() {}
// Returns the step-specific CollectiveExecutor, creating if one does not
// already exist. The caller assumes ownership of one Ref on the object.
virtual CollectiveExecutor* FindOrCreate(int64 step_id) = 0;
// If there is a CollectiveExecutor for step_id, remove it from the
// table.
virtual void Cleanup(int64 step_id) = 0;
virtual ParamResolverInterface* GetParamResolver() const = 0;
virtual DeviceResolverInterface* GetDeviceResolver() const = 0;
};
// Interface that a Collective Op implementation uses to exchange data
// with peers. Note that data exchange is currently limited to types
// for which DMAHelper::CanUseDMA() returns true, i.e. dense numeric
// types.
class PeerAccessInterface {
public:
virtual ~PeerAccessInterface() {}
virtual void RecvFromPeer(const string& peer_device, const string& peer_task,
bool peer_is_local, const string& key,
Device* to_device, DeviceContext* to_device_ctx,
const AllocatorAttributes& to_alloc_attr,
Tensor* to_tensor,
const DeviceLocality& client_locality,
const StatusCallback& done) = 0;
virtual void PostToPeer(const string& peer_device, const string& peer_task,
const string& key, Device* from_device,
DeviceContext* from_device_ctx,
const AllocatorAttributes& from_alloc_attr,
const Tensor* from_tensor,
const DeviceLocality& client_locality,
const StatusCallback& done) = 0;
};
class PerStepCollectiveRemoteAccess;
// A step-specific object that can execute a collective operation completely
// described by a CollectiveParams object.
class CollectiveExecutor : public PeerAccessInterface, public core::RefCounted {
public:
virtual void StartAbort(const Status& s) {}
virtual void ExecuteAsync(OpKernelContext* ctx,
const CollectiveParams& col_params,
const string& exec_key, StatusCallback done) {
done(errors::Internal(
"A collective Op has been called in a context in which "
"a CollectiveExecutor has not been provided."));
}
virtual void CompleteParamsAsync(const string& device, CollectiveParams* cp,
CancellationManager* cancel_mgr,
StatusCallback done) {
cem_->GetParamResolver()->CompleteParamsAsync(device, cp, cancel_mgr, done);
}
virtual PerStepCollectiveRemoteAccess* remote_access() { return nullptr; }
// Used to designate an invalid group or instance key.
static int64 kInvalidId;
// Lexically scoped handle for Ref.
class Handle {
public:
explicit Handle(CollectiveExecutor* ce, bool inherit_ref) : ce_(ce) {
if (!inherit_ref) ce->Ref();
}
~Handle() { ce_->Unref(); }
CollectiveExecutor* get() const { return ce_; }
private:
CollectiveExecutor* ce_;
};
protected:
explicit CollectiveExecutor(CollectiveExecutorMgrInterface* cem)
: cem_(cem) {}
// For use only by derived classes
static OpKernelContext::Params* CtxParams(OpKernelContext* ctx);
CollectiveExecutorMgrInterface* cem_;
TF_DISALLOW_COPY_AND_ASSIGN(CollectiveExecutor);
};
// Interface of a helper object that provices a CollectiveExecutor with
// all of the remote access it needs.
class CollectiveRemoteAccess : public PeerAccessInterface,
public DeviceResolverInterface {
public:
virtual ~CollectiveRemoteAccess() {}
};
// A per-step version of CollectiveRemoteAccess that cleans up outstanding
// communications in case step execution is abandoned.
class PerStepCollectiveRemoteAccess : public CollectiveRemoteAccess {
public:
virtual ~PerStepCollectiveRemoteAccess() {}
virtual void StartAbort(const Status& s) = 0;
};
} // namespace tensorflow
#endif // TENSORFLOW_FRAMEWORK_COLLECTIVE_EXECUTOR_H_
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
a10a8f55f7bf181f24ae3e078693f22d7da74dff | 1f8d8cb70a77117ec51105a3f417c48e3a300e6e | /include/IPoolMiner.h | ae6bddb5357866ad34bbe131962bac2e669ab5aa | [] | no_license | RealCashProject/RealCash | c29558b6cfe952ada9c376e5ea3fad91bd92774e | 9195888801eb21e3f17936cee638cb17fac3d111 | refs/heads/master | 2021-01-25T12:20:14.824954 | 2018-03-08T09:19:22 | 2018-03-08T09:19:22 | 123,465,020 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,367 | h | // Copyright (c) 2015-2017, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// RealCash is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// RealCash is distributed in the hope that it will be useful. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with RealCash. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#include <QObject>
namespace WalletGui {
class IPoolMinerObserver {
public:
virtual ~IPoolMinerObserver() {}
virtual void stateChanged(int _newState) = 0;
virtual void hashRateChanged(quint32 _hashRate) = 0;
virtual void alternateHashRateChanged(quint32 _hashRate) = 0;
virtual void difficultyChanged(quint32 _difficulty) = 0;
virtual void goodShareCountChanged(quint32 _goodShareCount) = 0;
virtual void goodAlternateShareCountChanged(quint32 _goodShareCount) = 0;
virtual void badShareCountChanged(quint32 _badShareCount) = 0;
virtual void connectionErrorCountChanged(quint32 _connectionErrorCount) = 0;
virtual void lastConnectionErrorTimeChanged(const QDateTime& _lastConnectionErrorTime) = 0;
};
class IPoolMiner {
public:
enum State {
STATE_STOPPED, STATE_RUNNING, STATE_ERROR
};
virtual ~IPoolMiner() {}
virtual void start(quint32 _coreCount) = 0;
virtual void stop() = 0;
virtual QString getPoolHost() const = 0;
virtual quint16 getPoolPort() const = 0;
virtual State getCurrentState() const = 0;
virtual quint32 getHashRate() const = 0;
virtual quint32 getAlternateHashRate() const = 0;
virtual quint32 getDifficulty() const = 0;
virtual quint32 getGoodShareCount() const = 0;
virtual quint32 getGoodAlternateShareCount() const = 0;
virtual quint32 getBadShareCount() const = 0;
virtual quint32 getConnectionErrorCount() const = 0;
virtual QDateTime getLastConnectionErrorTime() const = 0;
virtual void setAlternateAccount(const QString& _login, quint32 _probability) = 0;
virtual void unsetAlternateAccount() = 0;
virtual void addObserver(IPoolMinerObserver* _observer) = 0;
virtual void removeObserver(IPoolMinerObserver* _observer) = 0;
};
}
| [
"36957906+RealCashProject@users.noreply.github.com"
] | 36957906+RealCashProject@users.noreply.github.com |
49d9bf177479a00123285c207fd23f2dbe41ea42 | 257691e365d1133d179cf1f31028db822cbd8e49 | /mini_renderer/aabb.h | 1cce71e36d87049c45c7fdd45af15684591d70d8 | [] | no_license | wangxunstu/mini_renderer | 123b2f77fffb9d0e412cf3ece29b0c60f0561056 | dec4e0899d541adc3bce0340dd2e4c7f4e89a457 | refs/heads/master | 2023-08-22T04:02:20.212800 | 2021-10-29T12:51:01 | 2021-10-29T12:51:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 544 | h | #pragma once
#include<glm/glm.hpp>
class aabb
{
public:
glm::vec3 low;
glm::vec3 high;
aabb() noexcept;
aabb(const glm::vec3& low, const glm::vec3& high) noexcept;
bool is_valid() const noexcept;
bool contains(const glm::vec3& p) const noexcept;
aabb operator|(const glm::vec3& rhs) const noexcept;
aabb& operator|=(const glm::vec3& rhs) noexcept;
aabb operator|(const aabb& rhs) const noexcept;
aabb& operator|=(const aabb& rhs) noexcept;
aabb operator*(float rhs) const noexcept;
aabb& operator*=(float rhs) noexcept;
};
| [
"wangxunstu@163.com"
] | wangxunstu@163.com |
029313d5a6adc05a0d9ab2939030863749c399aa | 46cce0f5350dd7bef7a22bb0a1246f003f40916c | /ui/widgets/controlsarea/controlsarea.h | b1fe6373dacf2c18e2f361bb1e73a6b9428dede7 | [] | no_license | veodev/av_training | 6e65d43b279d029c85359027b5c68bd251ad24ff | ecb8c3cdc58679ada38c30df36a01751476f9015 | refs/heads/master | 2020-04-28T22:23:39.485893 | 2019-09-23T13:16:29 | 2019-09-23T13:16:29 | 175,615,879 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 696 | h | #ifndef CONTROLSAREA_H
#define CONTROLSAREA_H
#include <QWidget>
namespace Ui {
class ControlsArea;
}
class QScrollBar;
class ControlsArea : public QWidget
{
Q_OBJECT
public:
explicit ControlsArea(QWidget * parent = 0);
~ControlsArea();
void addWidget(QWidget * widget);
void reset();
public slots:
void setVisible(bool visible);
private:
void addSpacer();
private slots:
void scrollBarValueChanged(int value);
void scrollBarRangeChanged(int min, int max);
void controlsWidgedWidthChanged(int width);
void on_scrollUpButton_released();
void on_scrollDownButton_released();
private:
Ui::ControlsArea * ui;
};
#endif // CONTROLSAREA_H
| [
"veo86@bk.ru"
] | veo86@bk.ru |
1e827cea7fbb36e5129a6a0e8877c9ebd2ace6a8 | b3a693cb2c15f95133876f74a640ec585b7a0f62 | /UnacademyCourse/DPInterviewPrepMay2021/Lecture13/ArtihmeticSlices2.cpp | 7762f7cb7f49e23fd564fce92c7a752b10cff0f1 | [] | no_license | singhsanket143/CppCompetitiveRepository | 1a7651553ef69fa407d85d789c7c342f9a4bd8e9 | 6e69599ff57e3c9dce4c4d35e60c744f8837c516 | refs/heads/master | 2022-06-23T01:42:38.811581 | 2022-06-16T13:17:15 | 2022-06-16T13:17:15 | 138,698,312 | 349 | 148 | null | 2021-03-06T18:46:58 | 2018-06-26T07:06:16 | C++ | UTF-8 | C++ | false | false | 2,930 | cpp | // Problem Link -
/* By Sanket Singh */
#include<bits/stdc++.h>
//#include<ext/pb_ds/assoc_container.hpp>
//#include<ext/pb_ds/tree_policy.hpp>
//#include <ext/pb_ds/trie_policy.hpp>
//using namespace __gnu_pbds;
using namespace std;
#define ll long long int
#define ld long double
#define mod 1000000007
#define inf 1e18
#define endl "\n"
#define pb push_back
#define vi vector<ll>
#define vs vector<string>
#define pii pair<ll,ll>
#define ump unordered_map
#define mp make_pair
#define pq_max priority_queue<ll>
#define pq_min priority_queue<ll,vi,greater<ll> >
#define all(n) n.begin(),n.end()
#define ff first
#define ss second
#define mid(l,r) (l+(r-l)/2)
#define bitc(n) __builtin_popcount(n)
#define loop(i,a,b) for(int i=(a);i<=(b);i++)
#define looprev(i,a,b) for(int i=(a);i>=(b);i--)
#define iter(container, it) for(__typeof(container.begin()) it = container.begin(); it != container.end(); it++)
#define log(args...) { string _s = #args; replace(_s.begin(), _s.end(), ',', ' '); stringstream _ss(_s); istream_iterator<string> _it(_ss); err(_it, args); }
#define logarr(arr,a,b) for(int z=(a);z<=(b);z++) cout<<(arr[z])<<" ";cout<<endl;
template <typename T> T gcd(T a, T b){if(a%b) return gcd(b,a%b);return b;}
template <typename T> T lcm(T a, T b){return (a*(b/gcd(a,b)));}
vs tokenizer(string str,char ch) {std::istringstream var((str)); vs v; string t; while(getline((var), t, (ch))) {v.pb(t);} return v;}
void err(istream_iterator<string> it) {}
template<typename T, typename... Args>
void err(istream_iterator<string> it, T a, Args... args) {
cout << *it << " = " << a << endl;
err(++it, args...);
}
//typedef tree<ll, null_type, less<ll>, rb_tree_tag, tree_order_statistics_node_update> pbds;
//typedef trie<string,null_type,trie_string_access_traits<>,pat_trie_tag,trie_prefix_search_node_update> pbtrie;
void file_i_o()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
int numAP(vector<int> &nums) {
int n = nums.size();
if(n == 1) return 0;
vector<unordered_map<ll, ll> > dp(n);
// for i = 1;
ll diff = (ll)((ll)nums[1] - (ll)nums[0]);
dp[1][diff] = 1;
ll ans = 0;
for(int i = 2; i < n; i++) {
for(int j = i-1; j >= 0; j--) {
ll diff = (ll)((ll)nums[i] - (ll)nums[j]);
if(dp[j].count(diff)) {
dp[i][diff] += dp[j][diff] + 1;
ans += dp[j][diff];
} else {
dp[i][diff] += 1;
}
}
}
return (int)ans;
}
int main(int argc, char const *argv[]) {
clock_t begin = clock();
file_i_o();
// Write your code here....
vector<int> nums {7,7,7,7,7};
std::cout<<numAP(nums);
#ifndef ONLINE_JUDGE
clock_t end = clock();
cout<<"\n\nExecuted In: "<<double(end - begin) / CLOCKS_PER_SEC*1000<<" ms";
#endif
return 0;
}
| [
"sanketsingh@Sankets-MacBook-Pro.local"
] | sanketsingh@Sankets-MacBook-Pro.local |
00950fe9bdf53a3053adca57cd39b03c69a3b74a | f5937925d74d48285e07ba07d46fb0ac897a6a9f | /PhysB/PhysB.cpp | fe817b00c1227ead01c13bfcb2622dd35531e350 | [] | no_license | BollFan/BollsPublic | 5b697f229920c4d115fd36cf52b93267c33251ff | 23338104c0c5478ac685babd06dfc87f3fabfa58 | refs/heads/master | 2020-04-18T16:39:17.988790 | 2011-12-31T15:03:12 | 2011-12-31T15:03:12 | 3,056,383 | 1 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 4,518 | cpp | #include <windows.h> // Header File For Windows
#include <math.h> // Math Library Header File
#include <stdio.h> // Header File For Standard Input/Output
#include <gl\gl.h> // Header File For The OpenGL32 Library
#include <gl\glu.h> // Header File For The GLu32 Library
#include <gl\glaux.h> // Header File For The Glaux Library
#include <glm\glm.hpp>
#include <time.h>
const double PI = 3.1415926535897;
using namespace glm;
#include "PhysB.h"
void PhysB::init()
{
gravity = -9.81f;
timeDelta = 1.0f / 5000.0f;
bounceCoefficient = 0.8f;
frictionCoefficient = 0.99f;
speedLimitLow = 0.1f;
//srand( size_t(time(0)) );
glEnable(GL_CULL_FACE);
glCullFace(GL_BACK);
for(int i=0; i<300; ++i)
{
Sphere s( 0.2f, 1.0f, vec3( -3+6*randUnit(), 10*randUnit(), 3*randUnit() ) );
objects.push_back(s);
}
//objects.push_back( Sphere( 0.2f, 1.0f, vec3( 0.1, 3.0f, 0 ) ));
//objects.push_back( Sphere( 0.5f, 1.0f, vec3( 0.0, 0.0f, 0 ) ));
for(size_t a=0; a<objects.size(); ++a)
objects[a].acc.y = gravity;
//objects[1].acc = vec3(0);
}
bool PhysB::collide_sphere_sphere( Sphere* a, Sphere* b )
{
// !intersect(aabb(a),aabb(b))
if( a->pos.x - a->r > b->pos.x + b->r ||
a->pos.x + a->r < b->pos.x - b->r ||
a->pos.y - a->r > b->pos.y + b->r ||
a->pos.y + a->r < b->pos.y - b->r ||
a->pos.z - a->r > b->pos.z + b->r ||
a->pos.z + a->r < b->pos.z - b->r )
return false;
// Distansvektorn, dvs vart är object b gentemot objekt a
vec3 dir = a->pos - b->pos;
// Distansen i kvadrat (för snabbare testning)
float distSquare = dot(dir,dir);
// Så.. om det är en kollision mellan de två kloten a och b
float minDist = a->r + b->r;
if( distSquare <= minDist*minDist )
{
// Distansen
float dist = sqrt(distSquare);
vec3 N = dir / dist;
// Hur mycket av deras totala massa tillhör a respektive b
float aMassFactor = (a->m / (a->m + b->m));
float bMassFactor = (b->m / (a->m + b->m));
// a och b kolliderar ju, vilket gör att de är lite innuti varandra,
// så vi flyttar isär dom lite
float intersectLength = minDist - dist + (a->r+b->r)*0.01f;
a->pos += ( N) * intersectLength * bMassFactor;
b->pos += (-N) * intersectLength * aMassFactor;
// normalisera dir så får vi normalen som visar hur de två kloten kolliderade
// Vilka punkter på kloten var det som nuddade varandra
vec3 V = a->vel;
float Vlength = sqrt(dot(V,V));
V/=Vlength;
vec3 R = V - 2 * dot(V, N) * N;
a->vel = a->vel * aMassFactor + ( R) * Vlength * bMassFactor;
b->vel = b->vel * bMassFactor + (-R) * Vlength * aMassFactor;
a->pos += a->vel;
b->pos += b->vel;
return true;
}
return false;
}
void PhysB::update()
{
// Add more velocity from the acceleration, like the gravity
for(size_t a=0; a<objects.size(); ++a)
{
objects[a].vel += objects[a].acc * vec3(timeDelta);
objects[a].pos += objects[a].vel;
}
// Gå igenom de klot som rör på sig
for(size_t a=0; a<objects.size(); ++a)
{
// World-Floor-collision
if( objects[a].pos.y - objects[a].r + objects[a].vel.y <= 0 )
{
objects[a].pos.y = objects[a].r;
objects[a].vel.y *=- bounceCoefficient;
objects[a].vel *= frictionCoefficient;
}
// Kollidera kloten med de andra rörliga kloten
for(size_t b=a+1; b<objects.size(); ++b)
collide_sphere_sphere( &objects[a] , &objects[b] );
// Kollidera kloten med de klot som sover
for(size_t b=0; b<sleepies.size(); ++b)
{
// Om de kolliderade
if( collide_sphere_sphere( &objects[a] , &sleepies[b] ) )
{
// Lägg in det sovande objektet b in i object-listan med rörliga objekt
objects.push_back( sleepies[b] );
// Sedan plockar vi bort objekt b från sleepies
sleepies[b] = sleepies.back();
sleepies.pop_back();
}
}
}
//for(size_t a=0; a<objects.size(); ++a)
//{
// // Test if someone should start to sleep
// float totalSpeedQuadratic = dot(objects[a].vel,objects[a].vel);
// if( totalSpeedQuadratic < 0.001f )
// {
// // object[a] sover, och skall läggas in i sleepies-listan
// sleepies.push_back( objects[a] );
// objects[a] = objects.back();
// objects.pop_back();
// }
//}
}
void PhysB::draw(){
for(size_t i=0; i<objects.size(); ++i)
objects[i].draw();
for(size_t i=0; i<sleepies.size(); ++i)
sleepies[i].draw();
int k = 10;
float s = 0.5f;
for(int i=-k; i<=k; ++i){
drawLineFromTo(vec3(-k*s,0,i*s),vec3(k*s,0,i*s));
drawLineFromTo(vec3(i*s,0,-k*s),vec3(i*s,0,k*s));
}
}
void PhysB::destroy(){
//...
}
| [
"ZebbZorg@hotmail.com"
] | ZebbZorg@hotmail.com |
889870f4441a3ad9d062c4cfaef7157eaca57b5d | 7238274a41298fbe7cf3b89e6497cccd869ee723 | /data_structure/linked_list.cc | 42e68e2f698f04d32de1c069c6c04925f296a41e | [] | no_license | huhumeng/algorithm | a4366e8572ec7384b23dd66270501574796b9013 | e71e0eceb6c5566463ebcd2b47ab2912226f0efb | refs/heads/master | 2020-04-26T11:43:30.813681 | 2019-08-20T10:34:13 | 2019-08-20T10:34:13 | 173,526,348 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,391 | cc | #if (__GNUC__ == 7 || __GNUC__ == 4)
#include "common.h"
#endif
class LinkedList {
public:
LinkedList();
~LinkedList();
void createLinkedList(int n);
void travelLinkedList() const;
int getLenth() const;
bool isEmpty() const;
ListNode *find(int data) const;
void push_back(int data);
void push_back(const initializer_list<int> &init);
void insert(int data, int n);
void insert(const initializer_list<int> &init, int n);
void push_head(int data);
void push_head(const initializer_list<int> &init);
void pop_back();
void erase(int n);
void pop_head();
void destroyList();
void deleteDuplicates();
private:
ListNode *head;
};
LinkedList::LinkedList() {
head = new ListNode(0);
head->val = 0;
head->next = nullptr;
}
LinkedList::~LinkedList(){
destroyList();
delete head;
}
void LinkedList::createLinkedList(int n){
if(n <= 0)
return;
ListNode *p_new, *p_temp;
p_temp = head;
for(int i = 0; i < n; ++i){
int data;
cin >> data;
p_new = new ListNode(data);
p_temp->next = p_new;
p_temp = p_new;
}
}
void LinkedList::travelLinkedList() const {
if(head == nullptr || head->next == nullptr){
cout << "空链表" << endl;
}
ListNode *temp = head;
while(temp->next != nullptr){
temp = temp->next;
cout << temp->val << " ";
}
cout << endl;
}
int LinkedList::getLenth() const {
int len = 0;
if(head == nullptr || head->next == nullptr){
return len;
}
ListNode *temp = head;
while(temp->next != nullptr){
temp = temp->next;
len++;
}
return len;
}
bool LinkedList::isEmpty() const {
return head == nullptr || head->next == nullptr;
}
ListNode *LinkedList::find(int data) const{
if(isEmpty())
return nullptr;
ListNode *temp = head;
while(temp->next != nullptr){
temp = temp->next;
if(temp->val == data)
return temp;
}
return nullptr;
}
void LinkedList::push_back(int data){
ListNode *new_node = new ListNode(data);
ListNode *temp = head;
while(temp->next != nullptr)
temp = temp->next;
temp->next = new_node;
}
void LinkedList::push_back(const initializer_list<int> &init){
ListNode *temp = head;
while(temp->next != nullptr)
temp = temp->next;
for(int data : init){
ListNode *new_node = new ListNode(data);
temp->next = new_node;
temp = new_node;
}
}
void LinkedList::insert(int data, int n){
if(n<0)
{
cerr << "Error location to insert the new element." << endl;
return;
}
ListNode *new_node = new ListNode(data);
ListNode *temp = head;
while(--n>=0){
temp = temp->next;
if(n != 0 && temp->next == nullptr)
{
cerr << "Error location to insert the new element." << endl;
return;
}
}
new_node->next = temp->next;
temp->next = new_node;
}
void LinkedList::insert(const initializer_list<int> &init, int n){
if(n<0)
{
cerr << "Error location to insert the new element." << endl;
return;
}
ListNode *temp = head;
while(--n>=0){
temp = temp->next;
if(n != 0 && temp->next == nullptr)
{
cerr << "Error location to insert the new element." << endl;
return;
}
}
ListNode *after = temp->next;
for(int data : init){
ListNode *new_node = new ListNode(data);
temp->next = new_node;
temp = new_node;
}
temp->next = after;
}
void LinkedList::push_head(int data){
ListNode *new_node = new ListNode(data);
ListNode *temp = head->next;
head->next = new_node;
head->next->next = temp;
}
void LinkedList::push_head(const initializer_list<int> &init){
ListNode *temp = head;
ListNode *after = temp->next;
for(int data : init){
ListNode *new_node = new ListNode(data);
temp->next = new_node;
temp = new_node;
}
temp->next = after;
}
void LinkedList::pop_back(){
if(head->next == nullptr)
return;
ListNode *temp = head;
while(temp->next->next != nullptr){
temp = temp->next;
}
delete temp->next;
temp->next = nullptr;
}
void LinkedList::erase(int n){
if(n<0)
{
cerr << "Error location to erase the element." << endl;
return;
}
ListNode *temp = head;
while(--n>=0){
temp = temp->next;
if(n!=0 && (temp == nullptr || temp->next == nullptr || temp->next->next == nullptr)){
cerr << "Error location to erase the element." << endl;
return;
}
}
ListNode *after = temp->next->next;
delete temp->next;
temp->next = after;
}
void LinkedList::pop_head(){
if(head->next == nullptr)
return;
ListNode *temp = head->next->next;
delete head->next;
head->next = temp;
}
void LinkedList::destroyList(){
ListNode *temp = head->next;
while(temp != nullptr){
ListNode *next = temp->next;
delete temp;
temp = next;
}
head->next = nullptr;
}
void LinkedList::deleteDuplicates(){
if(head->next == nullptr){
return;
}
ListNode *temp = head->next;
ListNode *next;
while(temp != nullptr){
next = temp->next;
while(next != nullptr && temp->val == next->val){
temp->next = next->next;
delete next;
next = temp->next;
}
temp = temp->next;
}
}
int main(){
LinkedList listNode;
// listNode.createLinkedList(0);
// listNode.push_back(10);
// listNode.push_back(11);
// listNode.push_back({1, 2, 3, 4});
// listNode.destroyList();
// listNode.push_head(4);
// listNode.insert(2, 0);
// listNode.insert({1, 2, 3}, 0);
// listNode.push_head({1, 0, 0, 0, 0});
// listNode.pop_back();
// listNode.pop_head();
// listNode.erase(2);
listNode.push_back({1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4});
listNode.deleteDuplicates();
cout << "ListNode lenth: " << listNode.getLenth() << endl;
cout << "Travel list: ";
listNode.travelLinkedList();
return 0;
} | [
"13051588115@163.com"
] | 13051588115@163.com |
24c78fd145bcb13530aafe0a7d6ea9fb470b5b9c | 6ee145493ea433fa8a235b873a04b949874e3289 | /Entities/Enemy.h | 5d12731704d6358d26592eb27ab3936f102ebe51 | [] | no_license | c-devhax/SpaceInvaders | 86176e2b3870039660d38ce236cd07e4c2107349 | abac5645d6e3dbbc52799b0ac16fe48e42e7a5e8 | refs/heads/master | 2023-02-16T04:26:12.071008 | 2021-01-13T12:16:23 | 2021-01-13T12:16:23 | 329,297,709 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 617 | h | //
// Created by alien on 08/01/2021.
//
#pragma once
#include "Ship.h"
#include "../constants.h"
#include <tuple>
#include <vector>
class Enemy : public Ship {
public:
Enemy(int vel, int x, int y, int w, int h, double creation);
void Draw(SDL_Renderer* renderer) override;
std::tuple<int, int, int, int> GetLimits() const override;
std::tuple<int, int> GetXLimits() const;
void Move(double dt);
void Die(std::vector<Enemy>& all);
bool CollidesWithWall() const { return head.y >= WINDOW_HEIGHT - head.h; }
bool operator==(const Enemy& other) const;
private:
double creation;
}; | [
"sarcasticdiscussions2@gmail.com"
] | sarcasticdiscussions2@gmail.com |
0baf6651c808e2359354a6277a7bc8278e58fae4 | 6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849 | /sstd_boost/sstd/libs/algorithm/string/example/rle_example.cpp | bc49b981ddfa7b277c32b694711a05e71900976f | [
"BSL-1.0"
] | permissive | KqSMea8/sstd_library | 9e4e622e1b01bed5de7322c2682539400d13dd58 | 0fcb815f50d538517e70a788914da7fbbe786ce1 | refs/heads/master | 2020-05-03T21:07:01.650034 | 2019-04-01T00:10:47 | 2019-04-01T00:10:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,376 | cpp | // Boost string_algo library example file ---------------------------------//
// Copyright Pavol Droba 2002-2003. Use, modification and
// distribution is subject to the Boost Software License, Version
// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
// See http://www.boost.org for updates, documentation, and revision history.
/*
RLE compression using replace framework. Goal is to compress a sequence of
repeating characters into 3 bytes ( repeat mark, character and repetition count ).
For simplification, it works only on numeric-value sequences.
*/
#include <string>
#include <iostream>
#include <limits>
#include <sstd/boost/detail/iterator.hpp>
#include <sstd/boost/algorithm/string/find_format.hpp>
#include <sstd/boost/algorithm/string/finder.hpp>
using namespace std;
using namespace boost;
// replace mark specification, specialize for a specific element type
template< typename T > T repeat_mark() { return (std::numeric_limits<T>::max)(); };
// Compression -----------------------------------------------------------------------
// compress finder -rle
/*
Find a sequence which can be compressed. It has to be at least 3-character long
sequence of repetitive characters
*/
struct find_compressF
{
// Construction
find_compressF() {}
// Operation
template<typename ForwardIteratorT>
iterator_range<ForwardIteratorT> operator()(
ForwardIteratorT Begin,
ForwardIteratorT End ) const
{
typedef ForwardIteratorT input_iterator_type;
typedef typename boost::detail::iterator_traits<input_iterator_type>::value_type value_type;
typedef iterator_range<input_iterator_type> result_type;
// begin of the matching segment
input_iterator_type MStart=End;
// Repetition counter
value_type Cnt=0;
// Search for a sequence of repetitive characters
for(input_iterator_type It=Begin; It!=End;)
{
input_iterator_type It2=It++;
if ( It==End || Cnt>=(std::numeric_limits<value_type>::max)() )
{
return result_type( MStart, It );
}
if ( *It==*It2 )
{
if ( MStart==End )
{
// Mark the start
MStart=It2;
}
// Increate repetition counter
Cnt++;
}
else
{
if ( MStart!=End )
{
if ( Cnt>2 )
return result_type( MStart, It );
else
{
MStart=End;
Cnt=0;
}
}
}
}
return result_type( End, End );
}
};
// rle compress format
/*
Transform a sequence into repeat mark, character and count
*/
template<typename SeqT>
struct format_compressF
{
private:
typedef SeqT result_type;
typedef typename SeqT::value_type value_type;
public:
// Construction
format_compressF() {};
// Operation
template< typename ReplaceT >
result_type operator()( const ReplaceT& Replace ) const
{
SeqT r;
if(!Replace.empty())
{
r.push_back( repeat_mark<value_type>() );
r.push_back( *(Replace.begin()) );
r.push_back( value_type( Replace.size() ) );
}
return r;
}
};
// Decompression -----------------------------------------------------------------------
// find decompress-rle functor
/*
find a repetition block
*/
struct find_decompressF
{
// Construction
find_decompressF() {}
// Operation
template<typename ForwardIteratorT>
iterator_range<ForwardIteratorT> operator()(
ForwardIteratorT Begin,
ForwardIteratorT End ) const
{
typedef ForwardIteratorT input_iterator_type;
typedef typename boost::detail::iterator_traits<input_iterator_type>::value_type value_type;
typedef iterator_range<input_iterator_type> result_type;
for(input_iterator_type It=Begin; It!=End; It++)
{
if( *It==repeat_mark<value_type>() )
{
// Repeat mark found, extract body
input_iterator_type It2=It++;
if ( It==End ) break;
It++;
if ( It==End ) break;
It++;
return result_type( It2, It );
}
}
return result_type( End, End );
}
};
// rle decompress format
/*
transform a repetition block into a sequence of characters
*/
template< typename SeqT >
struct format_decompressF
{
private:
typedef SeqT result_type;
typedef typename SeqT::value_type value_type;
public:
// Construction
format_decompressF() {};
// Operation
template< typename ReplaceT >
result_type operator()( const ReplaceT& Replace ) const
{
SeqT r;
if(!Replace.empty())
{
// extract info
typename ReplaceT::const_iterator It=Replace.begin();
value_type Value=*(++It);
value_type Repeat=*(++It);
for( value_type Index=0; Index<Repeat; Index++ ) r.push_back( Value );
}
return r;
}
};
int main()
{
cout << "* RLE Compression Example *" << endl << endl;
string original("123_AA_*ZZZZZZZZZZZZZZ*34");
// copy compression
string compress=find_format_all_copy(
original,
find_compressF(),
format_compressF<string>() );
cout << "Compressed string: " << compress << endl;
// Copy decompression
string decompress=find_format_all_copy(
compress,
find_decompressF(),
format_decompressF<string>() );
cout << "Decompressed string: " << decompress << endl;
// in-place compression
find_format_all(
original,
find_compressF(),
format_compressF<string>() );
cout << "Compressed string: " << original << endl;
// in-place decompression
find_format_all(
original,
find_decompressF(),
format_decompressF<string>() );
cout << "Decompressed string: " << original << endl;
cout << endl;
return 0;
}
| [
"zhaixueqiang@hotmail.com"
] | zhaixueqiang@hotmail.com |
fc4561077d515d052fa4a8123e661fd75c599af1 | be07e3597fef471738fd5204b4690320acc07f74 | /src-generated/wxNode_wxTextCtrl.cpp | fe05055305d7aaa64ae0ab55464040b20b930ccd | [] | no_license | happyhub/wxNode | 7a88e02187ddcbbe88abf111f638e49f87f7b49a | 4c4846656baaba0c9dea275a119d002e7e0f96de | refs/heads/master | 2020-04-09T00:30:08.392946 | 2012-02-09T05:25:31 | 2012-02-09T05:25:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,135 | cpp |
#include <sstream>
#include "wxNode_wxTextCtrl.h"
#include "wxNode_wxEvtHandler.h"
#include "wxNode_wxControl.h"
#include "wxNode_wxWindow.h"
#include "wxNode_wxPoint.h"
#include "wxNode_wxSize.h"
#include "wxNode_wxValidator.h"
#include "wxNode_wxKeyEvent.h"
#include "wxNode_wxUpdateUIEvent.h"
#include "wxNode_wxTextAttr.h"
#include "wxNode_wxVisualAttributes.h"
#include "wxNode_wxClassInfo.h"
/* static */ v8::Persistent<v8::FunctionTemplate> wxNode_wxTextCtrl::s_ct;
wxNode_wxTextCtrl::wxNode_wxTextCtrl()
: wxTextCtrl()
{
}
wxNode_wxTextCtrl::wxNode_wxTextCtrl(wxWindow* parent, int id, const wxString& value, wxPoint& pos, wxSize& size, long int style, wxValidator& validator, const wxString& name)
: wxTextCtrl(parent, id, value, pos, size, style, validator, name)
{
}
wxNode_wxTextCtrl::wxNode_wxTextCtrl(wxWindow* parent, int id, const wxString& value, wxPoint& pos, wxSize& size, long int style, wxValidator& validator)
: wxTextCtrl(parent, id, value, pos, size, style, validator)
{
}
wxNode_wxTextCtrl::wxNode_wxTextCtrl(wxWindow* parent, int id, const wxString& value, wxPoint& pos, wxSize& size, long int style)
: wxTextCtrl(parent, id, value, pos, size, style)
{
}
wxNode_wxTextCtrl::wxNode_wxTextCtrl(wxWindow* parent, int id, const wxString& value, wxPoint& pos, wxSize& size)
: wxTextCtrl(parent, id, value, pos, size)
{
}
wxNode_wxTextCtrl::wxNode_wxTextCtrl(wxWindow* parent, int id, const wxString& value, wxPoint& pos)
: wxTextCtrl(parent, id, value, pos)
{
}
wxNode_wxTextCtrl::wxNode_wxTextCtrl(wxWindow* parent, int id, const wxString& value)
: wxTextCtrl(parent, id, value)
{
}
wxNode_wxTextCtrl::wxNode_wxTextCtrl(wxWindow* parent, int id)
: wxTextCtrl(parent, id)
{
}
/*static*/ void wxNode_wxTextCtrl::Init(v8::Handle<v8::Object> target) {
v8::HandleScope scope;
v8::Local<v8::FunctionTemplate> t = v8::FunctionTemplate::New(wxNodeObject::NewFunc);
s_ct = v8::Persistent<v8::FunctionTemplate>::New(t);
s_ct->InstanceTemplate()->SetInternalFieldCount(2);
s_ct->SetClassName(v8::String::NewSymbol("wxTextCtrl"));
NODE_SET_PROTOTYPE_METHOD(s_ct, "init", _init);
AddMethods(s_ct);
target->Set(v8::String::NewSymbol("wxTextCtrl"), s_ct->GetFunction());
}
/*static*/ void wxNode_wxTextCtrl::AddMethods(v8::Handle<v8::FunctionTemplate> target) {
wxNode_wxControl::AddMethods(target);
NODE_SET_PROTOTYPE_METHOD(target, "isSingleLine", _IsSingleLine);
NODE_SET_PROTOTYPE_METHOD(target, "isMultiLine", _IsMultiLine);
NODE_SET_PROTOTYPE_METHOD(target, "emulateKeyPress", _EmulateKeyPress);
NODE_SET_PROTOTYPE_METHOD(target, "doUpdateWindowUI", _DoUpdateWindowUI);
NODE_SET_PROTOTYPE_METHOD(target, "shouldInheritColours", _ShouldInheritColours);
NODE_SET_PROTOTYPE_METHOD(target, "hitTest", _HitTest);
NODE_SET_PROTOTYPE_METHOD(target, "setStyle", _SetStyle);
NODE_SET_PROTOTYPE_METHOD(target, "getStyle", _GetStyle);
NODE_SET_PROTOTYPE_METHOD(target, "setDefaultStyle", _SetDefaultStyle);
NODE_SET_PROTOTYPE_METHOD(target, "getValue", _GetValue);
NODE_SET_PROTOTYPE_METHOD(target, "setValue", _SetValue);
NODE_SET_PROTOTYPE_METHOD(target, "getDefaultAttributes", _GetDefaultAttributes);
NODE_SET_METHOD(target, "getClassDefaultAttributes", _GetClassDefaultAttributes);
NODE_SET_PROTOTYPE_METHOD(target, "getClassInfo", _GetClassInfo);
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::New(const wxNode_wxTextCtrl* obj) {
v8::HandleScope scope;
if(obj == NULL) {
return scope.Close(v8::Null());
}
v8::Local<v8::FunctionTemplate> returnObjFt = v8::FunctionTemplate::New(wxNodeObject::NewFunc);
returnObjFt->InstanceTemplate()->SetInternalFieldCount(2);
returnObjFt->SetClassName(v8::String::NewSymbol("wxTextCtrl"));
wxNode_wxTextCtrl::AddMethods(returnObjFt);
v8::Local<v8::Function> returnObjFn = returnObjFt->GetFunction();
v8::Handle<v8::Value> returnObjArgs[0];
v8::Local<v8::Object> returnObj = returnObjFn->CallAsConstructor(0, returnObjArgs)->ToObject();
returnObj->SetPointerInInternalField(0, (void*)obj);
NodeExEvtHandlerImpl* evtHandler = dynamic_cast<NodeExEvtHandlerImpl*>((wxNode_wxTextCtrl*)obj);
returnObj->SetPointerInInternalField(1, evtHandler);
return scope.Close(returnObj);
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::New(const wxTextCtrl* obj) {
v8::HandleScope scope;
if(obj == NULL) {
return scope.Close(v8::Null());
}
v8::Local<v8::FunctionTemplate> returnObjFt = v8::FunctionTemplate::New(wxNodeObject::NewFunc);
returnObjFt->InstanceTemplate()->SetInternalFieldCount(2);
returnObjFt->SetClassName(v8::String::NewSymbol("wxTextCtrl"));
wxNode_wxTextCtrl::AddMethods(returnObjFt);
v8::Local<v8::Function> returnObjFn = returnObjFt->GetFunction();
v8::Handle<v8::Value> returnObjArgs[0];
v8::Local<v8::Object> returnObj = returnObjFn->CallAsConstructor(0, returnObjArgs)->ToObject();
returnObj->SetPointerInInternalField(0, (void*)obj);
returnObj->SetPointerInInternalField(1, new NodeExEvtHandlerImplWrap(returnObj));
return scope.Close(returnObj);
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::NewCopy(const wxTextCtrl& obj) {
v8::HandleScope scope;
wxNode_wxTextCtrl* returnVal = new wxNode_wxTextCtrl();
memcpy(dynamic_cast<wxTextCtrl*>(returnVal), &obj, sizeof(wxTextCtrl));
return scope.Close(New(returnVal));
}
/*static*/ bool wxNode_wxTextCtrl::AssignableFrom(const v8::Handle<v8::String>& className) {
v8::String::AsciiValue classNameStr(className);
return AssignableFrom(*classNameStr);
}
/*static*/ bool wxNode_wxTextCtrl::AssignableFrom(const char* className) {
if(!strcmp("wxTextCtrl", className)) { return true; }
if(!strcmp("wxTextCtrl", className)) { return true; }
return false;
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_init(const v8::Arguments& args) {
v8::HandleScope scope;
/*
* id: _22862
*/
if(args.Length() == 0) {
wxNode_wxTextCtrl *self = new wxNode_wxTextCtrl();
NodeExEvtHandlerImpl* evtHandler = dynamic_cast<NodeExEvtHandlerImpl*>(self);
self->wrap(args.This(), self, evtHandler);
return args.This();
}
/*
* id: _22863
*/
if(args.Length() == 8 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxWindow::AssignableFrom(args[0]->ToObject()->GetConstructorName()))) && args[1]->IsNumber() && args[2]->IsString() && (args[3]->IsNull() || (args[3]->IsObject() && wxNode_wxPoint::AssignableFrom(args[3]->ToObject()->GetConstructorName()))) && (args[4]->IsNull() || (args[4]->IsObject() && wxNode_wxSize::AssignableFrom(args[4]->ToObject()->GetConstructorName()))) && args[5]->IsNumber() && (args[6]->IsNull() || (args[6]->IsObject() && wxNode_wxValidator::AssignableFrom(args[6]->ToObject()->GetConstructorName()))) && args[7]->IsString()) {
wxNode_wxWindow* parent = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxWindow>(args[0]->ToObject()); /* type: _1326 * */
int id = (int)args[1]->ToInt32()->Value(); /* type: _11168 */
v8::String::AsciiValue value(args[2]->ToString()); /* type: _18997 */
wxNode_wxPoint* pos = args[3]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxPoint>(args[3]->ToObject()); /* type: _25270 */
wxNode_wxSize* size = args[4]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxSize>(args[4]->ToObject()); /* type: _25379 */
long int style = (long int)args[5]->ToInt32()->Value(); /* type: _766 */
wxNode_wxValidator* validator = args[6]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxValidator>(args[6]->ToObject()); /* type: _65245 */
v8::String::AsciiValue name(args[7]->ToString()); /* type: _18997 */
wxNode_wxTextCtrl *self = new wxNode_wxTextCtrl(parent, id, *value, *pos, *size, style, *validator, *name);
NodeExEvtHandlerImpl* evtHandler = dynamic_cast<NodeExEvtHandlerImpl*>(self);
self->wrap(args.This(), self, evtHandler);
return args.This();
}
/*
* id: _22863
*/
if(args.Length() == 7 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxWindow::AssignableFrom(args[0]->ToObject()->GetConstructorName()))) && args[1]->IsNumber() && args[2]->IsString() && (args[3]->IsNull() || (args[3]->IsObject() && wxNode_wxPoint::AssignableFrom(args[3]->ToObject()->GetConstructorName()))) && (args[4]->IsNull() || (args[4]->IsObject() && wxNode_wxSize::AssignableFrom(args[4]->ToObject()->GetConstructorName()))) && args[5]->IsNumber() && (args[6]->IsNull() || (args[6]->IsObject() && wxNode_wxValidator::AssignableFrom(args[6]->ToObject()->GetConstructorName())))) {
wxNode_wxWindow* parent = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxWindow>(args[0]->ToObject()); /* type: _1326 * */
int id = (int)args[1]->ToInt32()->Value(); /* type: _11168 */
v8::String::AsciiValue value(args[2]->ToString()); /* type: _18997 */
wxNode_wxPoint* pos = args[3]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxPoint>(args[3]->ToObject()); /* type: _25270 */
wxNode_wxSize* size = args[4]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxSize>(args[4]->ToObject()); /* type: _25379 */
long int style = (long int)args[5]->ToInt32()->Value(); /* type: _766 */
wxNode_wxValidator* validator = args[6]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxValidator>(args[6]->ToObject()); /* type: _65245 */
wxNode_wxTextCtrl *self = new wxNode_wxTextCtrl(parent, id, *value, *pos, *size, style, *validator);
NodeExEvtHandlerImpl* evtHandler = dynamic_cast<NodeExEvtHandlerImpl*>(self);
self->wrap(args.This(), self, evtHandler);
return args.This();
}
/*
* id: _22863
*/
if(args.Length() == 6 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxWindow::AssignableFrom(args[0]->ToObject()->GetConstructorName()))) && args[1]->IsNumber() && args[2]->IsString() && (args[3]->IsNull() || (args[3]->IsObject() && wxNode_wxPoint::AssignableFrom(args[3]->ToObject()->GetConstructorName()))) && (args[4]->IsNull() || (args[4]->IsObject() && wxNode_wxSize::AssignableFrom(args[4]->ToObject()->GetConstructorName()))) && args[5]->IsNumber()) {
wxNode_wxWindow* parent = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxWindow>(args[0]->ToObject()); /* type: _1326 * */
int id = (int)args[1]->ToInt32()->Value(); /* type: _11168 */
v8::String::AsciiValue value(args[2]->ToString()); /* type: _18997 */
wxNode_wxPoint* pos = args[3]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxPoint>(args[3]->ToObject()); /* type: _25270 */
wxNode_wxSize* size = args[4]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxSize>(args[4]->ToObject()); /* type: _25379 */
long int style = (long int)args[5]->ToInt32()->Value(); /* type: _766 */
wxNode_wxTextCtrl *self = new wxNode_wxTextCtrl(parent, id, *value, *pos, *size, style);
NodeExEvtHandlerImpl* evtHandler = dynamic_cast<NodeExEvtHandlerImpl*>(self);
self->wrap(args.This(), self, evtHandler);
return args.This();
}
/*
* id: _22863
*/
if(args.Length() == 5 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxWindow::AssignableFrom(args[0]->ToObject()->GetConstructorName()))) && args[1]->IsNumber() && args[2]->IsString() && (args[3]->IsNull() || (args[3]->IsObject() && wxNode_wxPoint::AssignableFrom(args[3]->ToObject()->GetConstructorName()))) && (args[4]->IsNull() || (args[4]->IsObject() && wxNode_wxSize::AssignableFrom(args[4]->ToObject()->GetConstructorName())))) {
wxNode_wxWindow* parent = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxWindow>(args[0]->ToObject()); /* type: _1326 * */
int id = (int)args[1]->ToInt32()->Value(); /* type: _11168 */
v8::String::AsciiValue value(args[2]->ToString()); /* type: _18997 */
wxNode_wxPoint* pos = args[3]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxPoint>(args[3]->ToObject()); /* type: _25270 */
wxNode_wxSize* size = args[4]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxSize>(args[4]->ToObject()); /* type: _25379 */
wxNode_wxTextCtrl *self = new wxNode_wxTextCtrl(parent, id, *value, *pos, *size);
NodeExEvtHandlerImpl* evtHandler = dynamic_cast<NodeExEvtHandlerImpl*>(self);
self->wrap(args.This(), self, evtHandler);
return args.This();
}
/*
* id: _22863
*/
if(args.Length() == 4 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxWindow::AssignableFrom(args[0]->ToObject()->GetConstructorName()))) && args[1]->IsNumber() && args[2]->IsString() && (args[3]->IsNull() || (args[3]->IsObject() && wxNode_wxPoint::AssignableFrom(args[3]->ToObject()->GetConstructorName())))) {
wxNode_wxWindow* parent = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxWindow>(args[0]->ToObject()); /* type: _1326 * */
int id = (int)args[1]->ToInt32()->Value(); /* type: _11168 */
v8::String::AsciiValue value(args[2]->ToString()); /* type: _18997 */
wxNode_wxPoint* pos = args[3]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxPoint>(args[3]->ToObject()); /* type: _25270 */
wxNode_wxTextCtrl *self = new wxNode_wxTextCtrl(parent, id, *value, *pos);
NodeExEvtHandlerImpl* evtHandler = dynamic_cast<NodeExEvtHandlerImpl*>(self);
self->wrap(args.This(), self, evtHandler);
return args.This();
}
/*
* id: _22863
*/
if(args.Length() == 3 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxWindow::AssignableFrom(args[0]->ToObject()->GetConstructorName()))) && args[1]->IsNumber() && args[2]->IsString()) {
wxNode_wxWindow* parent = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxWindow>(args[0]->ToObject()); /* type: _1326 * */
int id = (int)args[1]->ToInt32()->Value(); /* type: _11168 */
v8::String::AsciiValue value(args[2]->ToString()); /* type: _18997 */
wxNode_wxTextCtrl *self = new wxNode_wxTextCtrl(parent, id, *value);
NodeExEvtHandlerImpl* evtHandler = dynamic_cast<NodeExEvtHandlerImpl*>(self);
self->wrap(args.This(), self, evtHandler);
return args.This();
}
/*
* id: _22863
*/
if(args.Length() == 2 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxWindow::AssignableFrom(args[0]->ToObject()->GetConstructorName()))) && args[1]->IsNumber()) {
wxNode_wxWindow* parent = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxWindow>(args[0]->ToObject()); /* type: _1326 * */
int id = (int)args[1]->ToInt32()->Value(); /* type: _11168 */
wxNode_wxTextCtrl *self = new wxNode_wxTextCtrl(parent, id);
NodeExEvtHandlerImpl* evtHandler = dynamic_cast<NodeExEvtHandlerImpl*>(self);
self->wrap(args.This(), self, evtHandler);
return args.This();
}
std::ostringstream errStr;
errStr << "Could not find matching constructor for arguments (class name: wxTextCtrl).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_IsSingleLine(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36010
*/
if(args.Length() == 0) {
bool returnVal = self->IsSingleLine();
return scope.Close(v8::Boolean::New(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::IsSingleLine).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_IsMultiLine(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36011
*/
if(args.Length() == 0) {
bool returnVal = self->IsMultiLine();
return scope.Close(v8::Boolean::New(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::IsMultiLine).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_EmulateKeyPress(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36019
*/
if(args.Length() == 1 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxKeyEvent::AssignableFrom(args[0]->ToObject()->GetConstructorName())))) {
wxNode_wxKeyEvent* event = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxKeyEvent>(args[0]->ToObject()); /* type: _68854 */
bool returnVal = self->EmulateKeyPress(*event);
return scope.Close(v8::Boolean::New(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::EmulateKeyPress).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_DoUpdateWindowUI(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36020
*/
if(args.Length() == 1 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxUpdateUIEvent::AssignableFrom(args[0]->ToObject()->GetConstructorName())))) {
wxNode_wxUpdateUIEvent* event = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxUpdateUIEvent>(args[0]->ToObject()); /* type: _65946 */
self->DoUpdateWindowUI(*event);
return v8::Undefined();
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::DoUpdateWindowUI).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_ShouldInheritColours(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36021
*/
if(args.Length() == 0) {
bool returnVal = self->ShouldInheritColours();
return scope.Close(v8::Boolean::New(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::ShouldInheritColours).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_HitTest(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36022
*/
if(args.Length() == 2 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxPoint::AssignableFrom(args[0]->ToObject()->GetConstructorName()))) && false) {
wxNode_wxPoint* pt = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxPoint>(args[0]->ToObject()); /* type: _25270 */
long int pos; /* type: _24456 * */
int returnVal = (int)self->HitTest(*pt, &pos);
return scope.Close(v8::Number::New(returnVal));
}
/*
* id: _36023
*/
if(args.Length() == 3 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxPoint::AssignableFrom(args[0]->ToObject()->GetConstructorName()))) && false && false) {
wxNode_wxPoint* pt = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxPoint>(args[0]->ToObject()); /* type: _25270 */
long int col; /* type: _65944 * */
long int row; /* type: _65944 * */
int returnVal = (int)self->HitTest(*pt, &col, &row);
return scope.Close(v8::Number::New(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::HitTest).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_SetStyle(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36024
*/
if(args.Length() == 3 && args[0]->IsNumber() && args[1]->IsNumber() && (args[2]->IsNull() || (args[2]->IsObject() && wxNode_wxTextAttr::AssignableFrom(args[2]->ToObject()->GetConstructorName())))) {
long int start = (long int)args[0]->ToInt32()->Value(); /* type: _766 */
long int end = (long int)args[1]->ToInt32()->Value(); /* type: _766 */
wxNode_wxTextAttr* style = args[2]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxTextAttr>(args[2]->ToObject()); /* type: _56555 */
bool returnVal = self->SetStyle(start, end, *style);
return scope.Close(v8::Boolean::New(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::SetStyle).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_GetStyle(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36025
*/
if(args.Length() == 2 && args[0]->IsNumber() && (args[1]->IsNull() || (args[1]->IsObject() && wxNode_wxTextAttr::AssignableFrom(args[1]->ToObject()->GetConstructorName())))) {
long int position = (long int)args[0]->ToInt32()->Value(); /* type: _766 */
wxNode_wxTextAttr* style = args[1]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxTextAttr>(args[1]->ToObject()); /* type: _56554 */
bool returnVal = self->GetStyle(position, *style);
return scope.Close(v8::Boolean::New(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::GetStyle).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_SetDefaultStyle(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36026
*/
if(args.Length() == 1 && (args[0]->IsNull() || (args[0]->IsObject() && wxNode_wxTextAttr::AssignableFrom(args[0]->ToObject()->GetConstructorName())))) {
wxNode_wxTextAttr* style = args[0]->IsNull() ? NULL : wxNodeObject::unwrap<wxNode_wxTextAttr>(args[0]->ToObject()); /* type: _56555 */
bool returnVal = self->SetDefaultStyle(*style);
return scope.Close(v8::Boolean::New(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::SetDefaultStyle).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_GetValue(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36027
*/
if(args.Length() == 0) {
wxString returnVal = self->GetValue();
return scope.Close(v8::String::New(returnVal.mb_str()));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::GetValue).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_SetValue(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36028
*/
if(args.Length() == 1 && args[0]->IsString()) {
v8::String::AsciiValue value(args[0]->ToString()); /* type: _18997 */
self->SetValue(*value);
return v8::Undefined();
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::SetValue).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_GetDefaultAttributes(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36029
*/
if(args.Length() == 0) {
wxVisualAttributes returnVal = self->GetDefaultAttributes();
return scope.Close(wxNode_wxVisualAttributes::NewCopy(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::GetDefaultAttributes).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_GetClassDefaultAttributes(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36030
*/
if(args.Length() == 1 && args[0]->IsNumber()) {
wxWindowVariant variant = (wxWindowVariant)args[0]->ToNumber()->Value(); /* type: _13552 */
wxVisualAttributes returnVal = self->GetClassDefaultAttributes(variant);
return scope.Close(wxNode_wxVisualAttributes::NewCopy(returnVal));
}
/*
* id: _36030
*/
if(args.Length() == 0) {
wxVisualAttributes returnVal = self->GetClassDefaultAttributes();
return scope.Close(wxNode_wxVisualAttributes::NewCopy(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::GetClassDefaultAttributes).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
/*static*/ v8::Handle<v8::Value> wxNode_wxTextCtrl::_GetClassInfo(const v8::Arguments& args) {
v8::HandleScope scope;
wxNode_wxTextCtrl* self = unwrap<wxNode_wxTextCtrl>(args.This());
/*
* id: _36038
*/
if(args.Length() == 0) {
wxClassInfo* returnVal = self->GetClassInfo();
return scope.Close(wxNode_wxClassInfo::New(returnVal));
}
std::ostringstream errStr;
errStr << "Could not find matching method for arguments (method name: wxTextCtrl::GetClassInfo).\n";
errStr << " arg count: " << args.Length() << "\n";
for(int i = 0; i < args.Length(); i++) {
v8::String::AsciiValue argStr(args[i]);
errStr << " arg[" << i << "]: " << *argStr << "\n";
}
return v8::ThrowException(v8::Exception::TypeError(v8::String::New(errStr.str().c_str())));
}
| [
"joe@fernsroth.com"
] | joe@fernsroth.com |
75f1c0fd507a7fdf861dbeda8ab2d1a0c3aedbb9 | 31203d2ed6f94b7b6049a8d2371cc9c81ca0157d | /skid_steering/include/skid_steering/odometry.h | 118d0416460754b6453eeac0d08054eeee8c940a | [] | no_license | dennyboby/skid_steering_odometry | 573f0a412118c998a1280e88734382c9a5ce47e5 | 5bacd29b930489b8f852624021e0f05edb84a180 | refs/heads/master | 2023-04-20T03:30:33.498048 | 2021-05-21T14:02:59 | 2021-05-21T14:02:59 | 369,191,371 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,481 | h | #pragma once
#include <ros/ros.h>
#include <ros/time.h>
#include <boost/accumulators/accumulators.hpp>
#include <boost/accumulators/statistics/stats.hpp>
#include <boost/accumulators/statistics/rolling_mean.hpp>
#include <boost/function.hpp>
namespace skid_steering
{
namespace bacc = boost::accumulators;
/**
* \brief The Odometry class handles odometry readings
* (2D pose and velocity with related timestamp)
*/
class Odometry
{
public:
/// Integration function, used to integrate the odometry:
typedef boost::function<void(double, double, double)> IntegrationFunction;
/**
* \brief Constructor
* Value will be set to zero
* \param velocity_rolling_window_size Rolling window size used to compute the velocity mean
*/
Odometry(size_t velocity_rolling_window_size = 10);
/**
* \brief Initialize the odometry
* \param time Current time
*/
void init(const ros::Time &time);
/**
* \brief Updates the odometry class with latest wheels velocity
* \param front_left_vel Front left wheel velocity [m/s]
* \param front_right_vel Front left wheel velocity [m/s]
* \param rear_left_vel Front left wheel velocity [m/s]
* \param rear_right_vel Front left wheel velocity [m/s]
* \param time Current time
* \return true if the odometry is actually updated
*/
bool update(double front_left_vel, double front_right_vel,
double rear_left_vel, double rear_right_vel, const ros::Time &time);
/**
* \brief heading getter
* \return heading [rad]
*/
double getHeading() const
{
return heading_;
}
/**
* \brief x position getter
* \return x position [m]
*/
double getX() const
{
return x_;
}
/**
* \brief y position getter
* \return y position [m]
*/
double getY() const
{
return y_;
}
/**
* \brief linear velocity getter
* \return linear velocity [m/s]
*/
double getLinear() const
{
return linear_;
}
/**
* \brief angular velocity getter
* \return angular velocity [rad/s]
*/
double getAngular() const
{
return angular_;
}
/**
* \brief Resets odom x, y, heading to zero
*/
void resetOdom();
/**
* \brief Sets odom x, y, heading to given values
* \param x x value to be set [m]
* \param y y value to be set [m]
* \param theta orientation to be set [degree]
*/
void setOdom(double x, double y, double theta);
/**
* \brief Sets the odometry parameters
* \param wheel_separation Separation between left and right wheels [m]
* \param wheel_radius Wheel radius [m]
* \param chi A skidding multiplication factor
* \param integration_method Method to use for integration (0 for Euler and 1 for RungeKutta)
*/
void setParams(double wheel_separation, double wheel_radius, double chi, int integration_method);
/**
* \brief Velocity rolling window size setter
* \param velocity_rolling_window_size Velocity rolling window size
*/
void setVelocityRollingWindowSize(size_t velocity_rolling_window_size);
private:
/// Rolling mean accumulator and window:
typedef bacc::accumulator_set<double, bacc::stats<bacc::tag::rolling_mean> > RollingMeanAcc;
typedef bacc::tag::rolling_window RollingWindow;
/**
* \brief Integrates the velocities (linear and angular) using Runge-Kutta
* \param linear Linear velocity [m/s]
* \param angular Angular velocity [rad/s]
* \param dt The time difference between previous and current iteration
*/
void integrateRungeKutta(double linear, double angular, double dt);
/**
* \brief Integrates the velocities (linear and angular) using Euler
* \param linear Linear velocity [m/s]
* \param angular Angular velocity [rad/s]
* \param dt The time difference between previous and current iteration
*/
void integrateEuler(double linear, double angular, double dt);
/**
* \brief Integrates the velocities (linear and angular) using the specified method
* \param linear Linear velocity [m/s]
* \param angular Angular velocity [rad/s]
* \param dt The time difference between previous and current iteration
*/
void integrateMethod(double linear, double angular, double dt);
/**
* \brief Computes the ICR coefficient
* \param lamda Nondimensional path curvature variable
* \return ICR coefficient
*/
double computeICRCoefficient(double lamda);
/**
* \brief Reset linear and angular accumulators
*/
void resetAccumulators();
/// Current timestamp:
ros::Time timestamp_;
/// Current pose:
double x_; // [m]
double y_; // [m]
double heading_; // [rad]
/// Current velocity:
double linear_; // [m/s]
double angular_; // [rad/s]
/// Parameters:
double wheel_separation_; // [m]
double wheel_radius_; // [m]
double chi_; // [m]
int integration_method_; // [0 or 1]
/// Rolling mean accumulators for the linar and angular velocities:
size_t velocity_rolling_window_size_;
RollingMeanAcc linear_acc_;
RollingMeanAcc angular_acc_;
/// Integration funcion, used to integrate the odometry:
IntegrationFunction integrate_fun_;
};
} | [
"dennyboby123@gmail.com"
] | dennyboby123@gmail.com |
8ac6ad8af4d8406b5e00f4aa45f783309923dde7 | b999e8c802019a6eaa1ce4bb8d054349a37eee25 | /gm/encode-srgb.cpp | be3cd62f8b72bd78d3f88e759dcac928bcbdeb61 | [
"BSD-3-Clause"
] | permissive | kniefliu/skia | a647dd2011660f72c946362aad24f8d44836f928 | f7d3ea6d9ec7a3d8ef17456cc23da7291737c680 | refs/heads/master | 2021-06-09T02:42:35.989816 | 2020-03-22T09:28:02 | 2020-03-22T09:28:02 | 150,810,052 | 4 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 5,190 | cpp | /*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "gm.h"
#include "Resources.h"
#include "SkCanvas.h"
#include "SkCodec.h"
#include "SkColorSpace_Base.h"
#include "SkData.h"
#include "SkImage.h"
#include "SkImageEncoderPriv.h"
#include "SkJpegEncoder.h"
#include "SkPngEncoder.h"
#include "SkPM4f.h"
#include "SkSRGB.h"
#include "SkWebpEncoder.h"
namespace skiagm {
static const int imageWidth = 128;
static const int imageHeight = 128;
sk_sp<SkColorSpace> fix_for_colortype(sk_sp<SkColorSpace> colorSpace, SkColorType colorType) {
if (kRGBA_F16_SkColorType == colorType) {
if (!colorSpace) {
return SkColorSpace::MakeSRGBLinear();
}
return as_CSB(colorSpace)->makeLinearGamma();
}
return colorSpace;
}
static void make(SkBitmap* bitmap, SkColorType colorType, SkAlphaType alphaType,
sk_sp<SkColorSpace> colorSpace) {
const char* resource;
switch (colorType) {
case kGray_8_SkColorType:
resource = "grayscale.jpg";
alphaType = kOpaque_SkAlphaType;
break;
case kRGB_565_SkColorType:
resource = "color_wheel.jpg";
alphaType = kOpaque_SkAlphaType;
break;
default:
resource = (kOpaque_SkAlphaType == alphaType) ? "color_wheel.jpg"
: "color_wheel.png";
break;
}
sk_sp<SkData> data = GetResourceAsData(resource);
std::unique_ptr<SkCodec> codec = SkCodec::MakeFromData(data);
SkImageInfo dstInfo = codec->getInfo().makeColorType(colorType)
.makeAlphaType(alphaType)
.makeColorSpace(fix_for_colortype(colorSpace, colorType));
bitmap->allocPixels(dstInfo);
codec->getPixels(dstInfo, bitmap->getPixels(), bitmap->rowBytes());
}
static sk_sp<SkData> encode_data(const SkBitmap& bitmap, SkEncodedImageFormat format) {
SkPixmap src;
if (!bitmap.peekPixels(&src)) {
return nullptr;
}
SkDynamicMemoryWStream buf;
SkPngEncoder::Options pngOptions;
SkWebpEncoder::Options webpOptions;
SkTransferFunctionBehavior behavior = bitmap.colorSpace()
? SkTransferFunctionBehavior::kRespect : SkTransferFunctionBehavior::kIgnore;
pngOptions.fUnpremulBehavior = behavior;
webpOptions.fUnpremulBehavior = behavior;
switch (format) {
case SkEncodedImageFormat::kPNG:
SkAssertResult(SkPngEncoder::Encode(&buf, src, pngOptions));
break;
case SkEncodedImageFormat::kWEBP:
SkAssertResult(SkWebpEncoder::Encode(&buf, src, webpOptions));
break;
case SkEncodedImageFormat::kJPEG:
SkAssertResult(SkJpegEncoder::Encode(&buf, src, SkJpegEncoder::Options()));
break;
default:
break;
}
return buf.detachAsData();
}
class EncodeSRGBGM : public GM {
public:
EncodeSRGBGM(SkEncodedImageFormat format)
: fEncodedFormat(format)
{}
protected:
SkString onShortName() override {
const char* format = nullptr;
switch (fEncodedFormat) {
case SkEncodedImageFormat::kPNG:
format = "png";
break;
case SkEncodedImageFormat::kWEBP:
format = "webp";
break;
case SkEncodedImageFormat::kJPEG:
format = "jpg";
break;
default:
break;
}
return SkStringPrintf("encode-srgb-%s", format);
}
SkISize onISize() override {
return SkISize::Make(imageWidth * 2, imageHeight * 15);
}
void onDraw(SkCanvas* canvas) override {
const SkColorType colorTypes[] = {
kN32_SkColorType, kRGBA_F16_SkColorType, kGray_8_SkColorType, kRGB_565_SkColorType,
};
const SkAlphaType alphaTypes[] = {
kUnpremul_SkAlphaType, kPremul_SkAlphaType, kOpaque_SkAlphaType,
};
const sk_sp<SkColorSpace> colorSpaces[] = {
nullptr, SkColorSpace::MakeSRGB(),
};
SkBitmap bitmap;
for (SkColorType colorType : colorTypes) {
for (SkAlphaType alphaType : alphaTypes) {
canvas->save();
for (sk_sp<SkColorSpace> colorSpace : colorSpaces) {
make(&bitmap, colorType, alphaType, colorSpace);
auto image = SkImage::MakeFromEncoded(encode_data(bitmap, fEncodedFormat));
canvas->drawImage(image.get(), 0.0f, 0.0f);
canvas->translate((float) imageWidth, 0.0f);
}
canvas->restore();
canvas->translate(0.0f, (float) imageHeight);
}
}
}
private:
SkEncodedImageFormat fEncodedFormat;
typedef GM INHERITED;
};
DEF_GM( return new EncodeSRGBGM(SkEncodedImageFormat::kPNG); )
DEF_GM( return new EncodeSRGBGM(SkEncodedImageFormat::kWEBP); )
DEF_GM( return new EncodeSRGBGM(SkEncodedImageFormat::kJPEG); )
}
| [
"liuxiufeng@qiyi.com"
] | liuxiufeng@qiyi.com |
05e18f8d7bd4b07d3043c23b3e370316f7b2063d | fa6b5a15bd5d7ed857c1705e26f58f7f6452c1cd | /BINARY TREE/29.Maximum sum of nodes in Binary tree such that no two are adjacent.cpp | d9a3a92def2a41fb389c4c0eda92cf53fea297a6 | [] | no_license | retro-2106/DSA_450_questions | d4cadc840f168a388db5258581712372be3e8629 | 7b23eba2661d6596870848ca3e3d1582236ca46f | refs/heads/main | 2023-06-14T13:08:35.856589 | 2021-07-04T11:28:21 | 2021-07-04T11:28:21 | 308,229,380 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 546 | cpp | pair<int, int> maxSumHelper(Node *root)
{
if (root==NULL)
{
pair<int, int> sum(0, 0);
return sum;
}
pair<int, int> sum1 = maxSumHelper(root->left);
pair<int, int> sum2 = maxSumHelper(root->right);
pair<int, int> sum;
sum.first = sum1.second + sum2.second + root->data;
sum.second = max(sum1.first, sum1.second) +
max(sum2.first, sum2.second);
return sum;
}
int maxSum(Node *root)
{
pair<int, int> res = maxSumHelper(root);
return max(res.first, res.second);
} | [
"ashishcool2106@gmail.com"
] | ashishcool2106@gmail.com |
15b5f01e7d48b76a673eff5de6dd369f1395ffb6 | 738e57baa928d6074d8ca5aaac609f617f429d2b | /cpp/base/anagram.cpp | 239c7b481f6a9deb2526dfd1d23993367aa768d3 | [] | no_license | shivamach/MISC | 82cd26ef38b7040b994fe7706a540f52f6dc9383 | 81d2ef25100d1417416c005ed8244fab0582ce4f | refs/heads/master | 2022-12-20T04:04:07.866365 | 2020-09-25T18:32:36 | 2020-09-25T18:32:36 | 258,191,311 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 178 | cpp | #include<iostream>
#include<cstdio>
using namespace std;
int main(){
char alphabets[5] = {'a','b','c','d','e'};
for(int i=0;i<5;i++){
printf("%d\n",alphabets[i]);}
return 0;
}
| [
"shivamach13@gmail.com"
] | shivamach13@gmail.com |
8d61abd6d4bea7e13dba8dc4ffd3589c1678a911 | e25c1d26c2966c8620ad124be995b02c97991518 | /Source/BansheePhysX/BsPhysX.cpp | 30da057acf356442beffccfd23c0a31200e3a4a3 | [] | no_license | yongweisun/BansheeEngine | 105606415219e2a632fad513f93c5765be03adf3 | 3f9679ef388b977760028b044d91b66fec776856 | refs/heads/master | 2021-05-12T15:08:38.731950 | 2018-01-10T12:16:20 | 2018-01-10T12:16:20 | 116,974,772 | 0 | 1 | null | 2018-01-10T15:24:28 | 2018-01-10T15:24:28 | null | UTF-8 | C++ | false | false | 36,306 | cpp | #include "BsPhysX.h"
#include "PxPhysicsAPI.h"
#include "BsPhysXMaterial.h"
#include "BsPhysXMesh.h"
#include "BsPhysXRigidbody.h"
#include "BsPhysXBoxCollider.h"
#include "BsPhysXSphereCollider.h"
#include "BsPhysXPlaneCollider.h"
#include "BsPhysXCapsuleCollider.h"
#include "BsPhysXMeshCollider.h"
#include "BsPhysXFixedJoint.h"
#include "BsPhysXDistanceJoint.h"
#include "BsPhysXHingeJoint.h"
#include "BsPhysXSphericalJoint.h"
#include "BsPhysXSliderJoint.h"
#include "BsPhysXD6Joint.h"
#include "BsPhysXCharacterController.h"
#include "Threading/BsTaskScheduler.h"
#include "Components/BsCCollider.h"
#include "BsFPhysXCollider.h"
#include "Utility/BsTime.h"
#include "Math/BsVector3.h"
#include "Math/BsAABox.h"
#include "Math/BsCapsule.h"
#include "foundation/PxTransform.h"
using namespace physx;
namespace bs
{
class PhysXAllocator : public PxAllocatorCallback
{
public:
void* allocate(size_t size, const char*, const char*, int) override
{
void* ptr = bs_alloc_aligned16((UINT32)size);
PX_ASSERT((reinterpret_cast<size_t>(ptr) & 15) == 0);
return ptr;
}
void deallocate(void* ptr) override
{
bs_free_aligned16(ptr);
}
};
class PhysXErrorCallback : public PxErrorCallback
{
public:
void reportError(PxErrorCode::Enum code, const char* message, const char* file, int line) override
{
const char* errorCode = nullptr;
UINT32 severity = 0;
if ((code & PxErrorCode::eDEBUG_INFO) != 0)
{
errorCode = "Info";
severity = 0;
}
if((code & PxErrorCode::eINVALID_PARAMETER) != 0)
{
errorCode = "Invalid parameter";
severity = 1;
}
if ((code & PxErrorCode::eINVALID_OPERATION) != 0)
{
errorCode = "Invalid operation";
severity = 1;
}
if ((code & PxErrorCode::eDEBUG_WARNING) != 0)
{
errorCode = "Generic";
severity = 1;
}
if ((code & PxErrorCode::ePERF_WARNING) != 0)
{
errorCode = "Performance";
severity = 1;
}
if ((code & PxErrorCode::eOUT_OF_MEMORY) != 0)
{
errorCode = "Out of memory";
severity = 2;
}
if ((code & PxErrorCode::eABORT) != 0)
{
errorCode = "Abort";
severity = 2;
}
if ((code & PxErrorCode::eINTERNAL_ERROR) != 0)
{
errorCode = "Internal";
severity = 2;
}
StringStream ss;
switch(severity)
{
case 0:
ss << "PhysX info (" << errorCode << "): " << message << " at " << file << ":" << line;
LOGDBG(ss.str());
break;
case 1:
ss << "PhysX warning (" << errorCode << "): " << message << " at " << file << ":" << line;
LOGWRN(ss.str());
break;
case 2:
ss << "PhysX error (" << errorCode << "): " << message << " at " << file << ":" << line;
LOGERR(ss.str());
BS_ASSERT(false); // Halt execution on debug builds when error occurs
break;
}
}
};
class PhysXEventCallback : public PxSimulationEventCallback
{
void onWake(PxActor** actors, PxU32 count) override { /* Do nothing */ }
void onSleep(PxActor** actors, PxU32 count) override { /* Do nothing */ }
void onTrigger(PxTriggerPair* pairs, PxU32 count) override
{
for (PxU32 i = 0; i < count; i++)
{
const PxTriggerPair& pair = pairs[i];
if (pair.triggerShape->userData == nullptr)
continue;
PhysX::ContactEventType type;
bool ignoreContact = false;
PhysXObjectFilterFlags flags = PhysXObjectFilterFlags(pair.triggerShape->getSimulationFilterData().word2);
if (flags.isSet(PhysXObjectFilterFlag::ReportAll))
{
switch ((UINT32)pair.status)
{
case PxPairFlag::eNOTIFY_TOUCH_FOUND:
type = PhysX::ContactEventType::ContactBegin;
break;
case PxPairFlag::eNOTIFY_TOUCH_PERSISTS:
type = PhysX::ContactEventType::ContactStay;
break;
case PxPairFlag::eNOTIFY_TOUCH_LOST:
type = PhysX::ContactEventType::ContactEnd;
break;
default:
ignoreContact = true;
break;
}
}
else if (flags.isSet(PhysXObjectFilterFlag::ReportBasic))
{
switch ((UINT32)pair.status)
{
case PxPairFlag::eNOTIFY_TOUCH_FOUND:
type = PhysX::ContactEventType::ContactBegin;
break;
case PxPairFlag::eNOTIFY_TOUCH_LOST:
type = PhysX::ContactEventType::ContactEnd;
break;
default:
ignoreContact = true;
break;
}
}
else
ignoreContact = true;
if (ignoreContact)
continue;
PhysX::TriggerEvent event;
event.trigger = (Collider*)pair.triggerShape->userData;
event.other = (Collider*)pair.otherShape->userData;
event.type = type;
gPhysX()._reportTriggerEvent(event);
}
}
void onContact(const PxContactPairHeader& pairHeader, const PxContactPair* pairs, PxU32 count) override
{
for (PxU32 i = 0; i < count; i++)
{
const PxContactPair& pair = pairs[i];
PhysX::ContactEventType type;
bool ignoreContact = false;
switch((UINT32)pair.events)
{
case PxPairFlag::eNOTIFY_TOUCH_FOUND:
type = PhysX::ContactEventType::ContactBegin;
break;
case PxPairFlag::eNOTIFY_TOUCH_PERSISTS:
type = PhysX::ContactEventType::ContactStay;
break;
case PxPairFlag::eNOTIFY_TOUCH_LOST:
type = PhysX::ContactEventType::ContactEnd;
break;
default:
ignoreContact = true;
break;
}
if (ignoreContact)
continue;
PhysX::ContactEvent event;
event.type = type;
PxU32 contactCount = pair.contactCount;
const PxU8* stream = pair.contactStream;
PxU16 streamSize = pair.contactStreamSize;
if (contactCount > 0 && streamSize > 0)
{
PxU32 contactIdx = 0;
PxContactStreamIterator iter((PxU8*)stream, streamSize);
stream += ((streamSize + 15) & ~15);
const PxReal* impulses = reinterpret_cast<const PxReal*>(stream);
PxU32 hasImpulses = (pair.flags & PxContactPairFlag::eINTERNAL_HAS_IMPULSES);
while (iter.hasNextPatch())
{
iter.nextPatch();
while (iter.hasNextContact())
{
iter.nextContact();
ContactPoint point;
point.position = fromPxVector(iter.getContactPoint());
point.separation = iter.getSeparation();
point.normal = fromPxVector(iter.getContactNormal());
if (hasImpulses)
point.impulse = impulses[contactIdx];
else
point.impulse = 0.0f;
event.points.push_back(point);
contactIdx++;
}
}
}
event.colliderA = (Collider*)pair.shapes[0]->userData;
event.colliderB = (Collider*)pair.shapes[1]->userData;
gPhysX()._reportContactEvent(event);
}
}
void onConstraintBreak(PxConstraintInfo* constraints, PxU32 count) override
{
for (UINT32 i = 0; i < count; i++)
{
PxConstraintInfo& constraintInfo = constraints[i];
if (constraintInfo.type != PxConstraintExtIDs::eJOINT)
continue;
PxJoint* pxJoint = (PxJoint*)constraintInfo.externalReference;
PhysX::JointBreakEvent event;
event.joint = (Joint*)pxJoint->userData;
if(event.joint != nullptr)
gPhysX()._reportJointBreakEvent(event);
}
}
};
class PhysXCPUDispatcher : public PxCpuDispatcher
{
public:
void submitTask(PxBaseTask& physxTask) override
{
// Note: Banshee's task scheduler is pretty low granularity. Consider a better task manager in case PhysX ends
// up submitting many tasks.
// - PhysX's task manager doesn't seem much lighter either. But perhaps I can at least create a task pool to
// avoid allocating them constantly.
auto runTask = [&]() { physxTask.run(); physxTask.release(); };
SPtr<Task> task = Task::create("PhysX", runTask);
TaskScheduler::instance().addTask(task);
}
PxU32 getWorkerCount() const override
{
return (PxU32)TaskScheduler::instance().getNumWorkers();
}
};
class PhysXBroadPhaseCallback : public PxBroadPhaseCallback
{
void onObjectOutOfBounds(PxShape& shape, PxActor& actor) override
{
Collider* collider = (Collider*)shape.userData;
if (collider != nullptr)
LOGWRN("Physics object out of bounds. Consider increasing broadphase region!");
}
void onObjectOutOfBounds(PxAggregate& aggregate) override { /* Do nothing */ }
};
PxFilterFlags PhysXFilterShader(PxFilterObjectAttributes attr0, PxFilterData data0, PxFilterObjectAttributes attr1,
PxFilterData data1, PxPairFlags& pairFlags, const void* constantBlock, PxU32 constantBlockSize)
{
PhysXObjectFilterFlags flags0 = PhysXObjectFilterFlags(data0.word2);
PhysXObjectFilterFlags flags1 = PhysXObjectFilterFlags(data1.word2);
if (flags0.isSet(PhysXObjectFilterFlag::ReportAll) || flags1.isSet(PhysXObjectFilterFlag::ReportAll))
pairFlags |= PxPairFlag::eNOTIFY_TOUCH_FOUND | PxPairFlag::eNOTIFY_TOUCH_LOST | PxPairFlag::eNOTIFY_TOUCH_PERSISTS | PxPairFlag::eNOTIFY_CONTACT_POINTS;
else if (flags0.isSet(PhysXObjectFilterFlag::ReportBasic) || flags1.isSet(PhysXObjectFilterFlag::ReportBasic))
pairFlags |= PxPairFlag::eNOTIFY_TOUCH_FOUND | PxPairFlag::eNOTIFY_TOUCH_LOST | PxPairFlag::eNOTIFY_CONTACT_POINTS;
if (PxFilterObjectIsTrigger(attr0) || PxFilterObjectIsTrigger(attr1))
{
if (!pairFlags)
return PxFilterFlag::eSUPPRESS; // Trigger with no notify flags
pairFlags |= PxPairFlag::eDETECT_DISCRETE_CONTACT;
return PxFilterFlags();
}
UINT64 groupA = *(UINT64*)&data0.word0;
UINT64 groupB = *(UINT64*)&data1.word0;
bool canCollide = gPhysics().isCollisionEnabled(groupA, groupB);
if (!canCollide)
return PxFilterFlag::eSUPPRESS;
if (flags0.isSet(PhysXObjectFilterFlag::CCD) || flags1.isSet(PhysXObjectFilterFlag::CCD))
pairFlags |= PxPairFlag::eDETECT_CCD_CONTACT;
pairFlags |= PxPairFlag::eSOLVE_CONTACT | PxPairFlag::eDETECT_DISCRETE_CONTACT;
return PxFilterFlags();
}
void parseHit(const PxRaycastHit& input, PhysicsQueryHit& output)
{
output.point = fromPxVector(input.position);
output.normal = fromPxVector(input.normal);
output.distance = input.distance;
output.triangleIdx = input.faceIndex;
output.uv = Vector2(input.u, input.v);
output.colliderRaw = (Collider*)input.shape->userData;
if (output.colliderRaw != nullptr)
{
CCollider* component = (CCollider*)output.colliderRaw->_getOwner(PhysicsOwnerType::Component);
if (component != nullptr)
output.collider = component->getHandle();
}
}
void parseHit(const PxSweepHit& input, PhysicsQueryHit& output)
{
output.point = fromPxVector(input.position);
output.normal = fromPxVector(input.normal);
output.uv = Vector2::ZERO;
output.distance = input.distance;
output.triangleIdx = input.faceIndex;
output.colliderRaw = (Collider*)input.shape->userData;
if (output.colliderRaw != nullptr)
{
CCollider* component = (CCollider*)output.colliderRaw->_getOwner(PhysicsOwnerType::Component);
if (component != nullptr)
output.collider = component->getHandle();
}
}
struct PhysXRaycastQueryCallback : PxRaycastCallback
{
static const int MAX_HITS = 32;
PxRaycastHit buffer[MAX_HITS];
Vector<PhysicsQueryHit> data;
PhysXRaycastQueryCallback()
:PxRaycastCallback(buffer, MAX_HITS)
{ }
PxAgain processTouches(const PxRaycastHit* buffer, PxU32 nbHits) override
{
for (PxU32 i = 0; i < nbHits; i++)
{
data.push_back(PhysicsQueryHit());
parseHit(buffer[i], data.back());
}
return true;
}
};
struct PhysXSweepQueryCallback : PxSweepCallback
{
static const int MAX_HITS = 32;
PxSweepHit buffer[MAX_HITS];
Vector<PhysicsQueryHit> data;
PhysXSweepQueryCallback()
:PxSweepCallback(buffer, MAX_HITS)
{ }
PxAgain processTouches(const PxSweepHit* buffer, PxU32 nbHits) override
{
for (PxU32 i = 0; i < nbHits; i++)
{
data.push_back(PhysicsQueryHit());
parseHit(buffer[i], data.back());
}
return true;
}
};
struct PhysXOverlapQueryCallback : PxOverlapCallback
{
static const int MAX_HITS = 32;
PxOverlapHit buffer[MAX_HITS];
Vector<Collider*> data;
PhysXOverlapQueryCallback()
:PxOverlapCallback(buffer, MAX_HITS)
{ }
PxAgain processTouches(const PxOverlapHit* buffer, PxU32 nbHits) override
{
for (PxU32 i = 0; i < nbHits; i++)
data.push_back((Collider*)buffer[i].shape->userData);
return true;
}
};
static PhysXAllocator gPhysXAllocator;
static PhysXErrorCallback gPhysXErrorHandler;
static PhysXCPUDispatcher gPhysXCPUDispatcher;
static PhysXEventCallback gPhysXEventCallback;
static PhysXBroadPhaseCallback gPhysXBroadphaseCallback;
static const UINT32 SIZE_16K = 1 << 14;
const UINT32 PhysX::SCRATCH_BUFFER_SIZE = SIZE_16K * 64; // 1MB by default
const UINT32 PhysX::MAX_ITERATIONS_PER_FRAME = 4; // At 60 physics updates per second this would mean user is running at 15fps
PhysX::PhysX(const PHYSICS_INIT_DESC& input)
:Physics(input)
{
mScale.length = input.typicalLength;
mScale.speed = input.typicalSpeed;
mFoundation = PxCreateFoundation(PX_PHYSICS_VERSION, gPhysXAllocator, gPhysXErrorHandler);
mPhysics = PxCreateBasePhysics(PX_PHYSICS_VERSION, *mFoundation, mScale);
PxRegisterArticulations(*mPhysics);
if (input.initCooking)
{
// Note: PhysX supports cooking for specific platforms to make the generated results better. Consider
// allowing the meshes to be re-cooked when target platform is changed. Right now we just use the default value.
PxCookingParams cookingParams(mScale);
mCooking = PxCreateCooking(PX_PHYSICS_VERSION, *mFoundation, cookingParams);
}
PxSceneDesc sceneDesc(mScale); // TODO - Test out various other parameters provided by scene desc
sceneDesc.gravity = toPxVector(input.gravity);
sceneDesc.cpuDispatcher = &gPhysXCPUDispatcher;
sceneDesc.filterShader = PhysXFilterShader;
sceneDesc.simulationEventCallback = &gPhysXEventCallback;
sceneDesc.broadPhaseCallback = &gPhysXBroadphaseCallback;
// Optionally: eENABLE_KINEMATIC_STATIC_PAIRS, eENABLE_KINEMATIC_PAIRS, eENABLE_PCM
sceneDesc.flags = PxSceneFlag::eENABLE_ACTIVETRANSFORMS;
if (input.flags.isSet(PhysicsFlag::CCD_Enable))
sceneDesc.flags |= PxSceneFlag::eENABLE_CCD;
// Optionally: eMBP
sceneDesc.broadPhaseType = PxBroadPhaseType::eSAP;
mScene = mPhysics->createScene(sceneDesc);
// Character controller
mCharManager = PxCreateControllerManager(*mScene);
mSimulationStep = input.timeStep;
mSimulationTime = -mSimulationStep * 1.01f; // Ensures simulation runs on the first frame
mDefaultMaterial = mPhysics->createMaterial(0.0f, 0.0f, 0.0f);
}
PhysX::~PhysX()
{
mCharManager->release();
mScene->release();
if (mCooking != nullptr)
mCooking->release();
mPhysics->release();
mFoundation->release();
}
void PhysX::update()
{
if (mPaused)
return;
mUpdateInProgress = true;
float nextFrameTime = mSimulationTime + mSimulationStep;
mFrameTime += gTime().getFrameDelta();
if(mFrameTime < nextFrameTime)
{
// Note: Potentially interpolate (would mean a one frame delay needs to be introduced)
return;
}
float simulationAmount = std::max(mFrameTime - mSimulationTime, mSimulationStep); // At least one step
INT32 numIterations = Math::floorToInt(simulationAmount / mSimulationStep);
// If too many iterations are required, increase time step. This should only happen in extreme situations (or when
// debugging).
float step = mSimulationStep;
if (numIterations > (INT32)MAX_ITERATIONS_PER_FRAME)
step = (simulationAmount / MAX_ITERATIONS_PER_FRAME) * 0.99f;
UINT32 iterationCount = 0;
while (simulationAmount >= step) // In case we're running really slow multiple updates might be needed
{
// Note: Consider delaying fetchResults one frame. This could improve performance because Physics update would be
// able to run parallel to the simulation thread, but at a cost to input latency.
bs_frame_mark();
UINT8* scratchBuffer = bs_frame_alloc_aligned(SCRATCH_BUFFER_SIZE, 16);
mScene->simulate(step, nullptr, scratchBuffer, SCRATCH_BUFFER_SIZE);
simulationAmount -= step;
mSimulationTime += step;
UINT32 errorState;
if(!mScene->fetchResults(true, &errorState))
{
LOGWRN("Physics simulation failed. Error code: " + toString(errorState));
bs_frame_free_aligned(scratchBuffer);
bs_frame_clear();
iterationCount++;
continue;
}
bs_frame_free_aligned(scratchBuffer);
bs_frame_clear();
iterationCount++;
}
// Update rigidbodies with new transforms
PxU32 numActiveTransforms;
const PxActiveTransform* activeTransforms = mScene->getActiveTransforms(numActiveTransforms);
for (PxU32 i = 0; i < numActiveTransforms; i++)
{
Rigidbody* rigidbody = static_cast<Rigidbody*>(activeTransforms[i].userData);
// Note: This should never happen, as actors gets their userData set to null when they're destroyed. However
// in some cases PhysX seems to keep those actors alive for a frame or few, and reports their state here. Until
// I find out why I need to perform this check.
if(activeTransforms[i].actor->userData == nullptr)
continue;
const PxTransform& transform = activeTransforms[i].actor2World;
// Note: Make this faster, avoid dereferencing Rigidbody and attempt to access pos/rot destination directly,
// use non-temporal writes
rigidbody->_setTransform(fromPxVector(transform.p), fromPxQuaternion(transform.q));
}
// Note: Consider extrapolating for the remaining "simulationAmount" value
mUpdateInProgress = false;
triggerEvents();
}
void PhysX::_reportContactEvent(const ContactEvent& event)
{
mContactEvents.push_back(event);
}
void PhysX::_reportTriggerEvent(const TriggerEvent& event)
{
mTriggerEvents.push_back(event);
}
void PhysX::_reportJointBreakEvent(const JointBreakEvent& event)
{
mJointBreakEvents.push_back(event);
}
void PhysX::triggerEvents()
{
CollisionDataRaw data;
for(auto& entry : mTriggerEvents)
{
data.colliders[0] = entry.trigger;
data.colliders[1] = entry.other;
switch (entry.type)
{
case ContactEventType::ContactBegin:
entry.trigger->onCollisionBegin(data);
break;
case ContactEventType::ContactStay:
entry.trigger->onCollisionStay(data);
break;
case ContactEventType::ContactEnd:
entry.trigger->onCollisionEnd(data);
break;
}
}
auto notifyContact = [&](Collider* obj, Collider* other, ContactEventType type,
const Vector<ContactPoint>& points, bool flipNormals = false)
{
data.colliders[0] = obj;
data.colliders[1] = other;
data.contactPoints = points;
if(flipNormals)
{
for (auto& point : data.contactPoints)
point.normal = -point.normal;
}
Rigidbody* rigidbody = obj->getRigidbody();
if(rigidbody != nullptr)
{
switch (type)
{
case ContactEventType::ContactBegin:
rigidbody->onCollisionBegin(data);
break;
case ContactEventType::ContactStay:
rigidbody->onCollisionStay(data);
break;
case ContactEventType::ContactEnd:
rigidbody->onCollisionEnd(data);
break;
}
}
else
{
switch (type)
{
case ContactEventType::ContactBegin:
obj->onCollisionBegin(data);
break;
case ContactEventType::ContactStay:
obj->onCollisionStay(data);
break;
case ContactEventType::ContactEnd:
obj->onCollisionEnd(data);
break;
}
}
};
for (auto& entry : mContactEvents)
{
if (entry.colliderA != nullptr)
{
CollisionReportMode reportModeA = entry.colliderA->getCollisionReportMode();
if (reportModeA == CollisionReportMode::ReportPersistent)
notifyContact(entry.colliderA, entry.colliderB, entry.type, entry.points, true);
else if (reportModeA == CollisionReportMode::Report && entry.type != ContactEventType::ContactStay)
notifyContact(entry.colliderA, entry.colliderB, entry.type, entry.points, true);
}
if (entry.colliderB != nullptr)
{
CollisionReportMode reportModeB = entry.colliderB->getCollisionReportMode();
if (reportModeB == CollisionReportMode::ReportPersistent)
notifyContact(entry.colliderB, entry.colliderA, entry.type, entry.points, false);
else if (reportModeB == CollisionReportMode::Report && entry.type != ContactEventType::ContactStay)
notifyContact(entry.colliderB, entry.colliderA, entry.type, entry.points, false);
}
}
for(auto& entry : mJointBreakEvents)
{
entry.joint->onJointBreak();
}
mTriggerEvents.clear();
mContactEvents.clear();
mJointBreakEvents.clear();
}
SPtr<PhysicsMaterial> PhysX::createMaterial(float staticFriction, float dynamicFriction, float restitution)
{
return bs_core_ptr_new<PhysXMaterial>(mPhysics, staticFriction, dynamicFriction, restitution);
}
SPtr<PhysicsMesh> PhysX::createMesh(const SPtr<MeshData>& meshData, PhysicsMeshType type)
{
return bs_core_ptr_new<PhysXMesh>(meshData, type);
}
SPtr<Rigidbody> PhysX::createRigidbody(const HSceneObject& linkedSO)
{
return bs_shared_ptr_new<PhysXRigidbody>(mPhysics, mScene, linkedSO);
}
SPtr<BoxCollider> PhysX::createBoxCollider(const Vector3& extents, const Vector3& position,
const Quaternion& rotation)
{
return bs_shared_ptr_new<PhysXBoxCollider>(mPhysics, position, rotation, extents);
}
SPtr<SphereCollider> PhysX::createSphereCollider(float radius, const Vector3& position, const Quaternion& rotation)
{
return bs_shared_ptr_new<PhysXSphereCollider>(mPhysics, position, rotation, radius);
}
SPtr<PlaneCollider> PhysX::createPlaneCollider(const Vector3& position, const Quaternion& rotation)
{
return bs_shared_ptr_new<PhysXPlaneCollider>(mPhysics, position, rotation);
}
SPtr<CapsuleCollider> PhysX::createCapsuleCollider(float radius, float halfHeight, const Vector3& position,
const Quaternion& rotation)
{
return bs_shared_ptr_new<PhysXCapsuleCollider>(mPhysics, position, rotation, radius, halfHeight);
}
SPtr<MeshCollider> PhysX::createMeshCollider(const Vector3& position, const Quaternion& rotation)
{
return bs_shared_ptr_new<PhysXMeshCollider>(mPhysics, position, rotation);
}
SPtr<FixedJoint> PhysX::createFixedJoint(const FIXED_JOINT_DESC& desc)
{
return bs_shared_ptr_new<PhysXFixedJoint>(mPhysics, desc);
}
SPtr<DistanceJoint> PhysX::createDistanceJoint(const DISTANCE_JOINT_DESC& desc)
{
return bs_shared_ptr_new<PhysXDistanceJoint>(mPhysics, desc);
}
SPtr<HingeJoint> PhysX::createHingeJoint(const HINGE_JOINT_DESC& desc)
{
return bs_shared_ptr_new<PhysXHingeJoint>(mPhysics, desc);
}
SPtr<SphericalJoint> PhysX::createSphericalJoint(const SPHERICAL_JOINT_DESC& desc)
{
return bs_shared_ptr_new<PhysXSphericalJoint>(mPhysics, desc);
}
SPtr<SliderJoint> PhysX::createSliderJoint(const SLIDER_JOINT_DESC& desc)
{
return bs_shared_ptr_new<PhysXSliderJoint>(mPhysics, desc);
}
SPtr<D6Joint> PhysX::createD6Joint(const D6_JOINT_DESC& desc)
{
return bs_shared_ptr_new<PhysXD6Joint>(mPhysics, desc);
}
SPtr<CharacterController> PhysX::createCharacterController(const CHAR_CONTROLLER_DESC& desc)
{
return bs_shared_ptr_new<PhysXCharacterController>(mCharManager, desc);
}
Vector<PhysicsQueryHit> PhysX::sweepAll(const PxGeometry& geometry, const PxTransform& tfrm, const Vector3& unitDir,
UINT64 layer, float maxDist) const
{
PhysXSweepQueryCallback output;
PxQueryFilterData filterData;
memcpy(&filterData.data.word0, &layer, sizeof(layer));
mScene->sweep(geometry, tfrm, toPxVector(unitDir), maxDist, output,
PxHitFlag::eDEFAULT | PxHitFlag::eUV, filterData);
return output.data;
}
bool PhysX::sweepAny(const PxGeometry& geometry, const PxTransform& tfrm, const Vector3& unitDir, UINT64 layer,
float maxDist) const
{
PxSweepBuffer output;
PxQueryFilterData filterData;
filterData.flags |= PxQueryFlag::eANY_HIT;
memcpy(&filterData.data.word0, &layer, sizeof(layer));
return mScene->sweep(geometry, tfrm, toPxVector(unitDir), maxDist, output,
PxHitFlag::eDEFAULT | PxHitFlag::eUV | PxHitFlag::eMESH_ANY, filterData);
}
bool PhysX::rayCast(const Vector3& origin, const Vector3& unitDir, PhysicsQueryHit& hit, UINT64 layer, float max) const
{
PxRaycastBuffer output;
PxQueryFilterData filterData;
memcpy(&filterData.data.word0, &layer, sizeof(layer));
bool wasHit = mScene->raycast(toPxVector(origin),
toPxVector(unitDir), max, output, PxHitFlag::eDEFAULT | PxHitFlag::eUV, filterData);
if (wasHit)
parseHit(output.block, hit);
return wasHit;
}
bool PhysX::boxCast(const AABox& box, const Quaternion& rotation, const Vector3& unitDir, PhysicsQueryHit& hit,
UINT64 layer, float max) const
{
PxBoxGeometry geometry(toPxVector(box.getHalfSize()));
PxTransform transform = toPxTransform(box.getCenter(), rotation);
return sweep(geometry, transform, unitDir, hit, layer, max);
}
bool PhysX::sphereCast(const Sphere& sphere, const Vector3& unitDir, PhysicsQueryHit& hit,
UINT64 layer, float max) const
{
PxSphereGeometry geometry(sphere.getRadius());
PxTransform transform = toPxTransform(sphere.getCenter(), Quaternion::IDENTITY);
return sweep(geometry, transform, unitDir, hit, layer, max);
}
bool PhysX::capsuleCast(const Capsule& capsule, const Quaternion& rotation, const Vector3& unitDir,
PhysicsQueryHit& hit, UINT64 layer, float max) const
{
PxCapsuleGeometry geometry(capsule.getRadius(), capsule.getHeight() * 0.5f);
PxTransform transform = toPxTransform(capsule.getCenter(), Quaternion::IDENTITY);
return sweep(geometry, transform, unitDir, hit, layer, max);
}
bool PhysX::convexCast(const HPhysicsMesh& mesh, const Vector3& position, const Quaternion& rotation,
const Vector3& unitDir, PhysicsQueryHit& hit, UINT64 layer, float max) const
{
if (mesh == nullptr)
return false;
if (mesh->getType() != PhysicsMeshType::Convex)
return false;
FPhysXMesh* physxMesh = static_cast<FPhysXMesh*>(mesh->_getInternal());
PxConvexMeshGeometry geometry(physxMesh->_getConvex());
PxTransform transform = toPxTransform(position, rotation);
return sweep(geometry, transform, unitDir, hit, layer, max);
}
Vector<PhysicsQueryHit> PhysX::rayCastAll(const Vector3& origin, const Vector3& unitDir,
UINT64 layer, float max) const
{
PhysXRaycastQueryCallback output;
PxQueryFilterData filterData;
memcpy(&filterData.data.word0, &layer, sizeof(layer));
mScene->raycast(toPxVector(origin), toPxVector(unitDir), max, output,
PxHitFlag::eDEFAULT | PxHitFlag::eUV | PxHitFlag::eMESH_MULTIPLE, filterData);
return output.data;
}
Vector<PhysicsQueryHit> PhysX::boxCastAll(const AABox& box, const Quaternion& rotation,
const Vector3& unitDir, UINT64 layer, float max) const
{
PxBoxGeometry geometry(toPxVector(box.getHalfSize()));
PxTransform transform = toPxTransform(box.getCenter(), rotation);
return sweepAll(geometry, transform, unitDir, layer, max);
}
Vector<PhysicsQueryHit> PhysX::sphereCastAll(const Sphere& sphere, const Vector3& unitDir,
UINT64 layer, float max) const
{
PxSphereGeometry geometry(sphere.getRadius());
PxTransform transform = toPxTransform(sphere.getCenter(), Quaternion::IDENTITY);
return sweepAll(geometry, transform, unitDir, layer, max);
}
Vector<PhysicsQueryHit> PhysX::capsuleCastAll(const Capsule& capsule, const Quaternion& rotation,
const Vector3& unitDir, UINT64 layer, float max) const
{
PxCapsuleGeometry geometry(capsule.getRadius(), capsule.getHeight() * 0.5f);
PxTransform transform = toPxTransform(capsule.getCenter(), Quaternion::IDENTITY);
return sweepAll(geometry, transform, unitDir, layer, max);
}
Vector<PhysicsQueryHit> PhysX::convexCastAll(const HPhysicsMesh& mesh, const Vector3& position,
const Quaternion& rotation, const Vector3& unitDir, UINT64 layer, float max) const
{
if (mesh == nullptr)
return Vector<PhysicsQueryHit>(0);
if (mesh->getType() != PhysicsMeshType::Convex)
return Vector<PhysicsQueryHit>(0);
FPhysXMesh* physxMesh = static_cast<FPhysXMesh*>(mesh->_getInternal());
PxConvexMeshGeometry geometry(physxMesh->_getConvex());
PxTransform transform = toPxTransform(position, rotation);
return sweepAll(geometry, transform, unitDir, layer, max);
}
bool PhysX::rayCastAny(const Vector3& origin, const Vector3& unitDir,
UINT64 layer, float max) const
{
PxRaycastBuffer output;
PxQueryFilterData filterData;
filterData.flags |= PxQueryFlag::eANY_HIT;
memcpy(&filterData.data.word0, &layer, sizeof(layer));
return mScene->raycast(toPxVector(origin),
toPxVector(unitDir), max, output, PxHitFlag::eDEFAULT | PxHitFlag::eUV | PxHitFlag::eMESH_ANY, filterData);
}
bool PhysX::boxCastAny(const AABox& box, const Quaternion& rotation, const Vector3& unitDir,
UINT64 layer, float max) const
{
PxBoxGeometry geometry(toPxVector(box.getHalfSize()));
PxTransform transform = toPxTransform(box.getCenter(), rotation);
return sweepAny(geometry, transform, unitDir, layer, max);
}
bool PhysX::sphereCastAny(const Sphere& sphere, const Vector3& unitDir,
UINT64 layer, float max) const
{
PxSphereGeometry geometry(sphere.getRadius());
PxTransform transform = toPxTransform(sphere.getCenter(), Quaternion::IDENTITY);
return sweepAny(geometry, transform, unitDir, layer, max);
}
bool PhysX::capsuleCastAny(const Capsule& capsule, const Quaternion& rotation, const Vector3& unitDir,
UINT64 layer, float max) const
{
PxCapsuleGeometry geometry(capsule.getRadius(), capsule.getHeight() * 0.5f);
PxTransform transform = toPxTransform(capsule.getCenter(), Quaternion::IDENTITY);
return sweepAny(geometry, transform, unitDir, layer, max);
}
bool PhysX::convexCastAny(const HPhysicsMesh& mesh, const Vector3& position, const Quaternion& rotation,
const Vector3& unitDir, UINT64 layer, float max) const
{
if (mesh == nullptr)
return false;
if (mesh->getType() != PhysicsMeshType::Convex)
return false;
FPhysXMesh* physxMesh = static_cast<FPhysXMesh*>(mesh->_getInternal());
PxConvexMeshGeometry geometry(physxMesh->_getConvex());
PxTransform transform = toPxTransform(position, rotation);
return sweepAny(geometry, transform, unitDir, layer, max);
}
Vector<Collider*> PhysX::_boxOverlap(const AABox& box, const Quaternion& rotation,
UINT64 layer) const
{
PxBoxGeometry geometry(toPxVector(box.getHalfSize()));
PxTransform transform = toPxTransform(box.getCenter(), rotation);
return overlap(geometry, transform, layer);
}
Vector<Collider*> PhysX::_sphereOverlap(const Sphere& sphere, UINT64 layer) const
{
PxSphereGeometry geometry(sphere.getRadius());
PxTransform transform = toPxTransform(sphere.getCenter(), Quaternion::IDENTITY);
return overlap(geometry, transform, layer);
}
Vector<Collider*> PhysX::_capsuleOverlap(const Capsule& capsule, const Quaternion& rotation,
UINT64 layer) const
{
PxCapsuleGeometry geometry(capsule.getRadius(), capsule.getHeight() * 0.5f);
PxTransform transform = toPxTransform(capsule.getCenter(), Quaternion::IDENTITY);
return overlap(geometry, transform, layer);
}
Vector<Collider*> PhysX::_convexOverlap(const HPhysicsMesh& mesh, const Vector3& position,
const Quaternion& rotation, UINT64 layer) const
{
if (mesh == nullptr)
return Vector<Collider*>(0);
if (mesh->getType() != PhysicsMeshType::Convex)
return Vector<Collider*>(0);
FPhysXMesh* physxMesh = static_cast<FPhysXMesh*>(mesh->_getInternal());
PxConvexMeshGeometry geometry(physxMesh->_getConvex());
PxTransform transform = toPxTransform(position, rotation);
return overlap(geometry, transform, layer);
}
bool PhysX::boxOverlapAny(const AABox& box, const Quaternion& rotation, UINT64 layer) const
{
PxBoxGeometry geometry(toPxVector(box.getHalfSize()));
PxTransform transform = toPxTransform(box.getCenter(), rotation);
return overlapAny(geometry, transform, layer);
}
bool PhysX::sphereOverlapAny(const Sphere& sphere, UINT64 layer) const
{
PxSphereGeometry geometry(sphere.getRadius());
PxTransform transform = toPxTransform(sphere.getCenter(), Quaternion::IDENTITY);
return overlapAny(geometry, transform, layer);
}
bool PhysX::capsuleOverlapAny(const Capsule& capsule, const Quaternion& rotation,
UINT64 layer) const
{
PxCapsuleGeometry geometry(capsule.getRadius(), capsule.getHeight() * 0.5f);
PxTransform transform = toPxTransform(capsule.getCenter(), Quaternion::IDENTITY);
return overlapAny(geometry, transform, layer);
}
bool PhysX::convexOverlapAny(const HPhysicsMesh& mesh, const Vector3& position, const Quaternion& rotation,
UINT64 layer) const
{
if (mesh == nullptr)
return false;
if (mesh->getType() != PhysicsMeshType::Convex)
return false;
FPhysXMesh* physxMesh = static_cast<FPhysXMesh*>(mesh->_getInternal());
PxConvexMeshGeometry geometry(physxMesh->_getConvex());
PxTransform transform = toPxTransform(position, rotation);
return overlapAny(geometry, transform, layer);
}
bool PhysX::_rayCast(const Vector3& origin, const Vector3& unitDir, const Collider& collider, PhysicsQueryHit& hit,
float maxDist) const
{
FPhysXCollider* physxCollider = static_cast<FPhysXCollider*>(collider._getInternal());
PxShape* shape = physxCollider->_getShape();
PxTransform transform = toPxTransform(collider.getPosition(), collider.getRotation());
PxRaycastHit hitInfo;
PxU32 maxHits = 1;
bool anyHit = false;
PxHitFlags hitFlags = PxHitFlag::eDEFAULT | PxHitFlag::eUV;
PxU32 hitCount = PxGeometryQuery::raycast(toPxVector(origin), toPxVector(unitDir),
shape->getGeometry().any(), transform,
maxDist, hitFlags, maxHits, &hitInfo, anyHit);
if(hitCount > 0)
parseHit(hitInfo, hit);
return hitCount > 0;
}
bool PhysX::sweep(const PxGeometry& geometry, const PxTransform& tfrm, const Vector3& unitDir,
PhysicsQueryHit& hit, UINT64 layer, float maxDist) const
{
PxSweepBuffer output;
PxQueryFilterData filterData;
memcpy(&filterData.data.word0, &layer, sizeof(layer));
bool wasHit = mScene->sweep(geometry, tfrm, toPxVector(unitDir), maxDist, output,
PxHitFlag::eDEFAULT | PxHitFlag::eUV, filterData);
if (wasHit)
parseHit(output.block, hit);
return wasHit;
}
bool PhysX::overlapAny(const PxGeometry& geometry, const PxTransform& tfrm, UINT64 layer) const
{
PxOverlapBuffer output;
PxQueryFilterData filterData;
filterData.flags |= PxQueryFlag::eANY_HIT;
memcpy(&filterData.data.word0, &layer, sizeof(layer));
return mScene->overlap(geometry, tfrm, output, filterData);
}
Vector<Collider*> PhysX::overlap(const PxGeometry& geometry, const PxTransform& tfrm, UINT64 layer) const
{
PhysXOverlapQueryCallback output;
PxQueryFilterData filterData;
memcpy(&filterData.data.word0, &layer, sizeof(layer));
mScene->overlap(geometry, tfrm, output, filterData);
return output.data;
}
void PhysX::setFlag(PhysicsFlags flag, bool enabled)
{
Physics::setFlag(flag, enabled);
mCharManager->setOverlapRecoveryModule(mFlags.isSet(PhysicsFlag::CCT_OverlapRecovery));
mCharManager->setPreciseSweeps(mFlags.isSet(PhysicsFlag::CCT_PreciseSweeps));
mCharManager->setTessellation(mFlags.isSet(PhysicsFlag::CCT_Tesselation), mTesselationLength);
}
void PhysX::setPaused(bool paused)
{
mPaused = paused;
}
Vector3 PhysX::getGravity() const
{
return fromPxVector(mScene->getGravity());
}
void PhysX::setGravity(const Vector3& gravity)
{
mScene->setGravity(toPxVector(gravity));
}
void PhysX::setMaxTesselationEdgeLength(float length)
{
mTesselationLength = length;
mCharManager->setTessellation(mFlags.isSet(PhysicsFlag::CCT_Tesselation), mTesselationLength);
}
UINT32 PhysX::addBroadPhaseRegion(const AABox& region)
{
UINT32 id = mNextRegionIdx++;
PxBroadPhaseRegion pxRegion;
pxRegion.bounds = PxBounds3(toPxVector(region.getMin()), toPxVector(region.getMax()));
pxRegion.userData = (void*)(UINT64)id;
UINT32 handle = mScene->addBroadPhaseRegion(pxRegion, true);
mBroadPhaseRegionHandles[id] = handle;
return handle;
}
void PhysX::removeBroadPhaseRegion(UINT32 regionId)
{
auto iterFind = mBroadPhaseRegionHandles.find(regionId);
if (iterFind == mBroadPhaseRegionHandles.end())
return;
mScene->removeBroadPhaseRegion(iterFind->second);
mBroadPhaseRegionHandles.erase(iterFind);
}
void PhysX::clearBroadPhaseRegions()
{
for(auto& entry : mBroadPhaseRegionHandles)
mScene->removeBroadPhaseRegion(entry.second);
mBroadPhaseRegionHandles.clear();
}
PhysX& gPhysX()
{
return static_cast<PhysX&>(PhysX::instance());
}
} | [
"bearishsun@gmail.com"
] | bearishsun@gmail.com |
dff6b65892b9be045bab8fc3a50b7de793873ed1 | 48179ca220a805d4ebd6dc1fdfa9c7fdae04ddc6 | /geo/padding.cpp | 48fab86d3de458e52a2430c869cd391559e21903 | [
"Apache-2.0"
] | permissive | lukas-ke/faint-graphics-editor | 45093d777acc097fd0d963b13718e08368e12908 | c475123c03311042877740d018f314cd667d10d5 | refs/heads/master | 2022-11-11T09:32:33.184403 | 2022-11-06T11:24:18 | 2022-11-06T11:24:18 | 15,910,961 | 12 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,366 | cpp | // -*- coding: us-ascii-unix -*-
// Copyright 2013 Lukas Kemmer
//
// Licensed under the Apache License, Version 2.0 (the "License"); you
// may not use this file except in compliance with the License. You
// may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
#include "geo/int-size.hh"
#include "geo/padding.hh"
namespace faint{
Padding::Padding(int left, int right, int top, int bottom) :
bottom(bottom),
left(left),
right(right),
top(top)
{}
Padding Padding::All(int p){
return {p, p, p, p};
}
Padding Padding::Divide(int p){
const int h = p / 2;
return {h, h, h, h};
}
Padding Padding::Right(int p){
return {0,p,0,0};
}
Padding Padding::Bottom(int p){
return {0,0,0,p};
}
Padding Padding::None(){
return {0,0,0,0};
}
IntSize Padding::GetSize() const{
return {left + right, bottom + top};
}
Padding Padding::operator+(const Padding& other) const{
return {
left + other.left,
right + other.right,
top + other.top,
bottom + other.bottom};
}
} // namespace
| [
"lukas.kemmer@gmail.com"
] | lukas.kemmer@gmail.com |
6c10cc69c951905e5ca8819de86aebb36b6bda3a | 7eca51463a585d75df081d8e5efd2649c96fa466 | /src/tokenizer/token_range.cc | 04de4485d5a631cd5f3e03eec36780fcad9340e4 | [] | no_license | sjolsen/compiler | 160b38c4e86d199be350053ec710d8ce0852a348 | b34e794e17b8fe655c6f7336ac048bfdd0fe3119 | refs/heads/master | 2021-01-19T18:53:07.235543 | 2013-12-04T01:14:25 | 2013-12-04T01:14:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,291 | cc | #include <tokenizer/token_range.hh>
#include <stdexcept>
#include <iterator>
#include <algorithm>
using namespace std;
token_range::token_range (const vector <token>& tokens)
: _begin (tokens.cbegin ()),
_end (tokens.cend ())
{
}
token_range::token_range (iterator first,
iterator last)
: _begin (first),
_end (last)
{
}
typename token_range::iterator
token_range::begin () const
{
return _begin;
}
typename token_range::iterator
token_range::end () const
{
return _end;
}
typename token_range::reverse_iterator
token_range::rbegin () const
{
return reverse_iterator (_end);
}
typename token_range::reverse_iterator
token_range::rend () const
{
return reverse_iterator (_begin);
}
const token& token_range::operator [] (size_t n)
{
return _begin [n];
}
size_t token_range::size ()
{
return _end - _begin;
}
bool token_range::empty ()
{
return !size ();
}
token_range::operator bool ()
{
return !empty ();
}
void token_range::drop_front (size_t n)
{
if (n > size ())
throw logic_error ("Called token_range::drop_front with too great an 'n'");
_begin += n;
}
void token_range::drop_back (size_t n)
{
if (n > size ())
throw logic_error ("Called token_range::drop_back with too great an 'n'");
_end -= n;
}
| [
"so1132@txstate.edu"
] | so1132@txstate.edu |
7fdc4502676e3909e33cf77b294a61d500800954 | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /c++/rdkit/2015/4/StretchBend.h | 069ec29a59d0cb5d8b6456971203aea217431a14 | [] | no_license | rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703005 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | null | UTF-8 | C++ | false | false | 2,238 | h | //
// Copyright (C) 2013 Paolo Tosco
//
// Copyright (C) 2004-2006 Rational Discovery LLC
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#ifndef __RD_MMFFSTRETCHBEND_H__
#define __RD_MMFFSTRETCHBEND_H__
#include <utility>
#include <ForceField/Contrib.h>
namespace ForceFields {
namespace MMFF {
class MMFFBond;
class MMFFAngle;
class MMFFStbn;
class MMFFProp;
//! The angle-bend term for MMFF
class StretchBendContrib : public ForceFieldContrib {
public:
StretchBendContrib() : d_at1Idx(-1), d_at2Idx(-1), d_at3Idx(-1) {};
//! Constructor
/*!
The angle is between atom1 - atom2 - atom3
\param owner pointer to the owning ForceField
\param idx1 index of atom1 in the ForceField's positions
\param idx2 index of atom2 in the ForceField's positions
\param idx3 index of atom3 in the ForceField's positions
\param angleType MMFF type of the angle (as an unsigned int)
*/
StretchBendContrib(ForceField *owner,
const unsigned int idx1, const unsigned int idx2, const unsigned int idx3,
const MMFFStbn *mmffStbnParams, const MMFFAngle *mmffAngleParams,
const MMFFBond *mmffBondParams1, const MMFFBond *mmffBondParams2);
double getEnergy(double *pos) const;
void getGrad(double *pos,double *grad) const;
virtual StretchBendContrib *copy() const { return new StretchBendContrib(*this); };
private:
int d_at1Idx, d_at2Idx, d_at3Idx;
double d_restLen1, d_restLen2, d_theta0;
std::pair<double, double> d_forceConstants;
};
namespace Utils {
//! returns the std::pair of stretch-bend force constants for an angle
std::pair<double, double> calcStbnForceConstants(const MMFFStbn *mmffStbnParams);
//! calculates and returns the stretch-bending MMFF energy
std::pair<double, double> calcStretchBendEnergy
(const double deltaDist1, const double deltaDist2,
const double deltaTheta, const std::pair<double, double> forceConstants);
}
}
}
#endif
| [
"rodrigosoaresilva@gmail.com"
] | rodrigosoaresilva@gmail.com |
d8c72d1ad71f396f5e40493b07d466f074cdad3e | a3b7b29af6b72238bd5da2acfaa6626189619c53 | /Лабораторная№8 (9)/Лабораторная№8 (9)/Array.h | 5bf441d232a9d89e6785c94405323fc62c5abd6b | [] | no_license | eliadra/Laba9 | cf4525560e357ac1a01f18f0ca9c0d5318262740 | 12b39a9f3acf1f6e673ce315d0431b770fb48844 | refs/heads/master | 2021-01-10T12:34:35.200737 | 2015-12-20T17:12:23 | 2015-12-20T17:12:23 | 48,330,008 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 2,134 | h | #pragma once
#include <iostream>
#include "Errors.h"
using namespace std;
int min(int a, int b) {
if (a < b) {
return a;
}
else {
return b;
}
}
template <class T>
class Array {
T*data = new T[0];
int size = 0;
public:
Array(int size) {
try {
if (size < 0) {
throw NegativeSize();
}
}
catch (NegativeSize a) {
a.printError();
size = 0;
cout << "Создано с размером " << size << endl;
}
delete[]data;
data = new T[size];
this->size = size;
}
Array(Array & arr) {
delete[]data;
size = arr.getSize();
data = new T[size];
for (int i = 0; i < size; i++) {
data[i] = arr.data[i];
}
}
~Array() {
delete[] data;
}
void setData(int index, T data) {
try {
if (index < 0) {
throw NegativeIndex();
}
else if (index >= size) {
throw UndefinedIndex();
}
}
catch (NegativeIndex a) {
a.printError();
return;
}
catch (UndefinedIndex a) {
a.printError();
return;
}
this->data[index] = data;
}
T getData(int index) {
try {
if (size == 0) {
throw ZeroArray();
}
else if (index < 0) {
throw NegativeIndex();
}
else if (index >= size) {
throw UndefinedIndex();
}
}
catch (ZeroArray a) {
a.printError();
return 0;
}
catch (NegativeIndex a) {
a.printError();
return 0;
}
catch (UndefinedIndex a) {
a.printError();
return 0;
}
return data[index];
}
int getSize() {
return size;
}
void print() {
cout << "Array: (";
for (int i = 0; i < size; i++) {
if (i > 0) {
cout << ", ";
}
else {
cout << " ";
}
cout << data[i];
}
cout << " )\n";
}
friend Array<T> operator * (const Array<T>&array1, const Array<T>&array2) {
Array<T>temp(min(array1.size, array2.size));
for (int i = 0; i < temp.getSize(); i++) {
temp.setData(i, array1.data[i] * array2.data[i]);
}
return temp;
}
T operator [](int index) {
return getData(index);
}
Array<T> & operator = (Array<T> & arr) {
delete[]data;
size = arr.getSize();
data = new T[size];
for (int i = 0; i < size; i++) {
data[i] = arr.data[i];
}
return *this;
}
}; | [
"eliadra@yandex.ru"
] | eliadra@yandex.ru |
1d58dfd990322ef20fbdd018a35b25d623b45939 | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /components/signin/core/browser/signin_status_metrics_provider.cc | 5bc15bf236d518123434775693d254b8a888bdcb | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 5,871 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/signin/core/browser/signin_status_metrics_provider.h"
#include <utility>
#include "base/bind.h"
#include "base/location.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/histogram.h"
#include "base/single_thread_task_runner.h"
#include "base/threading/thread_task_runner_handle.h"
SigninStatusMetricsProvider::SigninStatusMetricsProvider(
std::unique_ptr<SigninStatusMetricsProviderDelegate> delegate,
bool is_test)
: delegate_(std::move(delegate)),
scoped_observer_(this),
is_test_(is_test),
weak_ptr_factory_(this) {
DCHECK(delegate_ || is_test_);
if (is_test_)
return;
delegate_->SetOwner(this);
// Postpone the initialization until all threads are created.
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::BindOnce(&SigninStatusMetricsProvider::Initialize,
weak_ptr_factory_.GetWeakPtr()));
}
SigninStatusMetricsProvider::~SigninStatusMetricsProvider() {}
void SigninStatusMetricsProvider::ProvideCurrentSessionData(
metrics::ChromeUserMetricsExtension* uma_proto) {
RecordSigninStatusHistogram(signin_status());
// After a histogram value is recorded, a new UMA session will be started, so
// we need to re-check the current sign-in status regardless of the previous
// recorded |signin_status_| value.
ResetSigninStatus();
ComputeCurrentSigninStatus();
}
// static
std::unique_ptr<SigninStatusMetricsProvider>
SigninStatusMetricsProvider::CreateInstance(
std::unique_ptr<SigninStatusMetricsProviderDelegate> delegate) {
return base::WrapUnique(
new SigninStatusMetricsProvider(std::move(delegate), false));
}
void SigninStatusMetricsProvider::OnIdentityManagerCreated(
identity::IdentityManager* identity_manager) {
// Whenever a new profile is created, a new IdentityManager will be created
// for it. This ensures that all sign-in or sign-out actions of all opened
// profiles are being monitored.
scoped_observer_.Add(identity_manager);
// If the status is unknown, it means this is the first created
// IdentityManager and the corresponding profile should be the only opened
// profile.
if (signin_status() == UNKNOWN_SIGNIN_STATUS) {
size_t signed_in_count = identity_manager->HasPrimaryAccount() ? 1 : 0;
UpdateInitialSigninStatus(1, signed_in_count);
}
}
void SigninStatusMetricsProvider::OnIdentityManagerShutdown(
identity::IdentityManager* identity_manager) {
if (scoped_observer_.IsObserving(identity_manager))
scoped_observer_.Remove(identity_manager);
}
void SigninStatusMetricsProvider::OnPrimaryAccountSet(
const CoreAccountInfo& account_info) {
SigninStatus recorded_signin_status = signin_status();
if (recorded_signin_status == ALL_PROFILES_NOT_SIGNED_IN) {
UpdateSigninStatus(MIXED_SIGNIN_STATUS);
} else if (recorded_signin_status == UNKNOWN_SIGNIN_STATUS) {
// There should have at least one browser opened if the user can sign in, so
// signin_status_ value should not be unknown.
UpdateSigninStatus(ERROR_GETTING_SIGNIN_STATUS);
}
}
void SigninStatusMetricsProvider::OnPrimaryAccountCleared(
const CoreAccountInfo& account_info) {
SigninStatus recorded_signin_status = signin_status();
if (recorded_signin_status == ALL_PROFILES_SIGNED_IN) {
UpdateSigninStatus(MIXED_SIGNIN_STATUS);
} else if (recorded_signin_status == UNKNOWN_SIGNIN_STATUS) {
// There should have at least one browser opened if the user can sign out,
// so signin_status_ value should not be unknown.
UpdateSigninStatus(ERROR_GETTING_SIGNIN_STATUS);
}
}
void SigninStatusMetricsProvider::Initialize() {
delegate_->Initialize();
// Start observing all already-created IdentityManagers.
for (identity::IdentityManager* manager :
delegate_->GetIdentityManagersForAllAccounts()) {
DCHECK(!scoped_observer_.IsObserving(manager));
scoped_observer_.Add(manager);
}
// It is possible that when this object is created, no IdentityManager is
// created yet, for example, when Chrome is opened for the first time after
// installation on desktop, or when Chrome on Android is loaded into memory.
if (delegate_->GetStatusOfAllAccounts().num_accounts == 0) {
UpdateSigninStatus(UNKNOWN_SIGNIN_STATUS);
} else {
ComputeCurrentSigninStatus();
}
}
void SigninStatusMetricsProvider::UpdateInitialSigninStatus(
size_t total_count,
size_t signed_in_profiles_count) {
// total_count is known to be bigger than 0.
if (signed_in_profiles_count == 0) {
UpdateSigninStatus(ALL_PROFILES_NOT_SIGNED_IN);
} else if (total_count == signed_in_profiles_count) {
UpdateSigninStatus(ALL_PROFILES_SIGNED_IN);
} else {
UpdateSigninStatus(MIXED_SIGNIN_STATUS);
}
}
void SigninStatusMetricsProvider::ComputeCurrentSigninStatus() {
AccountsStatus accounts_status = delegate_->GetStatusOfAllAccounts();
if (accounts_status.num_accounts == 0) {
UpdateSigninStatus(ERROR_GETTING_SIGNIN_STATUS);
} else if (accounts_status.num_opened_accounts == 0) {
// The code indicates that Chrome is running in the background but no
// browser window is opened.
UpdateSigninStatus(UNKNOWN_SIGNIN_STATUS);
} else {
UpdateInitialSigninStatus(accounts_status.num_opened_accounts,
accounts_status.num_signed_in_accounts);
}
}
void SigninStatusMetricsProvider::UpdateInitialSigninStatusForTesting(
size_t total_count,
size_t signed_in_profiles_count) {
UpdateInitialSigninStatus(total_count, signed_in_profiles_count);
}
SigninStatusMetricsProvider::SigninStatus
SigninStatusMetricsProvider::GetSigninStatusForTesting() {
return signin_status();
}
| [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
dad329ab05974c931bfa404444f0e2cded364478 | 776da94a15acdea622b9529c59ef66377db8ab38 | /CocosWidget/TextArea.h | d1cfe243ae807aadfe0e7bcebeb7c50fc97784cc | [] | no_license | cl0uddajka/cocoswidget | 568b3e33c82930574a785d4063fb3126d692ebfd | 4741ca118ce6259c8d04ef294489b11caeb3ca1b | refs/heads/master | 2021-01-19T14:58:52.591715 | 2014-01-24T15:37:54 | 2014-01-24T15:37:54 | 35,931,775 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,865 | h | /****************************************************************************
Copyright (c) 2014 Lijunlin - Jason lee
Created by Lijunlin - Jason lee on 2014
jason.lee.c@foxmail.com
http://www.cocos2d-x.org
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.
****************************************************************************/
#ifndef __CCWIDGET_TEXTAREA_H__
#define __CCWIDGET_TEXTAREA_H__
#include "cocos2d.h"
#include "WidgetMacros.h"
#include "WidgetProtocol.h"
#include "Widget.h"
#include "Label.h"
NS_CC_WIDGET_BEGIN
/**
* class : CTextArea
* author : Jason lee
* email : jason.lee.c@foxmail.com
* descpt : text area define
*/
class CTextArea : public CLabel
{
public:
CTextArea();
virtual ~CTextArea();
static CTextArea* create(const CCSize& tSize);
};
NS_CC_WIDGET_END
#endif //__CCWIDGET_TEXTAREA_H__ | [
"csdn.viva@gmail.com@9160077f-0524-6f16-ce86-95fce02da9f0"
] | csdn.viva@gmail.com@9160077f-0524-6f16-ce86-95fce02da9f0 |
86e43cf4daa88c88f7a0ae01cb500a560c6f1555 | b60928e13ba267e7d0507bd39656b046e8d39a36 | /ythread/mutex.cpp | d4dc3042c8b7ea03b70aec5f078c0dbf3acfd996 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | allenporter/thebends | 8a3dced30f2cfa3c06df8d9c7055ce0054a4488a | 5e35c7e654e5260b37218e59b02fb0b1a5cb2eca | refs/heads/master | 2021-01-13T02:27:41.585144 | 2019-11-30T02:32:53 | 2019-11-30T02:32:53 | 14,793,454 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 389 | cpp | #include "mutex.h"
#include <pthread.h>
namespace ythread {
Mutex::Mutex() {
pthread_mutex_init(&pt_mutex_, NULL);
}
void Mutex::Lock() {
pthread_mutex_lock(&pt_mutex_);
}
void Mutex::Unlock() {
pthread_mutex_unlock(&pt_mutex_);
}
MutexLock::MutexLock(Mutex* mutex) : mutex_(mutex) {
mutex_->Lock();
}
MutexLock::~MutexLock() {
mutex_->Unlock();
}
} // namespace ythread
| [
"allen.porter@gmail.com"
] | allen.porter@gmail.com |
53e04fd4ca3fe968f1894c917602bffd75790a3a | a4d8cb480cbdb196e79ce482f5f9221fc74855e2 | /2009/20090403_mqrecv.cpp | 582c1613e88eea47a997d74f2bed3f9082ea1a77 | [] | no_license | bonly/exercise | 96cd21e5aa65e2f4c8ba18adda63c28a5634c033 | dccf193a401c386719b8dcd7440d1f3bb74cb693 | refs/heads/master | 2020-05-06T13:51:29.957349 | 2018-02-10T16:14:52 | 2018-02-10T16:14:52 | 3,512,855 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,169 | cpp | //============================================================================
// Name :
// Author : bonly
// Version :
// Copyright :
// Description : 生命周期数据结构
//============================================================================
#ifndef __DATA_HPP__
#define __DATA_HPP__
//用户
struct BF_SUBSCRIBER
{
long long SUBS_ID;
long long ACC_NBR;
char BRAND_ID[2+1];
char STATUS[2+1];
char BELONG_DISTRICT[6+1];
int SUBS_TYPE;
int DEF_ACCT_ID;
BF_SUBSCRIBER()
{memset(this,0,sizeof(BF_SUBSCRIBER));}
};
#endif
#include "message.hpp"
#include "data.hpp"
#include <boost/shared_ptr.hpp>
#include <unistd.h>
using namespace boost;
int
main(int argc, char* argv[])
{
MQ mq;
for(;;)
{
shared_ptr<BF_SUBSCRIBER> sub(new BF_SUBSCRIBER);
mq.get_bf_subscriber("/tmp/test",
&(*sub));
sleep(atoi(argv[1]));
}
return 0;
}
/*
aCC -AA +DD64 recvmain.cpp message.o -o mrecv -lrt -L/home/hejb/boost_1_37_0/stage/lib -lboost_system-mt
*/
| [
"bonly@163.com"
] | bonly@163.com |
8ed12a600760b3f0dd8d5c450b4c1a83097cec92 | b77349e25b6154dae08820d92ac01601d4e761ee | /Apps/Burning/CDBurn/LogServer/MainFrm.cpp | 669c3a1c57b9380f53ca73c507461b6a3e6f22b1 | [] | no_license | ShiverZm/MFC | e084c3460fe78f820ff1fec46fe1fc575c3e3538 | 3d05380d2e02b67269d2f0eb136a3ac3de0dbbab | refs/heads/master | 2023-02-21T08:57:39.316634 | 2021-01-26T10:18:38 | 2021-01-26T10:18:38 | 332,725,087 | 0 | 0 | null | 2021-01-25T11:35:20 | 2021-01-25T11:29:59 | null | GB18030 | C++ | false | false | 6,592 | cpp | // MainFrm.cpp : implementation of the CMainFrame class
//
#include "stdafx.h"
#include "LogServer.h"
#include "MainFrm.h"
#include "CommonDefineFunc.h"
#include"stdio.h"
#include "shlwapi.h"
#include "OptionsDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
//日志记录全局变量
//加入DAO支持
#include <afxdao.h>//加入DAO数据库支持
#include"iostream.h"
#include"fstream.h"
CDaoDatabase db; //数据库
CDaoRecordset RecSet(&db); //记录集
#define DATABASE_NAME "日志文件数据库.mdb"
#ifdef _CHEN_SHI_
char g_SystemPosName[][64]={
"成像软件子系统: ",
"磁体子系统: ",
"射频子系统: ",
"梯度子系统: "
};
char g_DataTypeName[][64]={
"TG Value: ","RG Value: ","电压值: ","接收数据值: "
};
#endif
/////////////////////////////////////////////////////////////////////////////
// CMainFrame
// Message ID used for tray notifications
#define WM_MY_TRAY_NOTIFICATION WM_USER+0
IMPLEMENT_DYNAMIC(CMainFrame, CFrameWnd)
BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
//{{AFX_MSG_MAP(CMainFrame)
ON_MESSAGE(WM_MY_TRAY_NOTIFICATION, OnTrayNotification)
ON_WM_CREATE()
ON_COMMAND(ID_VIEW_CLEAR, OnViewClear)
ON_UPDATE_COMMAND_UI(ID_VIEW_CLEAR, OnUpdateViewClear)
ON_WM_CLOSE()
ON_COMMAND(ID_APP_OPEN, OnAppOpen)
ON_COMMAND(ID_APP_SUSPEND, OnAppSuspend)
ON_WM_COPYDATA()
ON_MESSAGE(WM_SOCKET_MSG_0, OnAcceptRequestForIntervention)
ON_MESSAGE(WM_SOCKET_MSG_1, OnAcceptRequestForDicomPrinter)
ON_COMMAND(ID_MENU_OPTIONS, OnMenuOptions)
ON_WM_SHOWWINDOW()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR, // status line indicator
ID_INDICATOR_CAPS,
ID_INDICATOR_NUM,
ID_INDICATOR_SCRL,
};
/////////////////////////////////////////////////////////////////////////////
// CMainFrame construction/destruction
CMainFrame::CMainFrame() : m_trayIcon(IDR_TRAYICON)
{
// TODO: add member initialization code here
m_bShowTrayNotifications = TRUE;
m_bShutdown = FALSE;
LOGFONT lf;
ZeroMemory(&lf, sizeof(LOGFONT));
lf.lfHeight = 16;
lf.lfWeight = FW_REGULAR;
_tcscpy(lf.lfFaceName, _T("Fixedsys"));// Courier
m_Font.CreateFontIndirect(&lf);
m_BrushBk.CreateSolidBrush(BKCOLOR);
m_pLogFileAccess = new CLogFileAccess();
}
CMainFrame::~CMainFrame()
{
ReleaseComObjects();
if ( m_pLogFileAccess )
{
delete m_pLogFileAccess;
}
}
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators,
sizeof(indicators)/sizeof(UINT)))
{
TRACE0("Failed to create status bar\n");
return -1;
}
// Create child edit control for displaying messages
CRect rc;
if (!m_wndEdit.Create(
WS_VISIBLE|WS_CHILD|WS_VSCROLL|ES_MULTILINE|ES_READONLY, rc, this,
AFX_IDW_PANE_FIRST))
return -1;
m_wndEdit.SetFont(&m_Font);
// Set up tray icon
m_trayIcon.SetNotificationWnd(this, WM_MY_TRAY_NOTIFICATION);
m_iWhichIcon = 1;
m_trayIcon.SetIcon(IDI_MYICON);
// 初始化LogServer与目标设备的通信类
InitComObjects();
//初始化启动日志
//CLog::GetObj()<< "初始化开始" <<endl ;
return 0;
}
//////////////////
// Close window. Unless we are shutting down, just hide it.
void CMainFrame::OnClose()
{
if (m_bShutdown)
{
int nExit = MessageBox("Are you sure exit ?", "Log Server", MB_YESNO |
MB_ICONQUESTION | MB_DEFBUTTON2);
if (nExit == IDYES)
{
CFrameWnd::OnClose();
}
}
else
{
ShowWindow(SW_HIDE);
}
}
//////////////////
// Handle notification from tray icon: display a message.
//
LRESULT CMainFrame::OnTrayNotification(WPARAM uID, LPARAM lEvent)
{
return 0;
}
////////////////////////////////////////////////////////////////
// Command handlers below.
//
void CMainFrame::OnViewClear()
{
m_wndEdit.SetWindowText("");
}
void CMainFrame::OnUpdateViewClear(CCmdUI* pCmdUI)
{
pCmdUI->Enable(m_wndEdit.GetLineCount() > 1 || m_wndEdit.LineLength() > 0);
}
void CMainFrame::OnAppOpen()
{
ShowWindow(SW_SHOWMAXIMIZED/*SW_NORMAL*/);
SetForegroundWindow();
}
void CMainFrame::OnAppSuspend()
{
m_bShutdown = TRUE; // really exit
SendMessage(WM_CLOSE);
}
/////////////////////////////////////////////////////////////////////////////
// CMainFrame diagnostics
#ifdef _DEBUG
void CMainFrame::AssertValid() const
{
CFrameWnd::AssertValid();
}
void CMainFrame::Dump(CDumpContext& dc) const
{
CFrameWnd::Dump(dc);
}
#endif //_DEBUG
///////////////////////////////////////////////////////////////////////
void CMainFrame::InitComObjects()
{
m_pComSocket_SysDiagnosis = new CComSocket_SysDiagnosis();
m_pComSocket_SysDiagnosis->Init( m_hWnd, WM_SOCKET_MSG_0 );
}
void CMainFrame::ReleaseComObjects()
{
delete m_pComSocket_SysDiagnosis;
}
// 接收Windows Message数据包
BOOL CMainFrame::OnCopyData(CWnd* pWnd, COPYDATASTRUCT* pCopyDataStruct)
{
// TODO: Add your message handler code here and/or call default
DispatchPacket( pCopyDataStruct->lpData, pWnd );
return CFrameWnd::OnCopyData(pWnd, pCopyDataStruct);
}
// 接收Windows Socket数据包
void CMainFrame::OnAcceptRequestForIntervention(UINT wParam,LONG lParam)
{
int message=lParam & 0x0000FFFF;
m_pComSocket_SysDiagnosis->AcceptRequest( WSAGETSELECTEVENT(lParam) );
}
void CMainFrame::OnAcceptRequestForDicomPrinter(UINT wParam,LONG lParam)
{
int message=lParam & 0x0000FFFF;
}
void CMainFrame::DispatchPacket( PVOID pData, CWnd* pCallingWnd )
{
STRUCT_PACKET_TYPE oPacketType;
int nLenOfPacketType = sizeof(ENUM_TYPE_OF_PACKET) + sizeof(ENUM_SUBTYPE_OF_PACKET);
memcpy ( &oPacketType, pData, nLenOfPacketType );
switch ( oPacketType.nType )
{
case -1 /*TP_LOG*/:
{
STRUCT_PACKET_LOG* pPacket = (STRUCT_PACKET_LOG*) pData;
m_wndEdit.SetSel(-1, -1); // end of edit text
m_wndEdit.ReplaceSel( pPacket->sLogText ); // append string
m_wndEdit.SendMessage( EM_SCROLLCARET ); // make visible
}
break;
case TP_SYS_DIAGNOSIS:
{
switch ( oPacketType.nSubType )
{
case TSP_SYS_DIAGNOSIS:
m_pLogFileAccess->SaveToFile( pData );
break;
default:
break;
}
}
break;
default:
break;
}
}
void CMainFrame::OnMenuOptions()
{
COptionsDlg oOptionsDlg;
oOptionsDlg.DoModal();
}
void CMainFrame::OnShowWindow(BOOL bShow, UINT nStatus)
{
CFrameWnd::OnShowWindow(bShow, nStatus);
// TODO: Add your message handler code here
this->ShowWindow( SW_SHOWMAXIMIZED );
}
| [
"w.z.y2006@163.com"
] | w.z.y2006@163.com |
66f51576b6f230a00e78ce03fec2498b436feacd | 4ff93a49636994f488d46a0cef1cc3919806540e | /chaosvmp/ChaosVmpConsole.cpp | 8069f3f6c506a2bbc82c652553ecb063d57ce3d9 | [
"MIT"
] | permissive | 929496959/cerberus | cee86f7a98fd1c3af6596b67e26f471938820768 | 0023dba54a27e6f87acb9dfec9b5fcda0e611bbf | refs/heads/master | 2023-07-01T06:14:33.658883 | 2020-07-10T19:49:00 | 2020-07-10T19:49:00 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 38,744 | cpp | #include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <tchar.h>
#include <iostream>
using namespace std;
#include "resource.h"
#include "ChaosVmAth.h"
#include "Support.h"
#include "lcrypto.h"
#include "ChaosVmKey.h"
#include "ChaosVmLdrKey.h"
#include "PowerProtecterAth.h"
//////////////////////////////////////////////////////////////////////////
// 使用XML
#define TIXML_USE_STL
#include "CTinyXml.h"
//////////////////////////////////////////////////////////////////////////
#include "ChaosVmpSDK.h"
#if defined(_UNICODE)
#define _cin wcin
#else
#define _cin cin
#endif
UINT GetLine(TCHAR *Buffer, UINT iCount)
{
UINT iLen = 0;
ZeroMemory(Buffer, 0x100 * sizeof(TCHAR));
_cin.getline(Buffer, iCount, _T('\n'));
iLen = _tcslen(Buffer);
return iLen;
}
#define __GetLine__(){iBufferLen = GetLine(szBuffer, 0x100);}
/*
* 参数:
* szAddress:16进制的字符串地址
*
* 介绍:
* 将16进制的字符串转换成数字,形式为0xaabbccdd,如果形式不对则返回0xFFFFFFFF
*/
__integer __INTERNAL_FUNC__ HexString2Byte(__char *szString) {
__integer iRet = 0;
__char ch = 0;
ch = tolower(szString[0]);
if ((ch >= 'a' ) && (ch <= 'f'))
iRet = (ch - 'a' + 0x0A) * 0x10;
else
iRet = (ch - '0') * 0x10;
ch = tolower(szString[1]);
if ((ch >= 'a' ) && (ch <= 'f'))
iRet += (ch - 'a' + 0x0A);
else
iRet += (ch - '0');
return iRet;
}
__address __INTERNAL_FUNC__ String2Address(__char *szAddress) {
__address addrAddress = 0;
__char *p = NULL;
__integer i = 0;
__integer iLen = 0;
__integer v0 = 0, v1 = 0, v2 = 0, v3 = 0;
iLen = strlen((char *)szAddress);
if (iLen != 10)
return 0xFFFFFFFF;
// 验证
if ((szAddress[0] != '0') || (szAddress[1] != 'x'))
return 0xFFFFFFFF;
p = &(szAddress[2]);
for (i = 0; i < (iLen - 2); p+=2, i+=2) {
switch (i) {
case 0: {
v0 = HexString2Byte(p);
v0 = v0 * 0x1000000;
} break;
case 2: {
v1 = HexString2Byte(p);
v1 = v1 * 0x10000;
} break;
case 4: {
v2 = HexString2Byte(p);
v2 = v2 * 0x100;
} break;
case 6: {
v3 = HexString2Byte(p);
} break;
}/* end switch */
}
addrAddress = (__address)(v0 + v1 + v2 + v3);
return addrAddress;
}
//// 全命令配置
//__void __INTERNAL_FUNC__ Usage() {
// printf("version:3.1\r\n");
// printf("http://www.xffffffff.org\r\n");
// printf("usage:chaosvmp [options] [messagebox] <filepath> <target>\r\n");
//
// printf("<target>\r\n");
// printf("<[addr1:size1*key1:ksize1,addr2:size2*r,...] | [s]>\r\n");
// printf("\r\n");
//
// printf("[options]\r\n");
// printf("/backup target file\r\n"); //备份原文件
// printf("/mode(0:infect,1:emulation,...(other modes for future) <x>(mode)\r\n"); //使用混乱虚拟机的模式
// printf("\r\n");
//
// printf("[messagebox]\r\n");
// printf("/chaosvm bytecode file not exist <message>(mbfne)\r\n"); //如果混乱虚拟机字节码不存在,显示什么消息
// printf("/chaosvm emulation file not exist <message>(mefne)\r\n"); //如果混乱虚拟机的仿真器不存在,显示什么消息
// printf("/mesage box title<title>(mbt)\r\n"); //消息框的名称
// printf("/mesage box style<style>(mbs)\r\n"); //消息框的风格,同MSDN
// printf("\r\n");
//
// printf("[mode]\r\n");
// printf("/chaosvm bytecode <filename>(cbc)\r\n"); //混乱虚拟机字节码文件的名称
// printf("*****\r\n");
//
// printf("mode:infect\r\n"); //如果是感染模式
// printf("-----\r\n");
// printf("mode:emulation\r\n"); //如果是仿真模式
// printf("/chaosvm emulation <filename>(ce)\r\n"); //混乱虚拟机仿真器的名称
// printf("\r\n");
// printf("!!!:the procedure is protected, that mix size = 19 bytes\r\n");
// printf("\r\n");
//}
__void __INTERNAL_FUNC__ Usage() {
printf("version:3.141\r\n");
printf("email:logic.yan@gmail.com\r\n");
printf("chaosvmp [options]\r\n");
printf("[options]\r\n");
printf("\t/cmdf <command file> load command file\r\n");
printf("\t/sdk <target file> <xml file> extract sign\r\n");
printf("\t/help print usage\r\n");
printf("\r\n");
}
typedef struct _CHAOSVMP_CONSOLE_CONFIGURE {
__tchar szTargetFilePath[MAX_PATH];//目标文件
__bool bBackupOrigFile;//备份原文件
CHAOSVM_RUN_MODE Mode;//使用混乱虚拟机的模式,0:感染型,1:仿真型
union {
__bool bUseByteCodeFileInInfectMode;//使用字节码文件在感染模式下
__bool bUseChaosVmEmulationInResource;//使用在资源中的仿真器模块
};
// 混乱虚拟机仿真器的名称
__tchar szChaosVmNameInEmulation[0x20];
// 混乱虚拟机字节码的文件名
union {
__tchar szChaosVmByteCodeFileName[0x20];
__tchar szChaosVmByteCodeFileNameInInfect[0x20];
__tchar szChaosVmByteCodeFileNameInEmulation[0x20];
};
//////////////////////////////////////////////////////////////////////////
// 提示框选项
__tchar szMessageBoxTitle[0x40];
__tchar szMessageBoxOnByteCodeFileNotExist[0x100];
__tchar szMessageBoxOnEmulationFileNotExist[0x100];
__dword dwMessageStyle;//消息框风格
//////////////////////////////////////////////////////////////////////////
// 调试虚拟机选项
// 2012.2.9 新增
CHAOSVM_EMULATION_CONFIGURE_DEBUG_CONFIGURE DebugConfigure;
} CHAOSVMP_CONSOLE_CONFIGURE, *PCHAOSVMP_CONSOLE_CONFIGURE;
/*
* 参数:
* pFilePath:命令文件
* pConfigure:混乱虚拟机附加器配置结构
* szTargetFilePath:目标文件路径
* pXImportTableConfigure:控制台配置结构
*
* 介绍:
* 读取命令文件
*/
__bool __INTERNAL_FUNC__ ReadCommandFile(__tchar *pFilePath, PCHAOSVMATH_CONFIGURE pConfigure, PDISATH_CONFIGURE pDisAthConfigure, PCHAOSVMP_CONSOLE_CONFIGURE pChaosVmpConsoleConfigure) {
CTinyXml TinyXml;
XMLNode *RootNode = NULL, *Node = NULL;
XMLNodes Nodes;
__char szFilePath[MAX_PATH] = {0};
UnicodeToAnsi(pFilePath, __logic_tcslen__(pFilePath), szFilePath, MAX_PATH);
if (!TinyXml.Load((const char *)szFilePath)) return FALSE;
// 获取根节点
RootNode = TinyXml.GetRootChild("ChaosVmp");
// 是否调试混乱虚拟机
Node = RootNode->GetChild("DebugChaosVm");
if (Node) {
XMLNode *DebugNode = NULL;
__integer iValue = 0;
// 是否启用调试
if (Node->GetAttrUINT("enable", iValue)) {
if (iValue == 1) {
pChaosVmpConsoleConfigure->DebugConfigure.bDebugChaosVm = TRUE;
// 是否以断点形式启动
DebugNode = Node->GetChild("BreakPoint");
if (DebugNode) {
if (DebugNode->Value().A2I() == 1)
pChaosVmpConsoleConfigure->DebugConfigure.bBreakPoint = TRUE;
else
pChaosVmpConsoleConfigure->DebugConfigure.bBreakPoint = FALSE;
} else {
pChaosVmpConsoleConfigure->DebugConfigure.bBreakPoint = FALSE;
}
} else
pChaosVmpConsoleConfigure->DebugConfigure.bDebugChaosVm = FALSE;
} else {
pChaosVmpConsoleConfigure->DebugConfigure.bDebugChaosVm = FALSE;
}
} else {
pChaosVmpConsoleConfigure->DebugConfigure.bDebugChaosVm = FALSE;
}
// 目标文件路径
Node = RootNode->GetChild("TargetFileName");
AnsiToUnicode((__char *)Node->Value().GetString(), Node->Value().GetLens(), pChaosVmpConsoleConfigure->szTargetFilePath, MAX_PATH);
// 是否备份文件
Node = RootNode->GetChild("BackupOrigFile");
pChaosVmpConsoleConfigure->bBackupOrigFile = (Node->Value().A2I() == 1) ? TRUE : FALSE;
// 混乱虚拟机运行模式,0:感染型,1:仿真型
Node = RootNode->GetChild("ChaosVmRunMode");
pChaosVmpConsoleConfigure->Mode = (Node->Value().A2I() == 0) ? CRM_INFECT : CRM_EMULATION;
// 字节码文件路径
Node = RootNode->GetChild("ByteCodeFileName");
AnsiToUnicode((__char *)Node->Value().GetString(), Node->Value().GetLens(), pChaosVmpConsoleConfigure->szChaosVmByteCodeFileName, MAX_PATH);
// 两种模式下的不同配置
if (pChaosVmpConsoleConfigure->Mode == CRM_INFECT) {
// 是否使用字节码文件
Node = RootNode->GetChild("UseByteFile");
pChaosVmpConsoleConfigure->bUseByteCodeFileInInfectMode = (Node->Value().A2I() == 1) ? TRUE : FALSE;
} else if (pChaosVmpConsoleConfigure->Mode == CRM_EMULATION) {
// 是否使用默认的仿真器
Node = RootNode->GetChild("ChaosVmNameInEmulation");
if (Node) {
AnsiToUnicode((__char *)Node->Value().GetString(), Node->Value().GetLens(), pChaosVmpConsoleConfigure->szChaosVmNameInEmulation, MAX_PATH);
if (__logic_tcslen__(pChaosVmpConsoleConfigure->szChaosVmNameInEmulation) == 0)
pChaosVmpConsoleConfigure->bUseChaosVmEmulationInResource = TRUE;
} else {
pChaosVmpConsoleConfigure->bUseChaosVmEmulationInResource = FALSE;
}
}
//////////////////////////////////////////////////////////////////////////
// 配置对话框
Node = RootNode->GetChild("MessageBoxTitle");
AnsiToUnicode((__char *)Node->Value().GetString(), Node->Value().GetLens(), pChaosVmpConsoleConfigure->szMessageBoxTitle, 0x40);
Node = RootNode->GetChild("MessageBoxOnByteCodeFileNotExist");
AnsiToUnicode((__char *)Node->Value().GetString(), Node->Value().GetLens(), pChaosVmpConsoleConfigure->szMessageBoxOnByteCodeFileNotExist, 0x100);
Node = RootNode->GetChild("MessageBoxOnEmulationFileNotExist");
AnsiToUnicode((__char *)Node->Value().GetString(), Node->Value().GetLens(), pChaosVmpConsoleConfigure->szMessageBoxOnEmulationFileNotExist, 0x100);
Node = RootNode->GetChild("MessageStyle");
pChaosVmpConsoleConfigure->dwMessageStyle = Node->Value().A2I();
//////////////////////////////////////////////////////////////////////////
// 虚拟机保护
Node = RootNode->GetChild("x");
Nodes = Node->GetChilds("Procedure");
for (int i = 0; i < Nodes.size(); i++)
{
XMLNode *ProcedureNode = NULL, *AddressNode = NULL, *KeyNode = NULL;
__address addrAddress = 0, addrKeyAddress = 0;
__integer iProcedureSize = 0, iKeySize = 0;
ProcedureNode = Nodes[i];
// 获取函数长度
if (!ProcedureNode->GetAttrUINT("size", iProcedureSize)) {
// 获取长度属性失败
}
// 获取地址
AddressNode = ProcedureNode->GetChild("Address");
addrAddress = String2Address((__char *)AddressNode->Value().GetString());
// 获取Key函数
KeyNode = ProcedureNode->GetChild("KeyProcedure");
if (KeyNode) {
addrKeyAddress = String2Address((__char *)KeyNode->Value().GetString());
// 获取Key函数长度
if (!KeyNode->GetAttrUINT("size", iKeySize)) {
// 获取长度属性失败
}
}/* end if */
// 加入混乱虚拟机保护队列
ChaosVmAthSelectProcedure(pConfigure, addrAddress, iProcedureSize, addrKeyAddress, iKeySize);
}
/*
* 力量保护只在感染模式下起作用
*/
if (pChaosVmpConsoleConfigure->Mode != CRM_INFECT) goto _dis_setting;
// 力量保护
PPOWER_PROTECTER_ATTACH_CONFIGURE pPowerProtecterAthConfigure = NULL;
PPOWER_PROTECTER_PROCEDURE pRecord = NULL;
PPOWER_PROTECTER_INSTRUCTION pInstructions = NULL;
__integer iInstCount = 0;
pPowerProtecterAthConfigure = &(pConfigure->PowerProtecterAttachConfigure);
pRecord = &(pPowerProtecterAthConfigure->PowerProtecterProcedure);
Node = RootNode->GetChild("y");
// 如果没有力量保护
if (!Node) goto _dis_setting;
Nodes = Node->GetChilds("Procedure");
for (int i = 0; i < Nodes.size(); i++)
{
XMLNodes InstNodes;
XMLNode *ProcedureNode = NULL, *AddressNode = NULL, *KeyNode = NULL, *WatchNode = NULL;
__address addrProcedure = 0, addrKeyAddress = 0, addrInstAddress = 0, addrWatchAddress = 0;
__integer iProcedureSize = 0, iKeySize = 0, iWatchSize = 0;
ProcedureNode = Nodes[i];
// 获取函数长度
if (!ProcedureNode->GetAttrUINT("size", iProcedureSize)) {
// 获取长度属性失败
}
// 获取地址
AddressNode = ProcedureNode->GetChild("Address");
addrProcedure = String2Address((__char *)AddressNode->Value().GetString());
// 获取Key函数
KeyNode = ProcedureNode->GetChild("KeyProcedure");
if (KeyNode)
addrKeyAddress = String2Address((__char *)KeyNode->Value().GetString());
// 获取Key函数长度
if (!KeyNode->GetAttrUINT("size", iKeySize)) {
// 获取长度属性失败
}
// 获取指令节点
InstNodes = ProcedureNode->GetChilds("Instruction");
if (InstNodes.size() != 0) {
pInstructions = (PPOWER_PROTECTER_INSTRUCTION)__logic_new_size__(sizeof(POWER_PROTECTER_INSTRUCTION) * __POWER_PROTECT_MAX_INSTRUCTION__);
for (int j = 0; j < InstNodes.size(); j++)
{
XMLNode *InstNode = NULL;
InstNode = InstNodes[i];
// 指令地址
AddressNode = InstNode->GetChild("Address");
addrInstAddress = String2Address((__char *)AddressNode->Value().GetString());
pInstructions->Instruction.addrMemAddress = addrInstAddress;
// 监视地址
WatchNode = InstNode->GetChild("WatchAddress");
if (WatchNode)
{
if (WatchNode->Value().GetLens() != 0) {
addrWatchAddress = String2Address((__char *)WatchNode->Value().GetString());
pInstructions->WatchRecord.addrMemAddress = addrWatchAddress;
if (!WatchNode->GetAttrUINT("size", iWatchSize)) {
// 获取长度属性失败
}
pInstructions->WatchRecord.iSize = iWatchSize;
pInstructions->bWatched = TRUE;
} else {
pInstructions->bWatched = FALSE;
}
}/* end if */
// 指令增加
pInstructions++;
iInstCount++;
}/* end for */
}/* end if */
// 加入混乱虚拟机保护队列
PowerProtectAthSelectProcedure(pRecord, addrProcedure, iProcedureSize, addrKeyAddress, iKeySize, pInstructions, iInstCount);
// 释放指令结构
if (pInstructions) __logic_delete__(pInstructions);
}
_dis_setting:
// 设定配置DIS结构
pDisAthConfigure->bIfXFileExistFailed = TRUE;
if (pChaosVmpConsoleConfigure->Mode == CRM_INFECT) {
pDisAthConfigure->wResourceID = IDR_CHAOSVM;
pDisAthConfigure->XFileAttachInfo.dwDNA = __CHAOSVM_XFILE_DNA__;
pDisAthConfigure->dwDISResourceKey = __CHAOSVM_DECRYPT_KEY__;
} else if (pChaosVmpConsoleConfigure->Mode == CRM_EMULATION) {
pDisAthConfigure->wResourceID = IDR_CHAOSVM_EMULATION;
pDisAthConfigure->XFileAttachInfo.dwDNA = __CHAOSVM_LOADER_XFILE_DNA__;
pDisAthConfigure->dwDISResourceKey = __CHAOSVMLDR_DECRYPT_KEY__;
}
pDisAthConfigure->szResourceType = (__tchar *)_T("BIN");
pDisAthConfigure->XFileAttachInfo.szTargetFilePath = pChaosVmpConsoleConfigure->szTargetFilePath;
pDisAthConfigure->XFileAttachInfo.bKeepTailData = TRUE;
pDisAthConfigure->XFileAttachInfo.szSectionName = (__char *)__CHAOSVMP_SECTION_NAME__;
pDisAthConfigure->XFileAttachInfo.szXSectionName = (__char *)__CHAOSVMP_SECTION_NAME__;
pDisAthConfigure->bProtectMyIAT = TRUE;
pDisAthConfigure->bProtectTargetIAT = TRUE;
pDisAthConfigure->XFileAttachInfo.bCloseNX = TRUE;
pDisAthConfigure->XFileAttachInfo.bCloseRandAddressMap = TRUE;
pDisAthConfigure->XFileAttachInfo.bRandomAllSectionName = TRUE;
pDisAthConfigure->XFileAttachInfo.bResetCheckSum = TRUE;
pDisAthConfigure->XFileAttachInfo.bSetAllSectionCanWrite = TRUE;
__logic_memset__(pDisAthConfigure->XFileAttachInfo.bWillDelDataDirectoryIndexs, FALSE, 0x10);
pDisAthConfigure->XFileAttachInfo.bResetCheckSum = TRUE;
pDisAthConfigure->XFileAttachInfo.bKeepSameOrigImpLib = TRUE;
pDisAthConfigure->iDISProtectDllCrc32Count = 0;
pDisAthConfigure->iDISProtectDllCallDllMainCrc32Count = 0;
pDisAthConfigure->iDISProtectApiCrc32Count = 0;
pDisAthConfigure->iTargetProtectDllCrc32Count = 0;
pDisAthConfigure->iTargetProtectDllCallDllMainCrc32Count = 0;
pDisAthConfigure->iTargetProtectApiCrc32Count = 0;
return TRUE;
}
__bool __INTERNAL_FUNC__ HandleConsoleArguments(__integer iArgc, __tchar *pArgv[], PCHAOSVMATH_CONFIGURE pConfigure, PDISATH_CONFIGURE pDisAthConfigure, PCHAOSVMP_CONSOLE_CONFIGURE pChaosVmpConsoleConfigure) {
TCHAR szBuffer[0x100] = {0};
UINT iBufferLen = 0;
PPOWER_PROTECTER_ATTACH_CONFIGURE pPowerProtecterAthConfigure = NULL;
// 是否需要备份原文件
do {
cout << "Target file:";__GetLine__();
} while (_tcslen(szBuffer) == 0);
_tcscpy((TCHAR *)(pChaosVmpConsoleConfigure->szTargetFilePath), szBuffer);
// 是否需要备份原文件
cout << "Backup orig target file(yes or no):";__GetLine__();
if (_tcsicmp(szBuffer, _T("yes")) == 0) {
pChaosVmpConsoleConfigure->bBackupOrigFile = TRUE;
} else if (_tcsicmp(szBuffer, _T("no")) == 0) {
pChaosVmpConsoleConfigure->bBackupOrigFile = FALSE;
} else {
pChaosVmpConsoleConfigure->bBackupOrigFile = FALSE;
}
// 配置对话框
cout << "Message caption:";__GetLine__();
if (_tcslen(szBuffer) == 0) _tcscpy((TCHAR *)(pChaosVmpConsoleConfigure->szMessageBoxTitle), _T("chaosvmp"));
else _tcscpy((TCHAR *)(pChaosVmpConsoleConfigure->szMessageBoxTitle), szBuffer);
cout << "Message on bytecode file not exist:";__GetLine__();
if (_tcslen(szBuffer) == 0) _tcscpy((TCHAR *)(pChaosVmpConsoleConfigure->szMessageBoxOnByteCodeFileNotExist), _T("bytecode file is not exist"));
else _tcscpy((TCHAR *)(pChaosVmpConsoleConfigure->szMessageBoxOnByteCodeFileNotExist), szBuffer);
cout << "Message on chaosvm emulation file not exist:";__GetLine__();
if (_tcslen(szBuffer) == 0) _tcscpy((TCHAR *)(pChaosVmpConsoleConfigure->szMessageBoxOnEmulationFileNotExist), _T("emulation file is not exist"));
else _tcscpy((TCHAR *)(pChaosVmpConsoleConfigure->szMessageBoxOnEmulationFileNotExist), szBuffer);
cout << "Message style:";__GetLine__();
if (_tcslen(szBuffer) == 0) pChaosVmpConsoleConfigure->dwMessageStyle = 0;
else pChaosVmpConsoleConfigure->dwMessageStyle = _ttoi(szBuffer);
// 选择模式
cout << "Select mode(infect,emulation):";__GetLine__();
if (_tcsicmp(szBuffer, _T("infect")) == 0) {
pChaosVmpConsoleConfigure->Mode = CRM_INFECT;
} else if (_tcsicmp(szBuffer, _T("emulation")) == 0) {
pChaosVmpConsoleConfigure->Mode = CRM_EMULATION;
} else {
pChaosVmpConsoleConfigure->Mode = CRM_INFECT;
}
// 按照模式再继续
if (pChaosVmpConsoleConfigure->Mode == CRM_INFECT) {
// 是否使用字节码
cout << "Using chaosvm byte code file:";__GetLine__();
if (_tcslen(szBuffer) != 0) {
pChaosVmpConsoleConfigure->bUseByteCodeFileInInfectMode = TRUE;
_tcscpy((TCHAR *)(pChaosVmpConsoleConfigure->szChaosVmByteCodeFileNameInInfect), szBuffer);
} else {
pChaosVmpConsoleConfigure->bUseByteCodeFileInInfectMode = FALSE;
}
} else if (pChaosVmpConsoleConfigure->Mode == CRM_EMULATION) {
// 使用字节码
do {
cout << "Using chaosvm byte code file:";__GetLine__();
} while (_tcslen(szBuffer) == 0);
_tcscpy((TCHAR *)(pChaosVmpConsoleConfigure->szChaosVmByteCodeFileNameInEmulation), szBuffer);
// 是否使用指定的仿真机
cout << "Using chaosvm emulation file:";__GetLine__();
if (_tcslen(szBuffer) != 0) {
_tcscpy((TCHAR *)(pChaosVmpConsoleConfigure->szChaosVmNameInEmulation), szBuffer);
pChaosVmpConsoleConfigure->bUseChaosVmEmulationInResource = FALSE;
} else {
memset(pChaosVmpConsoleConfigure->szChaosVmNameInEmulation, 0, sizeof(TCHAR) * 0x20);
pChaosVmpConsoleConfigure->bUseChaosVmEmulationInResource = TRUE;
}
} else {
cout << "Other mode not support now" << endl;
return FALSE;
}
// 选择目标地址
cout << "Chaosvmp it---" << endl;
{
__integer iCount = 0;
__address addrProcedure = 0, addrKeyProcedure = 0;
__integer iProcedureSize = 0, iKeyProcedureSize = 0;
__char szAddress[0x40] = {0};
// 选定混乱虚拟机保护的函数
while (TRUE) {
// 被保护函数
cout << "[" << iCount << "]" << "Procedure address:";__GetLine__();
if (_tcslen(szBuffer) == 0) break;//什么都不输入则退出
UnicodeToAnsi((__tchar *)szBuffer, _tcslen(szBuffer), szAddress, 0x40);
addrProcedure = String2Address(szAddress);
// 函数长度
cout << "Procedure size:";__GetLine__();
iProcedureSize = _ttoi(szBuffer);
// 密钥函数
cout << "Key procedure address:";__GetLine__();
if (_tcsclen(szBuffer) != 0) {
UnicodeToAnsi((__tchar *)szBuffer, _tcslen(szBuffer), szAddress, 0x40);
addrKeyProcedure = String2Address(szAddress);
// 密钥函数的长度
cout << "Key procedure size:";__GetLine__();
iKeyProcedureSize = _ttoi(szBuffer);
} else {
addrKeyProcedure = 0;
iKeyProcedureSize = 0;
}
iCount++;
// 加入混乱虚拟机保护队列
ChaosVmAthSelectProcedure(pConfigure, addrProcedure, iProcedureSize, addrKeyProcedure, iKeyProcedureSize);
}/* end while */
}
/*
* 力量保护只在感染模式下起作用
*/
if (pChaosVmpConsoleConfigure->Mode != CRM_INFECT) goto _dis_setting;
cout << "Power protect it---" << endl;
{
__integer iCount = 0;
__address addrProcedure = 0, addrKeyProcedure = 0;
__integer iProcedureSize = 0, iKeyProcedureSize = 0;
__char szAddress[0x40] = {0};
PPOWER_PROTECTER_PROCEDURE pRecord = NULL;
PPOWER_PROTECTER_INSTRUCTION pInstructions = NULL;
__integer iInstCount = 0;
pPowerProtecterAthConfigure = &(pConfigure->PowerProtecterAttachConfigure);
pRecord = &(pPowerProtecterAthConfigure->PowerProtecterProcedure);
// 选定函数
while (TRUE) {
// 被保护函数
cout << "[" << iCount << "]" << "Procedure address:";__GetLine__();
if (_tcslen(szBuffer) == 0) break;//什么都不输入则退出
UnicodeToAnsi((__tchar *)szBuffer, _tcslen(szBuffer), szAddress, 0x40);
addrProcedure = String2Address(szAddress);
// 函数长度
cout << "Procedure size:";__GetLine__();
iProcedureSize = _ttoi(szBuffer);
// 密钥函数
cout << "Key procedure address:";__GetLine__();
if (_tcsclen(szBuffer) != 0) {
UnicodeToAnsi((__tchar *)szBuffer, _tcslen(szBuffer), szAddress, 0x40);
addrKeyProcedure = String2Address(szAddress);
// 密钥函数的长度
cout << "Key procedure size:";__GetLine__();
iKeyProcedureSize = _ttoi(szBuffer);
} else {
addrKeyProcedure = 0;
iKeyProcedureSize = 0;
}
// 选定函数内的指令
pInstructions = (PPOWER_PROTECTER_INSTRUCTION)__logic_new_size__(sizeof(POWER_PROTECTER_INSTRUCTION) * __POWER_PROTECT_MAX_INSTRUCTION__);
while (TRUE) {
cout << "[" << iInstCount << "]" << "Instruction address:";__GetLine__();
if (_tcslen(szBuffer) == 0) break;//什么都不输入则退出
UnicodeToAnsi((__tchar *)szBuffer, _tcslen(szBuffer), szAddress, 0x40);
pInstructions->Instruction.addrMemAddress = String2Address(szAddress);
cout << "Watch address:";__GetLine__();
if (_tcslen(szBuffer) != 0) {
UnicodeToAnsi((__tchar *)szBuffer, _tcslen(szBuffer), szAddress, 0x40);
pInstructions->WatchRecord.addrMemAddress = String2Address(szAddress);
cout << "Watch size:";__GetLine__();
pInstructions->WatchRecord.iSize = _ttoi(szBuffer);
pInstructions->bWatched = TRUE;
} else {
pInstructions->bWatched = FALSE;
}
pInstructions++;
iInstCount++;
}/* end while */
// 加入混乱虚拟机保护队列
PowerProtectAthSelectProcedure(pRecord, addrProcedure, iProcedureSize, addrKeyProcedure, iKeyProcedureSize, pInstructions, iInstCount);
// 释放指令结构
if (pInstructions) __logic_delete__(pInstructions);
iCount++;
}/* end while */
}
_dis_setting:
// 设定配置DIS结构
pDisAthConfigure->bIfXFileExistFailed = TRUE;
if (pChaosVmpConsoleConfigure->Mode == CRM_INFECT) {
pDisAthConfigure->wResourceID = IDR_CHAOSVM;
pDisAthConfigure->XFileAttachInfo.dwDNA = __CHAOSVM_XFILE_DNA__;
pDisAthConfigure->dwDISResourceKey = __CHAOSVM_DECRYPT_KEY__;
} else if (pChaosVmpConsoleConfigure->Mode == CRM_EMULATION) {
pDisAthConfigure->wResourceID = IDR_CHAOSVM_EMULATION;
pDisAthConfigure->XFileAttachInfo.dwDNA = __CHAOSVM_LOADER_XFILE_DNA__;
pDisAthConfigure->dwDISResourceKey = __CHAOSVMLDR_DECRYPT_KEY__;
}
pDisAthConfigure->szResourceType = (__tchar *)_T("BIN");
pDisAthConfigure->XFileAttachInfo.szTargetFilePath = pChaosVmpConsoleConfigure->szTargetFilePath;
pDisAthConfigure->XFileAttachInfo.bKeepTailData = TRUE;
pDisAthConfigure->XFileAttachInfo.szSectionName = (__char *)__CHAOSVMP_SECTION_NAME__;
pDisAthConfigure->XFileAttachInfo.szXSectionName = (__char *)__CHAOSVMP_SECTION_NAME__;
pDisAthConfigure->bProtectMyIAT = TRUE;
pDisAthConfigure->bProtectTargetIAT = TRUE;
pDisAthConfigure->XFileAttachInfo.bCloseNX = TRUE;
pDisAthConfigure->XFileAttachInfo.bCloseRandAddressMap = TRUE;
pDisAthConfigure->XFileAttachInfo.bRandomAllSectionName = TRUE;
pDisAthConfigure->XFileAttachInfo.bResetCheckSum = TRUE;
pDisAthConfigure->XFileAttachInfo.bSetAllSectionCanWrite = TRUE;
__logic_memset__(pDisAthConfigure->XFileAttachInfo.bWillDelDataDirectoryIndexs, FALSE, 0x10);
pDisAthConfigure->XFileAttachInfo.bResetCheckSum = TRUE;
pDisAthConfigure->XFileAttachInfo.bKeepSameOrigImpLib = TRUE;
pDisAthConfigure->iDISProtectDllCrc32Count = 0;
pDisAthConfigure->iDISProtectDllCallDllMainCrc32Count = 0;
pDisAthConfigure->iDISProtectApiCrc32Count = 0;
pDisAthConfigure->iTargetProtectDllCrc32Count = 0;
pDisAthConfigure->iTargetProtectDllCallDllMainCrc32Count = 0;
pDisAthConfigure->iTargetProtectApiCrc32Count = 0;
return TRUE;
}
/*
* 参数:
* iArgc:命令行个数
* pArgv:命令行参数
* pConfigure:混乱虚拟机附加器配置结构
* szTargetFilePath:目标文件路径
* pXImportTableConfigure:控制台配置结构
*
* 介绍:
* 处理命令行
*/
typedef enum _HANDLE_ARGS_DO {
HAD_FAILED, // 处理命令行失败
HAD_SUCCESS, // 处理命令行成功
HAD_EXIT // 直接退出
} HANDLE_ARGS_DO;
HANDLE_ARGS_DO __INTERNAL_FUNC__ HandleArguments(__integer iArgc, __tchar *pArgv[], PCHAOSVMATH_CONFIGURE pConfigure, PDISATH_CONFIGURE pDisAthConfigure, PCHAOSVMP_CONSOLE_CONFIGURE pChaosVmpConsoleConfigure) {
if (iArgc >= 2) {
// 分析命令行
__integer i = 1;
__tchar *pCurrArgv = NULL;
for (i = 1; i < iArgc; i++) {
if (pArgv[i][0] == _T('/')) {
switch (pArgv[i][1]) {
case _T('c'):
if (__logic_tcscmp__(pArgv[i], (__tchar *)_T("/cmdf")) == 0) {
i++;
pCurrArgv = pArgv[i];
// 读取命令行
if (!ReadCommandFile(pCurrArgv, pConfigure, pDisAthConfigure, pChaosVmpConsoleConfigure))
return HAD_FAILED;
}
break;
case _T('s'):
if (__logic_tcscmp__(pArgv[i], (__tchar *)_T("/sdk")) == 0) {
__tchar *pTargetFile = NULL, *pSdkXml = NULL;
i++;
pTargetFile = pArgv[i];
i++;
pSdkXml = pArgv[i];
// 读取命令行
if (!ChaosVmSDK(pTargetFile, pSdkXml)) {
return HAD_FAILED;
} else {
return HAD_EXIT;
}
}/* end if */
break;
case _T('h'):
if (__logic_tcscmp__(pArgv[i], (__tchar *)_T("/help")) == 0) {
Usage();
return HAD_EXIT;
}
break;
}/* end switch */
}/* end if */
}/* end for */
} else {
if (!HandleConsoleArguments(iArgc, pArgv, pConfigure, pDisAthConfigure, pChaosVmpConsoleConfigure))
return HAD_FAILED;
}
return HAD_SUCCESS;
}
//__integer __INTERNAL_FUNC__ HandleArguments(__integer iArgc, __tchar *pArgv[], PCHAOSVMATH_CONFIGURE pConfigure, PDISATH_CONFIGURE pDisAthConfigure, PCHAOSVMP_CONSOLE_CONFIGURE pChaosVmpConsoleConfigure) {
// __integer i = 1, iTarget = 0;
// __bool bBackupOrigFile = FALSE;//备份原文件
// CHAOSVM_RUN_MODE Mode;
//
// __tchar szChaosVmEmulationName[0x20] = {0};
// __tchar szChaosVmByteCodeFile[0x20] = {0};
//
// __tchar szMessageBoxTitle[0x40] = {0};
// __tchar szMessageBoxOnByteCodeFileNotExist[0x100] = {0};
// __tchar szMessageBoxOnEmulationFileNotExist[0x100] = {0};
// __dword dwMessageStyle = 0;//消息框风格
//
// // 命令行最小数
// if (iArgc == 1) {
// Usage();
// return 0;
// }
//
// // 处理命令行
// for (i = 1; i < (iArgc - 2); i++) {
// if (pArgv[i][0] == _T('/')) {
// switch (pArgv[i][1]) {
// case _T('b'):case _T('B'):
// bBackupOrigFile = TRUE;
// break;
// case _T('c'):case _T('C'):
// if (_tcscmp(pArgv[i], _T("/cbc")) == 0) {
// i++;
// _tcscpy(szChaosVmByteCodeFile, pArgv[i]);
// } else if (_tcscmp(pArgv[i], _T("/ce")) == 0) {
// i++;
// _tcscpy(szChaosVmEmulationName, pArgv[i]);
// } else {
// Usage();
// return 0;
// }
// break;
// case _T('m'):case _T('M'):
// // 设置模式
// if (_tcsicmp(pArgv[i], _T("/mode")) == 0) {
// __integer iMode = 0;
// i++;
// iMode = _ttoi(pArgv[i]);
//
// if (iMode == 0) {
// Mode = CRM_INFECT;
// } else if (iMode == 1) {
// Mode = CRM_EMULATION;
// } else {
// Mode = CRM_INFECT;
// }/* end else */
// } else {
// // 消息框设定
// if (_tcsicmp(pArgv[i], _T("/mbfne")) == 0) {
// i++;
// _tcscpy(szMessageBoxOnByteCodeFileNotExist, pArgv[i]);
// } else if (_tcsicmp(pArgv[i], _T("/mefne")) == 0) {
// i++;
// _tcscpy(szMessageBoxOnEmulationFileNotExist, pArgv[i]);
// } else if (_tcsicmp(pArgv[i], _T("/mbt")) == 0) {
// i++;
// _tcscpy(szMessageBoxTitle, pArgv[i]);
// } else if (_tcsicmp(pArgv[i], _T("/mbs")) == 0) {
// i++;
// dwMessageStyle = _ttoi(pArgv[i]);
// } else {
// Usage();
// return 0;
// }
// }/* end else */
// break;
// }/* end switch */
// }/* end if */
// }/* end for */
//
// // 设定配置DIS结构
// pDisAthConfigure->bIfXFileExistFailed = TRUE;
// if (Mode == CRM_INFECT) {
// pDisAthConfigure->wResourceID = IDR_CHAOSVM;
// pDisAthConfigure->XFileAttachInfo.dwDNA = __CHAOSVM_XFILE_DNA__;
// pDisAthConfigure->dwDISResourceKey = __CHAOSVM_DECRYPT_KEY__;
// } else if (Mode == CRM_EMULATION) {
// pDisAthConfigure->wResourceID = IDR_CHAOSVM_EMULATION;
// pDisAthConfigure->XFileAttachInfo.dwDNA = __CHAOSVM_LOADER_XFILE_DNA__;
// pDisAthConfigure->dwDISResourceKey = __CHAOSVMLDR_DECRYPT_KEY__;
// }
//
// pDisAthConfigure->szResourceType = (__tchar *)_T("BIN");
// iTarget = i;//记录目标路径索引
// pDisAthConfigure->XFileAttachInfo.szTargetFilePath = pArgv[i];i++;//命令索引增加
// pDisAthConfigure->XFileAttachInfo.bKeepTailData = TRUE;
// pDisAthConfigure->XFileAttachInfo.szSectionName = (__char *)__CHAOSVMP_SECTION_NAME__;
// pDisAthConfigure->XFileAttachInfo.szXSectionName = (__char *)__CHAOSVMP_SECTION_NAME__;
// pDisAthConfigure->bProtectMyIAT = TRUE;
// pDisAthConfigure->bProtectTargetIAT = TRUE;
// pDisAthConfigure->XFileAttachInfo.bCloseNX = TRUE;
// pDisAthConfigure->XFileAttachInfo.bCloseRandAddressMap = TRUE;
// pDisAthConfigure->XFileAttachInfo.bRandomAllSectionName = TRUE;
// pDisAthConfigure->XFileAttachInfo.bResetCheckSum = TRUE;
// pDisAthConfigure->XFileAttachInfo.bSetAllSectionCanWrite = TRUE;
// __logic_memset__(pDisAthConfigure->XFileAttachInfo.bWillDelDataDirectoryIndexs, FALSE, 0x10);
// pDisAthConfigure->XFileAttachInfo.bResetCheckSum = TRUE;
//
// pDisAthConfigure->iDISProtectDllCrc32Count = 0;
// pDisAthConfigure->iDISProtectDllCallDllMainCrc32Count = 0;
// pDisAthConfigure->iDISProtectApiCrc32Count = 0;
// pDisAthConfigure->iTargetProtectDllCrc32Count = 0;
// pDisAthConfigure->iTargetProtectDllCallDllMainCrc32Count = 0;
// pDisAthConfigure->iTargetProtectApiCrc32Count = 0;
//
// // 分析要设定的地址
// {
// __char seps[] = ":*,";
// __char *token = NULL;
// __char szAddrSizeList[256] = {0};
// __integer iType = 0;
// __address addrProcAddress = 0, addrKeyProcAddress = 0;
// __integer iProcSize = 0, iKeyProcSize = 0;
//
// UnicodeToAnsi(pArgv[i], _tcslen(pArgv[i]), szAddrSizeList, 256);
// token = strtok(szAddrSizeList, seps);
// while (token) {
// if (iType == 0) {
// if ((token[0] == 's') || (token[0] == 'S')) {
// /*
// * 是否是通过扫描标记得到
// * 扫描标记,并且获取要保护的函数地址
// * 暂时未实现SDK功能
// */
// goto _set_chaosvmp_console_configure;
// } else {
// addrProcAddress = String2Address(token);
// iType++;
// }
// } else if (iType == 1) {
// iProcSize = atoi(token);
// iType++;
// } else if (iType == 2) {
// if ((token[0] == 'r') || (token[0] == 'R')) {
// addrKeyProcAddress = 0;
// iKeyProcSize = 0;
// ChaosVmAthSelectProcedure(pConfigure, addrProcAddress, iProcSize, addrKeyProcAddress, iKeyProcSize);
// iType = 0;
// goto _next_token;
// } else {
// addrKeyProcAddress = String2Address(token);
// iType++;
// }
// } else if (iType == 3) {
// iKeyProcSize = atoi(token);
// ChaosVmAthSelectProcedure(pConfigure, addrProcAddress, iProcSize, addrKeyProcAddress, iKeyProcSize);
// iType = 0;
// }
// _next_token:
// // 下一个标记
// token = (__char *)strtok(NULL, seps);
// }/* end while */
// }
//
// // 设置混乱虚拟机控制台结构
//_set_chaosvmp_console_configure:
// pChaosVmpConsoleConfigure->bBackupOrigFile = bBackupOrigFile;
// //pDisAthConfigure->pUserData0 = (__void *)pConfigure;
//
// // 模式设定
// if (Mode == CRM_INFECT) {
// if (_tcslen(szChaosVmByteCodeFile) != 0) {
// pChaosVmpConsoleConfigure->bUseByteCodeFileInInfectMode = TRUE;
// _tcscpy(pChaosVmpConsoleConfigure->szChaosVmByteCodeFileNameInInfect, szChaosVmByteCodeFile);
// } else {
// pChaosVmpConsoleConfigure->bUseByteCodeFileInInfectMode = FALSE;
// memset(pChaosVmpConsoleConfigure->szChaosVmByteCodeFileNameInInfect, 0, sizeof(__tchar) * 0x20);
// }
// } else if (Mode == CRM_EMULATION) {
// _tcscpy(pChaosVmpConsoleConfigure->szChaosVmByteCodeFileNameInEmulation, szChaosVmByteCodeFile);//设置bytecode文件名称
// if (_tcslen(szChaosVmEmulationName) == 0) {
// pChaosVmpConsoleConfigure->bUseChaosVmEmulationInResource = TRUE;
// memset(pChaosVmpConsoleConfigure->szChaosVmNameInEmulation, 0, sizeof(__tchar) * 0x20);
// } else {
// _tcscpy(pChaosVmpConsoleConfigure->szChaosVmNameInEmulation, szChaosVmEmulationName);
// pChaosVmpConsoleConfigure->bUseChaosVmEmulationInResource = FALSE;
// }
// }
// pChaosVmpConsoleConfigure->Mode = Mode;
//
// // 设置对话框
// if (_tcslen(szMessageBoxTitle)) _tcscpy(pChaosVmpConsoleConfigure->szMessageBoxTitle, szMessageBoxTitle);
// else memset(pChaosVmpConsoleConfigure->szMessageBoxTitle, 0, sizeof(__tchar) * 0x40);
//
// if (_tcslen(szMessageBoxOnByteCodeFileNotExist)) _tcscpy(pChaosVmpConsoleConfigure->szMessageBoxOnByteCodeFileNotExist, szMessageBoxOnByteCodeFileNotExist);
// else memset(pChaosVmpConsoleConfigure->szMessageBoxOnByteCodeFileNotExist, 0, sizeof(__tchar) * 0x100);
//
// if (_tcslen(szMessageBoxOnEmulationFileNotExist)) _tcscpy(pChaosVmpConsoleConfigure->szMessageBoxOnEmulationFileNotExist, szMessageBoxOnEmulationFileNotExist);
// else memset(pChaosVmpConsoleConfigure->szMessageBoxOnEmulationFileNotExist, 0, sizeof(__tchar) * 0x100);
//
// pChaosVmpConsoleConfigure->dwMessageStyle = dwMessageStyle;
//
// return iTarget;
//}
// 产生被保护代码区域的花指令
__memory __API__ GenChaosVmInvokeThunkCode(__integer iSize) {
__memory pThunkCode = NULL;
pThunkCode = (__memory)__logic_new_size__(iSize);
if (!pThunkCode) return NULL;
return pThunkCode;
}
CHAOSVMATH_CONFIGURE g_ChaosVmAthConfigure;
CHAOSVMP_CONSOLE_CONFIGURE g_ChaosVmpConsoleConfigure;
DISATH_CONFIGURE g_DisAthConfigure;
__integer _tmain(__integer iArgc, __tchar *pArgv[]) {
/*__integer iTarget = 0;*/
// 初始化混乱虚拟机附加器配置结构
ChaosVmAthInitConfigure(&g_ChaosVmAthConfigure);
ZeroMemory(&g_ChaosVmpConsoleConfigure, sizeof(CHAOSVMP_CONSOLE_CONFIGURE));
ZeroMemory(&g_DisAthConfigure, sizeof(DISATH_CONFIGURE));
// 分析命令行并设置配置结构
//iTarget = HandleArguments(iArgc, pArgv, &g_ChaosVmAthConfigure, &g_DisAthConfigure, &g_ChaosVmpConsoleConfigure);
//if (!iTarget)
// return -1;
// 参数分析
{
HANDLE_ARGS_DO BackValue;
BackValue = HandleArguments(iArgc, pArgv, &g_ChaosVmAthConfigure, &g_DisAthConfigure, &g_ChaosVmpConsoleConfigure);
if (BackValue == HAD_FAILED)
return -1;
else if (BackValue == HAD_SUCCESS)
goto _start;
else if (BackValue == HAD_EXIT)
return 0;
}
_start:
// 检验是否需要备份
if (g_ChaosVmpConsoleConfigure.bBackupOrigFile) {
__tchar szBackUpFilePath[MAX_PATH] = {0};
__logic_tcscpy__(szBackUpFilePath, g_DisAthConfigure.XFileAttachInfo.szTargetFilePath);
__logic_tcscat__(szBackUpFilePath, (__wchar *)_T(".bk"));
CopyFile((LPCTSTR)(g_DisAthConfigure.XFileAttachInfo.szTargetFilePath), (LPCTSTR)szBackUpFilePath, FALSE);
}
// 保护丫的
{
__dword dwRet = 0;
CHAOSVMATH_RET_INFO RetInfo = {0};
//////////////////////////////////////////////////////////////////////////
//设置ChaosVm附加器的配置结构
// 设置字节码的文件名
_tcscpy((TCHAR *)(g_ChaosVmAthConfigure.szChaosVmByteCodeFileName), (TCHAR *)(g_ChaosVmpConsoleConfigure.szChaosVmByteCodeFileNameInInfect));
// 设置不同模式下的选项
if (g_ChaosVmpConsoleConfigure.Mode == CRM_INFECT) {
g_ChaosVmAthConfigure.bUseByteCodeFile = g_ChaosVmpConsoleConfigure.bUseByteCodeFileInInfectMode;
} else if (g_ChaosVmpConsoleConfigure.Mode == CRM_EMULATION) {
g_ChaosVmAthConfigure.bUseChaosVmEmulationInResource = g_ChaosVmpConsoleConfigure.bUseChaosVmEmulationInResource;
_tcscpy((TCHAR *)(g_ChaosVmAthConfigure.szChaosVmEmulationFileName), (TCHAR *)(g_ChaosVmpConsoleConfigure.szChaosVmNameInEmulation));
}
g_ChaosVmAthConfigure.Mode = g_ChaosVmpConsoleConfigure.Mode;
// 消息框设定
_tcscpy((TCHAR *)(g_ChaosVmAthConfigure.szMessageBoxTitle), (TCHAR *)(g_ChaosVmpConsoleConfigure.szMessageBoxTitle));
_tcscpy((TCHAR *)(g_ChaosVmAthConfigure.szMessageBoxOnByteCodeFileNotExist), (TCHAR *)(g_ChaosVmpConsoleConfigure.szMessageBoxOnByteCodeFileNotExist));
_tcscpy((TCHAR *)(g_ChaosVmAthConfigure.szMessageBoxOnEmulationFileNotExist), (TCHAR *)(g_ChaosVmpConsoleConfigure.szMessageBoxOnEmulationFileNotExist));
g_ChaosVmAthConfigure.dwMessageStyle = g_ChaosVmpConsoleConfigure.dwMessageStyle;
// 调试虚拟机,2012.2.9 新增
__logic_memcpy__(&(g_ChaosVmAthConfigure.DebugConfigure), &(g_ChaosVmpConsoleConfigure.DebugConfigure), sizeof(CHAOSVM_EMULATION_CONFIGURE_DEBUG_CONFIGURE));
g_ChaosVmAthConfigure.pGenChaosVmInvokeThunkCode = GenChaosVmInvokeThunkCode;
g_ChaosVmAthConfigure.PowerProtecterAttachConfigure.pGenPowerProtecterInvokeThunkCode = GenChaosVmInvokeThunkCode;
g_DisAthConfigure.pUserData0 = (__void *)&g_ChaosVmAthConfigure;
g_DisAthConfigure.pUserData1 = (__void *)&RetInfo;
dwRet = ChaosVmAthAttach(&g_DisAthConfigure);
if (__DISATH_SUCCESS__(dwRet))
printf("^_^ success\r\n");
else
printf("-_- failed\r\n");
}
//如果是在调试模式下,则将目标程序设定为窗口程序
#if defined(__PRINT_DBG_INFO__)
{
__memory pMem = NULL;
PIMAGE_NT_HEADERS pNtHdr = NULL;
pMem = MappingFile(g_ChaosVmpConsoleConfigure.szTargetFilePath, NULL, TRUE, 0, 0);
pNtHdr = GetNtHeader(pMem);
pNtHdr->OptionalHeader.Subsystem = IMAGE_SUBSYSTEM_WINDOWS_GUI;
UnmapViewOfFile(pMem);
}
#endif
return 0;
}
| [
"53790405+gA4ss@users.noreply.github.com"
] | 53790405+gA4ss@users.noreply.github.com |
bfce1cf4af4c15e593714b1c28c80c8de01a05db | 4bf56cc8acffc9bf9d83a786a5a0e5bba7606a51 | /05/chessboard_refined.cpp | 92641943fbf0a6acd3455b17cc2f1412ec9eefda | [] | no_license | actsalgueiro/CV1617-50645-65092 | 876200f9f4962086219e1b919bacdae55f47442b | b17faf883d9ada3622a9b74272c00509b6a45d87 | refs/heads/master | 2020-02-26T15:40:12.603306 | 2017-01-30T05:02:55 | 2017-01-30T05:02:55 | 70,687,286 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,014 | cpp | /***********************************************************************************
Name: chessboard.cpp
Revision:
Author: Paulo Dias
Comments: ChessBoard Tracking
images
Revision:
Libraries:
***********************************************************************************/
#include <iostream>
#include <vector>
// OpenCV Includes
#include <stdio.h>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/calib3d/calib3d.hpp>
#include <opencv2/imgproc/imgproc.hpp>
using namespace cv;
using namespace std;
// Function FindAndDisplayChessboard
// find corners in a cheesboard with board_w x board_h dimensions
// Display the corners in image and return number of detected corners
int FindAndDisplayChessboard(Mat image,int board_w,int board_h, std::vector<Point2f> *corners)
{
int board_size = board_w * board_h;
CvSize board_sz = cvSize(board_w,board_h);
Mat grey_image;
cvtColor(image, grey_image, CV_BGR2GRAY);
TermCriteria criteria = TermCriteria( CV_TERMCRIT_EPS + CV_TERMCRIT_ITER, 40, 0.001 );
// find chessboard corners
bool found = findChessboardCorners(grey_image, board_sz, *corners,0);
vector<Point2f> &c = *corners;
/// Write them down
cout << "\nBefore: " << endl;
for( int i = 0; i < c.size(); i++ )
{ cout<<" -- Corner ["<<i<<"] ("<<c[i].x<<","<<c[i].y<<")"<<endl; }
// Refined corners
cornerSubPix(grey_image, *corners, Size(5,5), Size(-1,-1), criteria);
/// Write them down
cout << "After: " << endl;
for( int i = 0; i < c.size(); i++ )
{ cout<<" -- Refined Corner ["<<i<<"] ("<<c[i].x<<","<<c[i].y<<")"<<endl; }
// Draw results
if (true)
{
drawChessboardCorners(image, board_sz, Mat(*corners), found);
imshow("Calibration",image);
printf("\n Number of corners: %lu",corners->size());
waitKey(0);
}
return corners->size();
}
int main(int argc, char **argv)
{
// ChessBoard Properties
int n_boards = 13; //Number of images
int board_w = 9;
int board_h = 6;
int board_sz = board_w * board_h;
char filename[200];
// Chessboard coordinates and image pixels
std::vector<std::vector<Point3f> > object_points;
std::vector<std::vector<Point2f> > image_points;
// Corners detected in each image
std::vector<Point2f> corners;
int corner_count;
Mat image;
int i;
int sucesses = 0;
Mat intrinsic = Mat(3, 3, CV_32FC1);
Mat distCoeffs;
std::vector<Mat> rvecs;
std::vector<Mat> tvecs;
// chessboard coordinates
std::vector<Point3f> obj;
for(int j=0;j<board_sz;j++)
obj.push_back(Point3f(float(j/board_w), float(j%board_w), 0.0));
for (i=0;i<n_boards;i++)
{
// read image
sprintf(filename,"..//images//05//left%02d.jpg",i+1);
printf("\nReading %s",filename);
image = imread(filename, CV_LOAD_IMAGE_COLOR);
if(!image.data)
{
printf("\nCould not load image file: %s\n",filename);
getchar();
return 0;
}
// find and display corners
corner_count = FindAndDisplayChessboard(image,board_w,board_h,&corners);
if (corner_count == board_w * board_h)
{
image_points.push_back(corners);
object_points.push_back(obj);
sucesses++;
}
// Calibrate the camera
calibrateCamera(object_points, image_points, Size(board_w, board_h), intrinsic, distCoeffs, rvecs,tvecs);
/*
// Shows results after calibrating the camera
cout << endl << "Instrinsics = " << endl << "" << intrinsic << endl << endl;
cout << endl << "Distortion = " << endl << "" << distCoeffs << endl << endl;
cout << endl << endl << "Translations = ";
for(i = 0; i < n_boards; i++)
cout << endl << tvecs.at(i);
cout << endl << endl << "Rotations = ";
for(i = 0; i < n_boards; i++)
cout << endl << rvecs.at(i);
*/
}
return 0;
}
| [
"andre.salgueiro@ua.pt"
] | andre.salgueiro@ua.pt |
40c289fd69d70a73096bac570a9c0e9d1d214993 | 39286cb21ded262aa700894482992a10067212c2 | /proj2_seetaface2/SeetaFace2/SeetaNet/src/include_inner/SeetaNetMemoryModel.h | 0f27d9da9f795bf0922e1f93ff288c62eebbff3a | [
"Apache-2.0",
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | rbbernardino/face-recognition-eval | 076e6e664101e111ae1ee8f554bd526dbbb90d82 | a5a8f75a7e29f34a74077f205b4f0dceb731a15b | refs/heads/master | 2021-09-10T06:02:36.279085 | 2020-04-11T03:17:46 | 2020-04-11T03:17:46 | 240,072,179 | 0 | 0 | Apache-2.0 | 2021-09-08T01:55:37 | 2020-02-12T17:24:58 | C++ | UTF-8 | C++ | false | false | 425 | h | #ifndef _SEETANET_MEMORY_MODEL_H_
#define _SEETANET_MEMORY_MODEL_H_
#include "SeetaNetProto.h"
#include <mutex>
struct MemoryModel
{
std::vector<seeta::SeetaNet_LayerParameter *> all_layer_params;
std::vector<std::string> vector_blob_names;
std::vector<std::string> vector_layer_names;
std::mutex model_mtx;
/* saving resized input */
int m_new_width = -1;
int m_new_height = -1;
};
#endif
| [
"rbbernardino@gmail.com"
] | rbbernardino@gmail.com |
540baeaaad190f962f3ff72a78b942f28dfa9e49 | 9eb2245869dcc3abd3a28c6064396542869dab60 | /benchspec/CPU/523.xalancbmk_r/src/XalanTranscodingServices.cpp | 018b3256c360d24bc46074cffeba97ed83e7026d | [] | no_license | lapnd/CPU2017 | 882b18d50bd88e0a87500484a9d6678143e58582 | 42dac4b76117b1ba4a08e41b54ad9cfd3db50317 | refs/heads/master | 2023-03-23T23:34:58.350363 | 2021-03-24T10:01:03 | 2021-03-24T10:01:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,731 | cpp | /*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "xalanc/PlatformSupport/XalanTranscodingServices.hpp"
#include <cassert>
#include <xercesc/util/PlatformUtils.hpp>
#include <xercesc/util/TransService.hpp>
#include "xalanc/PlatformSupport/DOMStringHelper.hpp"
#include "xalanc/PlatformSupport/XalanMessageLoader.hpp"
#include "xalanc/PlatformSupport/XalanToXercesTranscoderWrapper.hpp"
#include "xalanc/PlatformSupport/XalanUTF16Transcoder.hpp"
XALAN_CPP_NAMESPACE_BEGIN
const XalanDOMChar XalanTranscodingServices::s_utf8String[] =
{
XalanUnicode::charLetter_U,
XalanUnicode::charLetter_T,
XalanUnicode::charLetter_F,
XalanUnicode::charHyphenMinus,
XalanUnicode::charDigit_8,
0
};
const XalanDOMChar XalanTranscodingServices::s_utf16String[] =
{
XalanUnicode::charLetter_U,
XalanUnicode::charLetter_T,
XalanUnicode::charLetter_F,
XalanUnicode::charHyphenMinus,
XalanUnicode::charDigit_1,
XalanUnicode::charDigit_6,
0
};
const XalanDOMChar XalanTranscodingServices::s_utf16LEString[] =
{
XalanUnicode::charLetter_U,
XalanUnicode::charLetter_T,
XalanUnicode::charLetter_F,
XalanUnicode::charHyphenMinus,
XalanUnicode::charDigit_1,
XalanUnicode::charDigit_6,
XalanUnicode::charLetter_L,
XalanUnicode::charLetter_E,
0
};
const XalanDOMChar XalanTranscodingServices::s_utf16BEString[] =
{
XalanUnicode::charLetter_U,
XalanUnicode::charLetter_T,
XalanUnicode::charLetter_F,
XalanUnicode::charHyphenMinus,
XalanUnicode::charDigit_1,
XalanUnicode::charDigit_6,
XalanUnicode::charLetter_B,
XalanUnicode::charLetter_E,
0
};
const XalanDOMChar XalanTranscodingServices::s_utf32String[] =
{
XalanUnicode::charLetter_U,
XalanUnicode::charLetter_T,
XalanUnicode::charLetter_F,
XalanUnicode::charHyphenMinus,
XalanUnicode::charDigit_3,
XalanUnicode::charDigit_2,
0
};
const XalanDOMChar XalanTranscodingServices::s_asciiString[] =
{
XalanUnicode::charLetter_A,
XalanUnicode::charLetter_S,
XalanUnicode::charLetter_C,
XalanUnicode::charLetter_I,
XalanUnicode::charLetter_I,
0
};
const XalanDOMChar XalanTranscodingServices::s_usASCIIString[] =
{
XalanUnicode::charLetter_U,
XalanUnicode::charLetter_S,
XalanUnicode::charHyphenMinus,
XalanUnicode::charLetter_A,
XalanUnicode::charLetter_S,
XalanUnicode::charLetter_C,
XalanUnicode::charLetter_I,
XalanUnicode::charLetter_I,
0
};
const XalanDOMChar XalanTranscodingServices::s_windows1250String[] =
{
XalanUnicode::charLetter_W,
XalanUnicode::charLetter_I,
XalanUnicode::charLetter_N,
XalanUnicode::charLetter_D,
XalanUnicode::charLetter_O,
XalanUnicode::charLetter_W,
XalanUnicode::charLetter_S,
XalanUnicode::charHyphenMinus,
XalanUnicode::charDigit_1,
XalanUnicode::charDigit_2,
XalanUnicode::charDigit_5,
XalanUnicode::charDigit_0,
0
};
const XalanDOMChar XalanTranscodingServices::s_iso88591String[] =
{
XalanUnicode::charLetter_I,
XalanUnicode::charLetter_S,
XalanUnicode::charLetter_O,
XalanUnicode::charHyphenMinus,
XalanUnicode::charDigit_8,
XalanUnicode::charDigit_8,
XalanUnicode::charDigit_5,
XalanUnicode::charDigit_9,
XalanUnicode::charHyphenMinus,
XalanUnicode::charDigit_1,
0
};
const XalanDOMChar XalanTranscodingServices::s_shiftJISString[] =
{
XalanUnicode::charLetter_S,
XalanUnicode::charLetter_H,
XalanUnicode::charLetter_I,
XalanUnicode::charLetter_F,
XalanUnicode::charLetter_T,
XalanUnicode::charLowLine,
XalanUnicode::charLetter_J,
XalanUnicode::charLetter_I,
XalanUnicode::charLetter_S,
0
};
const XalanTranscodingServices::XalanXMLByte XalanTranscodingServices::s_dummyByteOrderMark[] =
{
XalanTranscodingServices::XalanXMLByte(0)
};
const XalanTranscodingServices::XalanXMLByte XalanTranscodingServices::s_UTF8ByteOrderMark[] =
{
XalanTranscodingServices::XalanXMLByte(0xEF),
XalanTranscodingServices::XalanXMLByte(0xBB),
XalanTranscodingServices::XalanXMLByte(0xBF),
XalanTranscodingServices::XalanXMLByte(0)
};
const XalanDOMChar XalanTranscodingServices::s_UTF16ByteOrderMark[] =
{
XalanDOMChar(0xFEFF),
XalanDOMChar(0)
};
XALAN_USING_XERCES(XMLTransService)
static XalanTranscodingServices::eCode
translateCode(XMLTransService::Codes theCode)
{
if (theCode == XMLTransService::Ok)
{
return XalanTranscodingServices::OK;
}
else if (theCode == XMLTransService::UnsupportedEncoding)
{
return XalanTranscodingServices::UnsupportedEncoding;
}
else if (theCode == XMLTransService::InternalFailure)
{
return XalanTranscodingServices::InternalFailure;
}
else
{
assert(theCode == XMLTransService::SupportFilesNotFound);
return XalanTranscodingServices::SupportFilesNotFound;
}
}
XalanOutputTranscoder*
XalanTranscodingServices::makeNewTranscoder(
MemoryManagerType& theManager,
const XalanDOMString& theEncodingName,
eCode& theResult,
size_type theBlockSize)
{
XALAN_USING_XERCES(XMLPlatformUtils)
assert(XMLPlatformUtils::fgTransService != 0);
XalanOutputTranscoder* theTranscoder = 0;
XMLTransService::Codes theCode = XMLTransService::Ok;
if (encodingIsUTF16(theEncodingName) == true)
{
theResult = OK;
theTranscoder = XalanUTF16Transcoder::create(theManager);
}
else
{
XALAN_USING_XERCES(XMLTranscoder)
XMLTranscoder* theXercesTranscoder =
XMLPlatformUtils::fgTransService->makeNewTranscoderFor(
c_wstr(theEncodingName),
theCode,
#if _XERCES_VERSION >= 2030
theBlockSize,
&theManager);
#else
theBlockSize);
#endif
theResult = translateCode(theCode);
assert(theResult == XalanTranscodingServices::OK ||
theXercesTranscoder == 0);
if (theResult == XalanTranscodingServices::OK)
{
theTranscoder = XalanToXercesTranscoderWrapper::create(theManager, *theXercesTranscoder);
}
}
return theTranscoder;
}
void
XalanTranscodingServices::destroyTranscoder(XalanOutputTranscoder* theTranscoder)
{
if( theTranscoder!= 0)
{
MemoryManagerType& theManager = theTranscoder->getMemoryManager();
theTranscoder->~XalanOutputTranscoder();
theManager.deallocate((void*)theTranscoder);
}
}
bool
XalanTranscodingServices::encodingIsUTF8(const XalanDOMChar* theEncodingName)
{
return compareIgnoreCaseASCII(c_wstr(theEncodingName), s_utf8String) == 0 ? true : false;
}
bool
XalanTranscodingServices::encodingIsUTF8(const XalanDOMString& theEncodingName)
{
return encodingIsUTF8(c_wstr(theEncodingName));
}
bool
XalanTranscodingServices::encodingIsUTF16(const XalanDOMChar* theEncodingName)
{
return compareIgnoreCaseASCII(c_wstr(theEncodingName), s_utf16String) == 0 ||
compareIgnoreCaseASCII(c_wstr(theEncodingName), s_utf16LEString) == 0 ||
compareIgnoreCaseASCII(c_wstr(theEncodingName), s_utf16BEString) == 0 ? true : false;
}
bool
XalanTranscodingServices::encodingIsUTF16(const XalanDOMString& theEncodingName)
{
return encodingIsUTF16(c_wstr(theEncodingName));
}
bool
XalanTranscodingServices::encodingIsUTF32(const XalanDOMChar* theEncodingName)
{
return compareIgnoreCaseASCII(c_wstr(theEncodingName), s_utf32String) == 0 ? true : false;
}
bool
XalanTranscodingServices::encodingIsUTF32(const XalanDOMString& theEncodingName)
{
return encodingIsUTF32(c_wstr(theEncodingName));
}
const XalanTranscodingServices::XalanXMLByte*
XalanTranscodingServices::getStreamProlog(const XalanDOMString& theEncodingName)
{
if (compareIgnoreCaseASCII(c_wstr(theEncodingName), s_utf16String) == 0)
{
#if defined(XALAN_OLD_STYLE_CASTS)
return (const XalanXMLByte*)s_UTF16ByteOrderMark;
#else
return reinterpret_cast<const XalanXMLByte*>(s_UTF16ByteOrderMark);
#endif
}
#if 0
// We won't do this for now...
else if (compareIgnoreCaseASCII(c_wstr(theEncodingName), s_utf8String) == 0)
{
return s_UTF8ByteOrderMark;
}
#endif
else
{
return s_dummyByteOrderMark;
}
}
XalanDOMChar
XalanTranscodingServices::getMaximumCharacterValue(const XalanDOMString& theEncoding)
{
if (compareIgnoreCaseASCII(c_wstr(theEncoding), s_utf8String) == 0 ||
compareIgnoreCaseASCII(c_wstr(theEncoding), s_utf16String) == 0)
{
return XalanDOMChar(0xFFFFu);
}
else if (compareIgnoreCaseASCII(c_wstr(theEncoding), s_iso88591String) == 0)
{
return XalanDOMChar(0x00FFu);
}
else if (compareIgnoreCaseASCII(c_wstr(theEncoding), s_utf16LEString) == 0 ||
compareIgnoreCaseASCII(c_wstr(theEncoding), s_utf16BEString) == 0 ||
compareIgnoreCaseASCII(c_wstr(theEncoding), s_utf32String) == 0 ||
compareIgnoreCaseASCII(c_wstr(theEncoding), s_shiftJISString) == 0)
{
return XalanDOMChar(0xFFFFu);
}
else
{
return XalanDOMChar(0x007fu);
}
}
XalanDOMChar
XalanTranscodingServices::getMaximumCharacterValue()
{
// $$$ ToDo: We need to set this according to the local
// code page, but how? Perhaps try to transcode various
// strings with increasingly larger character values, using
// DOMStringHelper's TranscodeToLocalCodePage()? Not exactly
// what we need, but it may do.
return XalanDOMChar(0x7fu);
}
bool
XalanTranscodingServices::getBytesEqualChars(const XalanDOMString& theEncoding)
{
return equals(theEncoding, s_asciiString) ||
equals(theEncoding, s_usASCIIString) ||
equals(theEncoding, s_windows1250String);
}
const XalanDOMChar XalanTranscodingServices::UnrepresentableCharacterException::m_type[] =
{
XalanUnicode::charLetter_U,
XalanUnicode::charLetter_n,
XalanUnicode::charLetter_p,
XalanUnicode::charLetter_r,
XalanUnicode::charLetter_e,
XalanUnicode::charLetter_e,
XalanUnicode::charLetter_n,
XalanUnicode::charLetter_t,
XalanUnicode::charLetter_a,
XalanUnicode::charLetter_b,
XalanUnicode::charLetter_l,
XalanUnicode::charLetter_e,
XalanUnicode::charLetter_C,
XalanUnicode::charLetter_h,
XalanUnicode::charLetter_a,
XalanUnicode::charLetter_r,
XalanUnicode::charLetter_a,
XalanUnicode::charLetter_c,
XalanUnicode::charLetter_t,
XalanUnicode::charLetter_e,
XalanUnicode::charLetter_r,
XalanUnicode::charLetter_E,
XalanUnicode::charLetter_x,
XalanUnicode::charLetter_c,
XalanUnicode::charLetter_e,
XalanUnicode::charLetter_p,
XalanUnicode::charLetter_t,
XalanUnicode::charLetter_i,
XalanUnicode::charLetter_o,
XalanUnicode::charLetter_n,
0
};
XalanTranscodingServices::UnrepresentableCharacterException::UnrepresentableCharacterException(
UnicodeCharType theCharacter,
const XalanDOMString& theEncoding,
XalanDOMString& theBuffer) :
XSLException(
XalanMessageLoader::getMessage(
theBuffer,
XalanMessages::UnrepresentableCharacter_2Param,
UnsignedLongToHexDOMString(
theCharacter,
theBuffer),
theEncoding),
theBuffer.getMemoryManager()),
m_badCharacter(theCharacter),
m_encoding(theEncoding, theBuffer.getMemoryManager())
{
}
XalanTranscodingServices::UnrepresentableCharacterException::~UnrepresentableCharacterException()
{
}
XalanOutputTranscoder::XalanOutputTranscoder(MemoryManagerType& theManager) :
m_memoryManager(theManager)
{
}
XalanOutputTranscoder::~XalanOutputTranscoder()
{
}
void
XalanTranscodingServices::initialize(MemoryManagerType& /* theManager */)
{
}
void
XalanTranscodingServices::terminate()
{
}
XALAN_CPP_NAMESPACE_END
| [
"cuda@hp-arm64-09-02.nvidia.com"
] | cuda@hp-arm64-09-02.nvidia.com |
744a8ec7780dd7ecfb6bb6a6e11690015677e63b | d14853c465ede75b0f18f3ee59654310580e2551 | /shared/IPhysEngine.h | 646c645d2a8825d8a6c779db67fe4045476de5a4 | [] | no_license | k3a/Panther3D-2 | dec2f4ef742c1b57da1f17e2b55c39d471e0309a | f906796e331d70ac963d0b899c4c83c50b71cdc0 | refs/heads/master | 2021-01-10T22:23:02.226127 | 2014-11-08T21:31:46 | 2014-11-08T21:31:46 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 767 | h | /* Panther3D Engine © 2004-2008 Reversity Studios (www.reversity.org)
* This contents may be used and/or copied only with the written permission or
* terms and conditions stipulated in agreement/contract.
-----------------------------------------------------------------------------
Authors: kex1k
*/
#pragma once
#include "interface.h"
#include "IPhysManager.h"
namespace P3D
{
///The main class of the Phys module.
class IPhysEngine : public IBaseInterface
{
public :
virtual bool Initialize(void* pEngine)=0;
///Begins the simulation by given time.
virtual void SimulationBegin(float deltatime)=0;
///Ends the simulation.
virtual void SimulationEnd()=0;
// - subclasses
DECLARE_ISUBCLASS(PhysManager);
};
} | [
"kexik@molybdenum.l"
] | kexik@molybdenum.l |
f8ea6a6d6e0128da4f28e9e64992061e1456a598 | 3f1dfda4c5b84476019e047717fd015ea3c37962 | /engine/src/graphics/camera/camera.cpp | 7b1b720894936c35418fa3ebabfec09b6afd2eee | [
"MIT"
] | permissive | nyalloc/moka | b573fd8b5d01dd87155383e144980fa59e351698 | d08a63b853801aec94390e50f2988d0217438061 | refs/heads/master | 2023-03-24T11:47:28.118757 | 2021-03-06T00:52:37 | 2021-03-06T00:52:37 | 133,577,310 | 6 | 3 | NOASSERTION | 2021-03-06T00:41:55 | 2018-05-15T21:52:38 | C++ | UTF-8 | C++ | false | false | 1,075 | cpp | #include <graphics/camera/camera.hpp>
namespace moka
{
camera::~camera() = default;
camera::camera(camera&& camera) noexcept
: camera_(std::move(camera.camera_))
{
}
camera::camera(std::unique_ptr<base_camera>&& camera)
: camera_(std::move(camera))
{
}
glm::mat4 camera::get_view() const
{
return camera_->get_view();
}
const glm::quat& camera::get_rotation() const
{
return camera_->get_rotation();
}
const glm::vec3& camera::get_position() const
{
return camera_->get_position();
}
const glm::mat4& camera::get_projection() const
{
return camera_->get_projection();
}
const transform& camera::get_transform() const
{
return camera_->get_transform();
}
void camera::set_perspective(const float radians, const float aspect)
{
camera_->set_perspective(radians, aspect);
}
void camera::update(const float delta_time) const
{
return camera_->update(delta_time);
}
} // namespace moka
| [
"stuartdadams@gmail.com"
] | stuartdadams@gmail.com |
cc52ebfb57b4ff4a6ecf761f0c0c6b08188684f6 | 2606b0a150f190656f37bb982b2d99c044d77d7d | /main.cpp | adb88340cf9f368164a3faf6254e84314c14cd81 | [] | no_license | longyf/exer-29 | daf663ade0cbedb2b25cb75d5699d7b66308d8c0 | bd5b05fcc63b1017a2e909b791590fe6977085d5 | refs/heads/master | 2020-03-26T15:46:21.982904 | 2018-08-17T02:44:14 | 2018-08-17T02:44:14 | 145,063,255 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 590 | cpp | #include <iostream>
#include <vector>
#include "printMatrix.h"
using namespace std;
int main() {
vector<vector<int> >v1;
vector<int> temp1 = {1, 2, 3, 4, 5};
vector<int> temp2 = {6, 7, 8, 9, 10};
vector<int> temp3 = {11, 12, 13, 14, 15};
vector<int> temp4 = {16, 17, 18, 19, 20};
vector<int> temp5 = {21, 22, 23, 24, 25};
v1.push_back(temp1);
v1.push_back(temp2);
v1.push_back(temp3);
v1.push_back(temp4);
v1.push_back(temp5);
vector<int> result;
result = printMatrix(v1);
for (int i = 0; i != result.size(); ++i) {
cout<<result[i]<<" ";
}
cout<<endl;
return 0;
}
| [
"longyf@pku.edu.cn"
] | longyf@pku.edu.cn |
29c10da0052ece4b428a427281dd39496127ce14 | cfeac52f970e8901871bd02d9acb7de66b9fb6b4 | /generated/src/aws-cpp-sdk-mturk-requester/source/model/GetQualificationScoreRequest.cpp | 55f8ed93ad81f3a6899a6a0e823cb2e14a1081b2 | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | aws/aws-sdk-cpp | aff116ddf9ca2b41e45c47dba1c2b7754935c585 | 9a7606a6c98e13c759032c2e920c7c64a6a35264 | refs/heads/main | 2023-08-25T11:16:55.982089 | 2023-08-24T18:14:53 | 2023-08-24T18:14:53 | 35,440,404 | 1,681 | 1,133 | Apache-2.0 | 2023-09-12T15:59:33 | 2015-05-11T17:57:32 | null | UTF-8 | C++ | false | false | 1,124 | cpp | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/mturk-requester/model/GetQualificationScoreRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::MTurk::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
GetQualificationScoreRequest::GetQualificationScoreRequest() :
m_qualificationTypeIdHasBeenSet(false),
m_workerIdHasBeenSet(false)
{
}
Aws::String GetQualificationScoreRequest::SerializePayload() const
{
JsonValue payload;
if(m_qualificationTypeIdHasBeenSet)
{
payload.WithString("QualificationTypeId", m_qualificationTypeId);
}
if(m_workerIdHasBeenSet)
{
payload.WithString("WorkerId", m_workerId);
}
return payload.View().WriteReadable();
}
Aws::Http::HeaderValueCollection GetQualificationScoreRequest::GetRequestSpecificHeaders() const
{
Aws::Http::HeaderValueCollection headers;
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "MTurkRequesterServiceV20170117.GetQualificationScore"));
return headers;
}
| [
"sdavtaker@users.noreply.github.com"
] | sdavtaker@users.noreply.github.com |
34bf52b9c74a9b9a3f7f531dac2dabeda729f82f | 487a06977d1bebe81ed48ebc9d05b71ae7ecaa2e | /src/ShortBaseSequence.hpp | 55bc22d7f8bdeb1243f0b6a518ecf8a31d2c28b9 | [
"BSD-3-Clause-Open-MPI",
"MIT",
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | rlorigro/shasta | c0da406bdb84f3ad77115095f4a151d8b21db2cc | 0a8b4439f5ce2e134a94da3ee6376b41fbf44a1c | refs/heads/master | 2022-05-06T18:21:51.163415 | 2022-04-07T18:53:51 | 2022-04-07T18:53:51 | 157,905,061 | 2 | 2 | MIT | 2018-11-16T18:17:04 | 2018-11-16T18:17:04 | null | UTF-8 | C++ | false | false | 4,900 | hpp | #ifndef SHASTA_SHORT_BASE_SEQUENCE_HPP
#define SHASTA_SHORT_BASE_SEQUENCE_HPP
// shasta.
#include "Base.hpp"
// Standard library.
#include "array.hpp"
#include "iostream.hpp"
#include <limits>
#include "stdexcept.hpp"
#include "string.hpp"
namespace shasta {
// A short sequence of bases.
// Uses only two integers, so its capacity is limited
// by the length of the integers used.
// This class does not keep track of the number of bases
// actually stored. All unused positions are left set at "A".
template<class Int> class ShortBaseSequence;
using ShortBaseSequence8 = ShortBaseSequence<uint8_t>;
using ShortBaseSequence16 = ShortBaseSequence<uint16_t>;
using ShortBaseSequence32 = ShortBaseSequence<uint32_t>;
using ShortBaseSequence64 = ShortBaseSequence<uint64_t>;
template<class Int> inline ostream& operator<<(ostream&, const ShortBaseSequence<Int>&);
void testShortBaseSequence();
}
// A short sequence of bases.
// Uses only two integers, so its capacity is limited
// by the length of the integers used.
// Position 0: the LSB bit of the bases (with base 0 corresponding to the MSB bit).
// Position 1: the MSB bit of the bases (with base 0 corresponding to the MSB bit).
// This class does not keep track of the number of bases
// actually stored. All unused positions are left set at "A".
template<class Int> class shasta::ShortBaseSequence {
public:
// Sanity check on the Int type.
static_assert(std::numeric_limits<Int>::is_integer,
"Int type for ShortBaseSequence must be an integer type.");
static_assert(!std::numeric_limits<Int>::is_signed,
"Int type for ShortBaseSequence must be an unsigned integer type.");
// The number of bases that can be represented equals the number of bits
// in the Int type.
static const size_t capacity = std::numeric_limits<Int>::digits;
static const size_t capacityMinus1 = capacity - 1ULL;
// The constructor fills the data with 0, which corresponds to all A's.
ShortBaseSequence()
{
std::fill(data.begin(), data.end(), Int(0));
}
// Return the base at a given position.
Base operator[](uint64_t i) const
{
const uint64_t bitIndex = capacityMinus1 - (i & capacityMinus1);
const uint64_t bit0 = (data[0] >> bitIndex) & 1ULL;
const uint64_t bit1 = (data[1] >> bitIndex) & 1ULL;
const uint8_t value = uint8_t((bit1 << 1ULL) + bit0);
return Base::fromInteger(value);
}
// Set the base at a given position.
void set(uint64_t i, Base base) {
const uint64_t bitIndex = capacityMinus1 - (i & capacityMinus1);
const Int mask = Int(1ULL << bitIndex);
const Int maskComplement = Int(~mask);
const uint64_t bit0 = (base.value) & 1ULL;
if(bit0 == 0) {
data[0] &= maskComplement;
} else {
data[0] |= mask;
}
const uint64_t bit1 = (base.value >> 1ULL) & 1ULL;
if(bit1 == 0) {
data[1] &= maskComplement;
} else {
data[1] |= mask;
}
}
// Return an integer consisting of the concatenation
// of the base bits corresponding to the first n bases.
uint64_t id(uint64_t n) const
{
const uint64_t shift = capacity - n;
const uint64_t lsb = data[0] >> shift;
const uint64_t msb = data[1] >> shift;
return (msb << n) | lsb;
}
// Opposite of the above: construct the sequence given the id.
ShortBaseSequence(uint64_t id, uint64_t n)
{
const uint64_t mask = (1ULL << n) - 1ULL;
const uint64_t shift = capacity - n;
data[0] = Int((id & mask) << shift);
data[1] = Int(((id >> n) & mask) << shift);
}
// Return the reverse complement of the first n bases.
ShortBaseSequence<Int> reverseComplement(uint64_t n) const
{
ShortBaseSequence<Int> reverseComplementedSequence;
for(size_t i=0; i<n; i++) {
const Base b = (*this)[i].complement();
reverseComplementedSequence.set(n-i-1, b);
}
return reverseComplementedSequence;
}
bool operator==(const ShortBaseSequence<Int>& that) const
{
return data == that.data;
}
// Write the first n bases.
ostream& write(ostream& s, uint64_t n) const
{
for(uint64_t i=0; i<n; i++) {
s << (*this)[i];
}
return s;
}
void shiftLeft() {
data[0] = Int(data[0] << 1);
data[1] = Int(data[1] << 1);
}
// The data are left public to facilitate low level custom code.
array<Int, 2> data;
};
template<class Int> inline std::ostream& shasta::operator<<(
std::ostream& s,
const shasta::ShortBaseSequence<Int>& sequence)
{
for(size_t i=0; i<sequence.capacity; i++) {
s << sequence[i];
}
return s;
}
#endif
| [
"paoloczi@users.noreply.github.com"
] | paoloczi@users.noreply.github.com |
db43af162a74a3420800ca2fa87f029eb81c99c6 | 846a8c88e6ae34dbb331b0e9f5f1e8a81a4d0039 | /src/base58.h | 9b2522f4c1767f7f055d8324b4ae8eeac26e0670 | [
"MIT"
] | permissive | dashplatinum-org/dashplatinum | c32faa89bdc8f1af296affdbc1f6d15aec16164d | fcf745fb152029f732da4462ebd09cdccfe5f988 | refs/heads/master | 2020-04-23T18:47:07.233841 | 2019-09-03T02:07:07 | 2019-09-03T02:07:07 | 171,380,098 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,565 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
/**
* Why base-58 instead of standard base-64 encoding?
* - Don't want 0OIl characters that look the same in some fonts and
* could be used to create visually identical looking account numbers.
* - A string with non-alphanumeric characters is not as easily accepted as an account number.
* - E-mail usually won't line-break if there's no punctuation to break at.
* - Double-clicking selects the whole number as one word if it's all alphanumeric.
*/
#ifndef BITCOIN_BASE58_H
#define BITCOIN_BASE58_H
#include "chainparams.h"
#include "key.h"
#include "pubkey.h"
#include "script/script.h"
#include "script/standard.h"
#include <string>
#include <vector>
/**
* Encode a byte sequence as a base58-encoded string.
* pbegin and pend cannot be NULL, unless both are.
*/
std::string EncodeBase58(const unsigned char* pbegin, const unsigned char* pend);
/**
* Encode a byte vector as a base58-encoded string
*/
std::string EncodeBase58(const std::vector<unsigned char>& vch);
/**
* Decode a base58-encoded string (psz) into a byte vector (vchRet).
* return true if decoding is successful.
* psz cannot be NULL.
*/
bool DecodeBase58(const char* psz, std::vector<unsigned char>& vchRet);
/**
* Decode a base58-encoded string (psz) into a string.
* psz cannot be NULL.
*/
std::string DecodeBase58(const char* psz);
/**
* Decode a base58-encoded string (str) into a byte vector (vchRet).
* return true if decoding is successful.
*/
bool DecodeBase58(const std::string& str, std::vector<unsigned char>& vchRet);
/**
* Encode a byte vector into a base58-encoded string, including checksum
*/
std::string EncodeBase58Check(const std::vector<unsigned char>& vchIn);
/**
* Decode a base58-encoded string (psz) that includes a checksum into a byte
* vector (vchRet), return true if decoding is successful
*/
inline bool DecodeBase58Check(const char* psz, std::vector<unsigned char>& vchRet);
/**
* Decode a base58-encoded string (str) that includes a checksum into a byte
* vector (vchRet), return true if decoding is successful
*/
inline bool DecodeBase58Check(const std::string& str, std::vector<unsigned char>& vchRet);
/**
* Base class for all base58-encoded data
*/
class CBase58Data
{
protected:
//! the version byte(s)
std::vector<unsigned char> vchVersion;
//! the actually encoded data
typedef std::vector<unsigned char, zero_after_free_allocator<unsigned char> > vector_uchar;
vector_uchar vchData;
CBase58Data();
void SetData(const std::vector<unsigned char>& vchVersionIn, const void* pdata, size_t nSize);
void SetData(const std::vector<unsigned char>& vchVersionIn, const unsigned char* pbegin, const unsigned char* pend);
public:
bool SetString(const char* psz, unsigned int nVersionBytes = 1);
bool SetString(const std::string& str);
std::string ToString() const;
int CompareTo(const CBase58Data& b58) const;
bool operator==(const CBase58Data& b58) const { return CompareTo(b58) == 0; }
bool operator<=(const CBase58Data& b58) const { return CompareTo(b58) <= 0; }
bool operator>=(const CBase58Data& b58) const { return CompareTo(b58) >= 0; }
bool operator<(const CBase58Data& b58) const { return CompareTo(b58) < 0; }
bool operator>(const CBase58Data& b58) const { return CompareTo(b58) > 0; }
};
/** base58-encoded DASHP addresses.
* Public-key-hash-addresses have version 0 (or 111 testnet).
* The data vector contains RIPEMD160(SHA256(pubkey)), where pubkey is the serialized public key.
* Script-hash-addresses have version 5 (or 196 testnet).
* The data vector contains RIPEMD160(SHA256(cscript)), where cscript is the serialized redemption script.
*/
class CBitcoinAddress : public CBase58Data
{
public:
bool Set(const CKeyID& id);
bool Set(const CScriptID& id);
bool Set(const CTxDestination& dest);
bool IsValid() const;
bool IsValid(const CChainParams& params) const;
CBitcoinAddress() {}
CBitcoinAddress(const CTxDestination& dest) { Set(dest); }
CBitcoinAddress(const std::string& strAddress) { SetString(strAddress); }
CBitcoinAddress(const char* pszAddress) { SetString(pszAddress); }
CTxDestination Get() const;
bool GetKeyID(CKeyID& keyID) const;
bool IsScript() const;
};
/**
* A base58-encoded secret key
*/
class CBitcoinSecret : public CBase58Data
{
public:
void SetKey(const CKey& vchSecret);
CKey GetKey();
bool IsValid() const;
bool SetString(const char* pszSecret);
bool SetString(const std::string& strSecret);
CBitcoinSecret(const CKey& vchSecret) { SetKey(vchSecret); }
CBitcoinSecret() {}
};
template <typename K, int Size, CChainParams::Base58Type Type>
class CBitcoinExtKeyBase : public CBase58Data
{
public:
void SetKey(const K& key)
{
unsigned char vch[Size];
key.Encode(vch);
SetData(Params().Base58Prefix(Type), vch, vch + Size);
}
K GetKey()
{
K ret;
ret.Decode(&vchData[0], &vchData[Size]);
return ret;
}
CBitcoinExtKeyBase(const K& key)
{
SetKey(key);
}
CBitcoinExtKeyBase() {}
};
typedef CBitcoinExtKeyBase<CExtKey, 74, CChainParams::EXT_SECRET_KEY> CBitcoinExtKey;
typedef CBitcoinExtKeyBase<CExtPubKey, 74, CChainParams::EXT_PUBLIC_KEY> CBitcoinExtPubKey;
#endif // BITCOIN_BASE58_H
| [
"dashpnew@gmail.com"
] | dashpnew@gmail.com |
28dccb0562b3ab398b0b0f0eb6d554e5b8dc61d7 | c7f267a05d62ebf56dbe19ff6ebe9d31223e71c6 | /Engine/Source/rrepch.cpp | 4fff0d5a0eb3a519030a603fabb547346bc7c7f8 | [
"MIT"
] | permissive | kennetha123/Remorse-Render-Engine | 264da9a6f99034504115d9d22f783734046d0050 | 74368b0a1e8513ab978025931eae6252154ad8e1 | refs/heads/main | 2023-06-01T00:53:19.609349 | 2021-06-14T05:53:35 | 2021-06-14T05:53:35 | 372,596,936 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19 | cpp | #include "rrepch.h" | [
"jodysag5@gmail.com"
] | jodysag5@gmail.com |
0bdfbe3f397c1db7be41bfed760cdde5e7ec1416 | 1c7d02329721b26832792028b66ca758e1637b21 | /Carthage/Checkouts/Swift-imgui/Sources/imgui/examples/sdl_opengl3_example/main.cpp | c396405fbaba8a4955979bf96993f713f68fcbe6 | [
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | osmanzeki/AVAudioSessionPodTest | 04799b9b7218b3cb2e96fc4dded46b298368f80e | 7a109ffce3908c43d4c223e964d9ed800cd21d31 | refs/heads/master | 2021-05-25T18:04:52.552421 | 2020-04-07T19:10:20 | 2020-04-07T19:10:20 | 253,860,789 | 0 | 0 | MIT | 2020-04-07T17:08:48 | 2020-04-07T17:08:47 | null | UTF-8 | C++ | false | false | 4,250 | cpp | // ImGui - standalone example application for SDL2 + OpenGL
// If you are new to ImGui, see examples/README.txt and documentation at the top of imgui.cpp.
#include <imgui.h>
#include "imgui_impl_sdl_gl3.h"
#include <stdio.h>
#include <GL/gl3w.h> // This example is using gl3w to access OpenGL functions (because it is small). You may use glew/glad/glLoadGen/etc. whatever already works for you.
#include <SDL.h>
int main(int, char**)
{
// Setup SDL
if (SDL_Init(SDL_INIT_VIDEO|SDL_INIT_TIMER) != 0)
{
printf("Error: %s\n", SDL_GetError());
return -1;
}
// Setup window
SDL_GL_SetAttribute(SDL_GL_CONTEXT_FLAGS, SDL_GL_CONTEXT_FORWARD_COMPATIBLE_FLAG);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24);
SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 2);
SDL_DisplayMode current;
SDL_GetCurrentDisplayMode(0, ¤t);
SDL_Window *window = SDL_CreateWindow("ImGui SDL2+OpenGL3 example", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 1280, 720, SDL_WINDOW_OPENGL|SDL_WINDOW_RESIZABLE);
SDL_GLContext glcontext = SDL_GL_CreateContext(window);
gl3wInit();
// Setup ImGui binding
ImGui_ImplSdlGL3_Init(window);
// Load Fonts
// (there is a default font, this is only if you want to change it. see extra_fonts/README.txt for more details)
//ImGuiIO& io = ImGui::GetIO();
//io.Fonts->AddFontDefault();
//io.Fonts->AddFontFromFileTTF("../../extra_fonts/Cousine-Regular.ttf", 15.0f);
//io.Fonts->AddFontFromFileTTF("../../extra_fonts/DroidSans.ttf", 16.0f);
//io.Fonts->AddFontFromFileTTF("../../extra_fonts/ProggyClean.ttf", 13.0f);
//io.Fonts->AddFontFromFileTTF("../../extra_fonts/ProggyTiny.ttf", 10.0f);
//io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\ArialUni.ttf", 18.0f, NULL, io.Fonts->GetGlyphRangesJapanese());
bool show_test_window = true;
bool show_another_window = false;
ImVec4 clear_color = ImColor(114, 144, 154);
// Main loop
bool done = false;
while (!done)
{
SDL_Event event;
while (SDL_PollEvent(&event))
{
ImGui_ImplSdlGL3_ProcessEvent(&event);
if (event.type == SDL_QUIT)
done = true;
}
ImGui_ImplSdlGL3_NewFrame(window);
// 1. Show a simple window
// Tip: if we don't call ImGui::Begin()/ImGui::End() the widgets appears in a window automatically called "Debug"
{
static float f = 0.0f;
ImGui::Text("Hello, world!");
ImGui::SliderFloat("float", &f, 0.0f, 1.0f);
ImGui::ColorEdit3("clear color", (float*)&clear_color);
if (ImGui::Button("Test Window")) show_test_window ^= 1;
if (ImGui::Button("Another Window")) show_another_window ^= 1;
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
}
// 2. Show another simple window, this time using an explicit Begin/End pair
if (show_another_window)
{
ImGui::SetNextWindowSize(ImVec2(200,100), ImGuiSetCond_FirstUseEver);
ImGui::Begin("Another Window", &show_another_window);
ImGui::Text("Hello");
ImGui::End();
}
// 3. Show the ImGui test window. Most of the sample code is in ImGui::ShowTestWindow()
if (show_test_window)
{
ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiSetCond_FirstUseEver);
ImGui::ShowTestWindow(&show_test_window);
}
// Rendering
glViewport(0, 0, (int)ImGui::GetIO().DisplaySize.x, (int)ImGui::GetIO().DisplaySize.y);
glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w);
glClear(GL_COLOR_BUFFER_BIT);
ImGui::Render();
SDL_GL_SwapWindow(window);
}
// Cleanup
ImGui_ImplSdlGL3_Shutdown();
SDL_GL_DeleteContext(glcontext);
SDL_DestroyWindow(window);
SDL_Quit();
return 0;
}
| [
"mcv618@gmail.com"
] | mcv618@gmail.com |
721cd5f95d0b1f77dd3fd946c059603d827aac7e | 8c36b6519058f08c8b71ef582ae65ae6db544e6e | /HW1/Code_Template/Objects/PointLight.hpp | 28569144403f87146a1b5a8249e57ebb465470eb | [] | no_license | tr0ublee/CENG477---Introduction-to-Computer-Graphics | 358556fe45ef7b6c4bb05149ee78658b99497622 | e1fd0ab25daf7ebec92f3290e81dba8edbcb9df7 | refs/heads/master | 2023-02-26T03:50:39.129494 | 2021-01-30T14:42:43 | 2021-01-30T14:42:43 | 308,739,564 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 178 | hpp | #include "Vec3.hpp"
class PointLight{
public:
Vec3* pos;
Vec3* intensity;
PointLight(Vec3 &position, Vec3 &intensity);
~PointLight();
}; | [
"alperen.0311@gmail.com"
] | alperen.0311@gmail.com |
0be386b2c83d4be87ced39ece3abe958dc35e5b0 | 35000b4cafc268b1c9f8d4272db90ec5d6562939 | /考研数据结构/一些综合题/第二章-顺序表链表/找两个链表的公共节点2.3.20.cpp | 56f2bc06a8bc74e399538d44e5106edf3fa4e466 | [] | no_license | 920232796/c- | 987bdcf0b6f3e970282e00f688f3662c23f38cb5 | 7f0dbd819786ae20d07a161edf59dd951751234f | refs/heads/master | 2020-07-01T01:31:13.313264 | 2019-12-17T09:03:32 | 2019-12-17T09:03:32 | 201,008,510 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,755 | cpp | #include<iostream>
//先得到两个节点段的长度,然后相减为n 然后长的节点段先遍历n个节点 然后同时遍历 直到找到公共节点
using namespace std;
struct Node {
int data;
Node* next;
Node(int d, Node* n) {
data = d;
next = n;
}
};
void solve(Node* node_1, Node* node_2) {
int len_node_1 = 0;
int len_node_2 = 0;
Node* temp_1 = node_1;
Node* temp_2 = node_2;
while (temp_1 != NULL) {
len_node_1 ++;
temp_1 = temp_1 -> next;
}
while (temp_2 != NULL) {
len_node_2 ++;
temp_2 = temp_2 -> next;
}
if (len_node_1 > len_node_2) {
for (int i = 0; i < len_node_1 - len_node_2; i ++) {
node_1 = node_1 -> next;
}
}
if (len_node_1 < len_node_2) {
for (int i = 0; i < len_node_2 - len_node_1; i ++) {
node_2 = node_2 -> next;
}
}
while (true) {
if (node_1 == node_2) {
cout<<"result : "<<node_1 -> data<<endl;
return ;
}
node_1 = node_1 -> next;
node_2 = node_2 -> next;
}
}
int main() {
//公共节点段
Node* node = new Node(9, new Node(8, new Node(7, NULL)));
//两个节点段 找它俩的公共节点
Node* node1 = new Node(5, new Node(4, new Node(8, new Node(1, new Node(4, new Node(4, node))))));
Node* node2 = new Node(3, new Node(1, node));
Node* temp = node1;
while (temp != NULL) {
cout<<temp -> data<<" ";
temp = temp -> next;
}
cout<<endl;
Node* temp2 = node2;
while (temp2 != NULL) {
cout<<temp2 -> data<<" ";
temp2 = temp2 -> next;
}
cout<<endl;
solve(node1, node2);
return 0;
} | [
"920232796@qq.com"
] | 920232796@qq.com |
ba17b8b71c1c8d81219ca010e3297fdab0f6fa5c | dd6cab5b18edb4e06b44ed1b9be296bf68444b2c | /src/Components/ImageSubscriber/ImageSubscriber.cpp | 7d8ce61345e2f1171e9c279bc8484044d367b235 | [] | no_license | binarek/DCL_ROSIntegration | 2caefaecca15eff7c59c6b08002e471071668e3e | 194b51c9625c1140e7e674863c34d1a04857b1dc | refs/heads/master | 2021-06-24T18:11:00.340799 | 2017-09-14T12:16:39 | 2017-09-14T12:16:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,986 | cpp | /*!
* \file
* \brief
* \author Aleksandra Karbarczyk
*/
#include <memory>
#include <string>
#include "ImageSubscriber.hpp"
#include "Common/Logger.hpp"
#include <boost/bind.hpp>
using namespace std;
namespace Processors {
namespace ImageSubscriber {
ImageSubscriber::ImageSubscriber(const string &name) :
Base::Component(name),
ros_topic_("ros.topic", std::string("/image")) {
registerProperty(ros_topic_);
}
ImageSubscriber::~ImageSubscriber() {
}
void ImageSubscriber::prepareInterface() {
// Register data streams, events and event handlers HERE!
registerStream("out_img", &out_img_);
// Register handlers
registerHandler("onNewImage", boost::bind(&ImageSubscriber::onNewImage, this));
addDependency("onNewImage", NULL);
}
bool ImageSubscriber::onInit() {
static int argc;
static char *argv = NULL;
ros::init(argc, &argv, "changeit", ros::init_options::NoSigintHandler);
nh_ = new ros::NodeHandle;
it_ = new image_transport::ImageTransport(*nh_);
CLOG(LERROR) <<"Start! " << ros_topic_;
image_sub_ = it_->subscribe(ros_topic_, 1, &ImageSubscriber::handleImage, this);
rate_ = new ros::Rate(10.0);
return true;
}
bool ImageSubscriber::onFinish() {
delete rate_;
delete it_;
delete nh_;
return true;
}
bool ImageSubscriber::onStop() {
return true;
}
bool ImageSubscriber::onStart() {
return true;
}
void ImageSubscriber::onNewImage() {
ros::spinOnce();
rate_->sleep();
if (!image_.empty()) {
out_img_.write(image_);
}
}
void ImageSubscriber::handleImage(const sensor_msgs::ImageConstPtr &msg) {
cv_bridge::CvImagePtr cv_ptr;
try {
cv_ptr = cv_bridge::toCvCopy(msg, sensor_msgs::image_encodings::BGR8);
}
catch (cv_bridge::Exception &e) {
CLOG(LERROR) << "cv_bridge exception: " << e.what();
return;
}
image_ = cv_ptr->image.clone();
}
} //: namespace ImageSubscriber
} //: namespace Processors
| [
"akarbarczyk@gmail.com"
] | akarbarczyk@gmail.com |
34f69c5ef19ca68a5a0519ccd999335518b11a19 | b4fd892821fa86eee37d53e0c307ad610d67ed42 | /题目练习/洛谷/洛谷/P1914 小书童——密码.cpp | 967bfb63097bc65c50df83da3f93c088a0ffa37a | [] | no_license | Empty0Qc/New-Empty | 0fcfa4e35af5bdbe173c4f092493ec127bf37e93 | a05673052fea0ef97db695d9488e12c51f6a2a75 | refs/heads/master | 2020-04-01T06:36:47.636480 | 2019-10-24T05:44:38 | 2019-10-24T05:44:38 | 150,874,112 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 361 | cpp | //https://www.luogu.org/problemnew/show/P1914
//#include <iostream>
//#include <string>
//using namespace std;
//
//int main()
//{
// int n;
// while (cin >> n)
// {
// string s;
// cin >> s;
// n = n % 26;
// if (n != 0)
// {
// for (int i = 0; i < s.size();i++)
// s[i] = ((s[i] - 97) + n)%26 + 97;
// }
// cout << s << endl;
// }
// return 0;
//} | [
"43704042+Empty0Qc@users.noreply.github.com"
] | 43704042+Empty0Qc@users.noreply.github.com |
ab16a9dead01d1f219ea30b04ad545fbb752f0a9 | 3cf9e141cc8fee9d490224741297d3eca3f5feff | /C++ Benchmark Programs/Benchmark Files 1/classtester/autogen-sources/source-11936.cpp | 986f4aa16b88ec63e4bae6c6947fe364cd91fbe1 | [] | no_license | TeamVault/tauCFI | e0ac60b8106fc1bb9874adc515fc01672b775123 | e677d8cc7acd0b1dd0ac0212ff8362fcd4178c10 | refs/heads/master | 2023-05-30T20:57:13.450360 | 2021-06-14T09:10:24 | 2021-06-14T09:10:24 | 154,563,655 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,597 | cpp | struct c0;
void __attribute__ ((noinline)) tester0(c0* p);
struct c0
{
bool active0;
c0() : active0(true) {}
virtual ~c0()
{
tester0(this);
active0 = false;
}
virtual void f0(){}
};
void __attribute__ ((noinline)) tester0(c0* p)
{
p->f0();
}
struct c1;
void __attribute__ ((noinline)) tester1(c1* p);
struct c1
{
bool active1;
c1() : active1(true) {}
virtual ~c1()
{
tester1(this);
active1 = false;
}
virtual void f1(){}
};
void __attribute__ ((noinline)) tester1(c1* p)
{
p->f1();
}
struct c2;
void __attribute__ ((noinline)) tester2(c2* p);
struct c2 : virtual c1
{
bool active2;
c2() : active2(true) {}
virtual ~c2()
{
tester2(this);
c1 *p1_0 = (c1*)(c2*)(this);
tester1(p1_0);
active2 = false;
}
virtual void f2(){}
};
void __attribute__ ((noinline)) tester2(c2* p)
{
p->f2();
if (p->active1)
p->f1();
}
struct c3;
void __attribute__ ((noinline)) tester3(c3* p);
struct c3 : virtual c2
{
bool active3;
c3() : active3(true) {}
virtual ~c3()
{
tester3(this);
c1 *p1_0 = (c1*)(c2*)(c3*)(this);
tester1(p1_0);
c2 *p2_0 = (c2*)(c3*)(this);
tester2(p2_0);
active3 = false;
}
virtual void f3(){}
};
void __attribute__ ((noinline)) tester3(c3* p)
{
p->f3();
if (p->active1)
p->f1();
if (p->active2)
p->f2();
}
struct c4;
void __attribute__ ((noinline)) tester4(c4* p);
struct c4 : virtual c1, c0, c2
{
bool active4;
c4() : active4(true) {}
virtual ~c4()
{
tester4(this);
c0 *p0_0 = (c0*)(c4*)(this);
tester0(p0_0);
c1 *p1_0 = (c1*)(c4*)(this);
tester1(p1_0);
c1 *p1_1 = (c1*)(c2*)(c4*)(this);
tester1(p1_1);
c2 *p2_0 = (c2*)(c4*)(this);
tester2(p2_0);
active4 = false;
}
virtual void f4(){}
};
void __attribute__ ((noinline)) tester4(c4* p)
{
p->f4();
if (p->active0)
p->f0();
if (p->active2)
p->f2();
if (p->active1)
p->f1();
}
int __attribute__ ((noinline)) inc(int v) {return ++v;}
int main()
{
c0* ptrs0[25];
ptrs0[0] = (c0*)(new c0());
ptrs0[1] = (c0*)(c4*)(new c4());
for (int i=0;i<2;i=inc(i))
{
tester0(ptrs0[i]);
delete ptrs0[i];
}
c1* ptrs1[25];
ptrs1[0] = (c1*)(new c1());
ptrs1[1] = (c1*)(c2*)(new c2());
ptrs1[2] = (c1*)(c2*)(c3*)(new c3());
ptrs1[3] = (c1*)(c4*)(new c4());
ptrs1[4] = (c1*)(c2*)(c4*)(new c4());
for (int i=0;i<5;i=inc(i))
{
tester1(ptrs1[i]);
delete ptrs1[i];
}
c2* ptrs2[25];
ptrs2[0] = (c2*)(new c2());
ptrs2[1] = (c2*)(c3*)(new c3());
ptrs2[2] = (c2*)(c4*)(new c4());
for (int i=0;i<3;i=inc(i))
{
tester2(ptrs2[i]);
delete ptrs2[i];
}
c3* ptrs3[25];
ptrs3[0] = (c3*)(new c3());
for (int i=0;i<1;i=inc(i))
{
tester3(ptrs3[i]);
delete ptrs3[i];
}
c4* ptrs4[25];
ptrs4[0] = (c4*)(new c4());
for (int i=0;i<1;i=inc(i))
{
tester4(ptrs4[i]);
delete ptrs4[i];
}
return 0;
}
| [
"ga72foq@mytum.de"
] | ga72foq@mytum.de |
7d169618896a34c0b4e068fdb180cd30d5d52f18 | e58c3c7281a612d3a1d4cd6e06fa7fb4ce67a5b4 | /Products/Common/sstringpasser.hpp | f55937d83555dc99923078f4c308e5927c872895 | [
"MIT"
] | permissive | TrevorDArcyEvans/Diving-Magpie-Software | b6e117e4c50030b208f5e2e9650fd169f7d6daac | 7ffcfef653b110e514d5db735d11be0aae9953ec | refs/heads/master | 2022-04-10T11:23:57.914631 | 2020-03-24T13:24:54 | 2020-03-24T13:24:54 | 249,255,200 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 314 | hpp | #ifndef _SStringPasser_hpp
#define _SStringPasser_hpp
#include <atlconv.h>
namespace SStringPasser
{
inline CString GetCString (const BSTR& String) { USES_CONVERSION;
CString RetVal = OLE2T (String);
::SysFreeString (String);
return RetVal;}
}//SStringPasser
#endif
| [
"tdarcyevans@hotmail.com"
] | tdarcyevans@hotmail.com |
3481139a218cd21d900b4761736a50775997f0f4 | 979646a5c119cdc775cb048c1d288310d165db51 | /157_Read_N_Characters_Given_Read4.cpp | f09ceb2297cf8daebc8865dd85242195f4c024e5 | [] | no_license | liuminghao0830/leetcode | 72a5a0a9539eb1f6b4f4446eaba97a8c94294abe | 0d58a2f5a3062617e233674dd08f2e8e13fa327d | refs/heads/master | 2021-06-22T16:33:25.636444 | 2021-02-15T07:23:36 | 2021-02-15T07:23:36 | 192,244,101 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 330 | cpp | #include<iostream>
using namespace std;
int read4(char *buff);
class Solution{
public:
int read(char *buf, int n) {
int res = 0;
for (int i = 0; i <= n / 4; ++i){
int cnt = read4(buf + res);
if (cnt == 0) return min(n, res);
res += cnt;
}
return min(n, res);
}
}; | [
"liuminghao0830@gmail.com"
] | liuminghao0830@gmail.com |
ee490d06d117a9979d8b17e14b67623fbbab4067 | cfa9467079219233c6d6f1dea0097eaed6d89132 | /src/rpcwallet.cpp | c36d2b491c44eea7b452bec697dbc1915bedc564 | [
"MIT"
] | permissive | Prism-Network/prism | a53ee928585fe6c185e094cfbc04d286241f9ea7 | a97a9ca9345e56d795b2ebf0e0f559e913bc92e8 | refs/heads/master | 2020-04-29T09:56:25.541688 | 2019-03-17T02:09:00 | 2019-03-17T02:09:00 | 176,044,149 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 157,671 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2018 The PIVX developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "amount.h"
#include "base58.h"
#include "core_io.h"
#include "init.h"
#include "net.h"
#include "netbase.h"
#include "rpc/server.h"
#include "timedata.h"
#include "util.h"
#include "utilmoneystr.h"
#include "wallet.h"
#include "walletdb.h"
#include "zlumchain.h"
#include <stdint.h>
#include "libzerocoin/Coin.h"
#include "spork.h"
#include "primitives/deterministicmint.h"
#include <boost/assign/list_of.hpp>
#include <boost/thread/thread.hpp>
#include <univalue.h>
using namespace std;
using namespace boost;
using namespace boost::assign;
int64_t nWalletUnlockTime;
static CCriticalSection cs_nWalletUnlockTime;
std::string HelpRequiringPassphrase()
{
return pwalletMain && pwalletMain->IsCrypted() ? "\nRequires wallet passphrase to be set with walletpassphrase call." : "";
}
void EnsureWalletIsUnlocked(bool fAllowAnonOnly)
{
if (pwalletMain->IsLocked() || (!fAllowAnonOnly && pwalletMain->fWalletUnlockAnonymizeOnly))
throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Error: Please enter the wallet passphrase with walletpassphrase first.");
}
void WalletTxToJSON(const CWalletTx& wtx, UniValue& entry)
{
int confirms = wtx.GetDepthInMainChain(false);
int confirmsTotal = GetIXConfirmations(wtx.GetHash()) + confirms;
entry.push_back(Pair("confirmations", confirmsTotal));
entry.push_back(Pair("bcconfirmations", confirms));
if (wtx.IsCoinBase() || wtx.IsCoinStake())
entry.push_back(Pair("generated", true));
if (confirms > 0) {
entry.push_back(Pair("blockhash", wtx.hashBlock.GetHex()));
entry.push_back(Pair("blockindex", wtx.nIndex));
entry.push_back(Pair("blocktime", mapBlockIndex[wtx.hashBlock]->GetBlockTime()));
}
uint256 hash = wtx.GetHash();
entry.push_back(Pair("txid", hash.GetHex()));
UniValue conflicts(UniValue::VARR);
BOOST_FOREACH (const uint256& conflict, wtx.GetConflicts())
conflicts.push_back(conflict.GetHex());
entry.push_back(Pair("walletconflicts", conflicts));
entry.push_back(Pair("time", wtx.GetTxTime()));
entry.push_back(Pair("timereceived", (int64_t)wtx.nTimeReceived));
BOOST_FOREACH (const PAIRTYPE(string, string) & item, wtx.mapValue)
entry.push_back(Pair(item.first, item.second));
}
string AccountFromValue(const UniValue& value)
{
string strAccount = value.get_str();
if (strAccount == "*")
throw JSONRPCError(RPC_WALLET_INVALID_ACCOUNT_NAME, "Invalid account name");
return strAccount;
}
UniValue getnewaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 1)
throw runtime_error(
"getnewaddress ( \"account\" )\n"
"\nReturns a new LUM address for receiving payments.\n"
"If 'account' is specified (recommended), it is added to the address book \n"
"so payments received with the address will be credited to 'account'.\n"
"\nArguments:\n"
"1. \"account\" (string, optional) The account name for the address to be linked to. if not provided, the default account \"\" is used. It can also be set to the empty string \"\" to represent the default account. The account does not need to exist, it will be created if there is no account by the given name.\n"
"\nResult:\n"
"\"prismaddress\" (string) The new prism address\n"
"\nExamples:\n" +
HelpExampleCli("getnewaddress", "") + HelpExampleCli("getnewaddress", "\"\"") +
HelpExampleCli("getnewaddress", "\"myaccount\"") + HelpExampleRpc("getnewaddress", "\"myaccount\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
// Parse the account first so we don't generate a key if there's an error
string strAccount;
if (params.size() > 0)
strAccount = AccountFromValue(params[0]);
if (!pwalletMain->IsLocked())
pwalletMain->TopUpKeyPool();
// Generate a new key that is added to wallet
CPubKey newKey;
if (!pwalletMain->GetKeyFromPool(newKey))
throw JSONRPCError(RPC_WALLET_KEYPOOL_RAN_OUT, "Error: Keypool ran out, please call keypoolrefill first");
CKeyID keyID = newKey.GetID();
pwalletMain->SetAddressBook(keyID, strAccount, "receive");
return CBitcoinAddress(keyID).ToString();
}
CBitcoinAddress GetAccountAddress(string strAccount, bool bForceNew = false)
{
CWalletDB walletdb(pwalletMain->strWalletFile);
CAccount account;
walletdb.ReadAccount(strAccount, account);
bool bKeyUsed = false;
// Check if the current key has been used
if (account.vchPubKey.IsValid()) {
CScript scriptPubKey = GetScriptForDestination(account.vchPubKey.GetID());
for (map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin();
it != pwalletMain->mapWallet.end() && account.vchPubKey.IsValid();
++it) {
const CWalletTx& wtx = (*it).second;
BOOST_FOREACH (const CTxOut& txout, wtx.vout)
if (txout.scriptPubKey == scriptPubKey)
bKeyUsed = true;
}
}
// Generate a new key
if (!account.vchPubKey.IsValid() || bForceNew || bKeyUsed) {
if (!pwalletMain->GetKeyFromPool(account.vchPubKey))
throw JSONRPCError(RPC_WALLET_KEYPOOL_RAN_OUT, "Error: Keypool ran out, please call keypoolrefill first");
pwalletMain->SetAddressBook(account.vchPubKey.GetID(), strAccount, "receive");
walletdb.WriteAccount(strAccount, account);
}
return CBitcoinAddress(account.vchPubKey.GetID());
}
UniValue getaccountaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw runtime_error(
"getaccountaddress \"account\"\n"
"\nReturns the current LUM address for receiving payments to this account.\n"
"\nArguments:\n"
"1. \"account\" (string, required) The account name for the address. It can also be set to the empty string \"\" to represent the default account. The account does not need to exist, it will be created and a new address created if there is no account by the given name.\n"
"\nResult:\n"
"\"prismaddress\" (string) The account prism address\n"
"\nExamples:\n" +
HelpExampleCli("getaccountaddress", "") + HelpExampleCli("getaccountaddress", "\"\"") +
HelpExampleCli("getaccountaddress", "\"myaccount\"") + HelpExampleRpc("getaccountaddress", "\"myaccount\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
// Parse the account first so we don't generate a key if there's an error
string strAccount = AccountFromValue(params[0]);
UniValue ret(UniValue::VSTR);
ret = GetAccountAddress(strAccount).ToString();
return ret;
}
UniValue getrawchangeaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 1)
throw runtime_error(
"getrawchangeaddress\n"
"\nReturns a new LUM address, for receiving change.\n"
"This is for use with raw transactions, NOT normal use.\n"
"\nResult:\n"
"\"address\" (string) The address\n"
"\nExamples:\n" +
HelpExampleCli("getrawchangeaddress", "") + HelpExampleRpc("getrawchangeaddress", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (!pwalletMain->IsLocked())
pwalletMain->TopUpKeyPool();
CReserveKey reservekey(pwalletMain);
CPubKey vchPubKey;
if (!reservekey.GetReservedKey(vchPubKey))
throw JSONRPCError(RPC_WALLET_KEYPOOL_RAN_OUT, "Error: Keypool ran out, please call keypoolrefill first");
reservekey.KeepKey();
CKeyID keyID = vchPubKey.GetID();
return CBitcoinAddress(keyID).ToString();
}
UniValue setaccount(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw runtime_error(
"setaccount \"prismaddress\" \"account\"\n"
"\nSets the account associated with the given address.\n"
"\nArguments:\n"
"1. \"prismaddress\" (string, required) The prism address to be associated with an account.\n"
"2. \"account\" (string, required) The account to assign the address to.\n"
"\nExamples:\n" +
HelpExampleCli("setaccount", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" \"tabby\"") + HelpExampleRpc("setaccount", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", \"tabby\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
CBitcoinAddress address(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid LUM address");
string strAccount;
if (params.size() > 1)
strAccount = AccountFromValue(params[1]);
// Only add the account if the address is yours.
if (IsMine(*pwalletMain, address.Get())) {
// Detect when changing the account of an address that is the 'unused current key' of another account:
if (pwalletMain->mapAddressBook.count(address.Get())) {
string strOldAccount = pwalletMain->mapAddressBook[address.Get()].name;
if (address == GetAccountAddress(strOldAccount))
GetAccountAddress(strOldAccount, true);
}
pwalletMain->SetAddressBook(address.Get(), strAccount, "receive");
} else
throw JSONRPCError(RPC_MISC_ERROR, "setaccount can only be used with own address");
return NullUniValue;
}
UniValue getaccount(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw runtime_error(
"getaccount \"prismaddress\"\n"
"\nReturns the account associated with the given address.\n"
"\nArguments:\n"
"1. \"prismaddress\" (string, required) The prism address for account lookup.\n"
"\nResult:\n"
"\"accountname\" (string) the account address\n"
"\nExamples:\n" +
HelpExampleCli("getaccount", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\"") + HelpExampleRpc("getaccount", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
CBitcoinAddress address(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid LUM address");
string strAccount;
map<CTxDestination, CAddressBookData>::iterator mi = pwalletMain->mapAddressBook.find(address.Get());
if (mi != pwalletMain->mapAddressBook.end() && !(*mi).second.name.empty())
strAccount = (*mi).second.name;
return strAccount;
}
UniValue getaddressesbyaccount(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw runtime_error(
"getaddressesbyaccount \"account\"\n"
"\nReturns the list of addresses for the given account.\n"
"\nArguments:\n"
"1. \"account\" (string, required) The account name.\n"
"\nResult:\n"
"[ (json array of string)\n"
" \"prismaddress\" (string) a prism address associated with the given account\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("getaddressesbyaccount", "\"tabby\"") + HelpExampleRpc("getaddressesbyaccount", "\"tabby\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
string strAccount = AccountFromValue(params[0]);
// Find all addresses that have the given account
UniValue ret(UniValue::VARR);
BOOST_FOREACH (const PAIRTYPE(CBitcoinAddress, CAddressBookData) & item, pwalletMain->mapAddressBook) {
const CBitcoinAddress& address = item.first;
const string& strName = item.second.name;
if (strName == strAccount)
ret.push_back(address.ToString());
}
return ret;
}
void SendMoney(const CTxDestination& address, CAmount nValue, CWalletTx& wtxNew, bool fUseIX = false)
{
// Check amount
if (nValue <= 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid amount");
if (nValue > pwalletMain->GetBalance())
throw JSONRPCError(RPC_WALLET_INSUFFICIENT_FUNDS, "Insufficient funds");
string strError;
if (pwalletMain->IsLocked()) {
strError = "Error: Wallet locked, unable to create transaction!";
LogPrintf("SendMoney() : %s", strError);
throw JSONRPCError(RPC_WALLET_ERROR, strError);
}
// Parse LUM address
CScript scriptPubKey = GetScriptForDestination(address);
// Create and send the transaction
CReserveKey reservekey(pwalletMain);
CAmount nFeeRequired;
if (!pwalletMain->CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired, strError, NULL, ALL_COINS, fUseIX, (CAmount)0)) {
if (nValue + nFeeRequired > pwalletMain->GetBalance())
strError = strprintf("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds!", FormatMoney(nFeeRequired));
LogPrintf("SendMoney() : %s\n", strError);
throw JSONRPCError(RPC_WALLET_ERROR, strError);
}
if (!pwalletMain->CommitTransaction(wtxNew, reservekey, (!fUseIX ? "tx" : "ix")))
throw JSONRPCError(RPC_WALLET_ERROR, "Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.");
}
UniValue sendtoaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 2 || params.size() > 4)
throw runtime_error(
"sendtoaddress \"prismaddress\" amount ( \"comment\" \"comment-to\" )\n"
"\nSend an amount to a given address. The amount is a real and is rounded to the nearest 0.00000001\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"prismaddress\" (string, required) The prism address to send to.\n"
"2. \"amount\" (numeric, required) The amount in LUM to send. eg 0.1\n"
"3. \"comment\" (string, optional) A comment used to store what the transaction is for. \n"
" This is not part of the transaction, just kept in your wallet.\n"
"4. \"comment-to\" (string, optional) A comment to store the name of the person or organization \n"
" to which you're sending the transaction. This is not part of the \n"
" transaction, just kept in your wallet.\n"
"\nResult:\n"
"\"transactionid\" (string) The transaction id.\n"
"\nExamples:\n" +
HelpExampleCli("sendtoaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.1") +
HelpExampleCli("sendtoaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.1 \"donation\" \"seans outpost\"") +
HelpExampleRpc("sendtoaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", 0.1, \"donation\", \"seans outpost\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
CBitcoinAddress address(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid LUM address");
// Amount
CAmount nAmount = AmountFromValue(params[1]);
// Wallet comments
CWalletTx wtx;
if (params.size() > 2 && !params[2].isNull() && !params[2].get_str().empty())
wtx.mapValue["comment"] = params[2].get_str();
if (params.size() > 3 && !params[3].isNull() && !params[3].get_str().empty())
wtx.mapValue["to"] = params[3].get_str();
EnsureWalletIsUnlocked();
SendMoney(address.Get(), nAmount, wtx);
return wtx.GetHash().GetHex();
}
UniValue sendtoaddressix(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 2 || params.size() > 4)
throw runtime_error(
"sendtoaddressix \"prismaddress\" amount ( \"comment\" \"comment-to\" )\n"
"\nSend an amount to a given address. The amount is a real and is rounded to the nearest 0.00000001\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"prismaddress\" (string, required) The prism address to send to.\n"
"2. \"amount\" (numeric, required) The amount in LUM to send. eg 0.1\n"
"3. \"comment\" (string, optional) A comment used to store what the transaction is for. \n"
" This is not part of the transaction, just kept in your wallet.\n"
"4. \"comment-to\" (string, optional) A comment to store the name of the person or organization \n"
" to which you're sending the transaction. This is not part of the \n"
" transaction, just kept in your wallet.\n"
"\nResult:\n"
"\"transactionid\" (string) The transaction id.\n"
"\nExamples:\n" +
HelpExampleCli("sendtoaddressix", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.1") +
HelpExampleCli("sendtoaddressix", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.1 \"donation\" \"seans outpost\"") +
HelpExampleRpc("sendtoaddressix", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", 0.1, \"donation\", \"seans outpost\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
CBitcoinAddress address(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid LUM address");
// Amount
CAmount nAmount = AmountFromValue(params[1]);
// Wallet comments
CWalletTx wtx;
if (params.size() > 2 && !params[2].isNull() && !params[2].get_str().empty())
wtx.mapValue["comment"] = params[2].get_str();
if (params.size() > 3 && !params[3].isNull() && !params[3].get_str().empty())
wtx.mapValue["to"] = params[3].get_str();
EnsureWalletIsUnlocked();
SendMoney(address.Get(), nAmount, wtx, true);
return wtx.GetHash().GetHex();
}
UniValue listaddressgroupings(const UniValue& params, bool fHelp)
{
if (fHelp)
throw runtime_error(
"listaddressgroupings\n"
"\nLists groups of addresses which have had their common ownership\n"
"made public by common use as inputs or as the resulting change\n"
"in past transactions\n"
"\nResult:\n"
"[\n"
" [\n"
" [\n"
" \"prismaddress\", (string) The prism address\n"
" amount, (numeric) The amount in LUM\n"
" \"account\" (string, optional) The account\n"
" ]\n"
" ,...\n"
" ]\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("listaddressgroupings", "") + HelpExampleRpc("listaddressgroupings", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
UniValue jsonGroupings(UniValue::VARR);
map<CTxDestination, CAmount> balances = pwalletMain->GetAddressBalances();
BOOST_FOREACH (set<CTxDestination> grouping, pwalletMain->GetAddressGroupings()) {
UniValue jsonGrouping(UniValue::VARR);
BOOST_FOREACH (CTxDestination address, grouping) {
UniValue addressInfo(UniValue::VARR);
addressInfo.push_back(CBitcoinAddress(address).ToString());
addressInfo.push_back(ValueFromAmount(balances[address]));
{
if (pwalletMain->mapAddressBook.find(CBitcoinAddress(address).Get()) != pwalletMain->mapAddressBook.end())
addressInfo.push_back(pwalletMain->mapAddressBook.find(CBitcoinAddress(address).Get())->second.name);
}
jsonGrouping.push_back(addressInfo);
}
jsonGroupings.push_back(jsonGrouping);
}
return jsonGroupings;
}
UniValue signmessage(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 2)
throw runtime_error(
"signmessage \"prismaddress\" \"message\"\n"
"\nSign a message with the private key of an address" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"prismaddress\" (string, required) The prism address to use for the private key.\n"
"2. \"message\" (string, required) The message to create a signature of.\n"
"\nResult:\n"
"\"signature\" (string) The signature of the message encoded in base 64\n"
"\nExamples:\n"
"\nUnlock the wallet for 30 seconds\n" +
HelpExampleCli("walletpassphrase", "\"mypassphrase\" 30") +
"\nCreate the signature\n" +
HelpExampleCli("signmessage", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" \"my message\"") +
"\nVerify the signature\n" +
HelpExampleCli("verifymessage", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" \"signature\" \"my message\"") +
"\nAs json rpc\n" +
HelpExampleRpc("signmessage", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", \"my message\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked();
string strAddress = params[0].get_str();
string strMessage = params[1].get_str();
CBitcoinAddress addr(strAddress);
if (!addr.IsValid())
throw JSONRPCError(RPC_TYPE_ERROR, "Invalid address");
CKeyID keyID;
if (!addr.GetKeyID(keyID))
throw JSONRPCError(RPC_TYPE_ERROR, "Address does not refer to key");
CKey key;
if (!pwalletMain->GetKey(keyID, key))
throw JSONRPCError(RPC_WALLET_ERROR, "Private key not available");
CHashWriter ss(SER_GETHASH, 0);
ss << strMessageMagic;
ss << strMessage;
vector<unsigned char> vchSig;
if (!key.SignCompact(ss.GetHash(), vchSig))
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Sign failed");
return EncodeBase64(&vchSig[0], vchSig.size());
}
UniValue getreceivedbyaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw std::runtime_error(
"getreceivedbyaddress \"prismaddress\" ( minconf )\n"
"\nReturns the total amount received by the given prismaddress in transactions with at least minconf confirmations.\n"
"\nArguments:\n"
"1. \"prismaddress\" (string, required) The prism address for transactions.\n"
"2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n"
"\nResult:\n"
"amount (numeric) The total amount in LUM received at this address.\n"
"\nExamples:\n"
"\nThe amount from transactions with at least 1 confirmation\n" +
HelpExampleCli("getreceivedbyaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\"") +
"\nThe amount including unconfirmed transactions, zero confirmations\n" +
HelpExampleCli("getreceivedbyaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0") +
"\nThe amount with at least 6 confirmation, very safe\n" +
HelpExampleCli("getreceivedbyaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 6") +
"\nAs a json rpc call\n" +
HelpExampleRpc("getreceivedbyaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", 6"));
LOCK2(cs_main, pwalletMain->cs_wallet);
// prism address
CBitcoinAddress address = CBitcoinAddress(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid LUM address");
CScript scriptPubKey = GetScriptForDestination(address.Get());
if (!IsMine(*pwalletMain, scriptPubKey))
throw JSONRPCError(RPC_WALLET_ERROR, "Address not found in wallet");
// Minimum confirmations
int nMinDepth = 1;
if (params.size() > 1)
nMinDepth = params[1].get_int();
// Tally
CAmount nAmount = 0;
for (std::map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
if (wtx.IsCoinBase() || !IsFinalTx(wtx))
continue;
BOOST_FOREACH (const CTxOut& txout, wtx.vout)
if (txout.scriptPubKey == scriptPubKey)
if (wtx.GetDepthInMainChain() >= nMinDepth)
nAmount += txout.nValue;
}
return ValueFromAmount(nAmount);
}
UniValue getreceivedbyaccount(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw runtime_error(
"getreceivedbyaccount \"account\" ( minconf )\n"
"\nReturns the total amount received by addresses with <account> in transactions with at least [minconf] confirmations.\n"
"\nArguments:\n"
"1. \"account\" (string, required) The selected account, may be the default account using \"\".\n"
"2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n"
"\nResult:\n"
"amount (numeric) The total amount in LUM received for this account.\n"
"\nExamples:\n"
"\nAmount received by the default account with at least 1 confirmation\n" +
HelpExampleCli("getreceivedbyaccount", "\"\"") +
"\nAmount received at the tabby account including unconfirmed amounts with zero confirmations\n" +
HelpExampleCli("getreceivedbyaccount", "\"tabby\" 0") +
"\nThe amount with at least 6 confirmation, very safe\n" +
HelpExampleCli("getreceivedbyaccount", "\"tabby\" 6") +
"\nAs a json rpc call\n" +
HelpExampleRpc("getreceivedbyaccount", "\"tabby\", 6"));
LOCK2(cs_main, pwalletMain->cs_wallet);
// Minimum confirmations
int nMinDepth = 1;
if (params.size() > 1)
nMinDepth = params[1].get_int();
// Get the set of pub keys assigned to account
string strAccount = AccountFromValue(params[0]);
set<CTxDestination> setAddress = pwalletMain->GetAccountAddresses(strAccount);
// Tally
CAmount nAmount = 0;
for (map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
if (wtx.IsCoinBase() || !IsFinalTx(wtx))
continue;
BOOST_FOREACH (const CTxOut& txout, wtx.vout) {
CTxDestination address;
if (ExtractDestination(txout.scriptPubKey, address) && IsMine(*pwalletMain, address) && setAddress.count(address))
if (wtx.GetDepthInMainChain() >= nMinDepth)
nAmount += txout.nValue;
}
}
return (double)nAmount / (double)COIN;
}
CAmount GetAccountBalance(CWalletDB& walletdb, const string& strAccount, int nMinDepth, const isminefilter& filter)
{
CAmount nBalance = 0;
// Tally wallet transactions
for (map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
if (!IsFinalTx(wtx) || wtx.GetBlocksToMaturity() > 0 || wtx.GetDepthInMainChain() < 0)
continue;
CAmount nReceived, nSent, nFee;
wtx.GetAccountAmounts(strAccount, nReceived, nSent, nFee, filter);
if (nReceived != 0 && wtx.GetDepthInMainChain() >= nMinDepth)
nBalance += nReceived;
nBalance -= nSent + nFee;
}
// Tally internal accounting entries
nBalance += walletdb.GetAccountCreditDebit(strAccount);
return nBalance;
}
CAmount GetAccountBalance(const string& strAccount, int nMinDepth, const isminefilter& filter)
{
CWalletDB walletdb(pwalletMain->strWalletFile);
return GetAccountBalance(walletdb, strAccount, nMinDepth, filter);
}
UniValue getbalance(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 3)
throw runtime_error(
"getbalance ( \"account\" minconf includeWatchonly )\n"
"\nIf account is not specified, returns the server's total available balance (excluding zerocoins).\n"
"If account is specified, returns the balance in the account.\n"
"Note that the account \"\" is not the same as leaving the parameter out.\n"
"The server total may be different to the balance in the default \"\" account.\n"
"\nArguments:\n"
"1. \"account\" (string, optional) The selected account, or \"*\" for entire wallet. It may be the default account using \"\".\n"
"2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n"
"3. includeWatchonly (bool, optional, default=false) Also include balance in watchonly addresses (see 'importaddress')\n"
"\nResult:\n"
"amount (numeric) The total amount in LUM received for this account.\n"
"\nExamples:\n"
"\nThe total amount in the server across all accounts\n" +
HelpExampleCli("getbalance", "") +
"\nThe total amount in the server across all accounts, with at least 5 confirmations\n" +
HelpExampleCli("getbalance", "\"*\" 6") +
"\nThe total amount in the default account with at least 1 confirmation\n" +
HelpExampleCli("getbalance", "\"\"") +
"\nThe total amount in the account named tabby with at least 6 confirmations\n" +
HelpExampleCli("getbalance", "\"tabby\" 6") +
"\nAs a json rpc call\n" +
HelpExampleRpc("getbalance", "\"tabby\", 6"));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (params.size() == 0)
return ValueFromAmount(pwalletMain->GetBalance());
int nMinDepth = 1;
if (params.size() > 1)
nMinDepth = params[1].get_int();
isminefilter filter = ISMINE_SPENDABLE;
if (params.size() > 2)
if (params[2].get_bool())
filter = filter | ISMINE_WATCH_ONLY;
if (params[0].get_str() == "*") {
// Calculate total balance a different way from GetBalance()
// (GetBalance() sums up all unspent TxOuts)
// getbalance and "getbalance * 1 true" should return the same number
CAmount nBalance = 0;
for (map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
if (!IsFinalTx(wtx) || wtx.GetBlocksToMaturity() > 0 || wtx.GetDepthInMainChain() < 0)
continue;
CAmount allFee;
string strSentAccount;
list<COutputEntry> listReceived;
list<COutputEntry> listSent;
wtx.GetAmounts(listReceived, listSent, allFee, strSentAccount, filter);
if (wtx.GetDepthInMainChain() >= nMinDepth) {
BOOST_FOREACH (const COutputEntry& r, listReceived)
nBalance += r.amount;
}
BOOST_FOREACH (const COutputEntry& s, listSent)
nBalance -= s.amount;
nBalance -= allFee;
}
return ValueFromAmount(nBalance);
}
string strAccount = AccountFromValue(params[0]);
CAmount nBalance = GetAccountBalance(strAccount, nMinDepth, filter);
return ValueFromAmount(nBalance);
}
UniValue getunconfirmedbalance(const UniValue ¶ms, bool fHelp)
{
if (fHelp || params.size() > 0)
throw runtime_error(
"getunconfirmedbalance\n"
"Returns the server's total unconfirmed balance\n");
LOCK2(cs_main, pwalletMain->cs_wallet);
return ValueFromAmount(pwalletMain->GetUnconfirmedBalance());
}
UniValue movecmd(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 3 || params.size() > 5)
throw std::runtime_error(
"move \"fromaccount\" \"toaccount\" amount ( minconf \"comment\" )\n"
"\nMove a specified amount from one account in your wallet to another.\n"
"\nArguments:\n"
"1. \"fromaccount\" (string, required) The name of the account to move funds from. May be the default account using \"\".\n"
"2. \"toaccount\" (string, required) The name of the account to move funds to. May be the default account using \"\".\n"
"3. amount (numeric, required) Quantity of LUM to move between accounts.\n"
"4. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n"
"5. \"comment\" (string, optional) An optional comment, stored in the wallet only.\n"
"\nResult:\n"
"true|false (boolean) true if successful.\n"
"\nExamples:\n"
"\nMove 0.01 LUM from the default account to the account named tabby\n" +
HelpExampleCli("move", "\"\" \"tabby\" 0.01") +
"\nMove 0.01 LUM from timotei to akiko with a comment\n" +
HelpExampleCli("move", "\"timotei\" \"akiko\" 0.01 1 \"happy birthday!\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("move", "\"timotei\", \"akiko\", 0.01, 1, \"happy birthday!\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
std::string strFrom = AccountFromValue(params[0]);
std::string strTo = AccountFromValue(params[1]);
CAmount nAmount = AmountFromValue(params[2]);
if (params.size() > 3)
// unused parameter, used to be nMinDepth, keep type-checking it though
(void)params[3].get_int();
std::string strComment;
if (params.size() > 4)
strComment = params[4].get_str();
CWalletDB walletdb(pwalletMain->strWalletFile);
if (!walletdb.TxnBegin())
throw JSONRPCError(RPC_DATABASE_ERROR, "database error");
int64_t nNow = GetAdjustedTime();
// Debit
CAccountingEntry debit;
debit.nOrderPos = pwalletMain->IncOrderPosNext(&walletdb);
debit.strAccount = strFrom;
debit.nCreditDebit = -nAmount;
debit.nTime = nNow;
debit.strOtherAccount = strTo;
debit.strComment = strComment;
pwalletMain->AddAccountingEntry(debit, walletdb);
// Credit
CAccountingEntry credit;
credit.nOrderPos = pwalletMain->IncOrderPosNext(&walletdb);
credit.strAccount = strTo;
credit.nCreditDebit = nAmount;
credit.nTime = nNow;
credit.strOtherAccount = strFrom;
credit.strComment = strComment;
pwalletMain->AddAccountingEntry(credit, walletdb);
if (!walletdb.TxnCommit())
throw JSONRPCError(RPC_DATABASE_ERROR, "database error");
return true;
}
UniValue sendfrom(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 3 || params.size() > 6)
throw runtime_error(
"sendfrom \"fromaccount\" \"toprismaddress\" amount ( minconf \"comment\" \"comment-to\" )\n"
"\nSent an amount from an account to a prism address.\n"
"The amount is a real and is rounded to the nearest 0.00000001." +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"fromaccount\" (string, required) The name of the account to send funds from. May be the default account using \"\".\n"
"2. \"toprismaddress\" (string, required) The prism address to send funds to.\n"
"3. amount (numeric, required) The amount in LUM. (transaction fee is added on top).\n"
"4. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n"
"5. \"comment\" (string, optional) A comment used to store what the transaction is for. \n"
" This is not part of the transaction, just kept in your wallet.\n"
"6. \"comment-to\" (string, optional) An optional comment to store the name of the person or organization \n"
" to which you're sending the transaction. This is not part of the transaction, \n"
" it is just kept in your wallet.\n"
"\nResult:\n"
"\"transactionid\" (string) The transaction id.\n"
"\nExamples:\n"
"\nSend 0.01 LUM from the default account to the address, must have at least 1 confirmation\n" +
HelpExampleCli("sendfrom", "\"\" \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.01") +
"\nSend 0.01 from the tabby account to the given address, funds must have at least 6 confirmations\n" +
HelpExampleCli("sendfrom", "\"tabby\" \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.01 6 \"donation\" \"seans outpost\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("sendfrom", "\"tabby\", \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", 0.01, 6, \"donation\", \"seans outpost\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
string strAccount = AccountFromValue(params[0]);
CBitcoinAddress address(params[1].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid LUM address");
CAmount nAmount = AmountFromValue(params[2]);
int nMinDepth = 1;
if (params.size() > 3)
nMinDepth = params[3].get_int();
CWalletTx wtx;
wtx.strFromAccount = strAccount;
if (params.size() > 4 && !params[4].isNull() && !params[4].get_str().empty())
wtx.mapValue["comment"] = params[4].get_str();
if (params.size() > 5 && !params[5].isNull() && !params[5].get_str().empty())
wtx.mapValue["to"] = params[5].get_str();
EnsureWalletIsUnlocked();
// Check funds
CAmount nBalance = GetAccountBalance(strAccount, nMinDepth, ISMINE_SPENDABLE);
if (nAmount > nBalance)
throw JSONRPCError(RPC_WALLET_INSUFFICIENT_FUNDS, "Account has insufficient funds");
SendMoney(address.Get(), nAmount, wtx);
return wtx.GetHash().GetHex();
}
UniValue sendmany(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 2 || params.size() > 4)
throw runtime_error(
"sendmany \"fromaccount\" {\"address\":amount,...} ( minconf \"comment\" )\n"
"\nSend multiple times. Amounts are double-precision floating point numbers." +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"fromaccount\" (string, required) The account to send the funds from, can be \"\" for the default account\n"
"2. \"amounts\" (string, required) A json object with addresses and amounts\n"
" {\n"
" \"address\":amount (numeric) The prism address is the key, the numeric amount in LUM is the value\n"
" ,...\n"
" }\n"
"3. minconf (numeric, optional, default=1) Only use the balance confirmed at least this many times.\n"
"4. \"comment\" (string, optional) A comment\n"
"\nResult:\n"
"\"transactionid\" (string) The transaction id for the send. Only 1 transaction is created regardless of \n"
" the number of addresses.\n"
"\nExamples:\n"
"\nSend two amounts to two different addresses:\n" +
HelpExampleCli("sendmany", "\"tabby\" \"{\\\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\\\":0.01,\\\"DAD3Y6ivr8nPQLT1NEPX84DxGCw9jz9Jvg\\\":0.02}\"") +
"\nSend two amounts to two different addresses setting the confirmation and comment:\n" +
HelpExampleCli("sendmany", "\"tabby\" \"{\\\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\\\":0.01,\\\"DAD3Y6ivr8nPQLT1NEPX84DxGCw9jz9Jvg\\\":0.02}\" 6 \"testing\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("sendmany", "\"tabby\", \"{\\\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\\\":0.01,\\\"DAD3Y6ivr8nPQLT1NEPX84DxGCw9jz9Jvg\\\":0.02}\", 6, \"testing\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
string strAccount = AccountFromValue(params[0]);
UniValue sendTo = params[1].get_obj();
int nMinDepth = 1;
if (params.size() > 2)
nMinDepth = params[2].get_int();
CWalletTx wtx;
wtx.strFromAccount = strAccount;
if (params.size() > 3 && !params[3].isNull() && !params[3].get_str().empty())
wtx.mapValue["comment"] = params[3].get_str();
set<CBitcoinAddress> setAddress;
vector<pair<CScript, CAmount> > vecSend;
CAmount totalAmount = 0;
vector<string> keys = sendTo.getKeys();
BOOST_FOREACH(const string& name_, keys) {
CBitcoinAddress address(name_);
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid LUM address: ")+name_);
if (setAddress.count(address))
throw JSONRPCError(RPC_INVALID_PARAMETER, string("Invalid parameter, duplicated address: ")+name_);
setAddress.insert(address);
CScript scriptPubKey = GetScriptForDestination(address.Get());
CAmount nAmount = AmountFromValue(sendTo[name_]);
totalAmount += nAmount;
vecSend.push_back(make_pair(scriptPubKey, nAmount));
}
EnsureWalletIsUnlocked();
// Check funds
CAmount nBalance = GetAccountBalance(strAccount, nMinDepth, ISMINE_SPENDABLE);
if (totalAmount > nBalance)
throw JSONRPCError(RPC_WALLET_INSUFFICIENT_FUNDS, "Account has insufficient funds");
// Send
CReserveKey keyChange(pwalletMain);
CAmount nFeeRequired = 0;
string strFailReason;
bool fCreated = pwalletMain->CreateTransaction(vecSend, wtx, keyChange, nFeeRequired, strFailReason);
if (!fCreated)
throw JSONRPCError(RPC_WALLET_INSUFFICIENT_FUNDS, strFailReason);
if (!pwalletMain->CommitTransaction(wtx, keyChange))
throw JSONRPCError(RPC_WALLET_ERROR, "Transaction commit failed");
return wtx.GetHash().GetHex();
}
// Defined in rpc/misc.cpp
extern CScript _createmultisig_redeemScript(const UniValue& params);
UniValue addmultisigaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 2 || params.size() > 3)
throw runtime_error(
"addmultisigaddress nrequired [\"key\",...] ( \"account\" )\n"
"\nAdd a nrequired-to-sign multisignature address to the wallet.\n"
"Each key is a LUM address or hex-encoded public key.\n"
"If 'account' is specified, assign address to that account.\n"
"\nArguments:\n"
"1. nrequired (numeric, required) The number of required signatures out of the n keys or addresses.\n"
"2. \"keysobject\" (string, required) A json array of prism addresses or hex-encoded public keys\n"
" [\n"
" \"address\" (string) prism address or hex-encoded public key\n"
" ...,\n"
" ]\n"
"3. \"account\" (string, optional) An account to assign the addresses to.\n"
"\nResult:\n"
"\"prismaddress\" (string) A prism address associated with the keys.\n"
"\nExamples:\n"
"\nAdd a multisig address from 2 addresses\n" +
HelpExampleCli("addmultisigaddress", "2 \"[\\\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\\\",\\\"DAD3Y6ivr8nPQLT1NEPX84DxGCw9jz9Jvg\\\"]\"") +
"\nAs json rpc call\n" +
HelpExampleRpc("addmultisigaddress", "2, \"[\\\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\\\",\\\"DAD3Y6ivr8nPQLT1NEPX84DxGCw9jz9Jvg\\\"]\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
string strAccount;
if (params.size() > 2)
strAccount = AccountFromValue(params[2]);
// Construct using pay-to-script-hash:
CScript inner = _createmultisig_redeemScript(params);
CScriptID innerID(inner);
pwalletMain->AddCScript(inner);
pwalletMain->SetAddressBook(innerID, strAccount, "send");
return CBitcoinAddress(innerID).ToString();
}
struct tallyitem {
CAmount nAmount;
int nConf;
int nBCConf;
vector<uint256> txids;
bool fIsWatchonly;
tallyitem()
{
nAmount = 0;
nConf = std::numeric_limits<int>::max();
nBCConf = std::numeric_limits<int>::max();
fIsWatchonly = false;
}
};
UniValue ListReceived(const UniValue& params, bool fByAccounts)
{
// Minimum confirmations
int nMinDepth = 1;
if (params.size() > 0)
nMinDepth = params[0].get_int();
// Whether to include empty accounts
bool fIncludeEmpty = false;
if (params.size() > 1)
fIncludeEmpty = params[1].get_bool();
isminefilter filter = ISMINE_SPENDABLE;
if (params.size() > 2)
if (params[2].get_bool())
filter = filter | ISMINE_WATCH_ONLY;
// Tally
map<CBitcoinAddress, tallyitem> mapTally;
for (map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
if (wtx.IsCoinBase() || !IsFinalTx(wtx))
continue;
int nDepth = wtx.GetDepthInMainChain();
int nBCDepth = wtx.GetDepthInMainChain(false);
if (nDepth < nMinDepth)
continue;
BOOST_FOREACH (const CTxOut& txout, wtx.vout) {
CTxDestination address;
if (!ExtractDestination(txout.scriptPubKey, address))
continue;
isminefilter mine = IsMine(*pwalletMain, address);
if (!(mine & filter))
continue;
tallyitem& item = mapTally[address];
item.nAmount += txout.nValue;
item.nConf = min(item.nConf, nDepth);
item.nBCConf = min(item.nBCConf, nBCDepth);
item.txids.push_back(wtx.GetHash());
if (mine & ISMINE_WATCH_ONLY)
item.fIsWatchonly = true;
}
}
// Reply
UniValue ret(UniValue::VARR);
map<string, tallyitem> mapAccountTally;
BOOST_FOREACH (const PAIRTYPE(CBitcoinAddress, CAddressBookData) & item, pwalletMain->mapAddressBook) {
const CBitcoinAddress& address = item.first;
const string& strAccount = item.second.name;
map<CBitcoinAddress, tallyitem>::iterator it = mapTally.find(address);
if (it == mapTally.end() && !fIncludeEmpty)
continue;
CAmount nAmount = 0;
int nConf = std::numeric_limits<int>::max();
int nBCConf = std::numeric_limits<int>::max();
bool fIsWatchonly = false;
if (it != mapTally.end()) {
nAmount = (*it).second.nAmount;
nConf = (*it).second.nConf;
nBCConf = (*it).second.nBCConf;
fIsWatchonly = (*it).second.fIsWatchonly;
}
if (fByAccounts) {
tallyitem& item = mapAccountTally[strAccount];
item.nAmount += nAmount;
item.nConf = min(item.nConf, nConf);
item.nBCConf = min(item.nBCConf, nBCConf);
item.fIsWatchonly = fIsWatchonly;
} else {
UniValue obj(UniValue::VOBJ);
if (fIsWatchonly)
obj.push_back(Pair("involvesWatchonly", true));
obj.push_back(Pair("address", address.ToString()));
obj.push_back(Pair("account", strAccount));
obj.push_back(Pair("amount", ValueFromAmount(nAmount)));
obj.push_back(Pair("confirmations", (nConf == std::numeric_limits<int>::max() ? 0 : nConf)));
obj.push_back(Pair("bcconfirmations", (nBCConf == std::numeric_limits<int>::max() ? 0 : nBCConf)));
UniValue transactions(UniValue::VARR);
if (it != mapTally.end()) {
BOOST_FOREACH (const uint256& item, (*it).second.txids) {
transactions.push_back(item.GetHex());
}
}
obj.push_back(Pair("txids", transactions));
ret.push_back(obj);
}
}
if (fByAccounts) {
for (map<string, tallyitem>::iterator it = mapAccountTally.begin(); it != mapAccountTally.end(); ++it) {
CAmount nAmount = (*it).second.nAmount;
int nConf = (*it).second.nConf;
int nBCConf = (*it).second.nBCConf;
UniValue obj(UniValue::VOBJ);
if ((*it).second.fIsWatchonly)
obj.push_back(Pair("involvesWatchonly", true));
obj.push_back(Pair("account", (*it).first));
obj.push_back(Pair("amount", ValueFromAmount(nAmount)));
obj.push_back(Pair("confirmations", (nConf == std::numeric_limits<int>::max() ? 0 : nConf)));
obj.push_back(Pair("bcconfirmations", (nBCConf == std::numeric_limits<int>::max() ? 0 : nBCConf)));
ret.push_back(obj);
}
}
return ret;
}
UniValue listreceivedbyaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 3)
throw runtime_error(
"listreceivedbyaddress ( minconf includeempty includeWatchonly)\n"
"\nList balances by receiving address.\n"
"\nArguments:\n"
"1. minconf (numeric, optional, default=1) The minimum number of confirmations before payments are included.\n"
"2. includeempty (numeric, optional, default=false) Whether to include addresses that haven't received any payments.\n"
"3. includeWatchonly (bool, optional, default=false) Whether to include watchonly addresses (see 'importaddress').\n"
"\nResult:\n"
"[\n"
" {\n"
" \"involvesWatchonly\" : \"true\", (bool) Only returned if imported addresses were involved in transaction\n"
" \"address\" : \"receivingaddress\", (string) The receiving address\n"
" \"account\" : \"accountname\", (string) The account of the receiving address. The default account is \"\".\n"
" \"amount\" : x.xxx, (numeric) The total amount in LUM received by the address\n"
" \"confirmations\" : n (numeric) The number of confirmations of the most recent transaction included\n"
" \"bcconfirmations\" : n (numeric) The number of blockchain confirmations of the most recent transaction included\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("listreceivedbyaddress", "") + HelpExampleCli("listreceivedbyaddress", "6 true") + HelpExampleRpc("listreceivedbyaddress", "6, true, true"));
LOCK2(cs_main, pwalletMain->cs_wallet);
return ListReceived(params, false);
}
UniValue listreceivedbyaccount(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 3)
throw runtime_error(
"listreceivedbyaccount ( minconf includeempty includeWatchonly)\n"
"\nList balances by account.\n"
"\nArguments:\n"
"1. minconf (numeric, optional, default=1) The minimum number of confirmations before payments are included.\n"
"2. includeempty (boolean, optional, default=false) Whether to include accounts that haven't received any payments.\n"
"3. includeWatchonly (bool, optional, default=false) Whether to include watchonly addresses (see 'importaddress').\n"
"\nResult:\n"
"[\n"
" {\n"
" \"involvesWatchonly\" : \"true\", (bool) Only returned if imported addresses were involved in transaction\n"
" \"account\" : \"accountname\", (string) The account name of the receiving account\n"
" \"amount\" : x.xxx, (numeric) The total amount received by addresses with this account\n"
" \"confirmations\" : n (numeric) The number of confirmations of the most recent transaction included\n"
" \"bcconfirmations\" : n (numeric) The number of blockchain confirmations of the most recent transaction included\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("listreceivedbyaccount", "") + HelpExampleCli("listreceivedbyaccount", "6 true") + HelpExampleRpc("listreceivedbyaccount", "6, true, true"));
LOCK2(cs_main, pwalletMain->cs_wallet);
return ListReceived(params, true);
}
static void MaybePushAddress(UniValue & entry, const CTxDestination &dest)
{
CBitcoinAddress addr;
if (addr.Set(dest))
entry.push_back(Pair("address", addr.ToString()));
}
void ListTransactions(const CWalletTx& wtx, const string& strAccount, int nMinDepth, bool fLong, UniValue& ret, const isminefilter& filter)
{
CAmount nFee;
string strSentAccount;
list<COutputEntry> listReceived;
list<COutputEntry> listSent;
wtx.GetAmounts(listReceived, listSent, nFee, strSentAccount, filter);
bool fAllAccounts = (strAccount == string("*"));
bool involvesWatchonly = wtx.IsFromMe(ISMINE_WATCH_ONLY);
// Sent
if ((!listSent.empty() || nFee != 0) && (fAllAccounts || strAccount == strSentAccount)) {
BOOST_FOREACH (const COutputEntry& s, listSent) {
UniValue entry(UniValue::VOBJ);
if (involvesWatchonly || (::IsMine(*pwalletMain, s.destination) & ISMINE_WATCH_ONLY))
entry.push_back(Pair("involvesWatchonly", true));
entry.push_back(Pair("account", strSentAccount));
MaybePushAddress(entry, s.destination);
std::map<std::string, std::string>::const_iterator it = wtx.mapValue.find("DS");
entry.push_back(Pair("category", (it != wtx.mapValue.end() && it->second == "1") ? "darksent" : "send"));
entry.push_back(Pair("amount", ValueFromAmount(-s.amount)));
entry.push_back(Pair("vout", s.vout));
entry.push_back(Pair("fee", ValueFromAmount(-nFee)));
if (fLong)
WalletTxToJSON(wtx, entry);
ret.push_back(entry);
}
}
// Received
if (listReceived.size() > 0 && wtx.GetDepthInMainChain() >= nMinDepth) {
BOOST_FOREACH (const COutputEntry& r, listReceived) {
string account;
if (pwalletMain->mapAddressBook.count(r.destination))
account = pwalletMain->mapAddressBook[r.destination].name;
if (fAllAccounts || (account == strAccount)) {
UniValue entry(UniValue::VOBJ);
if (involvesWatchonly || (::IsMine(*pwalletMain, r.destination) & ISMINE_WATCH_ONLY))
entry.push_back(Pair("involvesWatchonly", true));
entry.push_back(Pair("account", account));
MaybePushAddress(entry, r.destination);
if (wtx.IsCoinBase()) {
if (wtx.GetDepthInMainChain() < 1)
entry.push_back(Pair("category", "orphan"));
else if (wtx.GetBlocksToMaturity() > 0)
entry.push_back(Pair("category", "immature"));
else
entry.push_back(Pair("category", "generate"));
} else {
entry.push_back(Pair("category", "receive"));
}
entry.push_back(Pair("amount", ValueFromAmount(r.amount)));
entry.push_back(Pair("vout", r.vout));
if (fLong)
WalletTxToJSON(wtx, entry);
ret.push_back(entry);
}
}
}
}
void AcentryToJSON(const CAccountingEntry& acentry, const string& strAccount, UniValue& ret)
{
bool fAllAccounts = (strAccount == string("*"));
if (fAllAccounts || acentry.strAccount == strAccount) {
UniValue entry(UniValue::VOBJ);
entry.push_back(Pair("account", acentry.strAccount));
entry.push_back(Pair("category", "move"));
entry.push_back(Pair("time", acentry.nTime));
entry.push_back(Pair("amount", ValueFromAmount(acentry.nCreditDebit)));
entry.push_back(Pair("otheraccount", acentry.strOtherAccount));
entry.push_back(Pair("comment", acentry.strComment));
ret.push_back(entry);
}
}
UniValue listtransactions(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 4)
throw runtime_error(
"listtransactions ( \"account\" count from includeWatchonly)\n"
"\nReturns up to 'count' most recent transactions skipping the first 'from' transactions for account 'account'.\n"
"\nArguments:\n"
"1. \"account\" (string, optional) The account name. If not included, it will list all transactions for all accounts.\n"
" If \"\" is set, it will list transactions for the default account.\n"
"2. count (numeric, optional, default=10) The number of transactions to return\n"
"3. from (numeric, optional, default=0) The number of transactions to skip\n"
"4. includeWatchonly (bool, optional, default=false) Include transactions to watchonly addresses (see 'importaddress')\n"
"\nResult:\n"
"[\n"
" {\n"
" \"account\":\"accountname\", (string) The account name associated with the transaction. \n"
" It will be \"\" for the default account.\n"
" \"address\":\"prismaddress\", (string) The prism address of the transaction. Not present for \n"
" move transactions (category = move).\n"
" \"category\":\"send|receive|move\", (string) The transaction category. 'move' is a local (off blockchain)\n"
" transaction between accounts, and not associated with an address,\n"
" transaction id or block. 'send' and 'receive' transactions are \n"
" associated with an address, transaction id and block details\n"
" \"amount\": x.xxx, (numeric) The amount in LUM. This is negative for the 'send' category, and for the\n"
" 'move' category for moves outbound. It is positive for the 'receive' category,\n"
" and for the 'move' category for inbound funds.\n"
" \"vout\" : n, (numeric) the vout value\n"
" \"fee\": x.xxx, (numeric) The amount of the fee in LUM. This is negative and only available for the \n"
" 'send' category of transactions.\n"
" \"confirmations\": n, (numeric) The number of confirmations for the transaction. Available for 'send' and \n"
" 'receive' category of transactions.\n"
" \"bcconfirmations\": n, (numeric) The number of blockchain confirmations for the transaction. Available for 'send'\n"
" and 'receive' category of transactions.\n"
" \"blockhash\": \"hashvalue\", (string) The block hash containing the transaction. Available for 'send' and 'receive'\n"
" category of transactions.\n"
" \"blockindex\": n, (numeric) The block index containing the transaction. Available for 'send' and 'receive'\n"
" category of transactions.\n"
" \"txid\": \"transactionid\", (string) The transaction id. Available for 'send' and 'receive' category of transactions.\n"
" \"time\": xxx, (numeric) The transaction time in seconds since epoch (midnight Jan 1 1970 GMT).\n"
" \"timereceived\": xxx, (numeric) The time received in seconds since epoch (midnight Jan 1 1970 GMT). Available \n"
" for 'send' and 'receive' category of transactions.\n"
" \"comment\": \"...\", (string) If a comment is associated with the transaction.\n"
" \"otheraccount\": \"accountname\", (string) For the 'move' category of transactions, the account the funds came \n"
" from (for receiving funds, positive amounts), or went to (for sending funds,\n"
" negative amounts).\n"
" }\n"
"]\n"
"\nExamples:\n"
"\nList the most recent 10 transactions in the systems\n" +
HelpExampleCli("listtransactions", "") +
"\nList the most recent 10 transactions for the tabby account\n" +
HelpExampleCli("listtransactions", "\"tabby\"") +
"\nList transactions 100 to 120 from the tabby account\n" +
HelpExampleCli("listtransactions", "\"tabby\" 20 100") +
"\nAs a json rpc call\n" +
HelpExampleRpc("listtransactions", "\"tabby\", 20, 100"));
LOCK2(cs_main, pwalletMain->cs_wallet);
string strAccount = "*";
if (params.size() > 0)
strAccount = params[0].get_str();
int nCount = 10;
if (params.size() > 1)
nCount = params[1].get_int();
int nFrom = 0;
if (params.size() > 2)
nFrom = params[2].get_int();
isminefilter filter = ISMINE_SPENDABLE;
if (params.size() > 3)
if (params[3].get_bool())
filter = filter | ISMINE_WATCH_ONLY;
if (nCount < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Negative count");
if (nFrom < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Negative from");
UniValue ret(UniValue::VARR);
const CWallet::TxItems & txOrdered = pwalletMain->wtxOrdered;
// iterate backwards until we have nCount items to return:
for (CWallet::TxItems::const_reverse_iterator it = txOrdered.rbegin(); it != txOrdered.rend(); ++it) {
CWalletTx* const pwtx = (*it).second.first;
if (pwtx != 0)
ListTransactions(*pwtx, strAccount, 0, true, ret, filter);
CAccountingEntry* const pacentry = (*it).second.second;
if (pacentry != 0)
AcentryToJSON(*pacentry, strAccount, ret);
if ((int)ret.size() >= (nCount + nFrom)) break;
}
// ret is newest to oldest
if (nFrom > (int)ret.size())
nFrom = ret.size();
if ((nFrom + nCount) > (int)ret.size())
nCount = ret.size() - nFrom;
vector<UniValue> arrTmp = ret.getValues();
vector<UniValue>::iterator first = arrTmp.begin();
std::advance(first, nFrom);
vector<UniValue>::iterator last = arrTmp.begin();
std::advance(last, nFrom+nCount);
if (last != arrTmp.end()) arrTmp.erase(last, arrTmp.end());
if (first != arrTmp.begin()) arrTmp.erase(arrTmp.begin(), first);
std::reverse(arrTmp.begin(), arrTmp.end()); // Return oldest to newest
ret.clear();
ret.setArray();
ret.push_backV(arrTmp);
return ret;
}
UniValue listaccounts(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 2)
throw runtime_error(
"listaccounts ( minconf includeWatchonly)\n"
"\nReturns Object that has account names as keys, account balances as values.\n"
"\nArguments:\n"
"1. minconf (numeric, optional, default=1) Only include transactions with at least this many confirmations\n"
"2. includeWatchonly (bool, optional, default=false) Include balances in watchonly addresses (see 'importaddress')\n"
"\nResult:\n"
"{ (json object where keys are account names, and values are numeric balances\n"
" \"account\": x.xxx, (numeric) The property name is the account name, and the value is the total balance for the account.\n"
" ...\n"
"}\n"
"\nExamples:\n"
"\nList account balances where there at least 1 confirmation\n" +
HelpExampleCli("listaccounts", "") +
"\nList account balances including zero confirmation transactions\n" +
HelpExampleCli("listaccounts", "0") +
"\nList account balances for 6 or more confirmations\n" +
HelpExampleCli("listaccounts", "6") +
"\nAs json rpc call\n" +
HelpExampleRpc("listaccounts", "6"));
LOCK2(cs_main, pwalletMain->cs_wallet);
int nMinDepth = 1;
if (params.size() > 0)
nMinDepth = params[0].get_int();
isminefilter includeWatchonly = ISMINE_SPENDABLE;
if (params.size() > 1)
if (params[1].get_bool())
includeWatchonly = includeWatchonly | ISMINE_WATCH_ONLY;
map<string, CAmount> mapAccountBalances;
BOOST_FOREACH (const PAIRTYPE(CTxDestination, CAddressBookData) & entry, pwalletMain->mapAddressBook) {
if (IsMine(*pwalletMain, entry.first) & includeWatchonly) // This address belongs to me
mapAccountBalances[entry.second.name] = 0;
}
for (map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
CAmount nFee;
string strSentAccount;
list<COutputEntry> listReceived;
list<COutputEntry> listSent;
int nDepth = wtx.GetDepthInMainChain();
if (wtx.GetBlocksToMaturity() > 0 || nDepth < 0)
continue;
wtx.GetAmounts(listReceived, listSent, nFee, strSentAccount, includeWatchonly);
mapAccountBalances[strSentAccount] -= nFee;
BOOST_FOREACH (const COutputEntry& s, listSent)
mapAccountBalances[strSentAccount] -= s.amount;
if (nDepth >= nMinDepth) {
BOOST_FOREACH (const COutputEntry& r, listReceived)
if (pwalletMain->mapAddressBook.count(r.destination))
mapAccountBalances[pwalletMain->mapAddressBook[r.destination].name] += r.amount;
else
mapAccountBalances[""] += r.amount;
}
}
const list<CAccountingEntry> & acentries = pwalletMain->laccentries;
BOOST_FOREACH (const CAccountingEntry& entry, acentries)
mapAccountBalances[entry.strAccount] += entry.nCreditDebit;
UniValue ret(UniValue::VOBJ);
BOOST_FOREACH (const PAIRTYPE(string, CAmount) & accountBalance, mapAccountBalances) {
ret.push_back(Pair(accountBalance.first, ValueFromAmount(accountBalance.second)));
}
return ret;
}
UniValue listsinceblock(const UniValue& params, bool fHelp)
{
if (fHelp)
throw runtime_error(
"listsinceblock ( \"blockhash\" target-confirmations includeWatchonly)\n"
"\nGet all transactions in blocks since block [blockhash], or all transactions if omitted\n"
"\nArguments:\n"
"1. \"blockhash\" (string, optional) The block hash to list transactions since\n"
"2. target-confirmations: (numeric, optional) The confirmations required, must be 1 or more\n"
"3. includeWatchonly: (bool, optional, default=false) Include transactions to watchonly addresses (see 'importaddress')"
"\nResult:\n"
"{\n"
" \"transactions\": [\n"
" \"account\":\"accountname\", (string) The account name associated with the transaction. Will be \"\" for the default account.\n"
" \"address\":\"prismaddress\", (string) The prism address of the transaction. Not present for move transactions (category = move).\n"
" \"category\":\"send|receive\", (string) The transaction category. 'send' has negative amounts, 'receive' has positive amounts.\n"
" \"amount\": x.xxx, (numeric) The amount in LUM. This is negative for the 'send' category, and for the 'move' category for moves \n"
" outbound. It is positive for the 'receive' category, and for the 'move' category for inbound funds.\n"
" \"vout\" : n, (numeric) the vout value\n"
" \"fee\": x.xxx, (numeric) The amount of the fee in LUM. This is negative and only available for the 'send' category of transactions.\n"
" \"confirmations\": n, (numeric) The number of confirmations for the transaction. Available for 'send' and 'receive' category of transactions.\n"
" \"bcconfirmations\" : n, (numeric) The number of blockchain confirmations for the transaction. Available for 'send' and 'receive' category of transactions.\n"
" \"blockhash\": \"hashvalue\", (string) The block hash containing the transaction. Available for 'send' and 'receive' category of transactions.\n"
" \"blockindex\": n, (numeric) The block index containing the transaction. Available for 'send' and 'receive' category of transactions.\n"
" \"blocktime\": xxx, (numeric) The block time in seconds since epoch (1 Jan 1970 GMT).\n"
" \"txid\": \"transactionid\", (string) The transaction id. Available for 'send' and 'receive' category of transactions.\n"
" \"time\": xxx, (numeric) The transaction time in seconds since epoch (Jan 1 1970 GMT).\n"
" \"timereceived\": xxx, (numeric) The time received in seconds since epoch (Jan 1 1970 GMT). Available for 'send' and 'receive' category of transactions.\n"
" \"comment\": \"...\", (string) If a comment is associated with the transaction.\n"
" \"to\": \"...\", (string) If a comment to is associated with the transaction.\n"
" ],\n"
" \"lastblock\": \"lastblockhash\" (string) The hash of the last block\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("listsinceblock", "") +
HelpExampleCli("listsinceblock", "\"000000000000000bacf66f7497b7dc45ef753ee9a7d38571037cdb1a57f663ad\" 6") +
HelpExampleRpc("listsinceblock", "\"000000000000000bacf66f7497b7dc45ef753ee9a7d38571037cdb1a57f663ad\", 6"));
LOCK2(cs_main, pwalletMain->cs_wallet);
CBlockIndex* pindex = NULL;
int target_confirms = 1;
isminefilter filter = ISMINE_SPENDABLE;
if (params.size() > 0) {
uint256 blockId = 0;
blockId.SetHex(params[0].get_str());
BlockMap::iterator it = mapBlockIndex.find(blockId);
if (it != mapBlockIndex.end())
pindex = it->second;
}
if (params.size() > 1) {
target_confirms = params[1].get_int();
if (target_confirms < 1)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter");
}
if (params.size() > 2)
if (params[2].get_bool())
filter = filter | ISMINE_WATCH_ONLY;
int depth = pindex ? (1 + chainActive.Height() - pindex->nHeight) : -1;
UniValue transactions(UniValue::VARR);
for (map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); it++) {
CWalletTx tx = (*it).second;
if (depth == -1 || tx.GetDepthInMainChain(false) < depth)
ListTransactions(tx, "*", 0, true, transactions, filter);
}
CBlockIndex* pblockLast = chainActive[chainActive.Height() + 1 - target_confirms];
uint256 lastblock = pblockLast ? pblockLast->GetBlockHash() : 0;
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("transactions", transactions));
ret.push_back(Pair("lastblock", lastblock.GetHex()));
return ret;
}
UniValue gettransaction(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw runtime_error(
"gettransaction \"txid\" ( includeWatchonly )\n"
"\nGet detailed information about in-wallet transaction <txid>\n"
"\nArguments:\n"
"1. \"txid\" (string, required) The transaction id\n"
"2. \"includeWatchonly\" (bool, optional, default=false) Whether to include watchonly addresses in balance calculation and details[]\n"
"\nResult:\n"
"{\n"
" \"amount\" : x.xxx, (numeric) The transaction amount in LUM\n"
" \"confirmations\" : n, (numeric) The number of confirmations\n"
" \"bcconfirmations\" : n, (numeric) The number of blockchain confirmations\n"
" \"blockhash\" : \"hash\", (string) The block hash\n"
" \"blockindex\" : xx, (numeric) The block index\n"
" \"blocktime\" : ttt, (numeric) The time in seconds since epoch (1 Jan 1970 GMT)\n"
" \"txid\" : \"transactionid\", (string) The transaction id.\n"
" \"time\" : ttt, (numeric) The transaction time in seconds since epoch (1 Jan 1970 GMT)\n"
" \"timereceived\" : ttt, (numeric) The time received in seconds since epoch (1 Jan 1970 GMT)\n"
" \"details\" : [\n"
" {\n"
" \"account\" : \"accountname\", (string) The account name involved in the transaction, can be \"\" for the default account.\n"
" \"address\" : \"prismaddress\", (string) The prism address involved in the transaction\n"
" \"category\" : \"send|receive\", (string) The category, either 'send' or 'receive'\n"
" \"amount\" : x.xxx (numeric) The amount in LUM\n"
" \"vout\" : n, (numeric) the vout value\n"
" }\n"
" ,...\n"
" ],\n"
" \"hex\" : \"data\" (string) Raw data for transaction\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("gettransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\"") +
HelpExampleCli("gettransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\" true") +
HelpExampleRpc("gettransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
uint256 hash;
hash.SetHex(params[0].get_str());
isminefilter filter = ISMINE_SPENDABLE;
if (params.size() > 1)
if (params[1].get_bool())
filter = filter | ISMINE_WATCH_ONLY;
UniValue entry(UniValue::VOBJ);
if (!pwalletMain->mapWallet.count(hash))
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid or non-wallet transaction id");
const CWalletTx& wtx = pwalletMain->mapWallet[hash];
CAmount nCredit = wtx.GetCredit(filter);
CAmount nDebit = wtx.GetDebit(filter);
CAmount nNet = nCredit - nDebit;
CAmount nFee = (wtx.IsFromMe(filter) ? wtx.GetValueOut() - nDebit : 0);
entry.push_back(Pair("amount", ValueFromAmount(nNet - nFee)));
if (wtx.IsFromMe(filter))
entry.push_back(Pair("fee", ValueFromAmount(nFee)));
WalletTxToJSON(wtx, entry);
UniValue details(UniValue::VARR);
ListTransactions(wtx, "*", 0, false, details, filter);
entry.push_back(Pair("details", details));
string strHex = EncodeHexTx(static_cast<CTransaction>(wtx));
entry.push_back(Pair("hex", strHex));
return entry;
}
UniValue backupwallet(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw runtime_error(
"backupwallet \"destination\"\n"
"\nSafely copies wallet.dat to destination, which can be a directory or a path with filename.\n"
"\nArguments:\n"
"1. \"destination\" (string) The destination directory or file\n"
"\nExamples:\n" +
HelpExampleCli("backupwallet", "\"backup.dat\"") + HelpExampleRpc("backupwallet", "\"backup.dat\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
string strDest = params[0].get_str();
if (!BackupWallet(*pwalletMain, strDest))
throw JSONRPCError(RPC_WALLET_ERROR, "Error: Wallet backup failed!");
return NullUniValue;
}
UniValue keypoolrefill(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 1)
throw runtime_error(
"keypoolrefill ( newsize )\n"
"\nFills the keypool." +
HelpRequiringPassphrase() + "\n"
"\nArguments\n"
"1. newsize (numeric, optional, default=100) The new keypool size\n"
"\nExamples:\n" +
HelpExampleCli("keypoolrefill", "") + HelpExampleRpc("keypoolrefill", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
// 0 is interpreted by TopUpKeyPool() as the default keypool size given by -keypool
unsigned int kpSize = 0;
if (params.size() > 0) {
if (params[0].get_int() < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected valid size.");
kpSize = (unsigned int)params[0].get_int();
}
EnsureWalletIsUnlocked();
pwalletMain->TopUpKeyPool(kpSize);
if (pwalletMain->GetKeyPoolSize() < kpSize)
throw JSONRPCError(RPC_WALLET_ERROR, "Error refreshing keypool.");
return NullUniValue;
}
static void LockWallet(CWallet* pWallet)
{
LOCK(cs_nWalletUnlockTime);
nWalletUnlockTime = 0;
pWallet->fWalletUnlockAnonymizeOnly = false;
pWallet->Lock();
}
UniValue walletpassphrase(const UniValue& params, bool fHelp)
{
if (pwalletMain->IsCrypted() && (fHelp || params.size() < 2 || params.size() > 3))
throw runtime_error(
"walletpassphrase \"passphrase\" timeout ( anonymizeonly )\n"
"\nStores the wallet decryption key in memory for 'timeout' seconds.\n"
"This is needed prior to performing transactions related to private keys such as sending LUMs\n"
"\nArguments:\n"
"1. \"passphrase\" (string, required) The wallet passphrase\n"
"2. timeout (numeric, required) The time to keep the decryption key in seconds.\n"
"3. anonymizeonly (boolean, optional, default=false) If is true sending functions are disabled."
"\nNote:\n"
"Issuing the walletpassphrase command while the wallet is already unlocked will set a new unlock\n"
"time that overrides the old one. A timeout of \"0\" unlocks until the wallet is closed.\n"
"\nExamples:\n"
"\nUnlock the wallet for 60 seconds\n" +
HelpExampleCli("walletpassphrase", "\"my pass phrase\" 60") +
"\nUnlock the wallet for 60 seconds but allow anonymization, automint, and staking only\n" +
HelpExampleCli("walletpassphrase", "\"my pass phrase\" 60 true") +
"\nLock the wallet again (before 60 seconds)\n" +
HelpExampleCli("walletlock", "") +
"\nAs json rpc call\n" +
HelpExampleRpc("walletpassphrase", "\"my pass phrase\", 60"));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (fHelp)
return true;
if (!pwalletMain->IsCrypted())
throw JSONRPCError(RPC_WALLET_WRONG_ENC_STATE, "Error: running with an unencrypted wallet, but walletpassphrase was called.");
// Note that the walletpassphrase is stored in params[0] which is not mlock()ed
SecureString strWalletPass;
strWalletPass.reserve(100);
// TODO: get rid of this .c_str() by implementing SecureString::operator=(std::string)
// Alternately, find a way to make params[0] mlock()'d to begin with.
strWalletPass = params[0].get_str().c_str();
bool anonymizeOnly = false;
if (params.size() == 3)
anonymizeOnly = params[2].get_bool();
if (!pwalletMain->IsLocked() && pwalletMain->fWalletUnlockAnonymizeOnly && anonymizeOnly)
throw JSONRPCError(RPC_WALLET_ALREADY_UNLOCKED, "Error: Wallet is already unlocked.");
// Get the timeout
int64_t nSleepTime = params[1].get_int64();
// Timeout cannot be negative, otherwise it will relock immediately
if (nSleepTime < 0) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "Timeout cannot be negative.");
}
// Clamp timeout
constexpr int64_t MAX_SLEEP_TIME = 100000000; // larger values trigger a macos/libevent bug?
if (nSleepTime > MAX_SLEEP_TIME) {
nSleepTime = MAX_SLEEP_TIME;
}
if (!pwalletMain->Unlock(strWalletPass, anonymizeOnly))
throw JSONRPCError(RPC_WALLET_PASSPHRASE_INCORRECT, "Error: The wallet passphrase entered was incorrect.");
pwalletMain->TopUpKeyPool();
if (nSleepTime > 0) {
nWalletUnlockTime = GetTime () + nSleepTime;
RPCRunLater ("lockwallet", boost::bind (LockWallet, pwalletMain), nSleepTime);
}
return NullUniValue;
}
UniValue walletpassphrasechange(const UniValue& params, bool fHelp)
{
if (pwalletMain->IsCrypted() && (fHelp || params.size() != 2))
throw runtime_error(
"walletpassphrasechange \"oldpassphrase\" \"newpassphrase\"\n"
"\nChanges the wallet passphrase from 'oldpassphrase' to 'newpassphrase'.\n"
"\nArguments:\n"
"1. \"oldpassphrase\" (string) The current passphrase\n"
"2. \"newpassphrase\" (string) The new passphrase\n"
"\nExamples:\n" +
HelpExampleCli("walletpassphrasechange", "\"old one\" \"new one\"") + HelpExampleRpc("walletpassphrasechange", "\"old one\", \"new one\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (fHelp)
return true;
if (!pwalletMain->IsCrypted())
throw JSONRPCError(RPC_WALLET_WRONG_ENC_STATE, "Error: running with an unencrypted wallet, but walletpassphrasechange was called.");
// TODO: get rid of these .c_str() calls by implementing SecureString::operator=(std::string)
// Alternately, find a way to make params[0] mlock()'d to begin with.
SecureString strOldWalletPass;
strOldWalletPass.reserve(100);
strOldWalletPass = params[0].get_str().c_str();
SecureString strNewWalletPass;
strNewWalletPass.reserve(100);
strNewWalletPass = params[1].get_str().c_str();
if (strOldWalletPass.length() < 1 || strNewWalletPass.length() < 1)
throw runtime_error(
"walletpassphrasechange <oldpassphrase> <newpassphrase>\n"
"Changes the wallet passphrase from <oldpassphrase> to <newpassphrase>.");
if (!pwalletMain->ChangeWalletPassphrase(strOldWalletPass, strNewWalletPass))
throw JSONRPCError(RPC_WALLET_PASSPHRASE_INCORRECT, "Error: The wallet passphrase entered was incorrect.");
return NullUniValue;
}
UniValue walletlock(const UniValue& params, bool fHelp)
{
if (pwalletMain->IsCrypted() && (fHelp || params.size() != 0))
throw runtime_error(
"walletlock\n"
"\nRemoves the wallet encryption key from memory, locking the wallet.\n"
"After calling this method, you will need to call walletpassphrase again\n"
"before being able to call any methods which require the wallet to be unlocked.\n"
"\nExamples:\n"
"\nSet the passphrase for 2 minutes to perform a transaction\n" +
HelpExampleCli("walletpassphrase", "\"my pass phrase\" 120") +
"\nPerform a send (requires passphrase set)\n" +
HelpExampleCli("sendtoaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 1.0") +
"\nClear the passphrase since we are done before 2 minutes is up\n" +
HelpExampleCli("walletlock", "") +
"\nAs json rpc call\n" +
HelpExampleRpc("walletlock", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (fHelp)
return true;
if (!pwalletMain->IsCrypted())
throw JSONRPCError(RPC_WALLET_WRONG_ENC_STATE, "Error: running with an unencrypted wallet, but walletlock was called.");
{
LOCK(cs_nWalletUnlockTime);
pwalletMain->Lock();
nWalletUnlockTime = 0;
}
return NullUniValue;
}
UniValue encryptwallet(const UniValue& params, bool fHelp)
{
if (!pwalletMain->IsCrypted() && (fHelp || params.size() != 1))
throw runtime_error(
"encryptwallet \"passphrase\"\n"
"\nEncrypts the wallet with 'passphrase'. This is for first time encryption.\n"
"After this, any calls that interact with private keys such as sending or signing \n"
"will require the passphrase to be set prior the making these calls.\n"
"Use the walletpassphrase call for this, and then walletlock call.\n"
"If the wallet is already encrypted, use the walletpassphrasechange call.\n"
"Note that this will shutdown the server.\n"
"\nArguments:\n"
"1. \"passphrase\" (string) The pass phrase to encrypt the wallet with. It must be at least 1 character, but should be long.\n"
"\nExamples:\n"
"\nEncrypt you wallet\n" +
HelpExampleCli("encryptwallet", "\"my pass phrase\"") +
"\nNow set the passphrase to use the wallet, such as for signing or sending LUMs\n" +
HelpExampleCli("walletpassphrase", "\"my pass phrase\"") +
"\nNow we can so something like sign\n" +
HelpExampleCli("signmessage", "\"prismaddress\" \"test message\"") +
"\nNow lock the wallet again by removing the passphrase\n" +
HelpExampleCli("walletlock", "") +
"\nAs a json rpc call\n" +
HelpExampleRpc("encryptwallet", "\"my pass phrase\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (fHelp)
return true;
if (pwalletMain->IsCrypted())
throw JSONRPCError(RPC_WALLET_WRONG_ENC_STATE, "Error: running with an encrypted wallet, but encryptwallet was called.");
// TODO: get rid of this .c_str() by implementing SecureString::operator=(std::string)
// Alternately, find a way to make params[0] mlock()'d to begin with.
SecureString strWalletPass;
strWalletPass.reserve(100);
strWalletPass = params[0].get_str().c_str();
if (strWalletPass.length() < 1)
throw runtime_error(
"encryptwallet <passphrase>\n"
"Encrypts the wallet with <passphrase>.");
if (!pwalletMain->EncryptWallet(strWalletPass))
throw JSONRPCError(RPC_WALLET_ENCRYPTION_FAILED, "Error: Failed to encrypt the wallet.");
// BDB seems to have a bad habit of writing old data into
// slack space in .dat files; that is bad if the old data is
// unencrypted private keys. So:
StartShutdown();
return "wallet encrypted; prism server stopping, restart to run with encrypted wallet. The keypool has been flushed, you need to make a new backup.";
}
UniValue lockunspent(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw runtime_error(
"lockunspent unlock [{\"txid\":\"txid\",\"vout\":n},...]\n"
"\nUpdates list of temporarily unspendable outputs.\n"
"Temporarily lock (unlock=false) or unlock (unlock=true) specified transaction outputs.\n"
"A locked transaction output will not be chosen by automatic coin selection, when spending LUMs.\n"
"Locks are stored in memory only. Nodes start with zero locked outputs, and the locked output list\n"
"is always cleared (by virtue of process exit) when a node stops or fails.\n"
"Also see the listunspent call\n"
"\nArguments:\n"
"1. unlock (boolean, required) Whether to unlock (true) or lock (false) the specified transactions\n"
"2. \"transactions\" (string, required) A json array of objects. Each object the txid (string) vout (numeric)\n"
" [ (json array of json objects)\n"
" {\n"
" \"txid\":\"id\", (string) The transaction id\n"
" \"vout\": n (numeric) The output number\n"
" }\n"
" ,...\n"
" ]\n"
"\nResult:\n"
"true|false (boolean) Whether the command was successful or not\n"
"\nExamples:\n"
"\nList the unspent transactions\n" +
HelpExampleCli("listunspent", "") +
"\nLock an unspent transaction\n" +
HelpExampleCli("lockunspent", "false \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") +
"\nList the locked transactions\n" +
HelpExampleCli("listlockunspent", "") +
"\nUnlock the transaction again\n" +
HelpExampleCli("lockunspent", "true \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("lockunspent", "false, \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (params.size() == 1)
RPCTypeCheck(params, boost::assign::list_of(UniValue::VBOOL));
else
RPCTypeCheck(params, boost::assign::list_of(UniValue::VBOOL)(UniValue::VARR));
bool fUnlock = params[0].get_bool();
if (params.size() == 1) {
if (fUnlock)
pwalletMain->UnlockAllCoins();
return true;
}
UniValue outputs = params[1].get_array();
for (unsigned int idx = 0; idx < outputs.size(); idx++) {
const UniValue& output = outputs[idx];
if (!output.isObject())
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected object");
const UniValue& o = output.get_obj();
RPCTypeCheckObj(o, boost::assign::map_list_of("txid", UniValue::VSTR)("vout", UniValue::VNUM));
string txid = find_value(o, "txid").get_str();
if (!IsHex(txid))
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected hex txid");
int nOutput = find_value(o, "vout").get_int();
if (nOutput < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, vout must be positive");
COutPoint outpt(uint256(txid), nOutput);
if (fUnlock)
pwalletMain->UnlockCoin(outpt);
else
pwalletMain->LockCoin(outpt);
}
return true;
}
UniValue listlockunspent(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 0)
throw runtime_error(
"listlockunspent\n"
"\nReturns list of temporarily unspendable outputs.\n"
"See the lockunspent call to lock and unlock transactions for spending.\n"
"\nResult:\n"
"[\n"
" {\n"
" \"txid\" : \"transactionid\", (string) The transaction id locked\n"
" \"vout\" : n (numeric) The vout value\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n"
"\nList the unspent transactions\n" +
HelpExampleCli("listunspent", "") +
"\nLock an unspent transaction\n" +
HelpExampleCli("lockunspent", "false \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") +
"\nList the locked transactions\n" +
HelpExampleCli("listlockunspent", "") +
"\nUnlock the transaction again\n" +
HelpExampleCli("lockunspent", "true \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("listlockunspent", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
vector<COutPoint> vOutpts;
pwalletMain->ListLockedCoins(vOutpts);
UniValue ret(UniValue::VARR);
BOOST_FOREACH (COutPoint& outpt, vOutpts) {
UniValue o(UniValue::VOBJ);
o.push_back(Pair("txid", outpt.hash.GetHex()));
o.push_back(Pair("vout", (int)outpt.n));
ret.push_back(o);
}
return ret;
}
UniValue settxfee(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 1)
throw runtime_error(
"settxfee amount\n"
"\nSet the transaction fee per kB.\n"
"\nArguments:\n"
"1. amount (numeric, required) The transaction fee in LUM/kB rounded to the nearest 0.00000001\n"
"\nResult\n"
"true|false (boolean) Returns true if successful\n"
"\nExamples:\n" +
HelpExampleCli("settxfee", "0.00001") + HelpExampleRpc("settxfee", "0.00001"));
LOCK2(cs_main, pwalletMain->cs_wallet);
// Amount
CAmount nAmount = 0;
if (params[0].get_real() != 0.0)
nAmount = AmountFromValue(params[0]); // rejects 0.0 amounts
payTxFee = CFeeRate(nAmount, 1000);
return true;
}
UniValue getwalletinfo(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw runtime_error(
"getwalletinfo\n"
"Returns an object containing various wallet state info.\n"
"\nResult:\n"
"{\n"
" \"walletversion\": xxxxx, (numeric) the wallet version\n"
" \"balance\": xxxxxxx, (numeric) the total LUM balance of the wallet\n"
" \"txcount\": xxxxxxx, (numeric) the total number of transactions in the wallet\n"
" \"keypoololdest\": xxxxxx, (numeric) the timestamp (seconds since GMT epoch) of the oldest pre-generated key in the key pool\n"
" \"keypoolsize\": xxxx, (numeric) how many new keys are pre-generated\n"
" \"unlocked_until\": ttt, (numeric) the timestamp in seconds since epoch (midnight Jan 1 1970 GMT) that the wallet is unlocked for transfers, or 0 if the wallet is locked\n"
" \"paytxfee\": x.xxxx, (numeric) the transaction fee configuration, set in LUM/kB\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("getwalletinfo", "") + HelpExampleRpc("getwalletinfo", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("walletversion", pwalletMain->GetVersion()));
obj.push_back(Pair("balance", ValueFromAmount(pwalletMain->GetBalance())));
obj.push_back(Pair("txcount", (int)pwalletMain->mapWallet.size()));
obj.push_back(Pair("keypoololdest", pwalletMain->GetOldestKeyPoolTime()));
obj.push_back(Pair("keypoolsize", (int)pwalletMain->GetKeyPoolSize()));
if (pwalletMain->IsCrypted())
obj.push_back(Pair("unlocked_until", nWalletUnlockTime));
obj.push_back(Pair("paytxfee", ValueFromAmount(payTxFee.GetFeePerK())));
return obj;
}
// ppcoin: reserve balance from being staked for network protection
UniValue reservebalance(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 2)
throw runtime_error(
"reservebalance ( reserve amount )\n"
"\nShow or set the reserve amount not participating in network protection\n"
"If no parameters provided current setting is printed.\n"
"\nArguments:\n"
"1. reserve (boolean, optional) is true or false to turn balance reserve on or off.\n"
"2. amount (numeric, optional) is a real and rounded to cent.\n"
"\nResult:\n"
"{\n"
" \"reserve\": true|false, (boolean) Status of the reserve balance\n"
" \"amount\": x.xxxx (numeric) Amount reserved\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("reservebalance", "true 5000") + HelpExampleRpc("reservebalance", "true 5000"));
if (params.size() > 0) {
bool fReserve = params[0].get_bool();
if (fReserve) {
if (params.size() == 1)
throw runtime_error("must provide amount to reserve balance.\n");
CAmount nAmount = AmountFromValue(params[1]);
nAmount = (nAmount / CENT) * CENT; // round to cent
if (nAmount < 0)
throw runtime_error("amount cannot be negative.\n");
nReserveBalance = nAmount;
} else {
if (params.size() > 1)
throw runtime_error("cannot specify amount to turn off reserve.\n");
nReserveBalance = 0;
}
}
UniValue result(UniValue::VOBJ);
result.push_back(Pair("reserve", (nReserveBalance > 0)));
result.push_back(Pair("amount", ValueFromAmount(nReserveBalance)));
return result;
}
// presstab HyperStake
UniValue setstakesplitthreshold(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw runtime_error(
"setstakesplitthreshold value\n"
"\nThis will set the output size of your stakes to never be below this number\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. value (numeric, required) Threshold value between 1 and 999999\n"
"\nResult:\n"
"{\n"
" \"threshold\": n, (numeric) Threshold value set\n"
" \"saved\": true|false (boolean) 'true' if successfully saved to the wallet file\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("setstakesplitthreshold", "5000") + HelpExampleRpc("setstakesplitthreshold", "5000"));
EnsureWalletIsUnlocked();
uint64_t nStakeSplitThreshold = params[0].get_int();
if (nStakeSplitThreshold > 999999)
throw runtime_error("Value out of range, max allowed is 999999");
CWalletDB walletdb(pwalletMain->strWalletFile);
LOCK(pwalletMain->cs_wallet);
{
bool fFileBacked = pwalletMain->fFileBacked;
UniValue result(UniValue::VOBJ);
pwalletMain->nStakeSplitThreshold = nStakeSplitThreshold;
result.push_back(Pair("threshold", int(pwalletMain->nStakeSplitThreshold)));
if (fFileBacked) {
walletdb.WriteStakeSplitThreshold(nStakeSplitThreshold);
result.push_back(Pair("saved", "true"));
} else
result.push_back(Pair("saved", "false"));
return result;
}
}
// presstab HyperStake
UniValue getstakesplitthreshold(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw runtime_error(
"getstakesplitthreshold\n"
"Returns the threshold for stake splitting\n"
"\nResult:\n"
"n (numeric) Threshold value\n"
"\nExamples:\n" +
HelpExampleCli("getstakesplitthreshold", "") + HelpExampleRpc("getstakesplitthreshold", ""));
return int(pwalletMain->nStakeSplitThreshold);
}
UniValue autocombinerewards(const UniValue& params, bool fHelp)
{
bool fEnable;
if (params.size() >= 1)
fEnable = params[0].get_bool();
if (fHelp || params.size() < 1 || (fEnable && params.size() != 2) || params.size() > 2)
throw runtime_error(
"autocombinerewards enable ( threshold )\n"
"\nWallet will automatically monitor for any coins with value below the threshold amount, and combine them if they reside with the same LUM address\n"
"When autocombinerewards runs it will create a transaction, and therefore will be subject to transaction fees.\n"
"\nArguments:\n"
"1. enable (boolean, required) Enable auto combine (true) or disable (false)\n"
"2. threshold (numeric, optional) Threshold amount (default: 0)\n"
"\nExamples:\n" +
HelpExampleCli("autocombinerewards", "true 500") + HelpExampleRpc("autocombinerewards", "true 500"));
CWalletDB walletdb(pwalletMain->strWalletFile);
CAmount nThreshold = 0;
if (fEnable)
nThreshold = params[1].get_int();
pwalletMain->fCombineDust = fEnable;
pwalletMain->nAutoCombineThreshold = nThreshold;
if (!walletdb.WriteAutoCombineSettings(fEnable, nThreshold))
throw runtime_error("Changed settings in wallet but failed to save to database\n");
return NullUniValue;
}
UniValue printMultiSend()
{
UniValue ret(UniValue::VARR);
UniValue act(UniValue::VOBJ);
act.push_back(Pair("MultiSendStake Activated?", pwalletMain->fMultiSendStake));
act.push_back(Pair("MultiSendMasternode Activated?", pwalletMain->fMultiSendMasternodeReward));
ret.push_back(act);
if (pwalletMain->vDisabledAddresses.size() >= 1) {
UniValue disAdd(UniValue::VOBJ);
for (unsigned int i = 0; i < pwalletMain->vDisabledAddresses.size(); i++) {
disAdd.push_back(Pair("Disabled From Sending", pwalletMain->vDisabledAddresses[i]));
}
ret.push_back(disAdd);
}
ret.push_back("MultiSend Addresses to Send To:");
UniValue vMS(UniValue::VOBJ);
for (unsigned int i = 0; i < pwalletMain->vMultiSend.size(); i++) {
vMS.push_back(Pair("Address " + std::to_string(i), pwalletMain->vMultiSend[i].first));
vMS.push_back(Pair("Percent", pwalletMain->vMultiSend[i].second));
}
ret.push_back(vMS);
return ret;
}
UniValue printAddresses()
{
std::vector<COutput> vCoins;
pwalletMain->AvailableCoins(vCoins);
std::map<std::string, double> mapAddresses;
BOOST_FOREACH (const COutput& out, vCoins) {
CTxDestination utxoAddress;
ExtractDestination(out.tx->vout[out.i].scriptPubKey, utxoAddress);
std::string strAdd = CBitcoinAddress(utxoAddress).ToString();
if (mapAddresses.find(strAdd) == mapAddresses.end()) //if strAdd is not already part of the map
mapAddresses[strAdd] = (double)out.tx->vout[out.i].nValue / (double)COIN;
else
mapAddresses[strAdd] += (double)out.tx->vout[out.i].nValue / (double)COIN;
}
UniValue ret(UniValue::VARR);
for (map<std::string, double>::const_iterator it = mapAddresses.begin(); it != mapAddresses.end(); ++it) {
UniValue obj(UniValue::VOBJ);
const std::string* strAdd = &(*it).first;
const double* nBalance = &(*it).second;
obj.push_back(Pair("Address ", *strAdd));
obj.push_back(Pair("Balance ", *nBalance));
ret.push_back(obj);
}
return ret;
}
unsigned int sumMultiSend()
{
unsigned int sum = 0;
for (unsigned int i = 0; i < pwalletMain->vMultiSend.size(); i++)
sum += pwalletMain->vMultiSend[i].second;
return sum;
}
UniValue multisend(const UniValue& params, bool fHelp)
{
CWalletDB walletdb(pwalletMain->strWalletFile);
bool fFileBacked;
//MultiSend Commands
if (params.size() == 1) {
string strCommand = params[0].get_str();
UniValue ret(UniValue::VOBJ);
if (strCommand == "print") {
return printMultiSend();
} else if (strCommand == "printaddress" || strCommand == "printaddresses") {
return printAddresses();
} else if (strCommand == "clear") {
LOCK(pwalletMain->cs_wallet);
{
bool erased = false;
if (pwalletMain->fFileBacked) {
if (walletdb.EraseMultiSend(pwalletMain->vMultiSend))
erased = true;
}
pwalletMain->vMultiSend.clear();
pwalletMain->setMultiSendDisabled();
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("Erased from database", erased));
obj.push_back(Pair("Erased from RAM", true));
return obj;
}
} else if (strCommand == "enablestake" || strCommand == "activatestake") {
if (pwalletMain->vMultiSend.size() < 1)
throw JSONRPCError(RPC_INVALID_REQUEST, "Unable to activate MultiSend, check MultiSend vector");
if (CBitcoinAddress(pwalletMain->vMultiSend[0].first).IsValid()) {
pwalletMain->fMultiSendStake = true;
if (!walletdb.WriteMSettings(true, pwalletMain->fMultiSendMasternodeReward, pwalletMain->nLastMultiSendHeight)) {
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("error", "MultiSend activated but writing settings to DB failed"));
UniValue arr(UniValue::VARR);
arr.push_back(obj);
arr.push_back(printMultiSend());
return arr;
} else
return printMultiSend();
}
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Unable to activate MultiSend, check MultiSend vector");
} else if (strCommand == "enablemasternode" || strCommand == "activatemasternode") {
if (pwalletMain->vMultiSend.size() < 1)
throw JSONRPCError(RPC_INVALID_REQUEST, "Unable to activate MultiSend, check MultiSend vector");
if (CBitcoinAddress(pwalletMain->vMultiSend[0].first).IsValid()) {
pwalletMain->fMultiSendMasternodeReward = true;
if (!walletdb.WriteMSettings(pwalletMain->fMultiSendStake, true, pwalletMain->nLastMultiSendHeight)) {
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("error", "MultiSend activated but writing settings to DB failed"));
UniValue arr(UniValue::VARR);
arr.push_back(obj);
arr.push_back(printMultiSend());
return arr;
} else
return printMultiSend();
}
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Unable to activate MultiSend, check MultiSend vector");
} else if (strCommand == "disable" || strCommand == "deactivate") {
pwalletMain->setMultiSendDisabled();
if (!walletdb.WriteMSettings(false, false, pwalletMain->nLastMultiSendHeight))
throw JSONRPCError(RPC_DATABASE_ERROR, "MultiSend deactivated but writing settings to DB failed");
return printMultiSend();
} else if (strCommand == "enableall") {
if (!walletdb.EraseMSDisabledAddresses(pwalletMain->vDisabledAddresses))
return "failed to clear old vector from walletDB";
else {
pwalletMain->vDisabledAddresses.clear();
return printMultiSend();
}
}
}
if (params.size() == 2 && params[0].get_str() == "delete") {
int del = std::stoi(params[1].get_str().c_str());
if (!walletdb.EraseMultiSend(pwalletMain->vMultiSend))
throw JSONRPCError(RPC_DATABASE_ERROR, "failed to delete old MultiSend vector from database");
pwalletMain->vMultiSend.erase(pwalletMain->vMultiSend.begin() + del);
if (!walletdb.WriteMultiSend(pwalletMain->vMultiSend))
throw JSONRPCError(RPC_DATABASE_ERROR, "walletdb WriteMultiSend failed!");
return printMultiSend();
}
if (params.size() == 2 && params[0].get_str() == "disable") {
std::string disAddress = params[1].get_str();
if (!CBitcoinAddress(disAddress).IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "address you want to disable is not valid");
else {
pwalletMain->vDisabledAddresses.push_back(disAddress);
if (!walletdb.EraseMSDisabledAddresses(pwalletMain->vDisabledAddresses))
throw JSONRPCError(RPC_DATABASE_ERROR, "disabled address from sending, but failed to clear old vector from walletDB");
if (!walletdb.WriteMSDisabledAddresses(pwalletMain->vDisabledAddresses))
throw JSONRPCError(RPC_DATABASE_ERROR, "disabled address from sending, but failed to store it to walletDB");
else
return printMultiSend();
}
}
//if no commands are used
if (fHelp || params.size() != 2)
throw runtime_error(
"multisend <command>\n"
"****************************************************************\n"
"WHAT IS MULTISEND?\n"
"MultiSend allows a user to automatically send a percent of their stake reward to as many addresses as you would like\n"
"The MultiSend transaction is sent when the staked coins mature (100 confirmations)\n"
"****************************************************************\n"
"TO CREATE OR ADD TO THE MULTISEND VECTOR:\n"
"multisend <LUM Address> <percent>\n"
"This will add a new address to the MultiSend vector\n"
"Percent is a whole number 1 to 100.\n"
"****************************************************************\n"
"MULTISEND COMMANDS (usage: multisend <command>)\n"
" print - displays the current MultiSend vector \n"
" clear - deletes the current MultiSend vector \n"
" enablestake/activatestake - activates the current MultiSend vector to be activated on stake rewards\n"
" enablemasternode/activatemasternode - activates the current MultiSend vector to be activated on masternode rewards\n"
" disable/deactivate - disables the current MultiSend vector \n"
" delete <Address #> - deletes an address from the MultiSend vector \n"
" disable <address> - prevents a specific address from sending MultiSend transactions\n"
" enableall - enables all addresses to be eligible to send MultiSend transactions\n"
"****************************************************************\n");
//if the user is entering a new MultiSend item
string strAddress = params[0].get_str();
CBitcoinAddress address(strAddress);
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid LUM address");
if (std::stoi(params[1].get_str().c_str()) < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected valid percentage");
if (pwalletMain->IsLocked())
throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Error: Please enter the wallet passphrase with walletpassphrase first.");
unsigned int nPercent = (unsigned int) std::stoul(params[1].get_str().c_str());
LOCK(pwalletMain->cs_wallet);
{
fFileBacked = pwalletMain->fFileBacked;
//Error if 0 is entered
if (nPercent == 0) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "Sending 0% of stake is not valid");
}
//MultiSend can only send 100% of your stake
if (nPercent + sumMultiSend() > 100)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Failed to add to MultiSend vector, the sum of your MultiSend is greater than 100%");
for (unsigned int i = 0; i < pwalletMain->vMultiSend.size(); i++) {
if (pwalletMain->vMultiSend[i].first == strAddress)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Failed to add to MultiSend vector, cannot use the same address twice");
}
if (fFileBacked)
walletdb.EraseMultiSend(pwalletMain->vMultiSend);
std::pair<std::string, int> newMultiSend;
newMultiSend.first = strAddress;
newMultiSend.second = nPercent;
pwalletMain->vMultiSend.push_back(newMultiSend);
if (fFileBacked) {
if (!walletdb.WriteMultiSend(pwalletMain->vMultiSend))
throw JSONRPCError(RPC_DATABASE_ERROR, "walletdb WriteMultiSend failed!");
}
}
return printMultiSend();
}
UniValue getzerocoinbalance(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw runtime_error(
"getzerocoinbalance\n"
"\nReturn the wallet's total zLUM balance.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult:\n"
"amount (numeric) Total zLUM balance.\n"
"\nExamples:\n" +
HelpExampleCli("getzerocoinbalance", "") + HelpExampleRpc("getzerocoinbalance", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked(true);
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("Total", ValueFromAmount(pwalletMain->GetZerocoinBalance(false))));
ret.push_back(Pair("Mature", ValueFromAmount(pwalletMain->GetZerocoinBalance(true))));
ret.push_back(Pair("Unconfirmed", ValueFromAmount(pwalletMain->GetUnconfirmedZerocoinBalance())));
ret.push_back(Pair("Immature", ValueFromAmount(pwalletMain->GetImmatureZerocoinBalance())));
return ret;
}
UniValue listmintedzerocoins(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 2)
throw runtime_error(
"listmintedzerocoins (fVerbose) (fMatureOnly)\n"
"\nList all zLUM mints in the wallet.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. fVerbose (boolean, optional, default=false) Output mints metadata.\n"
"2. fMatureOnly (boolean, optional, default=false) List only mature mints. (Set only if fVerbose is specified)\n"
"\nResult (with fVerbose=false):\n"
"[\n"
" \"xxx\" (string) Pubcoin in hex format.\n"
" ,...\n"
"]\n"
"\nResult (with fVerbose=true):\n"
"[\n"
" {\n"
" \"serial hash\": \"xxx\", (string) Mint serial hash in hex format.\n"
" \"version\": n, (numeric) Zerocoin version number.\n"
" \"zLUM ID\": \"xxx\", (string) Pubcoin in hex format.\n"
" \"denomination\": n, (numeric) Coin denomination.\n"
" \"confirmations\": n (numeric) Number of confirmations.\n"
" }\n"
" ,..."
"]\n"
"\nExamples:\n" +
HelpExampleCli("listmintedzerocoins", "") + HelpExampleRpc("listmintedzerocoins", "") +
HelpExampleCli("listmintedzerocoins", "true") + HelpExampleRpc("listmintedzerocoins", "true") +
HelpExampleCli("listmintedzerocoins", "true true") + HelpExampleRpc("listmintedzerocoins", "true, true"));
bool fVerbose = (params.size() > 0) ? params[0].get_bool() : false;
bool fMatureOnly = (params.size() > 1) ? params[1].get_bool() : false;
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked(true);
CWalletDB walletdb(pwalletMain->strWalletFile);
set<CMintMeta> setMints = pwalletMain->zlumTracker->ListMints(true, fMatureOnly, true);
int nBestHeight = chainActive.Height();
UniValue jsonList(UniValue::VARR);
if (fVerbose) {
for (const CMintMeta& m : setMints) {
// Construct mint object
UniValue objMint(UniValue::VOBJ);
objMint.push_back(Pair("serial hash", m.hashSerial.GetHex())); // Serial hash
objMint.push_back(Pair("version", m.nVersion)); // Zerocoin version
objMint.push_back(Pair("zLUM ID", m.hashPubcoin.GetHex())); // PubCoin
int denom = libzerocoin::ZerocoinDenominationToInt(m.denom);
objMint.push_back(Pair("denomination", denom)); // Denomination
int nConfirmations = (m.nHeight && nBestHeight > m.nHeight) ? nBestHeight - m.nHeight : 0;
objMint.push_back(Pair("confirmations", nConfirmations)); // Confirmations
// Push back mint object
jsonList.push_back(objMint);
}
} else {
for (const CMintMeta& m : setMints)
// Push back PubCoin
jsonList.push_back(m.hashPubcoin.GetHex());
}
return jsonList;
}
UniValue listzerocoinamounts(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw runtime_error(
"listzerocoinamounts\n"
"\nGet information about your zerocoin amounts.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult:\n"
"[\n"
" {\n"
" \"denomination\": n, (numeric) Denomination Value.\n"
" \"mints\": n (numeric) Number of mints.\n"
" }\n"
" ,..."
"]\n"
"\nExamples:\n" +
HelpExampleCli("listzerocoinamounts", "") + HelpExampleRpc("listzerocoinamounts", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked(true);
CWalletDB walletdb(pwalletMain->strWalletFile);
set<CMintMeta> setMints = pwalletMain->zlumTracker->ListMints(true, true, true);
std::map<libzerocoin::CoinDenomination, CAmount> spread;
for (const auto& denom : libzerocoin::zerocoinDenomList)
spread.insert(std::pair<libzerocoin::CoinDenomination, CAmount>(denom, 0));
for (auto& meta : setMints) spread.at(meta.denom)++;
UniValue ret(UniValue::VARR);
for (const auto& m : libzerocoin::zerocoinDenomList) {
UniValue val(UniValue::VOBJ);
val.push_back(Pair("denomination", libzerocoin::ZerocoinDenominationToInt(m)));
val.push_back(Pair("mints", (int64_t)spread.at(m)));
ret.push_back(val);
}
return ret;
}
UniValue listspentzerocoins(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw runtime_error(
"listspentzerocoins\n"
"\nList all the spent zLUM mints in the wallet.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult:\n"
"[\n"
" \"xxx\" (string) Pubcoin in hex format.\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("listspentzerocoins", "") + HelpExampleRpc("listspentzerocoins", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked(true);
CWalletDB walletdb(pwalletMain->strWalletFile);
list<CBigNum> listPubCoin = walletdb.ListSpentCoinsSerial();
UniValue jsonList(UniValue::VARR);
for (const CBigNum& pubCoinItem : listPubCoin) {
jsonList.push_back(pubCoinItem.GetHex());
}
return jsonList;
}
UniValue mintzerocoin(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw runtime_error(
"mintzerocoin amount ( utxos )\n"
"\nMint the specified zLUM amount\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. amount (numeric, required) Enter an amount of Piv to convert to zLUM\n"
"2. utxos (string, optional) A json array of objects.\n"
" Each object needs the txid (string) and vout (numeric)\n"
" [\n"
" {\n"
" \"txid\":\"txid\", (string) The transaction id\n"
" \"vout\": n (numeric) The output number\n"
" }\n"
" ,...\n"
" ]\n"
"\nResult:\n"
"[\n"
" {\n"
" \"txid\": \"xxx\", (string) Transaction ID.\n"
" \"value\": amount, (numeric) Minted amount.\n"
" \"pubcoin\": \"xxx\", (string) Pubcoin in hex format.\n"
" \"randomness\": \"xxx\", (string) Hex encoded randomness.\n"
" \"serial\": \"xxx\", (string) Serial in hex format.\n"
" \"time\": nnn (numeric) Time to mint this transaction.\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n"
"\nMint 50 from anywhere\n" +
HelpExampleCli("mintzerocoin", "50") +
"\nMint 13 from a specific output\n" +
HelpExampleCli("mintzerocoin", "13 \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("mintzerocoin", "13, \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (params.size() == 1)
{
RPCTypeCheck(params, boost::assign::list_of(UniValue::VNUM));
} else
{
RPCTypeCheck(params, boost::assign::list_of(UniValue::VNUM)(UniValue::VARR));
}
int64_t nTime = GetTimeMillis();
if(GetAdjustedTime() > GetSporkValue(SPORK_16_ZEROCOIN_MAINTENANCE_MODE))
throw JSONRPCError(RPC_WALLET_ERROR, "zLUM is currently disabled due to maintenance.");
EnsureWalletIsUnlocked(true);
CAmount nAmount = params[0].get_int() * COIN;
CWalletTx wtx;
vector<CDeterministicMint> vDMints;
string strError;
vector<COutPoint> vOutpts;
if (params.size() == 2)
{
UniValue outputs = params[1].get_array();
for (unsigned int idx = 0; idx < outputs.size(); idx++) {
const UniValue& output = outputs[idx];
if (!output.isObject())
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected object");
const UniValue& o = output.get_obj();
RPCTypeCheckObj(o, boost::assign::map_list_of("txid", UniValue::VSTR)("vout", UniValue::VNUM));
string txid = find_value(o, "txid").get_str();
if (!IsHex(txid))
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected hex txid");
int nOutput = find_value(o, "vout").get_int();
if (nOutput < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, vout must be positive");
COutPoint outpt(uint256(txid), nOutput);
vOutpts.push_back(outpt);
}
strError = pwalletMain->MintZerocoinFromOutPoint(nAmount, wtx, vDMints, vOutpts);
} else
{
strError = pwalletMain->MintZerocoin(nAmount, wtx, vDMints);
}
if (strError != "")
throw JSONRPCError(RPC_WALLET_ERROR, strError);
UniValue arrMints(UniValue::VARR);
for (CDeterministicMint dMint : vDMints) {
UniValue m(UniValue::VOBJ);
m.push_back(Pair("txid", wtx.GetHash().ToString()));
m.push_back(Pair("value", ValueFromAmount(libzerocoin::ZerocoinDenominationToAmount(dMint.GetDenomination()))));
m.push_back(Pair("pubcoinhash", dMint.GetPubcoinHash().GetHex()));
m.push_back(Pair("serialhash", dMint.GetSerialHash().GetHex()));
m.push_back(Pair("seedhash", dMint.GetSeedHash().GetHex()));
m.push_back(Pair("count", (int64_t)dMint.GetCount()));
m.push_back(Pair("time", GetTimeMillis() - nTime));
arrMints.push_back(m);
}
return arrMints;
}
UniValue spendzerocoin(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 5 || params.size() < 4)
throw runtime_error(
"spendzerocoin amount mintchange minimizechange securitylevel ( \"address\" )\n"
"\nSpend zLUM to a LUM address.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. amount (numeric, required) Amount to spend.\n"
"2. mintchange (boolean, required) Re-mint any leftover change.\n"
"3. minimizechange (boolean, required) Try to minimize the returning change [false]\n"
"4. securitylevel (numeric, required) Amount of checkpoints to add to the accumulator.\n"
" A checkpoint contains 10 blocks worth of zerocoinmints.\n"
" The more checkpoints that are added, the more untraceable the transaction.\n"
" Use [100] to add the maximum amount of checkpoints available.\n"
" Adding more checkpoints makes the minting process take longer\n"
"5. \"address\" (string, optional, default=change) Send to specified address or to a new change address.\n"
" If there is change then an address is required\n"
"\nResult:\n"
"{\n"
" \"txid\": \"xxx\", (string) Transaction hash.\n"
" \"bytes\": nnn, (numeric) Transaction size.\n"
" \"fee\": amount, (numeric) Transaction fee (if any).\n"
" \"spends\": [ (array) JSON array of input objects.\n"
" {\n"
" \"denomination\": nnn, (numeric) Denomination value.\n"
" \"pubcoin\": \"xxx\", (string) Pubcoin in hex format.\n"
" \"serial\": \"xxx\", (string) Serial number in hex format.\n"
" \"acc_checksum\": \"xxx\", (string) Accumulator checksum in hex format.\n"
" }\n"
" ,...\n"
" ],\n"
" \"outputs\": [ (array) JSON array of output objects.\n"
" {\n"
" \"value\": amount, (numeric) Value in LUM.\n"
" \"address\": \"xxx\" (string) LUM address or \"zerocoinmint\" for reminted change.\n"
" }\n"
" ,...\n"
" ]\n"
"}\n"
"\nExamples\n" +
HelpExampleCli("spendzerocoin", "5000 false true 100 \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\"") +
HelpExampleRpc("spendzerocoin", "5000 false true 100 \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if(GetAdjustedTime() > GetSporkValue(SPORK_16_ZEROCOIN_MAINTENANCE_MODE))
throw JSONRPCError(RPC_WALLET_ERROR, "zLUM is currently disabled due to maintenance.");
EnsureWalletIsUnlocked();
CAmount nAmount = AmountFromValue(params[0]); // Spending amount
bool fMintChange = params[1].get_bool(); // Mint change to zLUM
bool fMinimizeChange = params[2].get_bool(); // Minimize change
int nSecurityLevel = params[3].get_int(); // Security level
std::string address_str = params.size() > 4 ? params[4].get_str() : "";
vector<CZerocoinMint> vMintsSelected;
return DoZlumSpend(nAmount, fMintChange, fMinimizeChange, nSecurityLevel, vMintsSelected, address_str);
}
UniValue spendzerocoinmints(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw runtime_error(
"spendzerocoinmints mints_list (\"address\") \n"
"\nSpend zLUM mints to a LUM address.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. mints_list (string, required) A json array of zerocoin mints serial hashes\n"
"2. \"address\" (string, optional, default=change) Send to specified address or to a new change address.\n"
"\nResult:\n"
"{\n"
" \"txid\": \"xxx\", (string) Transaction hash.\n"
" \"bytes\": nnn, (numeric) Transaction size.\n"
" \"fee\": amount, (numeric) Transaction fee (if any).\n"
" \"spends\": [ (array) JSON array of input objects.\n"
" {\n"
" \"denomination\": nnn, (numeric) Denomination value.\n"
" \"pubcoin\": \"xxx\", (string) Pubcoin in hex format.\n"
" \"serial\": \"xxx\", (string) Serial number in hex format.\n"
" \"acc_checksum\": \"xxx\", (string) Accumulator checksum in hex format.\n"
" }\n"
" ,...\n"
" ],\n"
" \"outputs\": [ (array) JSON array of output objects.\n"
" {\n"
" \"value\": amount, (numeric) Value in LUM.\n"
" \"address\": \"xxx\" (string) LUM address or \"zerocoinmint\" for reminted change.\n"
" }\n"
" ,...\n"
" ]\n"
"}\n"
"\nExamples\n" +
HelpExampleCli("spendzerocoinmints", "'[\"0d8c16eee7737e3cc1e4e70dc006634182b175e039700931283b202715a0818f\", \"dfe585659e265e6a509d93effb906d3d2a0ac2fe3464b2c3b6d71a3ef34c8ad7\"]' \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\"") +
HelpExampleRpc("spendzerocoinmints", "[\"0d8c16eee7737e3cc1e4e70dc006634182b175e039700931283b202715a0818f\", \"dfe585659e265e6a509d93effb906d3d2a0ac2fe3464b2c3b6d71a3ef34c8ad7\"], \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if(GetAdjustedTime() > GetSporkValue(SPORK_16_ZEROCOIN_MAINTENANCE_MODE))
throw JSONRPCError(RPC_WALLET_ERROR, "zLUM is currently disabled due to maintenance.");
std::string address_str = "";
if (params.size() > 1) {
RPCTypeCheck(params, boost::assign::list_of(UniValue::VARR)(UniValue::VSTR));
address_str = params[1].get_str();
} else
RPCTypeCheck(params, boost::assign::list_of(UniValue::VARR));
EnsureWalletIsUnlocked();
UniValue arrMints = params[0].get_array();
if (arrMints.size() == 0)
throw JSONRPCError(RPC_WALLET_ERROR, "No zerocoin selected");
if (arrMints.size() > 7)
throw JSONRPCError(RPC_WALLET_ERROR, "Too many mints included. Maximum zerocoins per spend: 7");
CAmount nAmount(0); // Spending amount
// fetch mints and update nAmount
vector<CZerocoinMint> vMintsSelected;
for(unsigned int i=0; i < arrMints.size(); i++) {
CZerocoinMint mint;
std::string serialHash = arrMints[i].get_str();
if (!IsHex(serialHash))
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected hex serial hash");
uint256 hashSerial(serialHash);
if (!pwalletMain->GetMint(hashSerial, mint)) {
std::string strErr = "Failed to fetch mint associated with serial hash " + serialHash;
throw JSONRPCError(RPC_WALLET_ERROR, strErr);
}
vMintsSelected.emplace_back(mint);
nAmount += mint.GetDenominationAsAmount();
}
return DoZlumSpend(nAmount, false, true, 100, vMintsSelected, address_str);
}
extern UniValue DoZlumSpend(const CAmount nAmount, bool fMintChange, bool fMinimizeChange, const int nSecurityLevel, vector<CZerocoinMint>& vMintsSelected, std::string address_str)
{
int64_t nTimeStart = GetTimeMillis();
CBitcoinAddress address = CBitcoinAddress(); // Optional sending address. Dummy initialization here.
CWalletTx wtx;
CZerocoinSpendReceipt receipt;
bool fSuccess;
if(address_str != "") { // Spend to supplied destination address
address = CBitcoinAddress(address_str);
if(!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid LUM address");
fSuccess = pwalletMain->SpendZerocoin(nAmount, nSecurityLevel, wtx, receipt, vMintsSelected, fMintChange, fMinimizeChange, &address);
} else // Spend to newly generated local address
fSuccess = pwalletMain->SpendZerocoin(nAmount, nSecurityLevel, wtx, receipt, vMintsSelected, fMintChange, fMinimizeChange);
if (!fSuccess)
throw JSONRPCError(RPC_WALLET_ERROR, receipt.GetStatusMessage());
CAmount nValueIn = 0;
UniValue arrSpends(UniValue::VARR);
for (CZerocoinSpend spend : receipt.GetSpends()) {
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("denomination", spend.GetDenomination()));
obj.push_back(Pair("pubcoin", spend.GetPubCoin().GetHex()));
obj.push_back(Pair("serial", spend.GetSerial().GetHex()));
uint32_t nChecksum = spend.GetAccumulatorChecksum();
obj.push_back(Pair("acc_checksum", HexStr(BEGIN(nChecksum), END(nChecksum))));
arrSpends.push_back(obj);
nValueIn += libzerocoin::ZerocoinDenominationToAmount(spend.GetDenomination());
}
CAmount nValueOut = 0;
UniValue vout(UniValue::VARR);
for (unsigned int i = 0; i < wtx.vout.size(); i++) {
const CTxOut& txout = wtx.vout[i];
UniValue out(UniValue::VOBJ);
out.push_back(Pair("value", ValueFromAmount(txout.nValue)));
nValueOut += txout.nValue;
CTxDestination dest;
if(txout.scriptPubKey.IsZerocoinMint())
out.push_back(Pair("address", "zerocoinmint"));
else if(ExtractDestination(txout.scriptPubKey, dest))
out.push_back(Pair("address", CBitcoinAddress(dest).ToString()));
vout.push_back(out);
}
//construct JSON to return
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("txid", wtx.GetHash().ToString()));
ret.push_back(Pair("bytes", (int64_t)wtx.GetSerializeSize(SER_NETWORK, CTransaction::CURRENT_VERSION)));
ret.push_back(Pair("fee", ValueFromAmount(nValueIn - nValueOut)));
ret.push_back(Pair("duration_millis", (GetTimeMillis() - nTimeStart)));
ret.push_back(Pair("spends", arrSpends));
ret.push_back(Pair("outputs", vout));
return ret;
}
UniValue resetmintzerocoin(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 1)
throw runtime_error(
"resetmintzerocoin ( fullscan )\n"
"\nScan the blockchain for all of the zerocoins that are held in the wallet.dat.\n"
"Update any meta-data that is incorrect. Archive any mints that are not able to be found.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. fullscan (boolean, optional) Rescan each block of the blockchain.\n"
" WARNING - may take 30+ minutes!\n"
"\nResult:\n"
"{\n"
" \"updated\": [ (array) JSON array of updated mints.\n"
" \"xxx\" (string) Hex encoded mint.\n"
" ,...\n"
" ],\n"
" \"archived\": [ (array) JSON array of archived mints.\n"
" \"xxx\" (string) Hex encoded mint.\n"
" ,...\n"
" ]\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("resetmintzerocoin", "true") + HelpExampleRpc("resetmintzerocoin", "true"));
LOCK2(cs_main, pwalletMain->cs_wallet);
CWalletDB walletdb(pwalletMain->strWalletFile);
CzLUMTracker* zlumTracker = pwalletMain->zlumTracker.get();
set<CMintMeta> setMints = zlumTracker->ListMints(false, false, true);
vector<CMintMeta> vMintsToFind(setMints.begin(), setMints.end());
vector<CMintMeta> vMintsMissing;
vector<CMintMeta> vMintsToUpdate;
// search all of our available data for these mints
FindMints(vMintsToFind, vMintsToUpdate, vMintsMissing);
// update the meta data of mints that were marked for updating
UniValue arrUpdated(UniValue::VARR);
for (CMintMeta meta : vMintsToUpdate) {
zlumTracker->UpdateState(meta);
arrUpdated.push_back(meta.hashPubcoin.GetHex());
}
// delete any mints that were unable to be located on the blockchain
UniValue arrDeleted(UniValue::VARR);
for (CMintMeta mint : vMintsMissing) {
zlumTracker->Archive(mint);
arrDeleted.push_back(mint.hashPubcoin.GetHex());
}
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("updated", arrUpdated));
obj.push_back(Pair("archived", arrDeleted));
return obj;
}
UniValue resetspentzerocoin(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw runtime_error(
"resetspentzerocoin\n"
"\nScan the blockchain for all of the zerocoins that are held in the wallet.dat.\n"
"Reset mints that are considered spent that did not make it into the blockchain.\n"
"\nResult:\n"
"{\n"
" \"restored\": [ (array) JSON array of restored objects.\n"
" {\n"
" \"serial\": \"xxx\" (string) Serial in hex format.\n"
" }\n"
" ,...\n"
" ]\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("resetspentzerocoin", "") + HelpExampleRpc("resetspentzerocoin", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
CWalletDB walletdb(pwalletMain->strWalletFile);
CzLUMTracker* zlumTracker = pwalletMain->zlumTracker.get();
set<CMintMeta> setMints = zlumTracker->ListMints(false, false, false);
list<CZerocoinSpend> listSpends = walletdb.ListSpentCoins();
list<CZerocoinSpend> listUnconfirmedSpends;
for (CZerocoinSpend spend : listSpends) {
CTransaction tx;
uint256 hashBlock = 0;
if (!GetTransaction(spend.GetTxHash(), tx, hashBlock)) {
listUnconfirmedSpends.push_back(spend);
continue;
}
//no confirmations
if (hashBlock == 0)
listUnconfirmedSpends.push_back(spend);
}
UniValue objRet(UniValue::VOBJ);
UniValue arrRestored(UniValue::VARR);
for (CZerocoinSpend spend : listUnconfirmedSpends) {
for (auto& meta : setMints) {
if (meta.hashSerial == GetSerialHash(spend.GetSerial())) {
zlumTracker->SetPubcoinNotUsed(meta.hashPubcoin);
walletdb.EraseZerocoinSpendSerialEntry(spend.GetSerial());
RemoveSerialFromDB(spend.GetSerial());
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("serial", spend.GetSerial().GetHex()));
arrRestored.push_back(obj);
continue;
}
}
}
objRet.push_back(Pair("restored", arrRestored));
return objRet;
}
UniValue getarchivedzerocoin(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() != 0)
throw runtime_error(
"getarchivedzerocoin\n"
"\nDisplay zerocoins that were archived because they were believed to be orphans.\n"
"Provides enough information to recover mint if it was incorrectly archived.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult:\n"
"[\n"
" {\n"
" \"txid\": \"xxx\", (string) Transaction ID for archived mint.\n"
" \"denomination\": amount, (numeric) Denomination value.\n"
" \"serial\": \"xxx\", (string) Serial number in hex format.\n"
" \"randomness\": \"xxx\", (string) Hex encoded randomness.\n"
" \"pubcoin\": \"xxx\" (string) Pubcoin in hex format.\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("getarchivedzerocoin", "") + HelpExampleRpc("getarchivedzerocoin", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked();
CWalletDB walletdb(pwalletMain->strWalletFile);
list<CZerocoinMint> listMints = walletdb.ListArchivedZerocoins();
list<CDeterministicMint> listDMints = walletdb.ListArchivedDeterministicMints();
UniValue arrRet(UniValue::VARR);
for (const CZerocoinMint& mint : listMints) {
UniValue objMint(UniValue::VOBJ);
objMint.push_back(Pair("txid", mint.GetTxHash().GetHex()));
objMint.push_back(Pair("denomination", ValueFromAmount(mint.GetDenominationAsAmount())));
objMint.push_back(Pair("serial", mint.GetSerialNumber().GetHex()));
objMint.push_back(Pair("randomness", mint.GetRandomness().GetHex()));
objMint.push_back(Pair("pubcoin", mint.GetValue().GetHex()));
arrRet.push_back(objMint);
}
for (const CDeterministicMint& dMint : listDMints) {
UniValue objDMint(UniValue::VOBJ);
objDMint.push_back(Pair("txid", dMint.GetTxHash().GetHex()));
objDMint.push_back(Pair("denomination", ValueFromAmount(libzerocoin::ZerocoinDenominationToAmount(dMint.GetDenomination()))));
objDMint.push_back(Pair("serialhash", dMint.GetSerialHash().GetHex()));
objDMint.push_back(Pair("pubcoinhash", dMint.GetPubcoinHash().GetHex()));
objDMint.push_back(Pair("seedhash", dMint.GetSeedHash().GetHex()));
objDMint.push_back(Pair("count", (int64_t)dMint.GetCount()));
arrRet.push_back(objDMint);
}
return arrRet;
}
UniValue exportzerocoins(const UniValue& params, bool fHelp)
{
if(fHelp || params.empty() || params.size() > 2)
throw runtime_error(
"exportzerocoins include_spent ( denomination )\n"
"\nExports zerocoin mints that are held by this wallet.dat\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"include_spent\" (bool, required) Include mints that have already been spent\n"
"2. \"denomination\" (integer, optional) Export a specific denomination of zLUM\n"
"\nResult:\n"
"[ (array of json object)\n"
" {\n"
" \"d\": n, (numeric) the mint's zerocoin denomination \n"
" \"p\": \"pubcoin\", (string) The public coin\n"
" \"s\": \"serial\", (string) The secret serial number\n"
" \"r\": \"random\", (string) The secret random number\n"
" \"t\": \"txid\", (string) The txid that the coin was minted in\n"
" \"h\": n, (numeric) The height the tx was added to the blockchain\n"
" \"u\": used, (boolean) Whether the mint has been spent\n"
" \"v\": version, (numeric) The version of the zLUM\n"
" \"k\": \"privkey\" (string) The zLUM private key (V2+ zLUM only)\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("exportzerocoins", "false 5") + HelpExampleRpc("exportzerocoins", "false 5"));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked();
CWalletDB walletdb(pwalletMain->strWalletFile);
bool fIncludeSpent = params[0].get_bool();
libzerocoin::CoinDenomination denomination = libzerocoin::ZQ_ERROR;
if (params.size() == 2)
denomination = libzerocoin::IntToZerocoinDenomination(params[1].get_int());
CzLUMTracker* zlumTracker = pwalletMain->zlumTracker.get();
set<CMintMeta> setMints = zlumTracker->ListMints(!fIncludeSpent, false, false);
UniValue jsonList(UniValue::VARR);
for (const CMintMeta& meta : setMints) {
if (denomination != libzerocoin::ZQ_ERROR && denomination != meta.denom)
continue;
CZerocoinMint mint;
if (!pwalletMain->GetMint(meta.hashSerial, mint))
continue;
UniValue objMint(UniValue::VOBJ);
objMint.push_back(Pair("d", mint.GetDenomination()));
objMint.push_back(Pair("p", mint.GetValue().GetHex()));
objMint.push_back(Pair("s", mint.GetSerialNumber().GetHex()));
objMint.push_back(Pair("r", mint.GetRandomness().GetHex()));
objMint.push_back(Pair("t", mint.GetTxHash().GetHex()));
objMint.push_back(Pair("h", mint.GetHeight()));
objMint.push_back(Pair("u", mint.IsUsed()));
objMint.push_back(Pair("v", mint.GetVersion()));
if (mint.GetVersion() >= 2) {
CKey key;
key.SetPrivKey(mint.GetPrivKey(), true);
CBitcoinSecret cBitcoinSecret;
cBitcoinSecret.SetKey(key);
objMint.push_back(Pair("k", cBitcoinSecret.ToString()));
}
jsonList.push_back(objMint);
}
return jsonList;
}
UniValue importzerocoins(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() == 0)
throw runtime_error(
"importzerocoins importdata \n"
"\n[{\"d\":denomination,\"p\":\"pubcoin_hex\",\"s\":\"serial_hex\",\"r\":\"randomness_hex\",\"t\":\"txid\",\"h\":height, \"u\":used},{\"d\":...}]\n"
"\nImport zerocoin mints.\n"
"Adds raw zerocoin mints to the wallet.dat\n"
"Note it is recommended to use the json export created from the exportzerocoins RPC call\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"importdata\" (string, required) A json array of json objects containing zerocoin mints\n"
"\nResult:\n"
"{\n"
" \"added\": n, (numeric) The quantity of zerocoin mints that were added\n"
" \"value\": amount (numeric) The total zLUM value of zerocoin mints that were added\n"
"}\n"
"\nExamples\n" +
HelpExampleCli("importzerocoins", "\'[{\"d\":100,\"p\":\"mypubcoin\",\"s\":\"myserial\",\"r\":\"randomness_hex\",\"t\":\"mytxid\",\"h\":104923, \"u\":false},{\"d\":5,...}]\'") +
HelpExampleRpc("importzerocoins", "[{\"d\":100,\"p\":\"mypubcoin\",\"s\":\"myserial\",\"r\":\"randomness_hex\",\"t\":\"mytxid\",\"h\":104923, \"u\":false},{\"d\":5,...}]"));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked();
RPCTypeCheck(params, list_of(UniValue::VARR)(UniValue::VOBJ));
UniValue arrMints = params[0].get_array();
CWalletDB walletdb(pwalletMain->strWalletFile);
int count = 0;
CAmount nValue = 0;
for (unsigned int idx = 0; idx < arrMints.size(); idx++) {
const UniValue &val = arrMints[idx];
const UniValue &o = val.get_obj();
const UniValue& vDenom = find_value(o, "d");
if (!vDenom.isNum())
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, missing d key");
int d = vDenom.get_int();
if (d < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, d must be positive");
libzerocoin::CoinDenomination denom = libzerocoin::IntToZerocoinDenomination(d);
CBigNum bnValue = 0;
bnValue.SetHex(find_value(o, "p").get_str());
CBigNum bnSerial = 0;
bnSerial.SetHex(find_value(o, "s").get_str());
CBigNum bnRandom = 0;
bnRandom.SetHex(find_value(o, "r").get_str());
uint256 txid(find_value(o, "t").get_str());
int nHeight = find_value(o, "h").get_int();
if (nHeight < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, h must be positive");
bool fUsed = find_value(o, "u").get_bool();
//Assume coin is version 1 unless it has the version actually set
uint8_t nVersion = 1;
const UniValue& vVersion = find_value(o, "v");
if (vVersion.isNum())
nVersion = static_cast<uint8_t>(vVersion.get_int());
//Set the privkey if applicable
CPrivKey privkey;
if (nVersion >= libzerocoin::PrivateCoin::PUBKEY_VERSION) {
std::string strPrivkey = find_value(o, "k").get_str();
CBitcoinSecret vchSecret;
bool fGood = vchSecret.SetString(strPrivkey);
CKey key = vchSecret.GetKey();
if (!key.IsValid() && fGood)
return JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "privkey is not valid");
privkey = key.GetPrivKey();
}
CZerocoinMint mint(denom, bnValue, bnRandom, bnSerial, fUsed, nVersion, &privkey);
mint.SetTxHash(txid);
mint.SetHeight(nHeight);
pwalletMain->zlumTracker->Add(mint, true);
count++;
nValue += libzerocoin::ZerocoinDenominationToAmount(denom);
}
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("added", count));
ret.push_back(Pair("value", ValueFromAmount(nValue)));
return ret;
}
UniValue reconsiderzerocoins(const UniValue& params, bool fHelp)
{
if(fHelp || !params.empty())
throw runtime_error(
"reconsiderzerocoins\n"
"\nCheck archived zLUM list to see if any mints were added to the blockchain.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult:\n"
"[\n"
" {\n"
" \"txid\" : \"xxx\", (string) the mint's zerocoin denomination \n"
" \"denomination\" : amount, (numeric) the mint's zerocoin denomination\n"
" \"pubcoin\" : \"xxx\", (string) The mint's public identifier\n"
" \"height\" : n (numeric) The height the tx was added to the blockchain\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples\n" +
HelpExampleCli("reconsiderzerocoins", "") + HelpExampleRpc("reconsiderzerocoins", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked(true);
list<CZerocoinMint> listMints;
list<CDeterministicMint> listDMints;
pwalletMain->ReconsiderZerocoins(listMints, listDMints);
UniValue arrRet(UniValue::VARR);
for (const CZerocoinMint& mint : listMints) {
UniValue objMint(UniValue::VOBJ);
objMint.push_back(Pair("txid", mint.GetTxHash().GetHex()));
objMint.push_back(Pair("denomination", ValueFromAmount(mint.GetDenominationAsAmount())));
objMint.push_back(Pair("pubcoin", mint.GetValue().GetHex()));
objMint.push_back(Pair("height", mint.GetHeight()));
arrRet.push_back(objMint);
}
for (const CDeterministicMint& dMint : listDMints) {
UniValue objMint(UniValue::VOBJ);
objMint.push_back(Pair("txid", dMint.GetTxHash().GetHex()));
objMint.push_back(Pair("denomination", FormatMoney(libzerocoin::ZerocoinDenominationToAmount(dMint.GetDenomination()))));
objMint.push_back(Pair("pubcoinhash", dMint.GetPubcoinHash().GetHex()));
objMint.push_back(Pair("height", dMint.GetHeight()));
arrRet.push_back(objMint);
}
return arrRet;
}
UniValue setzlumseed(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() != 1)
throw runtime_error(
"setzlumseed \"seed\"\n"
"\nSet the wallet's deterministic zlum seed to a specific value.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"seed\" (string, required) The deterministic zlum seed.\n"
"\nResult\n"
"\"success\" : b, (boolean) Whether the seed was successfully set.\n"
"\nExamples\n" +
HelpExampleCli("setzlumseed", "63f793e7895dd30d99187b35fbfb314a5f91af0add9e0a4e5877036d1e392dd5") +
HelpExampleRpc("setzlumseed", "63f793e7895dd30d99187b35fbfb314a5f91af0add9e0a4e5877036d1e392dd5"));
EnsureWalletIsUnlocked();
uint256 seed;
seed.SetHex(params[0].get_str());
CzLUMWallet* zwallet = pwalletMain->getZWallet();
bool fSuccess = zwallet->SetMasterSeed(seed, true);
if (fSuccess)
zwallet->SyncWithChain();
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("success", fSuccess));
return ret;
}
UniValue getzlumseed(const UniValue& params, bool fHelp)
{
if(fHelp || !params.empty())
throw runtime_error(
"getzlumseed\n"
"\nCheck archived zLUM list to see if any mints were added to the blockchain.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult\n"
"\"seed\" : s, (string) The deterministic zLUM seed.\n"
"\nExamples\n" +
HelpExampleCli("getzlumseed", "") + HelpExampleRpc("getzlumseed", ""));
EnsureWalletIsUnlocked();
CzLUMWallet* zwallet = pwalletMain->getZWallet();
uint256 seed = zwallet->GetMasterSeed();
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("seed", seed.GetHex()));
return ret;
}
UniValue generatemintlist(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() != 2)
throw runtime_error(
"generatemintlist\n"
"\nShow mints that are derived from the deterministic zLUM seed.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments\n"
"1. \"count\" : n, (numeric) Which sequential zLUM to start with.\n"
"2. \"range\" : n, (numeric) How many zLUM to generate.\n"
"\nResult:\n"
"[\n"
" {\n"
" \"count\": n, (numeric) Deterministic Count.\n"
" \"value\": \"xxx\", (string) Hex encoded pubcoin value.\n"
" \"randomness\": \"xxx\", (string) Hex encoded randomness.\n"
" \"serial\": \"xxx\" (string) Hex encoded Serial.\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples\n" +
HelpExampleCli("generatemintlist", "1, 100") + HelpExampleRpc("generatemintlist", "1, 100"));
EnsureWalletIsUnlocked();
int nCount = params[0].get_int();
int nRange = params[1].get_int();
CzLUMWallet* zwallet = pwalletMain->zwalletMain;
UniValue arrRet(UniValue::VARR);
for (int i = nCount; i < nCount + nRange; i++) {
libzerocoin::CoinDenomination denom = libzerocoin::CoinDenomination::ZQ_ONE;
libzerocoin::PrivateCoin coin(Params().Zerocoin_Params(false), denom, false);
CDeterministicMint dMint;
zwallet->GenerateMint(i, denom, coin, dMint);
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("count", i));
obj.push_back(Pair("value", coin.getPublicCoin().getValue().GetHex()));
obj.push_back(Pair("randomness", coin.getRandomness().GetHex()));
obj.push_back(Pair("serial", coin.getSerialNumber().GetHex()));
arrRet.push_back(obj);
}
return arrRet;
}
UniValue dzlumstate(const UniValue& params, bool fHelp) {
if (fHelp || params.size() != 0)
throw runtime_error(
"dzlumstate\n"
"\nThe current state of the mintpool of the deterministic zLUM wallet.\n" +
HelpRequiringPassphrase() + "\n"
"\nExamples\n" +
HelpExampleCli("mintpoolstatus", "") + HelpExampleRpc("mintpoolstatus", ""));
CzLUMWallet* zwallet = pwalletMain->zwalletMain;
UniValue obj(UniValue::VOBJ);
int nCount, nCountLastUsed;
zwallet->GetState(nCount, nCountLastUsed);
obj.push_back(Pair("dzlum_count", nCount));
obj.push_back(Pair("mintpool_count", nCountLastUsed));
return obj;
}
void static SearchThread(CzLUMWallet* zwallet, int nCountStart, int nCountEnd)
{
LogPrintf("%s: start=%d end=%d\n", __func__, nCountStart, nCountEnd);
CWalletDB walletDB(pwalletMain->strWalletFile);
try {
uint256 seedMaster = zwallet->GetMasterSeed();
uint256 hashSeed = Hash(seedMaster.begin(), seedMaster.end());
for(int i = nCountStart; i < nCountEnd; i++) {
boost::this_thread::interruption_point();
CDataStream ss(SER_GETHASH, 0);
ss << seedMaster << i;
uint512 zerocoinSeed = Hash512(ss.begin(), ss.end());
CBigNum bnValue;
CBigNum bnSerial;
CBigNum bnRandomness;
CKey key;
zwallet->SeedTozLUM(zerocoinSeed, bnValue, bnSerial, bnRandomness, key);
uint256 hashPubcoin = GetPubCoinHash(bnValue);
zwallet->AddToMintPool(make_pair(hashPubcoin, i), true);
walletDB.WriteMintPoolPair(hashSeed, hashPubcoin, i);
}
} catch (std::exception& e) {
LogPrintf("SearchThread() exception");
} catch (...) {
LogPrintf("SearchThread() exception");
}
}
UniValue searchdzlum(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() != 3)
throw runtime_error(
"searchdzlum\n"
"\nMake an extended search for deterministically generated zLUM that have not yet been recognized by the wallet.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments\n"
"1. \"count\" (numeric) Which sequential zLUM to start with.\n"
"2. \"range\" (numeric) How many zLUM to generate.\n"
"3. \"threads\" (numeric) How many threads should this operation consume.\n"
"\nExamples\n" +
HelpExampleCli("searchdzlum", "1, 100, 2") + HelpExampleRpc("searchdzlum", "1, 100, 2"));
EnsureWalletIsUnlocked();
int nCount = params[0].get_int();
if (nCount < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Count cannot be less than 0");
int nRange = params[1].get_int();
if (nRange < 1)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Range has to be at least 1");
int nThreads = params[2].get_int();
CzLUMWallet* zwallet = pwalletMain->zwalletMain;
boost::thread_group* dzlumThreads = new boost::thread_group();
int nRangePerThread = nRange / nThreads;
int nPrevThreadEnd = nCount - 1;
for (int i = 0; i < nThreads; i++) {
int nStart = nPrevThreadEnd + 1;;
int nEnd = nStart + nRangePerThread;
nPrevThreadEnd = nEnd;
dzlumThreads->create_thread(boost::bind(&SearchThread, zwallet, nStart, nEnd));
}
dzlumThreads->join_all();
zwallet->RemoveMintsFromPool(pwalletMain->zlumTracker->GetSerialHashes());
zwallet->SyncWithChain(false);
//todo: better response
return "done";
}
| [
"prismnetwork@hotmail.com"
] | prismnetwork@hotmail.com |
d29039c15fc2f60c25b2c2af5830ad19389c8e9c | a03821df6b547c0bc8ecde2ffaf79ab6a50ccb37 | /c/old/abc168/e.cpp | c66d1ff67f557257b7680927077af62b8d6f7b4a | [] | no_license | ueda0319/AtCoder | 85483601e897c9ec4a554ac593d66308ff6d8dc6 | 7b7b5b592c2034c3c5d545d4374429f208332c11 | refs/heads/main | 2023-02-22T07:46:03.884858 | 2021-01-23T14:55:09 | 2021-01-23T14:55:09 | 326,196,351 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,298 | cpp | #include <iostream>
#include <string>
#include <math.h>
#include <vector>
typedef long long ll;
using namespace std;
const ll M = 1000000007;
vector<ll> fac(300001); //n!(mod M)
vector<ll> ifac(300001); //k!^{M-2} (mod M)
//a,bの範囲的にこれだけ配列を用意していけば十分
ll mpow(ll x, ll n){ //x^n(mod M) ←普通にpow(x,n)では溢れてしまうため,随時mod計算
ll ans = 1;
while(n != 0){
if(n&1) ans = ans*x % M;
x = x*x % M;
n = n >> 1;
}
return ans;
}
ll comb(ll a, ll b){ //aCbをmod計算
if(a == 0 && b == 0)return 1;
if(a < b || a < 0)return 0;
ll tmp = ifac[a-b]* ifac[b] % M;
return tmp * fac[a] % M;
}
int root(int *uf, int k){
if(uf[k]==k){
return k;
}else{
uf[k]=root(uf, uf[k]);
return uf[k];
}
}
int main(){
int n;
cin >> n;
long long uf[n];
int ufc[n]={0};
long a,b;
long long nab;
int i,j;
int ufi=0;
int ar,br;
bool flg;
fac[0] = 1;
ifac[0] = 1;
for(ll i = 0; i<300000; i++){
fac[i+1] = fac[i]*(i+1) % M; // n!(mod M)
ifac[i+1] = ifac[i]*mpow(i+1, M-2) % M; // k!^{M-2} (mod M) ←累乗にmpowを採用
}
for(i=0;i<n;i++)uf[i]=i;
for(i=0;i<n;i++){
cin >> a >> b;
nab=a*b;
flg=true;
for(j=0;j<ufi;j++){
if(uf[j]==nab){
ufc[j]++;
flg=false;
break;
}
}
if(flg){
uf[ufi]=nab;
ufc[ufi]=1;
ufi++;
}
}
int nc = 0;
long long sum=0;
for(i=0;i<ufi;i++){
int nn = nc;
flg=true;
for(j=0;j<i;j++){
if(uf[i]==-uf[j]){
cout << "a" << endl;
flg=false;
nn-=ufc[j];
break;
}
}
long long na = ufc[i], nb=nn;
long long sa=0,sb=0;
for(j=1;j<=na;j++){
sa = (sa + comb(na,j))%M;
}
for(j=0;j<=nb;j++){
sb = (sb+comb(nb,j))%M;
}
cout << i << "," << nn << ","<< na << "," << nb << "," << sa << "," << sb << endl;
sum = (sum + sa * sb)%M;
if(flg)nc+=ufc[i];
}
cout << sum << endl;
return 0;
} | [
"i.ueda0319@gmail.com"
] | i.ueda0319@gmail.com |
7f4ae60f2b0f9a14f27164eed85dba1efae61faa | 99905e72c583224dcb2ec50246bd62309d90ed97 | /src/server/clangLib/ClangIndex.h | 912599e8646c21a88fbd7270e4077cfac13cbee8 | [] | no_license | zjg/ccs | 43dcff06bffcb8e3fd8d3f0d6ac0b8fa48cec7d1 | 7ce4fdb8600058298549e14402377049aab297a5 | refs/heads/master | 2020-06-08T14:31:55.681006 | 2012-07-16T22:35:12 | 2012-07-16T22:35:12 | 3,197,372 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 283 | h |
#ifndef CLANGINDEX_H
#define CLANGINDEX_H
#include <clang-c/Index.h>
#include <QtGlobal>
class ClangIndex
{
public:
explicit ClangIndex();
virtual ~ClangIndex();
operator CXIndex() const;
private:
Q_DISABLE_COPY(ClangIndex);
CXIndex index_;
};
#endif
| [
"dlr365@gmail.com"
] | dlr365@gmail.com |
f795a9e3d117941e93539ebb1b8925657644bb0c | b5648642fd2e05589cab760a909ce1dc38556d5d | /touchGFX/Application/generated/images/src/MainMenu/MainMenu_btn_Wifi_small.cpp | f6238bbe7433c448bb88492b7a779b4c2fd5c423 | [] | no_license | sunklCoin/MCU | 862c8f8ee48872b3fc703d54c2d76bbb74cca1a4 | 9cc7a45fae3b18821c722f78d901034086ccc98c | refs/heads/master | 2021-07-14T00:58:51.259827 | 2017-10-16T14:12:55 | 2017-10-16T14:12:55 | 105,020,651 | 0 | 0 | null | 2017-10-16T14:12:56 | 2017-09-27T13:19:03 | C++ | UTF-8 | C++ | false | false | 38,290 | cpp | // Generated by imageconverter. Please, do not edit!
#include <touchgfx/hal/Config.hpp>
LOCATION_EXTFLASH_PRAGMA
KEEP extern const unsigned char _MainMenu_btn_Wifi_small[] LOCATION_EXTFLASH_ATTRIBUTE = { // 50x50 RGB565 pixels.
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x10,0x84,0xd3,0x9c,
0x35,0xa5,0xb3,0x94,0x51,0x8c,0x75,0xad,0xb2,0x94,0xb3,0x94,0x14,0xa5,0xf7,0xbd,0x39,0xce,0x18,0xc6,0x35,0xa5,0x18,0xc6,0x38,0xc6,0xf8,0xbd,0x8e,0x73,0x8e,0x73,
0x30,0x84,0x59,0xce,0x38,0xc6,0x55,0xad,0x18,0xc6,0xdb,0xde,0xdb,0xde,0xdb,0xde,0xdb,0xde,0x18,0xc6,0x55,0xad,0x38,0xc6,0x59,0xce,0x10,0x84,0x8e,0x73,0x8e,0x73,
0xf8,0xbd,0x39,0xc6,0x18,0xc6,0x34,0xa5,0x18,0xc6,0x38,0xc6,0xf7,0xbd,0x34,0xa5,0xb3,0x94,0xb2,0x94,0x75,0xad,0x51,0x8c,0xb3,0x94,0xf3,0x9c,0xb3,0x9c,0x30,0x84,
0x10,0x84,0xd3,0x9c,0x55,0xad,0xd3,0x94,0x51,0x8c,0x75,0xad,0xb3,0x94,0xb3,0x9c,0x34,0xa5,0xf8,0xbd,0x39,0xce,0x18,0xc6,0x34,0xa5,0xf7,0xbd,0x8e,0x73,0x14,0xa5,
0xb6,0xb5,0xbb,0xd6,0xdb,0xde,0x9e,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9e,0xf7,0xdb,0xde,
0xba,0xd6,0xb6,0xb5,0x14,0xa5,0x8e,0x73,0xf7,0xbd,0x35,0xa5,0x18,0xc6,0x38,0xc6,0xd8,0xbd,0x34,0xa5,0xb3,0x9c,0xb3,0x94,0x75,0xad,0x51,0x8c,0xb3,0x94,0xf3,0x9c,
0xb3,0x9c,0x30,0x84,
0x30,0x84,0xd3,0x9c,0x35,0xa5,0xd3,0x9c,0x51,0x8c,0x75,0xad,0xb3,0x94,0xb3,0x9c,0x34,0xa5,0xf7,0xbd,0x59,0xc6,0x8e,0x73,0x92,0x94,0x38,0xc6,
0x1c,0xe7,0x9e,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9e,0xf7,0x1c,0xe7,0x38,0xce,0x92,0x94,0x8e,0x73,0x39,0xc6,0xf7,0xbd,0x34,0xa5,0xb3,0x9c,0xb3,0x94,0x75,0xad,0x31,0x8c,
0xb3,0x94,0xf3,0x9c,0xd3,0x9c,0x30,0x84,
0x10,0x84,0xd3,0x9c,0x55,0xa5,0xb3,0x9c,0x51,0x8c,0x75,0xad,0xb2,0x94,0xb3,0x9c,0x14,0xa5,0x8e,0x73,0x76,0xb5,0x9a,0xd6,
0x7e,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7e,0xf7,0x9a,0xd6,0x55,0xad,0x8e,0x73,0x14,0xa5,0xb3,0x9c,0xb2,0x94,
0x75,0xad,0x51,0x8c,0xb3,0x94,0xf3,0x9c,0xb3,0x9c,0x30,0x84,
0x10,0x84,0xd3,0x9c,0x55,0xa5,0xb3,0x94,0x51,0x8c,0x75,0xad,0xb3,0x94,0x92,0x94,0x92,0x94,0x7a,0xce,
0xbe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbe,0xf7,0x7a,0xce,0x92,0x94,
0x92,0x94,0xb3,0x94,0x75,0xad,0x51,0x8c,0xb3,0x94,0xf3,0x9c,0xd3,0x9c,0x31,0x84,
0x30,0x84,0xd3,0x9c,0x35,0xa5,0xd3,0x9c,0x51,0x8c,0x55,0xad,0x8e,0x73,0x75,0xad,
0x5d,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0x5d,0xef,0x75,0xad,0x8e,0x73,0x55,0xad,0x51,0x8c,0xb3,0x94,0xf3,0x9c,0xb3,0x9c,0x30,0x84,
0x10,0x84,0xd3,0x9c,0x55,0xa5,0xd3,0x9c,0x30,0x84,0xd3,0x9c,
0x59,0xce,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9e,0xf7,0x5d,0xef,0x9e,0xf7,
0x7a,0xd6,0x18,0xc6,0x96,0xb5,0xb6,0xb5,0x18,0xc6,0x7a,0xd6,0xbe,0xf7,0x5d,0xef,0x9e,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x39,0xce,0xd3,0x9c,0x10,0x84,0xb3,0x94,0xf3,0x9c,0xb3,0x9c,0x30,0x84,
0x10,0x84,0xd3,0x9c,0x35,0xa5,0x8e,0x73,
0x92,0x94,0x5d,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1c,0xe7,0x39,0xce,0xd7,0xbd,0x96,0xb5,
0xaf,0x73,0x7e,0xf7,0x8e,0x73,0x8e,0x73,0x8e,0x73,0x8e,0x73,0x8e,0x73,0x8e,0x73,0x7e,0xef,0xaf,0x73,0xb6,0xb5,0xd7,0xbd,0x39,0xce,0x1c,0xe7,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7d,0xef,0x72,0x8c,0x92,0x94,0xf3,0x9c,0xd3,0x9c,0x30,0x84,
0x30,0x84,0xd3,0x9c,
0x8e,0x73,0x14,0xa5,0xbe,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xff,0x9a,0xd6,0x35,0xa5,0x10,0x84,0x8e,0x73,
0xd7,0xbd,0x59,0xce,0x55,0xad,0x9e,0xf7,0x18,0xc6,0x76,0xad,0xd3,0x94,0xb3,0x9c,0x76,0xad,0x18,0xc6,0x7e,0xf7,0x55,0xad,0x7a,0xd6,0xf7,0xbd,0x8e,0x73,0x10,0x84,
0x35,0xa5,0x9a,0xd6,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9e,0xf7,0x34,0xa5,0x8e,0x73,0xb3,0x9c,0x30,0x84,
0x10,0x84,0x8e,0x73,0x96,0xb5,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0x59,0xce,0xb2,0x94,0x8e,0x73,0x35,0xad,
0xf3,0x9c,0x34,0xa5,0xf7,0xbd,0x7a,0xce,0x55,0xad,0x9e,0xf7,0xf7,0xbd,0x76,0xad,0xd3,0x9c,0xd3,0x94,0x75,0xad,0xf7,0xbd,0x9e,0xf7,0x55,0xad,0x9a,0xd6,0xf8,0xc5,
0x34,0xa5,0xd3,0x9c,0x35,0xad,0x8e,0x73,0xb2,0x94,0x59,0xce,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0x35,0xad,
0x8e,0x73,0x30,0x84,
0x8e,0x73,0x34,0xa5,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdb,0xde,0x14,0xa5,0x8e,0x73,0xd3,0x9c,
0x55,0xad,0x55,0xad,0xd3,0x9c,0x35,0xa5,0xb7,0xb5,0x59,0xce,0xd3,0x9c,0x5d,0xef,0xd7,0xbd,0x71,0x8c,0x55,0xad,0x55,0xad,0x51,0x8c,0xb7,0xb5,0x1c,0xe7,0x34,0xa5,
0x79,0xce,0xd7,0xbd,0x35,0xa5,0xf3,0x9c,0x55,0xad,0x55,0xad,0xd3,0x9c,0x8e,0x73,0x14,0xa5,0xdb,0xde,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xdf,0xff,0x14,0xa5,0x8e,0x73,
0x92,0x94,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xd7,0xbd,0xcf,0x7b,0xb3,0x9c,
0x34,0xa5,0xd3,0x9c,0x55,0xad,0x55,0xad,0x14,0xa5,0xd3,0x9c,0xb6,0xb5,0xd7,0xbd,0xb2,0x94,0xfb,0xde,0x38,0xc6,0x31,0x8c,0x76,0xad,0x55,0xad,0x10,0x84,0xf8,0xc5,
0x59,0xce,0xf8,0xbd,0xd7,0xbd,0x14,0xa5,0xb2,0x94,0xf4,0x9c,0x55,0xad,0x55,0xad,0xd3,0x9c,0x14,0xa5,0xd3,0x9c,0xef,0x7b,0xb7,0xbd,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0x92,0x94,
0x1c,0xe7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9e,0xf7,0x34,0xa5,0x8e,0x73,
0x51,0x8c,0xf3,0x9c,0x14,0xa5,0xd3,0x9c,0xd3,0x9c,0x76,0xad,0xf8,0xbd,0x34,0xa5,0xf8,0xc5,0xd7,0xbd,0xb3,0x9c,0xfc,0xde,0x18,0xc6,0x51,0x8c,0x75,0xad,0x55,0xad,
0x30,0x84,0xf8,0xbd,0x79,0xce,0x18,0xc6,0xd7,0xbd,0x35,0xad,0xb3,0x94,0x14,0xa5,0xf4,0x9c,0x14,0xa5,0xf3,0x9c,0x14,0xa5,0xf4,0x9c,0x72,0x8c,0x8e,0x73,0x34,0xa5,
0x9e,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1c,0xe7,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0x14,0xa5,
0xf0,0x7b,0xf4,0x9c,0x51,0x8c,0xf4,0x9c,0x14,0xa5,0xf4,0x9c,0x92,0x94,0x96,0xb5,0x18,0xc6,0x35,0xa5,0xf8,0xc5,0xd7,0xbd,0x8e,0x73,0x8e,0x73,0x8e,0x73,0xaf,0x73,
0x92,0x94,0x51,0x8c,0xae,0x73,0x8e,0x73,0x8e,0x73,0xf7,0xbd,0xd7,0xbd,0x35,0xa5,0xd3,0x9c,0x14,0xa5,0xd3,0x9c,0x76,0xad,0xd3,0x9c,0x55,0xad,0xf4,0x9c,0x72,0x94,
0xf3,0x9c,0x10,0x84,0x71,0x8c,0x9e,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0x7e,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9e,0xf7,
0x14,0xa5,0x92,0x94,0x30,0x84,0xf3,0xa4,0x72,0x94,0x92,0x94,0x92,0x94,0xb6,0xb5,0x72,0x8c,0x96,0xb5,0xf7,0xbd,0x8e,0x73,0x10,0x84,0x96,0xb5,0x96,0xb5,0x1c,0xe7,
0x9e,0xf7,0x1c,0xe7,0x5d,0xef,0x5d,0xef,0xfc,0xe6,0x7e,0xf7,0xba,0xd6,0x7a,0xd6,0x55,0xad,0x8e,0x73,0x92,0x94,0x14,0xa5,0xf3,0x9c,0x76,0xad,0x75,0xad,0x76,0xb5,
0x31,0x84,0x92,0x94,0xf4,0x9c,0x51,0x8c,0xaf,0x7b,0xd3,0x9c,0x9e,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7e,0xef,
0xd3,0x9c,0xdf,0xff,0xff,0xff,0xff,0xff,
0x9e,0xf7,0xb2,0x94,0x4d,0x6b,0x8e,0x73,0x51,0x8c,0x14,0xa5,0x51,0x8c,0x92,0x94,0x71,0x8c,0xb7,0xb5,0x71,0x8c,0x8e,0x73,0x55,0xad,0xf7,0xbd,0x5d,0xef,0xdf,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xff,0x1c,0xe7,0xb6,0xb5,0x71,0x8c,0x8e,0x73,0x56,0xad,
0x75,0xad,0x55,0xad,0xef,0x7b,0x31,0x8c,0x14,0xa5,0x51,0x8c,0xae,0x73,0x6e,0x6b,0xb2,0x94,0x9e,0xf7,0xff,0xff,0xff,0xff,0xdf,0xff,0xd3,0x9c,
0x8e,0x73,0xd3,0x9c,
0xd7,0xbd,0xd7,0xbd,0xb3,0x94,0xae,0x73,0xaf,0x7b,0xaf,0x73,0x30,0x84,0x31,0x84,0xf0,0x7b,0x92,0x94,0x71,0x8c,0x96,0xb5,0x10,0x84,0x38,0xc6,0x9e,0xf7,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x5d,0xef,
0x96,0xb5,0x51,0x8c,0x55,0xad,0x75,0xad,0xef,0x7b,0xae,0x73,0x31,0x8c,0x30,0x84,0xae,0x7b,0xaf,0x7b,0x8e,0x73,0xb3,0x9c,0xd7,0xbd,0xd7,0xbd,0xd3,0x9c,0x8e,0x73,
0xcf,0x7b,0x72,0x8c,0x8e,0x73,0x8e,0x73,0x92,0x94,0xcf,0x7b,0xae,0x7b,0xaf,0x7b,0xaf,0x7b,0xae,0x73,0x10,0x84,0x92,0x94,0x31,0x84,0xb6,0xb5,0x1c,0xe7,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0x1c,0xe7,0x35,0xa5,0x35,0xad,0xf0,0x7b,0xcf,0x7b,0xae,0x73,0xaf,0x7b,0xaf,0x7b,0xae,0x73,0xcf,0x7b,0x92,0x94,0x8e,0x73,0x8e,0x73,
0x72,0x8c,0xcf,0x7b,
0xaf,0x7b,0x92,0x94,0x34,0xa5,0xf4,0xa4,0x92,0x94,0xcf,0x7b,0xae,0x73,0xaf,0x7b,0xaf,0x73,0xae,0x73,0x10,0x84,0x8e,0x73,0x55,0xad,0xdf,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0x55,0xad,0x8e,0x73,0xcf,0x7b,0xaf,0x73,0xaf,0x73,0xaf,0x73,0xae,0x7b,0xcf,0x7b,0x92,0x94,
0xf4,0x9c,0x34,0xa5,0x92,0x94,0xaf,0x7b,
0xaf,0x7b,0x92,0x94,0x34,0xa5,0xf4,0x9c,0x92,0x94,0xcf,0x7b,0xaf,0x73,0xae,0x7b,0xaf,0x7b,0xae,0x73,0x8e,0x73,0xf7,0xbd,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0x9e,0xf7,0x9e,0xf7,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0x75,0xad,0x8e,0x73,0xae,0x7b,0xaf,0x73,0xae,0x7b,0xaf,0x73,
0xcf,0x7b,0xb2,0x94,0xf4,0xa4,0x34,0xa5,0x92,0x94,0xaf,0x7b,
0xcf,0x7b,0x92,0x94,0x14,0xa5,0xf4,0x9c,0x92,0x94,0xaf,0x7b,0xae,0x73,0xae,0x73,0xaf,0x73,0x8e,0x73,
0x35,0xad,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xff,0x1c,0xe7,0x79,0xce,0xd3,0x9c,0xbb,0xd6,0x96,0xb5,0x96,0xb5,
0x3d,0xe7,0x34,0xa5,0x18,0xc6,0xdb,0xde,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x14,0xa5,0x8e,0x73,0xae,0x73,
0xaf,0x73,0xae,0x73,0xaf,0x7b,0xb2,0x94,0xf4,0xa4,0x14,0xa5,0x92,0x94,0xcf,0x7b,
0xaf,0x7b,0x92,0x94,0x34,0xa5,0xf3,0x9c,0xb2,0x94,0x31,0x84,0x31,0x8c,0x31,0x84,
0x30,0x84,0x10,0x84,0xbe,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0x39,0xce,0x92,0x94,0x8e,0x73,0x7a,0xce,0xb3,0x9c,0x3d,0xef,
0xba,0xd6,0x9a,0xd6,0x9e,0xf7,0x35,0xa5,0x96,0xb5,0x8e,0x73,0x14,0xa5,0x9a,0xd6,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9e,0xf7,
0xef,0x7b,0xef,0x7b,0xf0,0x83,0xef,0x7b,0xef,0x7b,0x72,0x94,0xf4,0x9c,0x34,0xa5,0x92,0x94,0xaf,0x7b,
0xaf,0x7b,0x92,0x94,0x14,0xa5,0x34,0xa5,0xb7,0xb5,0x18,0xc6,
0x18,0xc6,0xf8,0xc5,0xf8,0xbd,0xb6,0xb5,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1c,0xe7,0x34,0xa5,0x8e,0x73,0x92,0x94,0x18,0xbe,0x9a,0xd6,
0xd3,0x9c,0x3d,0xef,0xbb,0xd6,0xbb,0xd6,0x9e,0xf7,0x55,0xad,0xb7,0xb5,0x96,0xb5,0x34,0xa5,0x8e,0x73,0xd7,0xbd,0x5d,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0x14,0xa5,0x55,0xad,0x55,0xad,0x75,0xad,0x75,0xad,0x14,0xa5,0x34,0xa5,0x14,0xa5,0x92,0x94,0xcf,0x7b,
0xcf,0x7b,0x92,0x94,0xf4,0x9c,0xd3,0x9c,
0xd3,0x9c,0xb3,0x9c,0xd2,0x94,0xd3,0x94,0xb2,0x9c,0x92,0x94,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x5d,0xef,0x31,0x84,0xf4,0x9c,0xd3,0x9c,0xb2,0x94,
0x18,0xc6,0x9a,0xd6,0xd3,0x9c,0x5d,0xef,0x59,0xce,0x39,0xc6,0xbe,0xf7,0x55,0xad,0xb7,0xb5,0x96,0xb5,0x35,0xad,0x75,0xad,0xd7,0xbd,0x30,0x84,0xfc,0xde,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0x31,0x8c,0x31,0x84,0x31,0x8c,0x51,0x8c,0x31,0x8c,0x31,0x8c,0x71,0x8c,0xf4,0x9c,0x92,0x94,0xaf,0x7b,
0xaf,0x7b,0xb2,0x94,
0x71,0x8c,0x10,0x84,0x10,0x84,0x10,0x84,0x10,0x84,0x10,0x84,0x10,0x84,0x8e,0x73,0xd7,0xbd,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xde,0x10,0x84,0xef,0x7b,0x35,0xa5,
0xd3,0x9c,0xb2,0x94,0x18,0xc6,0xba,0xd6,0x71,0x8c,0x18,0xc6,0xf3,0x9c,0xd3,0x9c,0xf7,0xbd,0xb2,0x94,0xb7,0xbd,0x96,0xb5,0x55,0xa5,0x76,0xad,0xf7,0xbd,0xef,0x7b,
0xcf,0x7b,0x3c,0xe7,0xff,0xff,0xff,0xff,0xff,0xff,0x96,0xb5,0x8e,0x73,0xae,0x73,0x8e,0x73,0xae,0x73,0xae,0x73,0x8e,0x73,0x8e,0x73,0x51,0x8c,0xb3,0x94,0xaf,0x7b,
0xaf,0x7b,0xb2,0x94,0x51,0x8c,0x10,0x84,0x10,0x84,0x10,0x84,0x10,0x84,0x10,0x84,0x10,0x84,0x10,0x84,0x8e,0x73,0xb7,0xbd,0x5d,0xef,0xbb,0xd6,0x72,0x94,0x6d,0x73,
0xaf,0x7b,0x35,0xad,0xd3,0x9c,0xb3,0x94,0x76,0xb5,0xf4,0x9c,0x72,0x8c,0xb7,0xbd,0xf4,0xa4,0xf3,0x9c,0x75,0xad,0x10,0x84,0x10,0x84,0x55,0xad,0x35,0xad,0x76,0xad,
0xf7,0xbd,0x10,0x84,0x8e,0x7b,0xf0,0x83,0xdb,0xde,0x7d,0xef,0xb7,0xb5,0x8e,0x73,0xae,0x7b,0xaf,0x7b,0xaf,0x7b,0xaf,0x7b,0xaf,0x7b,0xaf,0x7b,0xae,0x73,0x30,0x84,
0xb2,0x94,0xcf,0x7b,
0xcf,0x7b,0xb2,0x94,0x51,0x8c,0x10,0x84,0x30,0x84,0x30,0x84,0x30,0x84,0x10,0x84,0x30,0x84,0x30,0x84,0xcf,0x7b,0xb7,0xbd,0x8e,0x73,0x9a,0xd6,
0x14,0xa5,0x8e,0x73,0xcf,0x7b,0x35,0xa5,0xd3,0x9c,0x92,0x94,0x51,0x8c,0x51,0x8c,0x72,0x8c,0xd7,0xbd,0x14,0xa5,0xf3,0x9c,0x76,0xad,0x10,0x84,0xcf,0x7b,0xef,0x7b,
0x92,0x94,0x96,0xb5,0xf8,0xc5,0x10,0x84,0xaf,0x7b,0x10,0x84,0xdb,0xde,0x8e,0x73,0xd7,0xbd,0xae,0x73,0xaf,0x7b,0xaf,0x73,0xae,0x7b,0xaf,0x73,0xaf,0x7b,0xaf,0x7b,
0xae,0x73,0x30,0x84,0xb3,0x9c,0xaf,0x7b,
0xaf,0x7b,0xb2,0x94,0x51,0x8c,0x10,0x84,0x30,0x84,0x31,0x84,0x10,0x84,0x30,0x84,0x11,0x84,0x30,0x84,0xef,0x7b,0xd7,0xbd,
0xdb,0xde,0xba,0xd6,0x14,0xa5,0x8e,0x73,0xcf,0x7b,0x34,0xa5,0x92,0x8c,0x51,0x8c,0x51,0x8c,0x71,0x8c,0x71,0x8c,0xd7,0xbd,0x8e,0x73,0x8e,0x73,0x75,0xad,0xf0,0x7b,
0xf0,0x7b,0xcf,0x7b,0xcf,0x7b,0x71,0x8c,0xf7,0xbd,0x10,0x84,0xaf,0x73,0x30,0x84,0xdb,0xde,0xdb,0xde,0xd7,0xbd,0xaf,0x7b,0xaf,0x73,0xae,0x7b,0xce,0x73,0xcf,0x7b,
0xae,0x73,0xaf,0x7b,0xae,0x7b,0x30,0x84,0xb3,0x94,0xaf,0x7b,
0xaf,0x7b,0xb2,0x94,0x51,0x8c,0x10,0x84,0x31,0x84,0x10,0x84,0x10,0x84,0x30,0x84,0x11,0x84,0x10,0x84,
0xef,0x7b,0xd7,0xbd,0xdb,0xde,0x9a,0xd6,0x34,0xa5,0x8e,0x73,0xcf,0x7b,0x72,0x8c,0x51,0x8c,0x51,0x8c,0x51,0x8c,0x51,0x8c,0xef,0x7b,0xf8,0xbd,0xbb,0xd6,0xba,0xd6,
0xb7,0xb5,0x8e,0x73,0xcf,0x7b,0xcf,0x7b,0xcf,0x7b,0xcf,0x7b,0x51,0x84,0x10,0x84,0xcf,0x7b,0x30,0x84,0xdb,0xde,0xdb,0xde,0xd7,0xbd,0xaf,0x7b,0xaf,0x7b,0xae,0x73,
0xaf,0x7b,0xaf,0x7b,0xae,0x73,0xaf,0x7b,0xae,0x73,0x30,0x84,0xb3,0x94,0xaf,0x7b,
0xcf,0x7b,0xb2,0x94,0x51,0x8c,0x10,0x84,0x30,0x84,0x10,0x84,0x31,0x84,0x30,0x84,
0x10,0x84,0x10,0x84,0xcf,0x7b,0xd7,0xbd,0xdb,0xde,0x9a,0xd6,0x14,0xa5,0x8e,0x73,0x30,0x84,0x51,0x8c,0x51,0x8c,0x51,0x8c,0x51,0x84,0xcf,0x7b,0x59,0xce,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0x18,0xc6,0xae,0x73,0x10,0x84,0x10,0x84,0x10,0x84,0xf0,0x7b,0x10,0x84,0xcf,0x7b,0x10,0x84,0xdb,0xde,0xfb,0xde,0xd7,0xbd,0xae,0x73,
0xcf,0x7b,0xaf,0x7b,0xaf,0x73,0xce,0x7b,0xaf,0x7b,0xaf,0x73,0xae,0x7b,0x30,0x84,0xb3,0x94,0xcf,0x7b,
0xaf,0x7b,0xb2,0x94,0x51,0x8c,0x10,0x84,0x31,0x84,0x10,0x84,
0x10,0x84,0x31,0x84,0x30,0x84,0x30,0x84,0xd0,0x7b,0xd7,0xbd,0xdb,0xde,0xba,0xd6,0x14,0xa5,0xf0,0x7b,0x51,0x8c,0x31,0x84,0x51,0x8c,0x51,0x8c,0x8e,0x73,0x14,0x9d,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x55,0xad,0xb3,0x94,0xd3,0x9c,0xd3,0x9c,0xd3,0x9c,0xf4,0x9c,0x10,0x84,0x10,0x84,0xdb,0xde,0xfb,0xde,
0xd7,0xbd,0xaf,0x73,0xae,0x7b,0xaf,0x7b,0xce,0x73,0xaf,0x7b,0xaf,0x7b,0xaf,0x7b,0xae,0x73,0x30,0x84,0xb3,0x9c,0xaf,0x7b,
0xaf,0x7b,0xb3,0x94,0x51,0x8c,0x10,0x84,
0x30,0x84,0x30,0x84,0x10,0x84,0x10,0x8c,0x31,0x84,0x10,0x84,0xef,0x7b,0xd7,0xbd,0xdb,0xde,0x9a,0xd6,0x96,0xb5,0xb7,0xb5,0xd7,0xbd,0xd7,0xbd,0xd7,0xbd,0xd7,0xbd,
0x8e,0x73,0x79,0xce,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xbd,0x8e,0x73,0x14,0xa5,0x14,0xa5,0x14,0xa5,0x14,0xa5,0x14,0xa5,0x51,0x8c,
0xdb,0xde,0xdb,0xde,0xd7,0xbd,0xaf,0x7b,0xaf,0x7b,0xae,0x73,0xaf,0x7b,0xce,0x73,0xaf,0x7b,0xaf,0x7b,0xae,0x73,0x30,0x84,0xb3,0x9c,0xaf,0x7b,
0xcf,0x7b,0xb2,0x94,
0x51,0x8c,0x10,0x84,0x31,0x84,0x30,0x84,0x10,0x84,0x31,0x84,0x10,0x84,0x10,0x84,0xef,0x7b,0xd7,0xbd,0xdb,0xde,0x7a,0xd6,0x14,0xa5,0x55,0xad,0x55,0xad,0x55,0xad,
0x55,0xa5,0x35,0xad,0x8e,0x73,0x18,0xc6,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x96,0xb5,0x8e,0x73,0x92,0x94,0xb2,0x94,0x92,0x94,0x92,0x94,
0x92,0x94,0x51,0x8c,0xdb,0xde,0xfb,0xde,0xd7,0xbd,0xaf,0x73,0xcf,0x7b,0xae,0x7b,0xaf,0x73,0xaf,0x7b,0xce,0x73,0xaf,0x7b,0xae,0x73,0x30,0x84,0xb2,0x94,0xaf,0x7b,
0xaf,0x7b,0xb2,0x94,0x51,0x8c,0x10,0x84,0x31,0x84,0x10,0x84,0x10,0x84,0x30,0x84,0x30,0x8c,0x11,0x84,0xcf,0x7b,0xd7,0xbd,0xdb,0xde,0xf8,0xbd,0x8e,0x73,0xae,0x73,
0xae,0x73,0xaf,0x7b,0xae,0x73,0xae,0x73,0x8e,0x73,0x51,0x8c,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xff,0x92,0x94,0x31,0x84,0x51,0x8c,0x51,0x8c,
0x51,0x84,0x51,0x84,0x31,0x84,0x51,0x8c,0xbb,0xd6,0xfc,0xde,0xd7,0xbd,0xae,0x73,0xaf,0x7b,0xcf,0x7b,0xae,0x73,0xaf,0x7b,0xaf,0x7b,0xae,0x7b,0xae,0x7b,0x31,0x84,
0xb3,0x94,0xaf,0x7b,
0xaf,0x7b,0xb2,0x94,0x51,0x8c,0x10,0x84,0x30,0x84,0x10,0x8c,0x31,0x84,0x30,0x84,0x10,0x84,0x31,0x84,0xef,0x7b,0xd7,0xbd,0xfc,0xde,0xd3,0x9c,
0x8e,0x73,0xae,0x73,0xaf,0x7b,0xaf,0x7b,0xae,0x73,0xaf,0x7b,0xaf,0x7b,0x8e,0x73,0x34,0xa5,0xbf,0xff,0xff,0xff,0xff,0xff,0xbe,0xf7,0xd7,0xbd,0x8e,0x73,0xb3,0x94,
0xb3,0x94,0x93,0x94,0xb3,0x94,0xb3,0x94,0xb3,0x9c,0x92,0x94,0x9a,0xd6,0xfb,0xde,0xd7,0xbd,0xaf,0x7b,0xae,0x7b,0xaf,0x73,0xce,0x7b,0xaf,0x73,0xaf,0x7b,0xaf,0x73,
0xae,0x73,0x30,0x84,0xb3,0x9c,0xcf,0x7b,
0xcf,0x7b,0xb2,0x94,0x51,0x8c,0x10,0x84,0x30,0x84,0x11,0x84,0x10,0x84,0x30,0x84,0x10,0x84,0x10,0x84,0xef,0x7b,0xd7,0xbd,
0xfb,0xde,0xd3,0x9c,0x8e,0x73,0xaf,0x7b,0xaf,0x7b,0xae,0x73,0xaf,0x7b,0xaf,0x7b,0xaf,0x7b,0x8e,0x73,0x8e,0x73,0x35,0xa5,0x9a,0xd6,0x9a,0xd6,0x14,0xa5,0x8e,0x73,
0xb2,0x94,0x92,0x94,0x92,0x94,0x92,0x94,0x92,0x94,0xb2,0x94,0x92,0x94,0x72,0x94,0x9a,0xd6,0xfb,0xde,0xd7,0xbd,0xaf,0x7b,0xaf,0x73,0xae,0x7b,0xaf,0x7b,0xce,0x73,
0xaf,0x7b,0xaf,0x7b,0xae,0x73,0x30,0x84,0xb2,0x94,0xaf,0x7b,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
};
LOCATION_EXTFLASH_PRAGMA
KEEP extern const unsigned char _MainMenu_btn_Wifi_small_alpha_channel[] LOCATION_EXTFLASH_ATTRIBUTE = { // 50x50 alpha pixels.
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,
0x1c,0x41,0x51,0x79,0x8a,0x9e,0x9e,0x9e,0x9e,0x8a,0x79,0x51,0x41,0x18,0x04,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x28,
0x5d,0x96,0xbe,0xe7,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xe7,0xbe,
0x96,0x5d,0x28,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x65,
0xb6,0xeb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xeb,0xb6,0x65,0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0x8e,
0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0x8e,0x28,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x8e,
0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xeb,0x8e,0x20,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x65,
0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xdf,0x65,0x04,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x1c,
0xae,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xcf,0xb6,
0x9a,0x8e,0x82,0x82,0x8e,0x9a,0xb6,0xcf,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xaa,0x1c,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,
0x41,0xd7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xcf,0x92,0x51,0x28,
0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x28,0x55,0x92,0xcf,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xd7,0x41,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x59,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xa2,0x49,0x0c,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,
0x45,0xa2,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0x59,0x00,0x00,0x00,
0x00,0x00,0x61,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0x9e,0x34,0x04,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x04,0x34,0x9e,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0x5d,
0x00,0x00,
0x00,0x5d,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x49,0x04,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x45,0xc7,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xf7,0x59,0x00,
0x41,0xf3,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0x8a,0x0c,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x8a,0xfb,0xff,0xff,
0xff,0xff,0xff,0xff,0xf3,0x41,
0xc3,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0x59,0x04,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x59,
0xeb,0xff,0xff,0xff,0xff,0xff,0xff,0xc7,
0xf7,0xff,0xff,0xff,0xff,0xff,0xdf,0x41,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x10,
0x1c,0x18,0x0c,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x45,0xdf,0xff,0xff,0xff,0xff,0xff,0xf7,
0xd7,0xff,0xff,0xff,0xff,0xeb,
0x38,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x41,0x75,0xaa,
0xc7,0xd3,0xdf,0xdb,0xcf,0xc3,0xa2,0x6d,0x38,0x08,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x38,0xeb,0xff,0xff,0xff,0xff,0xd7,
0x59,0xf7,0xff,0xff,
0xef,0x51,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x7d,0xcf,0xfb,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xc7,0x71,0x18,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x51,0xef,0xff,0xff,0xf7,0x59,
0x00,0x3c,
0x8a,0x82,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x86,0xeb,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdb,
0x79,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x82,0x8a,0x3c,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x49,0xd3,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xc7,0x3c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x71,0xf7,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xef,0x61,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x86,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xe7,0xe7,0xf3,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0x75,0x04,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x6d,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf3,0xae,0x6d,0x3c,0x1c,0x18,0x18,
0x1c,0x45,0x75,0xba,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x61,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x24,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0x9a,0x30,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x04,0x38,0xa6,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,
0x1c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x55,0xff,0xff,0xff,0xff,0xff,0xff,0xd7,0x45,0x04,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x51,0xdf,0xff,0xff,0xff,0xff,
0xff,0xff,0x49,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x34,0xfb,0xff,0xff,0xff,0xff,0xbe,0x20,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x28,0xcf,0xff,
0xff,0xff,0xff,0xf7,0x28,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x92,0xff,0xff,0xff,0xcb,0x1c,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x28,0xd7,0xff,0xff,0xff,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x59,0x8a,0x71,0x14,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x20,0x75,0x8a,0x59,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x04,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x6d,0xaa,0xaa,
0x65,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xa6,0xff,
0xff,0xff,0xff,0x9e,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x5d,
0xff,0xff,0xff,0xff,0xff,0xff,0x49,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x9a,0xff,0xff,0xff,0xff,0xff,0xff,0x8a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x8e,0xff,0xff,0xff,0xff,0xff,0xff,0x82,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x41,0xfb,0xff,0xff,0xff,0xff,0xf3,0x34,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x71,0xf3,0xff,0xff,0xeb,0x61,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x59,0x9a,0x9a,0x51,0x04,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00
};
| [
"sunkl.coin@gmail.com"
] | sunkl.coin@gmail.com |
5fdfc8b0ec6f67416d73cd83532df39c82454884 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/git/gumtree/git_repos_function_136_git-2.6.0.cpp | 363fc4a20da6765aa5784f826c664928f611d8ae | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 247 | cpp | int check_everything_connected_with_transport(sha1_iterate_fn fn,
int quiet,
void *cb_data,
struct transport *transport)
{
return check_everything_connected_real(fn, quiet, cb_data,
transport, NULL);
} | [
"993273596@qq.com"
] | 993273596@qq.com |
8612411f647357a2441575c1501b220ea310838a | a6ff0e7e7668a47ff8e694d2e136d39e725b1a36 | /irp6pm/src/Irp6pmM2J.cpp | f9ecf2b0606f1eb6bac93de56b486d2493503266 | [] | no_license | bartswis/irp6_robot | ec9170daf5397925f2859b1ebf0772e36d148f7f | f53c6c517e97887d276a0f99acc1cb778dc69310 | refs/heads/master | 2020-04-05T19:38:09.603474 | 2016-05-09T17:33:54 | 2016-05-09T17:33:54 | 21,573,273 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,074 | cpp | /*
* Copyright (c) 2014-2015, Robot Control and Pattern Recognition Group, Warsaw University of Technology.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Robot Control and Pattern Recognition Group,
* Warsaw University of Technology nor the names of its contributors may
* be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <rtt/Component.hpp>
#include <string>
#include "Irp6pmM2J.h"
#include "Irp6pmTransmission.h"
Irp6pmM2J::Irp6pmM2J(const std::string& name)
: RTT::TaskContext(name, PreOperational) {
this->ports()->addPort("MotorPosition", port_motor_position_);
this->ports()->addPort("JointPosition", port_joint_position_);
this->ports()->addPort("JointEstimatedVelocity",
port_joint_estimated_velocity_);
this->addProperty("synchro_motor_position", synchro_motor_position_);
this->addProperty("step", step_);
}
Irp6pmM2J::~Irp6pmM2J() {
}
bool Irp6pmM2J::configureHook() {
motor_position_.resize(NUMBER_OF_SERVOS);
joint_position_.resize(NUMBER_OF_SERVOS);
previous_joint_position_.resize(NUMBER_OF_SERVOS);
joint_estimated_velocity_.resize(NUMBER_OF_SERVOS);
return true;
}
void Irp6pmM2J::updateHook() {
if (RTT::NewData == port_motor_position_.read(motor_position_)) {
mp2i(&motor_position_(0), &joint_position_(0),
&joint_estimated_velocity_(0));
port_joint_position_.write(joint_position_);
port_joint_estimated_velocity_.write(joint_estimated_velocity_);
}
}
void Irp6pmM2J::mp2i(const double* motors, double* joints,
double* estimated_velocity) {
// zmienne pomocnicze
double c, d, l;
double sinus, cosinus;
double M1, M2;
// Przelicznik polozenia walu silnika napedowego kolumny w radianach
// na kat obrotu kolumny (wspolrzedna wewnetrzna) w radianach
joints[0] = (motors[0] - synchro_motor_position_[0]) / GEAR[0] + THETA[0];
// Przelicznik polozenia walu silnika napedowego ramienia dolnego w radianach
// na kat obrotu ramienia (wspolrzedna wewnetrzna) w radianach
l = (motors[1] - synchro_motor_position_[1]) / GEAR[1] + THETA[1];
M1 = mi1 * mi1 + ni1 * ni1;
c = l * l - sl123;
d = sqrt(M1 - c * c);
cosinus = (mi1 * c - ni1 * d) / M1;
sinus = -(ni1 * c + mi1 * d) / M1;
joints[1] = atan2(sinus, cosinus);
// Przelicznik polozenia walu silnika napedowego ramienia gornego w radianach
// na kat obrotu ramienia (wspolrzedna wewnetrzna) w radianach
l = (motors[2] - synchro_motor_position_[2]) / GEAR[2] + THETA[2];
M2 = mi2 * mi2 + ni2 * ni2;
c = l * l - sl123;
d = sqrt(M2 - c * c);
cosinus = (mi2 * c - ni2 * d) / M2;
sinus = -(ni2 * c + mi2 * d) / M2;
joints[2] = atan2(sinus, cosinus);
// Przelicznik polozenia walu silnika napedowego obrotu kisci T w radianach
// na kat pochylenia kisci (wspolrzedna wewnetrzna) w radianach
joints[3] = (motors[3] - synchro_motor_position_[3]) / GEAR[3];
// Przelicznik polozenia walu silnika napedowego obrotu kisci V w radianach
// na kat obrotu kisci (wspolrzedna wewnetrzna) w radianach
joints[4] = (motors[4] - synchro_motor_position_[4]
- (motors[3] - synchro_motor_position_[3])) / GEAR[4] + THETA[4];
// Przelicznik polozenia walu silnika napedowego obrotu kisci N w radianach
// na kat obrotu kisci (wspolrzedna wewnetrzna) w radianach
joints[5] = (motors[5] - synchro_motor_position_[5]) / GEAR[5] + THETA[5];
joints[2] -= joints[1] + M_PI_2;
joints[3] -= joints[2] + joints[1] + M_PI_2;
for (int i = 0; i < NUMBER_OF_SERVOS; i++) {
joint_estimated_velocity_[i] = (joints[i] - previous_joint_position_[i])
/ step_;
previous_joint_position_[i] = joints[i];
}
}
ORO_CREATE_COMPONENT(Irp6pmM2J)
| [
"tomrobotics@gmail.com"
] | tomrobotics@gmail.com |
761304b37e5bab43692ef04181cb6e378ff95af0 | 073f917fd9cc9a5cc7347c22f33fbeed44c6cc03 | /migration/milligram immigrate_/acfc_VCLSub.h | 561dba9f2ea5aca956da11bd1ec61d7bd3520eff | [] | no_license | downspade/milligram | 4bed44ec55ac82ac2dd22458a70115e5a1438e11 | 7aa9d46b00255ef1119e851785e4fe06436754f0 | refs/heads/master | 2020-07-03T22:06:29.409151 | 2019-09-03T14:56:18 | 2019-09-03T14:56:18 | 202,065,245 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 15,429 | h | #ifndef acfcVclSubH
#define acfcVclSubH
#include <vcl.h>
#include <FileCtrl.hpp>
#include <Masks.hpp>
#define NO_WIN32_LEAN_AND_MEAN
#include <windowsx.h>
#include <shlobj.h>
#include <shellapi.h>
#include <Clipbrd.hpp>
#include <jpeg.hpp>
#include <gifimg.hpp>
#include <pngimage.hpp>
#include <Graphics.hpp>
#define ACFC_VCLSUB_CHECK_SUBFOLDER 1
#define ACFC_VCLSUB_DELETEFILES 2
#define ACFC_VCLSUB_ONLY_NEWFILES 4
#define ACFC_VCLSUB_INCLUDEMASK 8
//----------------------------------------------------------------
//
// ファイル操作関係
//
//----------------------------------------------------------------
// エンディアンの変更
void Endian(void *Dat, int Size, int Mode);
// ディレクトリが存在するかどうかチェックする
bool DirExists(UnicodeString Dir);
// フォルダの文字を変更する(\ を / に変更する)
UnicodeString ChangeFolderSymbol(UnicodeString Str);
// Directory に使えない文字を削除する
UnicodeString CorrectDirString(UnicodeString Str, bool CanBackSlash);
// 数字以外の文字を削除する(正の整数のみ)
UnicodeString CorrectNumericString(UnicodeString Str);
// 数字以外の文字を削除する(オプション付き)
UnicodeString CorrectNumericString(UnicodeString Src, bool CanMinus, bool CanFloat, UnicodeString MaxN, UnicodeString MinN);
// 指定したファイルが指定したマスクを通るかどうか調べる
bool CheckMasks(UnicodeString FileName, UnicodeString Mask); // true ならマスクに含まれる
// フォルダを削除する
bool DeleteFolder(UnicodeString Dir);
// ファイルを移動する Srcフォルダから Destフォルダに Type(*.?) を移動する
bool MoveFiles(UnicodeString Src, UnicodeString Dest, UnicodeString Type, bool OverWrite);
// ファイルリストを取得する(Escキーで抜けられる)
bool GetFileLists(UnicodeString Src, TStringList *Dest, UnicodeString Mask, int Depth); // c:\windows\dest\*.dll のような形式で Src は指定する
bool GetFileLists_(UnicodeString Src, TStringList *Dest, UnicodeString Mask, int Depth, TStringList *TempSL, bool &Esc);
bool GetFileListsDialog(UnicodeString Src, TStringList *Dest, UnicodeString Mask, int Depth, TApplication *Application, TLabel *Label); // c:\windows\dest\*.dll のような形式で Src は指定する
bool GetFileListsDialog_(UnicodeString Src, TStringList *Dest, UnicodeString Mask, int Depth, TStringList *TempSL, bool &Esc, TApplication *Application, TLabel *Label);
// ファイルをコピーする(フォルダも含む)
bool CopyFiles(UnicodeString Src, UnicodeString Dest, UnicodeString Type, bool OverWrite);
// ファイルだけコピーする
bool CopyOnlyFiles(UnicodeString Src, UnicodeString Dest, UnicodeString Type, bool OverWrite);
void CopyFolderFiles(UnicodeString Src, UnicodeString Dest, UnicodeString Type);
// Src フォルダ内のファイルを削除してファイルが無くなればフォルダを削除
void DeleteFolderFiles(UnicodeString Src, UnicodeString Dest, UnicodeString Type);
// Src フォルダにあるファイルのうち Dest フォルダにあるものを Dest フォルダにコピーする
void ReplaceFolderFiles(UnicodeString Src, UnicodeString Dest, UnicodeString Type);
// 3種類のタイムスタンプをすべて指定した値にする
void SetAllTimeStamp(int Year, int Month, int Day, int Hour, int Minute, int Second, int Milliseconds, UnicodeString DestFileName);
// Src ファイルと同じ時間にタイムスタンプを設定する
void SetSameTimeAll(UnicodeString SrcFileName, UnicodeString DestFileName);
// 更新日時を取得する
void GetFileTimeStamp(UnicodeString FileName, FILETIME *fRefreshTime);
// ファイルを選択してエクスプローラーで表示
void SelectFileInExplorer(UnicodeString Src);
// ファイルサイズを取得する
size_t GetFileSize(UnicodeString Target);
// 指定したディレクトリの数だけディレクトリ文字列を削除
UnicodeString DeleteDirString(UnicodeString Dir, int Count);
// 相対パスを絶対パスに変換
UnicodeString GetAbsoluteFilePath(UnicodeString Root, UnicodeString Relative);
// (1) (2) 形式で重複しないファイル名を取得する
UnicodeString GetNonOverwrapFileName(UnicodeString Src);
// Msg からドロップされたファイル名を1つ取得する
UnicodeString GetDropFileName(TMessage &Msg);
UnicodeString GetDropFileName(TMessage &Msg, bool Original);
// リンクファイルから本体のファイルを取得する
UnicodeString GetFileFromLink(UnicodeString Path);
// 実行ファイルのリンクファイルを作成する
HRESULT CreateLink(UnicodeString OriginalFile, UnicodeString ShortCutFile, UnicodeString Params);
// 環境変数文字列を展開し、その文字列を定義された値に置き換えます %PATH% みたいなのを取得する
UnicodeString AsExpandEnvironmentStrings(UnicodeString Src);
// AsExpandEnviromentStrings の逆
UnicodeString AsPathUnExpandEnvStrings(UnicodeString Src);
// Src と Dest のフォルダを比較する Dest フォルダが無かった場合には強制作成する
bool SyncDir(UnicodeString SrcDir, UnicodeString DestDir, UnicodeString MaskStr, int Option);
// (SyncDir から呼ばれる) Src と Dest のフォルダを比較して(オプションによるが)新しいファイルのみを上書きコピーする
bool CheckDirNew(UnicodeString SrcDir, UnicodeString DestDir, UnicodeString MaskStr, int Option, UnicodeString Dir);
// (SyncDir から呼ばれる) Src と Dest のフォルダを比較して削除されたフォルダを削除する
bool CheckDirDeleted(UnicodeString SrcDir, UnicodeString DestDir, UnicodeString MaskStr, int Option, UnicodeString Dir);
// ダイアログを表示してフォルダを取得する
UnicodeString GetFolderByDialog(UnicodeString DefaultDir, HWND Handle, UnicodeString Message);
// ファイルをクリップボードにコピーペースト
void FilesToClipboard(HWND Handle, TStringList *Src, int Flag);
int FilesFromClipboard(TStringList *DestSL);
// ファイルをゴミ箱に移動する
bool DeleteFileToRecycle(UnicodeString DelFile, bool Confirm, HWND Handle);
bool DeleteFileToRecycle(TStringList *DelFiles, bool Confirm);
// ini ファイルのファイル名やフォルダを取得する
UnicodeString GetIniFolder(void);
UnicodeString GetIniFileName(UnicodeString IniName);
// ファイル名に使えない文字を得る -1:なし 0~:そのインデックスの文字
int CheckFileIrregularChar(UnicodeString FileName);
// ファイル名から省略したファイル名を取得する C:\Pool\test\gone\done\abc.txt → done\abc.txt
UnicodeString __fastcall GetShortFileName(UnicodeString Temp, int Count);
// フォルダを数えた数だけ上がる
UnicodeString __fastcall DirectoryUpward(UnicodeString FullPath, int Count);
//----------------------------------------------------------------
//
// その他
//
//----------------------------------------------------------------
// Dest 文字が SrcTS 文字郡内にあるかどうかチェックする
bool CheckStrings(TStringList *SrcTS, UnicodeString Dest);
bool CheckStrings(TStringList *SrcTS, UnicodeString Dest, int &Pos);
UnicodeString CheckStringValue(TStringList *SrcTS, UnicodeString Dest);
UnicodeString CheckStringValue(TStringList *SrcTS, UnicodeString Dest, int &Pos);
// Dest文字列=値 の行を削除する Pos はその行
bool DeleteStringValue(TStringList *SrcTS, UnicodeString Dest, int &Pos);
// 数値を取得
int GetIntegerValue(TStringList *SrcTS, UnicodeString Dest, int Src, int Low, int Hi);
int GetIntegerValue(TStringList *SrcTS, UnicodeString Dest, int Src, int Low, int Hi, int &Pos);
double GetDoubleValue(TStringList *SrcTS, UnicodeString Dest, double Src, double Low, double Hi);
double GetDoubleValue(TStringList *SrcTS, UnicodeString Dest, double Src, double Low, double Hi, int &Pos);
// Bool 値を取得
bool GetBoolValue(TStringList *SrcTS, UnicodeString Dest, bool Src);
bool GetBoolValue(TStringList *SrcTS, UnicodeString Dest, bool Src, int &Pos);
// 文字列を取得
UnicodeString GetStringValue(TStringList *SrcTS, UnicodeString Dest, UnicodeString Src);
UnicodeString GetStringValue(TStringList *SrcTS, UnicodeString Dest, UnicodeString Src, int &Pos);
// Dest 文字が SrcUS 文字郡内にあるかどうかチェックする
bool CheckTabStrings(UnicodeString SrcUS, UnicodeString Dest);
UnicodeString CheckTabStringValue(UnicodeString SrcUS, UnicodeString Dest);
// 数値を取得
int GetTabIntegerValue(UnicodeString SrcUS, UnicodeString Dest, int Src, int Low, int Hi);
double GetTabDoubleValue(UnicodeString SrcUS, UnicodeString Dest, double Src, double Low, double Hi);
// Bool 値を取得
bool GetTabBoolValue(UnicodeString SrcUS, UnicodeString Dest, bool Src);
// 文字列を取得
UnicodeString GetTabStringValue(UnicodeString SrcUS, UnicodeString Dest, UnicodeString Src);
// 数値をメモリサイズの文字列に変更する 1024=1Kbyte のように変換される
UnicodeString IntToMemorySize(__int64 tSize);
// 数値を桁数有りの文字列に変換する 5 = 005 のように変換される
UnicodeString IntToDigitStr(int Value, int Digit);
// 前面にウィンドウを移動する
void SetAbsoluteForegroundWindow(HWND hWnd);
// パディングサイズを計算する
inline int CalPaddingSize(int SrcSize, int SegSize){return((SrcSize + (SrcSize - 1)) / SegSize);};
//----------------------------------------------------------------
//
// CDragDrop ドラッグドロップ関係
//
//----------------------------------------------------------------
class CDragDrop
{
public:
void __fastcall Init(TWinControl *Control);
void __fastcall Release(TWinControl *Control);
UnicodeString __fastcall GetDropFileName(TMessage &Msg);
UnicodeString __fastcall GetDropFileName(TMessage &Msg, bool Original);
int __fastcall GetDropFileNames(TMessage &Msg, TStringList *TempSL);
int __fastcall GetDropFileNames(TMessage &Msg, TStringList *TempSL, bool Original);
UnicodeString __fastcall GetFileFromLink(UnicodeString Path);
TWndMethod oldWinProc;
};
/*
// Header
void __fastcall DropProc(TMessage& Msg);
CDragDrop *Dropper;
// Init
Dropper = new CDragDrop;
Dropper->Init(コントロールへのポインタ);
コントロールへのポインタ->WindowProc = DropProc; // フォームのほうに記入
// Release
Dropper->Release(コントロールへのポインタ);
delete Dropper;
void __fastcall TMainForm::DropProc(TMessage& Msg)
{
if(Msg.Msg == WM_DROPFILES)
{
UnicodeString FileName = Dropper->GetDropFileName(Msg);
if(ExtractFileExt(FileName) == ".dmp")
{
// 処理する
}
}
else
Dropper->oldWinProc(Msg);
}
*/
//----------------------------------------------------------------
//
// CCriticalSection 排他処理
//
//----------------------------------------------------------------
class CCriticalSection
{
public:
CCriticalSection(void);
~CCriticalSection(void);
bool Enter(void);
bool Leave(void);
private:
CRITICAL_SECTION section;
};
//----------------------------------------------------------------
//
// CBinaryBlock 文字列をバイナリのデータに変換する
//
//----------------------------------------------------------------
class CBinaryBlock
{
// CBinaryBlock クラス。文字列をバイナリのデータに変換する
public:
CBinaryBlock(void);
~CBinaryBlock(void);
bool StrToBin(UnicodeString SrcData);
bool StrToBin(UnicodeString SrcData, int &TempSize);
void *BinaryData;
private:
size_t GetDataSize(UnicodeString Data);
void SetData(UnicodeString Data);
};
//----------------------------------------------------------------
//
// レジストリアクセスクラス
//
//----------------------------------------------------------------
class CReg
{
private:
HKEY FRootKey;
HKEY FHKey;
bool FOpened;
public:
CReg();
virtual ~CReg();
bool OpenKey(const UnicodeString KeyName, bool IsCreate);
bool CreateKey(const UnicodeString KeyName);
void CloseKey(void);
bool DeleteKey(const UnicodeString Key);
private:
DWORD RegDeleteKeyNT(HKEY hStartKey, LPTSTR pKeyName);
public:
void WriteBool(const UnicodeString Name, const bool Flag);
void WriteInteger(const UnicodeString Name, const int Value);
void WriteString(const UnicodeString Name, const UnicodeString Str);
void WriteData(const UnicodeString Name, const void *Data, int Size);
bool ReadBool(const UnicodeString Name, bool Def);
int ReadInteger(const UnicodeString Name, int Def);
UnicodeString ReadString(const UnicodeString Name, const UnicodeString Def);
bool ReadData(const UnicodeString Name, void *Buff, int size, const void *Def);
bool DeleteValue(const UnicodeString Name);
__property HKEY RootKey = {read=FRootKey, write=FRootKey};
};
//----------------------------------------------------------------
//
// Unicode 対応画像クラス
//
//----------------------------------------------------------------
class TUCFileStream : public THandleStream
{
public:
virtual __fastcall TUCFileStream(UnicodeString FileName, DWORD AccessMode, DWORD ShareMode);
virtual __fastcall ~TUCFileStream(void);
};
class TUCBitmap : public Graphics::TBitmap
{
public:
void __fastcall LoadFromFile(const UnicodeString FileName);
void __fastcall SaveToFile(const UnicodeString FileName);
};
class TUCJPEGImage : public TJPEGImage
{
public:
void __fastcall LoadFromFile(const UnicodeString FileName);
void __fastcall SaveToFile(const UnicodeString FileName);
virtual void __fastcall SetPalette(void *){};
virtual void __fastcall LoadFromClipboardFormat(unsigned short, unsigned int, void *){};
virtual void __fastcall SaveToClipboardFormat(unsigned short&, unsigned int&, void *&){};
};
class TUCPngImage : public TPngImage
{
public:
void __fastcall LoadFromFile(const UnicodeString FileName);
void __fastcall SaveToFile(const UnicodeString FileName);
virtual void __fastcall SetPalette(void *){};
virtual void __fastcall LoadFromClipboardFormat(unsigned short, unsigned int, void *){};
virtual void __fastcall SaveToClipboardFormat(unsigned short&, unsigned int&, void *&){};
};
class TUCGIFImage : public TGIFImage
{
public:
void __fastcall LoadFromFile(const UnicodeString FileName);
void __fastcall SaveToFile(const UnicodeString FileName);
virtual void __fastcall SetPalette(void *){};
virtual void __fastcall LoadFromClipboardFormat(unsigned short, unsigned int, void *){};
virtual void __fastcall SaveToClipboardFormat(unsigned short&, unsigned int&, void *&){};
};
//----------------------------------------------------------------
//
// ファイルの更新チェッククラス
//
//----------------------------------------------------------------
/*
※CreateEvent 関数が失敗するために使用不可能
class CCheckFileChanged : public TThread
{
private:
protected:
void __fastcall Execute();
public:
UnicodeString FileName;
HANDLE hNotify[2];
int FileAgeValue;
TForm *Form;
UINT MessageValue;
bool Changed;
__fastcall CCheckFileChanged(bool CreateSuspended);
__fastcall ~CCheckFileChanged(void);
bool __fastcall SetMessageParameter(TForm *aForm, UnicodeString aMessageString);
bool __fastcall Restart(void);
bool __fastcall SetCheckFile(UnicodeString NewFileName);
bool __fastcall StopChecking(void);
};
*/
#endif
| [
"downspade@downspade.com"
] | downspade@downspade.com |
b55f756048f4ed5dc48ca75816856dbf7d769ae4 | 9618aeab5df07ffd1d4f204c8cc3af1a2345d420 | /chrome/browser/web_applications/web_app_install_manager_unittest.cc | 20ccb8c9738d201bf9dc607875abec1bae5959e9 | [
"BSD-3-Clause"
] | permissive | dmt3o/chromium | 3709c0c73e37aec82dc44d2bbe234d1f1829c32f | d368d5937f235033bd495a57005587ab275536b4 | refs/heads/master | 2022-12-19T04:43:33.801508 | 2020-10-02T02:56:57 | 2020-10-02T02:56:57 | 279,344,900 | 0 | 0 | BSD-3-Clause | 2020-10-02T02:50:00 | 2020-07-13T15:43:43 | null | UTF-8 | C++ | false | false | 62,962 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/web_applications/web_app_install_manager.h"
#include <memory>
#include <vector>
#include "base/bind.h"
#include "base/callback.h"
#include "base/containers/flat_set.h"
#include "base/run_loop.h"
#include "base/strings/nullable_string16.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/bind_test_util.h"
#include "chrome/browser/web_applications/components/externally_installed_web_app_prefs.h"
#include "chrome/browser/web_applications/components/web_app_constants.h"
#include "chrome/browser/web_applications/components/web_app_helpers.h"
#include "chrome/browser/web_applications/components/web_app_icon_generator.h"
#include "chrome/browser/web_applications/components/web_app_utils.h"
#include "chrome/browser/web_applications/test/test_app_shortcut_manager.h"
#include "chrome/browser/web_applications/test/test_data_retriever.h"
#include "chrome/browser/web_applications/test/test_file_handler_manager.h"
#include "chrome/browser/web_applications/test/test_file_utils.h"
#include "chrome/browser/web_applications/test/test_web_app_database_factory.h"
#include "chrome/browser/web_applications/test/test_web_app_registry_controller.h"
#include "chrome/browser/web_applications/test/test_web_app_ui_manager.h"
#include "chrome/browser/web_applications/test/test_web_app_url_loader.h"
#include "chrome/browser/web_applications/test/web_app_icon_test_utils.h"
#include "chrome/browser/web_applications/test/web_app_install_observer.h"
#include "chrome/browser/web_applications/test/web_app_test.h"
#include "chrome/browser/web_applications/web_app.h"
#include "chrome/browser/web_applications/web_app_icon_manager.h"
#include "chrome/browser/web_applications/web_app_install_finalizer.h"
#include "chrome/browser/web_applications/web_app_install_task.h"
#include "chrome/browser/web_applications/web_app_registrar.h"
#include "chrome/browser/web_applications/web_app_sync_bridge.h"
#include "chrome/test/base/testing_profile.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/mojom/manifest/display_mode.mojom-shared.h"
#include "third_party/skia/include/core/SkColor.h"
#include "url/gurl.h"
namespace web_app {
namespace {
constexpr SquareSizePx kDefaultImageSize = 100;
// TODO(https://crbug.com/1042727): Fix test GURL scoping and remove this getter
// function.
GURL IconUrl() {
return GURL("https://example.com/app.ico");
}
base::NullableString16 ToNullableUTF16(const std::string& str) {
return base::NullableString16(base::UTF8ToUTF16(str), false);
}
std::unique_ptr<WebApplicationInfo> ConvertWebAppToRendererWebApplicationInfo(
const WebApp& app) {
auto web_application_info = std::make_unique<WebApplicationInfo>();
// Most fields are expected to be populated by a manifest data in a subsequent
// override install process data flow. TODO(loyso): Make it more robust.
web_application_info->description = base::UTF8ToUTF16(app.description());
// |open_as_window| is a user's display mode value and it is typically
// populated by a UI dialog in production code. We set it here for testing
// purposes.
web_application_info->open_as_window =
app.user_display_mode() == DisplayMode::kStandalone;
return web_application_info;
}
std::vector<blink::Manifest::ImageResource> ConvertWebAppIconsToImageResources(
const WebApp& app) {
std::vector<blink::Manifest::ImageResource> icons;
for (const WebApplicationIconInfo& icon_info : app.icon_infos()) {
blink::Manifest::ImageResource icon;
icon.src = icon_info.url;
icon.purpose.push_back(blink::Manifest::ImageResource::Purpose::ANY);
icon.sizes.push_back(
gfx::Size(icon_info.square_size_px.value_or(kDefaultImageSize),
icon_info.square_size_px.value_or(kDefaultImageSize)));
icons.push_back(std::move(icon));
}
return icons;
}
std::unique_ptr<blink::Manifest> ConvertWebAppToManifest(const WebApp& app) {
auto manifest = std::make_unique<blink::Manifest>();
manifest->start_url = app.launch_url();
manifest->scope = app.launch_url();
manifest->short_name = ToNullableUTF16("Short Name to be overriden.");
manifest->name = ToNullableUTF16(app.name());
manifest->theme_color = app.theme_color();
manifest->display = app.display_mode();
manifest->icons = ConvertWebAppIconsToImageResources(app);
return manifest;
}
IconsMap ConvertWebAppIconsToIconsMap(const WebApp& app) {
IconsMap icons_map;
for (const WebApplicationIconInfo& icon_info : app.icon_infos()) {
icons_map[icon_info.url] = {CreateSquareIcon(
icon_info.square_size_px.value_or(kDefaultImageSize), SK_ColorBLACK)};
}
return icons_map;
}
std::unique_ptr<WebAppDataRetriever> ConvertWebAppToDataRetriever(
const WebApp& app) {
auto data_retriever = std::make_unique<TestDataRetriever>();
data_retriever->SetRendererWebApplicationInfo(
ConvertWebAppToRendererWebApplicationInfo(app));
data_retriever->SetManifest(ConvertWebAppToManifest(app),
/*is_installable=*/true);
data_retriever->SetIcons(ConvertWebAppIconsToIconsMap(app));
return std::unique_ptr<WebAppDataRetriever>(std::move(data_retriever));
}
std::unique_ptr<WebAppDataRetriever> CreateEmptyDataRetriever() {
auto data_retriever = std::make_unique<TestDataRetriever>();
return std::unique_ptr<WebAppDataRetriever>(std::move(data_retriever));
}
std::unique_ptr<WebAppInstallTask> CreateDummyTask() {
return std::make_unique<WebAppInstallTask>(
/*profile=*/nullptr,
/*registrar=*/nullptr,
/*shortcut_manager=*/nullptr,
/*file_handler_manager=*/nullptr,
/*install_finalizer=*/nullptr,
/*data_retriever=*/nullptr);
}
} // namespace
class WebAppInstallManagerTest : public WebAppTest {
public:
void SetUp() override {
WebAppTest::SetUp();
externally_installed_app_prefs_ =
std::make_unique<ExternallyInstalledWebAppPrefs>(profile()->GetPrefs());
test_registry_controller_ =
std::make_unique<TestWebAppRegistryController>();
test_registry_controller_->SetUp(profile());
auto file_utils = std::make_unique<TestFileUtils>();
file_utils_ = file_utils.get();
icon_manager_ = std::make_unique<WebAppIconManager>(profile(), registrar(),
std::move(file_utils));
install_finalizer_ = std::make_unique<WebAppInstallFinalizer>(
profile(), icon_manager_.get(), /*legacy_finalizer=*/nullptr);
shortcut_manager_ = std::make_unique<TestAppShortcutManager>(profile());
file_handler_manager_ = std::make_unique<TestFileHandlerManager>(profile());
install_manager_ = std::make_unique<WebAppInstallManager>(profile());
install_manager_->SetSubsystems(®istrar(), shortcut_manager_.get(),
file_handler_manager_.get(),
install_finalizer_.get());
auto test_url_loader = std::make_unique<TestWebAppUrlLoader>();
test_url_loader_ = test_url_loader.get();
install_manager_->SetUrlLoaderForTesting(std::move(test_url_loader));
ui_manager_ = std::make_unique<TestWebAppUiManager>();
install_finalizer_->SetSubsystems(
®istrar(), ui_manager_.get(),
&test_registry_controller_->sync_bridge());
}
void TearDown() override {
DestroyManagers();
WebAppTest::TearDown();
}
WebAppRegistrar& registrar() { return controller().registrar(); }
WebAppInstallManager& install_manager() { return *install_manager_; }
TestAppShortcutManager& shortcut_manager() { return *shortcut_manager_; }
TestFileHandlerManager& file_handler_manager() {
return *file_handler_manager_;
}
WebAppInstallFinalizer& finalizer() { return *install_finalizer_; }
WebAppIconManager& icon_manager() { return *icon_manager_; }
TestWebAppUrlLoader& url_loader() { return *test_url_loader_; }
TestFileUtils& file_utils() {
DCHECK(file_utils_);
return *file_utils_;
}
TestWebAppRegistryController& controller() {
return *test_registry_controller_;
}
ExternallyInstalledWebAppPrefs& externally_installed_app_prefs() {
return *externally_installed_app_prefs_;
}
std::unique_ptr<WebApplicationInfo> CreateWebAppInfo(const GURL& url) {
auto web_app_info = std::make_unique<WebApplicationInfo>();
web_app_info->app_url = url;
WebApplicationIconInfo icon_info;
icon_info.url = IconUrl();
icon_info.square_size_px = icon_size::k256;
web_app_info->icon_infos.push_back(std::move(icon_info));
return web_app_info;
}
std::unique_ptr<WebApp> CreateWebApp(const GURL& launch_url,
Source::Type source,
DisplayMode user_display_mode) {
const AppId app_id = GenerateAppIdFromURL(launch_url);
auto web_app = std::make_unique<WebApp>(app_id);
web_app->SetLaunchUrl(launch_url);
web_app->AddSource(source);
web_app->SetUserDisplayMode(user_display_mode);
return web_app;
}
std::unique_ptr<WebApp> CreateWebAppInSyncInstall(
const GURL& launch_url,
const std::string& app_name,
DisplayMode user_display_mode,
SkColor theme_color,
bool locally_installed,
const GURL& scope,
const std::vector<WebApplicationIconInfo>& icon_infos) {
auto web_app = CreateWebApp(launch_url, Source::kSync, user_display_mode);
web_app->SetIsInSyncInstall(true);
web_app->SetIsLocallyInstalled(locally_installed);
WebApp::SyncFallbackData sync_fallback_data;
sync_fallback_data.name = app_name;
sync_fallback_data.theme_color = theme_color;
sync_fallback_data.scope = scope;
sync_fallback_data.icon_infos = icon_infos;
web_app->SetSyncFallbackData(std::move(sync_fallback_data));
return web_app;
}
void InitEmptyRegistrar() {
controller().Init();
install_finalizer_->Start();
install_manager_->Start();
}
std::set<AppId> InitRegistrarWithRegistry(const Registry& registry) {
std::set<AppId> app_ids;
for (auto& kv : registry)
app_ids.insert(kv.second->app_id());
controller().database_factory().WriteRegistry(registry);
controller().Init();
install_finalizer_->Start();
install_manager_->Start();
return app_ids;
}
AppId InitRegistrarWithApp(std::unique_ptr<WebApp> app) {
DCHECK(registrar().is_empty());
const AppId app_id = app->app_id();
Registry registry;
registry.emplace(app_id, std::move(app));
InitRegistrarWithRegistry(registry);
return app_id;
}
struct InstallResult {
AppId app_id;
InstallResultCode code;
};
InstallResult InstallWebAppFromManifestWithFallback() {
InstallResult result;
base::RunLoop run_loop;
install_manager().InstallWebAppFromManifestWithFallback(
web_contents(), /*force_shortcut_app=*/false,
WebappInstallSource::OMNIBOX_INSTALL_ICON,
base::BindOnce(TestAcceptDialogCallback),
base::BindLambdaForTesting(
[&](const AppId& installed_app_id, InstallResultCode code) {
result.app_id = installed_app_id;
result.code = code;
run_loop.Quit();
}));
run_loop.Run();
return result;
}
InstallResult InstallWebAppsAfterSync(std::vector<WebApp*> web_apps) {
InstallResult result;
base::RunLoop run_loop;
install_manager().InstallWebAppsAfterSync(
std::move(web_apps),
base::BindLambdaForTesting(
[&](const AppId& app_id, InstallResultCode code) {
result.app_id = app_id;
result.code = code;
run_loop.Quit();
}));
run_loop.Run();
return result;
}
InstallResult InstallBookmarkAppFromSync(
const AppId& bookmark_app_id,
std::unique_ptr<WebApplicationInfo> server_web_application_info) {
InstallResult result;
base::RunLoop run_loop;
install_manager().InstallBookmarkAppFromSync(
bookmark_app_id, std::move(server_web_application_info),
base::BindLambdaForTesting(
[&](const AppId& installed_app_id, InstallResultCode code) {
result.app_id = installed_app_id;
result.code = code;
run_loop.Quit();
}));
run_loop.Run();
return result;
}
AppId InstallBookmarkAppFromSync(const GURL& url,
bool server_open_as_window) {
const AppId bookmark_app_id = GenerateAppIdFromURL(url);
auto server_web_application_info = std::make_unique<WebApplicationInfo>();
server_web_application_info->app_url = url;
server_web_application_info->open_as_window = server_open_as_window;
InstallResult result = InstallBookmarkAppFromSync(
bookmark_app_id, std::move(server_web_application_info));
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, result.code);
return result.app_id;
}
std::map<SquareSizePx, SkBitmap> ReadIcons(
const AppId& app_id,
std::vector<SquareSizePx> sizes_px) {
std::map<SquareSizePx, SkBitmap> result;
base::RunLoop run_loop;
icon_manager().ReadIcons(
app_id, sizes_px,
base::BindLambdaForTesting(
[&](std::map<SquareSizePx, SkBitmap> icon_bitmaps) {
result = std::move(icon_bitmaps);
run_loop.Quit();
}));
run_loop.Run();
return result;
}
int GetNumFullyInstalledApps() const {
int num_apps = 0;
for (const WebApp& app : test_registry_controller_->registrar().AllApps()) {
if (!app.is_in_sync_install())
++num_apps;
}
return num_apps;
}
bool UninstallExternalWebAppByUrl(
const GURL& app_url,
ExternalInstallSource external_install_source) {
bool result = false;
base::RunLoop run_loop;
finalizer().UninstallExternalWebAppByUrl(
app_url, external_install_source,
base::BindLambdaForTesting([&](bool uninstalled) {
result = uninstalled;
run_loop.Quit();
}));
run_loop.Run();
return result;
}
bool UninstallWebAppFromSyncByUser(const AppId& app_id) {
bool result = false;
base::RunLoop run_loop;
finalizer().UninstallWebAppFromSyncByUser(
app_id, base::BindLambdaForTesting([&](bool uninstalled) {
result = uninstalled;
run_loop.Quit();
}));
run_loop.Run();
return result;
}
bool UninstallExternalAppByUser(const AppId& app_id) {
bool result = false;
base::RunLoop run_loop;
finalizer().UninstallExternalAppByUser(
app_id, base::BindLambdaForTesting([&](bool uninstalled) {
result = uninstalled;
run_loop.Quit();
}));
run_loop.Run();
return result;
}
void UseDefaultDataRetriever(const GURL& launch_url) {
install_manager().SetDataRetrieverFactoryForTesting(
base::BindLambdaForTesting([launch_url]() {
auto data_retriever = std::make_unique<TestDataRetriever>();
data_retriever->BuildDefaultDataToRetrieve(launch_url, launch_url);
return std::unique_ptr<WebAppDataRetriever>(
std::move(data_retriever));
}));
}
void DestroyManagers() {
// The reverse order of creation:
ui_manager_.reset();
install_manager_.reset();
shortcut_manager_.reset();
install_finalizer_.reset();
icon_manager_.reset();
test_registry_controller_.reset();
externally_installed_app_prefs_.reset();
test_url_loader_ = nullptr;
file_utils_ = nullptr;
}
private:
std::unique_ptr<TestWebAppRegistryController> test_registry_controller_;
std::unique_ptr<WebAppIconManager> icon_manager_;
std::unique_ptr<TestAppShortcutManager> shortcut_manager_;
std::unique_ptr<TestFileHandlerManager> file_handler_manager_;
std::unique_ptr<WebAppInstallManager> install_manager_;
std::unique_ptr<WebAppInstallFinalizer> install_finalizer_;
std::unique_ptr<TestWebAppUiManager> ui_manager_;
std::unique_ptr<ExternallyInstalledWebAppPrefs>
externally_installed_app_prefs_;
// A weak ptr. The original is owned by install_manager_.
TestWebAppUrlLoader* test_url_loader_ = nullptr;
// Owned by icon_manager_:
TestFileUtils* file_utils_ = nullptr;
};
TEST_F(WebAppInstallManagerTest,
InstallWebAppsAfterSync_TwoConcurrentInstallsAreRunInOrder) {
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded,
WebAppUrlLoader::Result::kUrlLoaded});
const GURL url1{"https://example.com/path"};
const AppId app1_id = GenerateAppIdFromURL(url1);
const GURL url2{"https://example.org/path"};
const AppId app2_id = GenerateAppIdFromURL(url2);
{
std::unique_ptr<WebApp> app1 = CreateWebAppInSyncInstall(
url1, "Name1 from sync", DisplayMode::kStandalone, SK_ColorRED,
/*is_locally_installed=*/false, /*scope=*/GURL(), /*icon_infos=*/{});
std::unique_ptr<WebApp> app2 = CreateWebAppInSyncInstall(
url2, "Name2 from sync", DisplayMode::kBrowser, SK_ColorGREEN,
/*is_locally_installed=*/true, /*scope=*/GURL(), /*icon_infos=*/{});
Registry registry;
registry.emplace(app1_id, std::move(app1));
registry.emplace(app2_id, std::move(app2));
InitRegistrarWithRegistry(registry);
}
// 1 InstallTask == 1 DataRetriever, their lifetime matches.
base::flat_set<TestDataRetriever*> task_data_retrievers;
base::RunLoop app1_installed_run_loop;
base::RunLoop app2_installed_run_loop;
enum class Event {
Task1_Queued,
Task2_Queued,
Task1_Started,
Task1_Completed,
App1_CallbackCalled,
Task2_Started,
Task2_Completed,
App2_CallbackCalled,
};
std::vector<Event> event_order;
int task_index = 0;
install_manager().SetDataRetrieverFactoryForTesting(
base::BindLambdaForTesting([&]() {
auto data_retriever = std::make_unique<TestDataRetriever>();
task_index++;
GURL launch_url = task_index == 1 ? url1 : url2;
data_retriever->BuildDefaultDataToRetrieve(launch_url,
/*scope=*/launch_url);
TestDataRetriever* data_retriever_ptr = data_retriever.get();
task_data_retrievers.insert(data_retriever_ptr);
event_order.push_back(task_index == 1 ? Event::Task1_Queued
: Event::Task2_Queued);
// Every InstallTask starts with WebAppDataRetriever::GetIcons step.
data_retriever->SetGetIconsDelegate(base::BindLambdaForTesting(
[&, task_index](content::WebContents* web_contents,
const std::vector<GURL>& icon_urls,
bool skip_page_favicons) {
event_order.push_back(task_index == 1 ? Event::Task1_Started
: Event::Task2_Started);
IconsMap icons_map;
AddIconToIconsMap(IconUrl(), icon_size::k256, SK_ColorBLUE,
&icons_map);
return icons_map;
}));
// Every InstallTask ends with WebAppDataRetriever destructor.
data_retriever->SetDestructionCallback(
base::BindLambdaForTesting([&task_data_retrievers, &event_order,
data_retriever_ptr, task_index]() {
event_order.push_back(task_index == 1 ? Event::Task1_Completed
: Event::Task2_Completed);
task_data_retrievers.erase(data_retriever_ptr);
}));
return std::unique_ptr<WebAppDataRetriever>(std::move(data_retriever));
}));
EXPECT_FALSE(install_manager().has_web_contents_for_testing());
WebApp* web_app1 =
controller().mutable_registrar().GetAppByIdMutable(app1_id);
WebApp* web_app2 =
controller().mutable_registrar().GetAppByIdMutable(app2_id);
ASSERT_TRUE(web_app1);
ASSERT_TRUE(web_app2);
url_loader().SetNextLoadUrlResult(url1, WebAppUrlLoader::Result::kUrlLoaded);
url_loader().SetNextLoadUrlResult(url2, WebAppUrlLoader::Result::kUrlLoaded);
// Enqueue a request to install the 1st app.
install_manager().InstallWebAppsAfterSync(
{web_app1}, base::BindLambdaForTesting([&](const AppId& installed_app_id,
InstallResultCode code) {
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, code);
EXPECT_EQ(app1_id, installed_app_id);
event_order.push_back(Event::App1_CallbackCalled);
app1_installed_run_loop.Quit();
}));
EXPECT_TRUE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(0, GetNumFullyInstalledApps());
EXPECT_EQ(1u, task_data_retrievers.size());
// Immediately enqueue a request to install the 2nd app, WebContents is not
// ready.
install_manager().InstallWebAppsAfterSync(
{web_app2}, base::BindLambdaForTesting([&](const AppId& installed_app_id,
InstallResultCode code) {
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, code);
EXPECT_EQ(app2_id, installed_app_id);
event_order.push_back(Event::App2_CallbackCalled);
app2_installed_run_loop.Quit();
}));
EXPECT_TRUE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(2u, task_data_retrievers.size());
EXPECT_EQ(0, GetNumFullyInstalledApps());
// Wait for the 1st app installed.
app1_installed_run_loop.Run();
EXPECT_TRUE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(1u, task_data_retrievers.size());
EXPECT_EQ(1, GetNumFullyInstalledApps());
// Wait for the 2nd app installed.
app2_installed_run_loop.Run();
EXPECT_FALSE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(0u, task_data_retrievers.size());
EXPECT_EQ(2, GetNumFullyInstalledApps());
const std::vector<Event> expected_event_order{
Event::Task1_Queued, Event::Task2_Queued, Event::Task1_Started,
Event::Task1_Completed, Event::App1_CallbackCalled, Event::Task2_Started,
Event::Task2_Completed, Event::App2_CallbackCalled,
};
EXPECT_EQ(expected_event_order, event_order);
}
TEST_F(WebAppInstallManagerTest,
InstallWebAppsAfterSync_InstallManagerDestroyed) {
const GURL launch_url{"https://example.com/path"};
const AppId app_id = GenerateAppIdFromURL(launch_url);
{
std::unique_ptr<WebApp> app_in_sync_install = CreateWebAppInSyncInstall(
launch_url, "Name from sync", DisplayMode::kStandalone, SK_ColorRED,
/*is_locally_installed=*/true, /*scope=*/GURL(), /*icon_infos=*/{});
InitRegistrarWithApp(std::move(app_in_sync_install));
}
base::RunLoop run_loop;
install_manager().SetDataRetrieverFactoryForTesting(
base::BindLambdaForTesting([&]() {
auto data_retriever = std::make_unique<TestDataRetriever>();
data_retriever->BuildDefaultDataToRetrieve(launch_url,
/*scope=*/launch_url);
// Every InstallTask starts with WebAppDataRetriever::GetIcons step.
data_retriever->SetGetIconsDelegate(base::BindLambdaForTesting(
[&](content::WebContents* web_contents,
const std::vector<GURL>& icon_urls, bool skip_page_favicons) {
run_loop.Quit();
IconsMap icons_map;
AddIconToIconsMap(IconUrl(), icon_size::k256, SK_ColorBLUE,
&icons_map);
return icons_map;
}));
return std::unique_ptr<WebAppDataRetriever>(std::move(data_retriever));
}));
WebApp* web_app = controller().mutable_registrar().GetAppByIdMutable(app_id);
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
url_loader().SetNextLoadUrlResult(launch_url,
WebAppUrlLoader::Result::kUrlLoaded);
bool callback_called = false;
install_manager().InstallWebAppsAfterSync(
{web_app}, base::BindLambdaForTesting(
[&](const AppId& installed_app_id,
InstallResultCode code) { callback_called = true; }));
EXPECT_TRUE(install_manager().has_web_contents_for_testing());
// Wait for the task to start.
run_loop.Run();
EXPECT_TRUE(install_manager().has_web_contents_for_testing());
// Simulate Profile getting destroyed.
DestroyManagers();
EXPECT_FALSE(callback_called);
}
TEST_F(WebAppInstallManagerTest, InstallWebAppsAfterSync_Success) {
const std::string url_path{"https://example.com/path"};
const GURL url{url_path};
#if defined(OS_CHROMEOS)
bool expect_locally_installed = true;
#else // !defined(OS_CHROMEOS)
bool expect_locally_installed = false;
#endif
const std::unique_ptr<WebApp> expected_app =
CreateWebApp(url, Source::kSync,
/*user_display_mode=*/DisplayMode::kStandalone);
expected_app->SetIsInSyncInstall(false);
expected_app->SetScope(url);
expected_app->SetName("Name");
expected_app->SetIsLocallyInstalled(expect_locally_installed);
expected_app->SetDescription("Description");
expected_app->SetThemeColor(SK_ColorCYAN);
expected_app->SetDisplayMode(DisplayMode::kBrowser);
std::vector<WebApplicationIconInfo> icon_infos;
std::vector<int> sizes;
for (int size : SizesToGenerate()) {
WebApplicationIconInfo icon_info;
icon_info.square_size_px = size;
icon_info.url =
GURL{url_path + "/icon" + base::NumberToString(size) + ".png"};
icon_infos.push_back(std::move(icon_info));
sizes.push_back(size);
}
expected_app->SetIconInfos(std::move(icon_infos));
expected_app->SetDownloadedIconSizes(std::move(sizes));
{
WebApp::SyncFallbackData sync_fallback_data;
sync_fallback_data.name = "Name";
sync_fallback_data.theme_color = SK_ColorCYAN;
sync_fallback_data.scope = url;
sync_fallback_data.icon_infos = expected_app->icon_infos();
expected_app->SetSyncFallbackData(std::move(sync_fallback_data));
}
std::unique_ptr<const WebApp> app_in_sync_install = CreateWebAppInSyncInstall(
expected_app->launch_url(), "Name from sync",
expected_app->user_display_mode(), SK_ColorRED,
expected_app->is_locally_installed(), expected_app->scope(),
expected_app->icon_infos());
// Init using a copy.
InitRegistrarWithApp(std::make_unique<WebApp>(*app_in_sync_install));
WebApp* app = controller().mutable_registrar().GetAppByIdMutable(
expected_app->app_id());
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
url_loader().SetNextLoadUrlResult(url, WebAppUrlLoader::Result::kUrlLoaded);
install_manager().SetDataRetrieverFactoryForTesting(
base::BindLambdaForTesting([&expected_app]() {
return ConvertWebAppToDataRetriever(*expected_app);
}));
InstallResult result = InstallWebAppsAfterSync({app});
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, result.code);
EXPECT_EQ(app->app_id(), result.app_id);
EXPECT_EQ(1u, registrar().GetAppIds().size());
EXPECT_EQ(app, registrar().GetAppById(expected_app->app_id()));
EXPECT_NE(*app_in_sync_install, *app);
EXPECT_NE(app_in_sync_install->sync_fallback_data(),
app->sync_fallback_data());
EXPECT_EQ(*expected_app, *app);
}
TEST_F(WebAppInstallManagerTest, InstallWebAppsAfterSync_Fallback) {
const GURL url{"https://example.com/path"};
#if defined(OS_CHROMEOS)
bool expect_locally_installed = true;
#else // !defined(OS_CHROMEOS)
bool expect_locally_installed = false;
#endif
const std::unique_ptr<WebApp> expected_app =
CreateWebApp(url, Source::kSync,
/*user_display_mode=*/DisplayMode::kBrowser);
expected_app->SetIsInSyncInstall(false);
expected_app->SetName("Name from sync");
expected_app->SetScope(url);
expected_app->SetDisplayMode(DisplayMode::kBrowser);
expected_app->SetIsLocallyInstalled(expect_locally_installed);
expected_app->SetThemeColor(SK_ColorRED);
// |scope| and |description| are empty here. |display_mode| is |kUndefined|.
std::vector<WebApplicationIconInfo> icon_infos;
std::vector<int> sizes;
for (int size : SizesToGenerate()) {
WebApplicationIconInfo icon_info;
icon_info.square_size_px = size;
icon_info.url =
GURL{url.spec() + "/icon" + base::NumberToString(size) + ".png"};
icon_infos.push_back(std::move(icon_info));
sizes.push_back(size);
}
expected_app->SetIconInfos(std::move(icon_infos));
expected_app->SetDownloadedIconSizes(std::move(sizes));
expected_app->SetIsGeneratedIcon(true);
{
WebApp::SyncFallbackData sync_fallback_data;
sync_fallback_data.name = "Name from sync";
sync_fallback_data.theme_color = SK_ColorRED;
sync_fallback_data.scope = expected_app->scope();
sync_fallback_data.icon_infos = expected_app->icon_infos();
expected_app->SetSyncFallbackData(std::move(sync_fallback_data));
}
std::unique_ptr<const WebApp> app_in_sync_install = CreateWebAppInSyncInstall(
expected_app->launch_url(), expected_app->name(),
expected_app->user_display_mode(), expected_app->theme_color().value(),
expected_app->is_locally_installed(), expected_app->scope(),
expected_app->icon_infos());
// Init using a copy.
InitRegistrarWithApp(std::make_unique<WebApp>(*app_in_sync_install));
WebApp* app = controller().mutable_registrar().GetAppByIdMutable(
expected_app->app_id());
// Simulate if the web app publisher's website is down.
url_loader().SetNextLoadUrlResult(
url, WebAppUrlLoader::Result::kFailedPageTookTooLong);
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
install_manager().SetDataRetrieverFactoryForTesting(
base::BindLambdaForTesting([]() {
// The data retrieval stage must not be reached if url fails to load.
return CreateEmptyDataRetriever();
}));
InstallResult result = InstallWebAppsAfterSync({app});
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, result.code);
EXPECT_EQ(app->app_id(), result.app_id);
EXPECT_EQ(1u, registrar().GetAppIds().size());
EXPECT_EQ(app, registrar().GetAppById(expected_app->app_id()));
EXPECT_NE(*app_in_sync_install, *app);
EXPECT_EQ(app_in_sync_install->sync_fallback_data(),
app->sync_fallback_data());
EXPECT_EQ(*expected_app, *app);
}
TEST_F(WebAppInstallManagerTest, UninstallWebAppsAfterSync) {
std::unique_ptr<WebApp> app =
CreateWebApp(GURL("https://example.com/path"), Source::kSync,
/*user_display_mode=*/DisplayMode::kStandalone);
const AppId app_id = app->app_id();
InitRegistrarWithApp(std::move(app));
file_utils().SetNextDeleteFileRecursivelyResult(true);
enum Event {
kObserver_OnWebAppUninstalled,
kUninstallWebAppsAfterSync_Callback
};
std::vector<Event> event_order;
WebAppInstallObserver observer(®istrar());
observer.SetWebAppUninstalledDelegate(
base::BindLambdaForTesting([&](const AppId& uninstalled_app_id) {
EXPECT_EQ(uninstalled_app_id, app_id);
event_order.push_back(Event::kObserver_OnWebAppUninstalled);
}));
base::RunLoop run_loop;
controller().SetUninstallWebAppsAfterSyncDelegate(base::BindLambdaForTesting(
[&](std::vector<std::unique_ptr<WebApp>> apps_unregistered,
SyncInstallDelegate::RepeatingUninstallCallback callback) {
install_manager().UninstallWebAppsAfterSync(
std::move(apps_unregistered),
base::BindLambdaForTesting([&](const AppId& uninstalled_app_id,
bool uninstalled) {
EXPECT_EQ(uninstalled_app_id, app_id);
EXPECT_TRUE(uninstalled);
event_order.push_back(Event::kUninstallWebAppsAfterSync_Callback);
run_loop.Quit();
}));
}));
// The sync server sends a change to delete the app.
controller().ApplySyncChanges_DeleteApps({app_id});
run_loop.Run();
const std::vector<Event> expected_event_order{
Event::kObserver_OnWebAppUninstalled,
Event::kUninstallWebAppsAfterSync_Callback};
EXPECT_EQ(expected_event_order, event_order);
}
TEST_F(WebAppInstallManagerTest, PolicyAndUser_UninstallExternalWebApp) {
std::unique_ptr<WebApp> policy_and_user_app =
CreateWebApp(GURL("https://example.com/path"), Source::kSync,
/*user_display_mode=*/DisplayMode::kStandalone);
policy_and_user_app->AddSource(Source::kPolicy);
const AppId app_id = policy_and_user_app->app_id();
const GURL external_app_url("https://example.com/path/policy");
externally_installed_app_prefs().Insert(
external_app_url, app_id, ExternalInstallSource::kExternalPolicy);
InitRegistrarWithApp(std::move(policy_and_user_app));
EXPECT_TRUE(finalizer().CanUserUninstallFromSync(app_id));
EXPECT_FALSE(finalizer().WasExternalAppUninstalledByUser(app_id));
bool observer_uninstall_called = false;
WebAppInstallObserver observer(®istrar());
observer.SetWebAppUninstalledDelegate(
base::BindLambdaForTesting([&](const AppId& uninstalled_app_id) {
observer_uninstall_called = true;
}));
// Unknown url fails.
EXPECT_FALSE(UninstallExternalWebAppByUrl(
GURL("https://example.org/"), ExternalInstallSource::kExternalPolicy));
// Uninstall policy app first.
EXPECT_TRUE(UninstallExternalWebAppByUrl(
external_app_url, ExternalInstallSource::kExternalPolicy));
EXPECT_TRUE(registrar().GetAppById(app_id));
EXPECT_FALSE(observer_uninstall_called);
EXPECT_TRUE(finalizer().CanUserUninstallFromSync(app_id));
EXPECT_FALSE(finalizer().WasExternalAppUninstalledByUser(app_id));
EXPECT_TRUE(finalizer().CanUserUninstallExternalApp(app_id));
// Uninstall user app last.
file_utils().SetNextDeleteFileRecursivelyResult(true);
EXPECT_TRUE(UninstallWebAppFromSyncByUser(app_id));
EXPECT_FALSE(registrar().GetAppById(app_id));
EXPECT_TRUE(observer_uninstall_called);
EXPECT_FALSE(finalizer().CanUserUninstallFromSync(app_id));
EXPECT_FALSE(finalizer().WasExternalAppUninstalledByUser(app_id));
EXPECT_FALSE(finalizer().CanUserUninstallExternalApp(app_id));
}
TEST_F(WebAppInstallManagerTest, PolicyAndUser_UninstallWebAppFromSyncByUser) {
std::unique_ptr<WebApp> policy_and_user_app =
CreateWebApp(GURL("https://example.com/path"), Source::kSync,
/*user_display_mode=*/DisplayMode::kStandalone);
policy_and_user_app->AddSource(Source::kPolicy);
const AppId app_id = policy_and_user_app->app_id();
const GURL external_app_url("https://example.com/path/policy");
externally_installed_app_prefs().Insert(
external_app_url, app_id, ExternalInstallSource::kExternalPolicy);
InitRegistrarWithApp(std::move(policy_and_user_app));
EXPECT_TRUE(finalizer().CanUserUninstallFromSync(app_id));
EXPECT_FALSE(finalizer().CanUserUninstallExternalApp(app_id));
bool observer_uninstall_called = false;
WebAppInstallObserver observer(®istrar());
observer.SetWebAppUninstalledDelegate(
base::BindLambdaForTesting([&](const AppId& uninstalled_app_id) {
observer_uninstall_called = true;
}));
// Uninstall user app first.
EXPECT_TRUE(UninstallWebAppFromSyncByUser(app_id));
EXPECT_TRUE(registrar().GetAppById(app_id));
EXPECT_FALSE(observer_uninstall_called);
EXPECT_FALSE(finalizer().CanUserUninstallFromSync(app_id));
EXPECT_FALSE(finalizer().WasExternalAppUninstalledByUser(app_id));
EXPECT_FALSE(finalizer().CanUserUninstallExternalApp(app_id));
// Uninstall policy app last.
file_utils().SetNextDeleteFileRecursivelyResult(true);
EXPECT_TRUE(UninstallExternalWebAppByUrl(
external_app_url, ExternalInstallSource::kExternalPolicy));
EXPECT_FALSE(registrar().GetAppById(app_id));
EXPECT_TRUE(observer_uninstall_called);
EXPECT_FALSE(finalizer().WasExternalAppUninstalledByUser(app_id));
EXPECT_FALSE(finalizer().CanUserUninstallExternalApp(app_id));
}
TEST_F(WebAppInstallManagerTest, DefaultAndUser_UninstallExternalAppByUser) {
std::unique_ptr<WebApp> default_and_user_app =
CreateWebApp(GURL("https://example.com/path"), Source::kSync,
/*user_display_mode=*/DisplayMode::kStandalone);
default_and_user_app->AddSource(Source::kDefault);
const AppId app_id = default_and_user_app->app_id();
const GURL external_app_url("https://example.com/path/default");
externally_installed_app_prefs().Insert(
external_app_url, app_id, ExternalInstallSource::kExternalDefault);
InitRegistrarWithApp(std::move(default_and_user_app));
EXPECT_TRUE(finalizer().CanUserUninstallExternalApp(app_id));
EXPECT_FALSE(finalizer().WasExternalAppUninstalledByUser(app_id));
WebAppInstallObserver observer(®istrar());
bool observer_uninstalled_called = false;
observer.SetWebAppUninstalledDelegate(
base::BindLambdaForTesting([&](const AppId& uninstalled_app_id) {
EXPECT_EQ(app_id, uninstalled_app_id);
observer_uninstalled_called = true;
}));
file_utils().SetNextDeleteFileRecursivelyResult(true);
EXPECT_TRUE(UninstallExternalAppByUser(app_id));
EXPECT_FALSE(registrar().GetAppById(app_id));
EXPECT_TRUE(observer_uninstalled_called);
EXPECT_FALSE(finalizer().CanUserUninstallExternalApp(app_id));
EXPECT_TRUE(finalizer().WasExternalAppUninstalledByUser(app_id));
}
TEST_F(WebAppInstallManagerTest, InstallBookmarkAppFromSync_LoadSuccess) {
InitEmptyRegistrar();
const auto url1 = GURL("https://example.com/");
const auto url2 = GURL("https://example.org/");
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded,
WebAppUrlLoader::Result::kUrlLoaded});
url_loader().SetNextLoadUrlResult(url1, WebAppUrlLoader::Result::kUrlLoaded);
install_manager().SetDataRetrieverFactoryForTesting(
base::BindLambdaForTesting([&]() {
auto data_retriever = std::make_unique<TestDataRetriever>();
data_retriever->SetEmptyRendererWebApplicationInfo();
auto manifest = std::make_unique<blink::Manifest>();
manifest->start_url = url1;
manifest->scope = url1;
manifest->display = DisplayMode::kBrowser;
data_retriever->SetManifest(std::move(manifest),
/*is_installable=*/true);
return std::unique_ptr<WebAppDataRetriever>(std::move(data_retriever));
}));
const AppId app_id1 =
InstallBookmarkAppFromSync(url1, /*server_open_as_window=*/true);
url_loader().SetNextLoadUrlResult(url2, WebAppUrlLoader::Result::kUrlLoaded);
install_manager().SetDataRetrieverFactoryForTesting(
base::BindLambdaForTesting([&]() {
auto data_retriever = std::make_unique<TestDataRetriever>();
data_retriever->SetEmptyRendererWebApplicationInfo();
auto manifest = std::make_unique<blink::Manifest>();
manifest->start_url = url2;
manifest->scope = url2;
manifest->display = DisplayMode::kStandalone;
data_retriever->SetManifest(std::move(manifest),
/*is_installable=*/true);
return std::unique_ptr<WebAppDataRetriever>(std::move(data_retriever));
}));
const AppId app_id2 =
InstallBookmarkAppFromSync(url2, /*server_open_as_window=*/false);
#if defined(OS_CHROMEOS)
EXPECT_TRUE(registrar().GetAppById(app_id1)->is_locally_installed());
#else // !defined(OS_CHROMEOS)
EXPECT_FALSE(registrar().GetAppById(app_id1)->is_locally_installed());
#endif
EXPECT_EQ(registrar().GetAppDisplayMode(app_id1), DisplayMode::kBrowser);
EXPECT_EQ(registrar().GetAppDisplayMode(app_id2), DisplayMode::kStandalone);
EXPECT_EQ(registrar().GetAppUserDisplayMode(app_id1),
DisplayMode::kStandalone);
EXPECT_EQ(registrar().GetAppUserDisplayMode(app_id2), DisplayMode::kBrowser);
}
TEST_F(WebAppInstallManagerTest, InstallBookmarkAppFromSync_LoadFailed) {
InitEmptyRegistrar();
const auto url1 = GURL("https://example.com/");
const auto url2 = GURL("https://example.org/");
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded,
WebAppUrlLoader::Result::kUrlLoaded});
// Induce a load failure:
url_loader().SetNextLoadUrlResult(
url1, WebAppUrlLoader::Result::kRedirectedUrlLoaded);
url_loader().SetNextLoadUrlResult(
url2, WebAppUrlLoader::Result::kRedirectedUrlLoaded);
auto app_id1 =
InstallBookmarkAppFromSync(url1, /*server_open_as_window=*/false);
auto app_id2 =
InstallBookmarkAppFromSync(url2, /*server_open_as_window=*/true);
#if defined(OS_CHROMEOS)
EXPECT_TRUE(registrar().GetAppById(app_id1)->is_locally_installed());
#else // !defined(OS_CHROMEOS)
EXPECT_FALSE(registrar().GetAppById(app_id1)->is_locally_installed());
#endif
EXPECT_EQ(registrar().GetAppDisplayMode(app_id1), DisplayMode::kBrowser);
EXPECT_EQ(registrar().GetAppDisplayMode(app_id2), DisplayMode::kBrowser);
EXPECT_EQ(registrar().GetAppUserDisplayMode(app_id1), DisplayMode::kBrowser);
EXPECT_EQ(registrar().GetAppUserDisplayMode(app_id2),
DisplayMode::kStandalone);
}
TEST_F(WebAppInstallManagerTest, InstallBookmarkAppFromSync_TwoIcons_Success) {
InitEmptyRegistrar();
const GURL url{"https://example.com/path"};
const GURL icon1_url{"https://example.com/path/icon1.png"};
const GURL icon2_url{"https://example.com/path/icon2.png"};
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
url_loader().SetNextLoadUrlResult(url, WebAppUrlLoader::Result::kUrlLoaded);
const AppId app_id = GenerateAppIdFromURL(url);
auto server_web_app_info = std::make_unique<WebApplicationInfo>();
server_web_app_info->app_url = url;
{
WebApplicationIconInfo server_icon1_info;
server_icon1_info.url = icon1_url;
server_icon1_info.square_size_px = icon_size::k128;
server_web_app_info->icon_infos.push_back(std::move(server_icon1_info));
WebApplicationIconInfo server_icon2_info;
server_icon2_info.url = icon2_url;
server_icon2_info.square_size_px = icon_size::k256;
server_web_app_info->icon_infos.push_back(std::move(server_icon2_info));
}
install_manager().SetDataRetrieverFactoryForTesting(
base::BindLambdaForTesting([&]() {
auto data_retriever = std::make_unique<TestDataRetriever>();
data_retriever->BuildDefaultDataToRetrieve(url, url);
// Set the website manifest to be a copy of WebApplicationInfo from
// sync, as if they are the same.
std::unique_ptr<WebApplicationInfo> site_web_app_info =
std::make_unique<WebApplicationInfo>(*server_web_app_info);
data_retriever->SetRendererWebApplicationInfo(
std::move(site_web_app_info));
IconsMap site_icons_map;
AddIconToIconsMap(icon1_url, icon_size::k128, SK_ColorBLUE,
&site_icons_map);
AddIconToIconsMap(icon2_url, icon_size::k256, SK_ColorRED,
&site_icons_map);
data_retriever->SetIcons(std::move(site_icons_map));
return std::unique_ptr<WebAppDataRetriever>(std::move(data_retriever));
}));
InstallResult result = InstallBookmarkAppFromSync(
app_id, std::make_unique<WebApplicationInfo>(*server_web_app_info));
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, result.code);
EXPECT_EQ(app_id, result.app_id);
const WebApp* web_app = registrar().GetAppById(app_id);
EXPECT_EQ(2U, web_app->icon_infos().size());
EXPECT_EQ(SizesToGenerate().size(), web_app->downloaded_icon_sizes().size());
EXPECT_EQ(icon1_url, web_app->icon_infos().at(0).url);
EXPECT_EQ(icon2_url, web_app->icon_infos().at(1).url);
// Read icons from disk to check pixel contents.
std::map<SquareSizePx, SkBitmap> icon_bitmaps =
ReadIcons(app_id, {icon_size::k128, icon_size::k256});
EXPECT_EQ(2u, icon_bitmaps.size());
const auto& icon1 = icon_bitmaps[icon_size::k128];
EXPECT_FALSE(icon1.drawsNothing());
EXPECT_EQ(SK_ColorBLUE, icon1.getColor(0, 0));
const auto& icon2 = icon_bitmaps[icon_size::k256];
EXPECT_FALSE(icon2.drawsNothing());
EXPECT_EQ(SK_ColorRED, icon2.getColor(0, 0));
}
TEST_F(WebAppInstallManagerTest, InstallBookmarkAppFromSync_TwoIcons_Fallback) {
InitEmptyRegistrar();
const GURL url{"https://example.com/path"};
const GURL icon1_url{"https://example.com/path/icon1.png"};
const GURL icon2_url{"https://example.com/path/icon2.png"};
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
// Induce a load failure:
url_loader().SetNextLoadUrlResult(
url, WebAppUrlLoader::Result::kRedirectedUrlLoaded);
install_manager().SetDataRetrieverFactoryForTesting(
base::BindLambdaForTesting([&]() {
return std::unique_ptr<WebAppDataRetriever>(
std::make_unique<TestDataRetriever>());
}));
const AppId app_id = GenerateAppIdFromURL(url);
auto server_web_app_info = std::make_unique<WebApplicationInfo>();
server_web_app_info->app_url = url;
server_web_app_info->generated_icon_color = SK_ColorBLUE;
{
WebApplicationIconInfo server_icon1_info;
server_icon1_info.url = icon1_url;
server_icon1_info.square_size_px = icon_size::k128;
server_web_app_info->icon_infos.push_back(std::move(server_icon1_info));
WebApplicationIconInfo server_icon2_info;
server_icon2_info.url = icon2_url;
server_icon2_info.square_size_px = icon_size::k256;
server_web_app_info->icon_infos.push_back(std::move(server_icon2_info));
}
InstallResult result =
InstallBookmarkAppFromSync(app_id, std::move(server_web_app_info));
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, result.code);
EXPECT_EQ(app_id, result.app_id);
const WebApp* web_app = registrar().GetAppById(app_id);
EXPECT_EQ(2U, web_app->icon_infos().size());
EXPECT_EQ(SizesToGenerate().size(), web_app->downloaded_icon_sizes().size());
EXPECT_EQ(icon1_url, web_app->icon_infos().at(0).url);
EXPECT_EQ(icon2_url, web_app->icon_infos().at(1).url);
// Read icons from disk. All icons get the E letter drawn into a rounded
// blue background.
std::map<SquareSizePx, SkBitmap> icon_bitmaps =
ReadIcons(app_id, {icon_size::k128, icon_size::k256});
EXPECT_EQ(2u, icon_bitmaps.size());
const auto& icon1 = icon_bitmaps[icon_size::k128];
EXPECT_FALSE(icon1.drawsNothing());
const auto& icon2 = icon_bitmaps[icon_size::k256];
EXPECT_FALSE(icon2.drawsNothing());
}
TEST_F(WebAppInstallManagerTest, InstallBookmarkAppFromSync_NoIcons) {
InitEmptyRegistrar();
const GURL url{"https://example.com/path"};
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
// Induce a load failure:
url_loader().SetNextLoadUrlResult(
url, WebAppUrlLoader::Result::kRedirectedUrlLoaded);
UseDefaultDataRetriever(url);
const AppId app_id = GenerateAppIdFromURL(url);
auto web_app_info = std::make_unique<WebApplicationInfo>();
web_app_info->app_url = url;
// All icons will get the E letter drawn into a rounded yellow background.
web_app_info->generated_icon_color = SK_ColorYELLOW;
InstallResult result =
InstallBookmarkAppFromSync(app_id, std::move(web_app_info));
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, result.code);
EXPECT_EQ(app_id, result.app_id);
const WebApp* web_app = registrar().GetAppById(app_id);
std::map<SquareSizePx, SkBitmap> icon_bitmaps =
ReadIcons(app_id, web_app->downloaded_icon_sizes());
// Make sure that icons have been generated for all sub sizes.
EXPECT_TRUE(ContainsOneIconOfEachSize(icon_bitmaps));
for (const std::pair<const SquareSizePx, SkBitmap>& icon : icon_bitmaps)
EXPECT_FALSE(icon.second.drawsNothing());
}
TEST_F(WebAppInstallManagerTest, InstallBookmarkAppFromSync_ExpectAppIdFailed) {
InitEmptyRegistrar();
const GURL old_url{"https://example.com/path"};
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
url_loader().SetNextLoadUrlResult(old_url,
WebAppUrlLoader::Result::kUrlLoaded);
// The web site has changed app url:
UseDefaultDataRetriever(GURL{"https://example.org"});
const AppId expected_app_id = GenerateAppIdFromURL(old_url);
auto server_web_app_info = std::make_unique<WebApplicationInfo>();
server_web_app_info->app_url = old_url;
// WebAppInstallTask finishes with kExpectedAppIdCheckFailed but
// WebAppInstallManager falls back to web application info, received from the
// server.
InstallResult result = InstallBookmarkAppFromSync(
expected_app_id, std::move(server_web_app_info));
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, result.code);
EXPECT_EQ(expected_app_id, result.app_id);
const WebApp* web_app = registrar().GetAppById(expected_app_id);
ASSERT_TRUE(web_app);
std::map<SquareSizePx, SkBitmap> icon_bitmaps =
ReadIcons(expected_app_id, web_app->downloaded_icon_sizes());
// Make sure that icons have been generated for all sub sizes.
EXPECT_TRUE(ContainsOneIconOfEachSize(icon_bitmaps));
}
TEST_F(WebAppInstallManagerTest, InstallBookmarkAppFromSync_QueueNewInstall) {
// The registrar is not yet started (initialized) at the beginning of this
// test.
EXPECT_FALSE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(0u, install_manager().tasks_size_for_testing());
const GURL url{"https://example.com/path"};
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
url_loader().SetNextLoadUrlResult(url, WebAppUrlLoader::Result::kUrlLoaded);
UseDefaultDataRetriever(url);
const AppId bookmark_app_id = GenerateAppIdFromURL(url);
auto server_web_application_info = std::make_unique<WebApplicationInfo>();
server_web_application_info->app_url = url;
// Call InstallBookmarkAppFromSync while WebAppInstallManager is not yet
// started.
base::RunLoop run_loop;
install_manager().InstallBookmarkAppFromSync(
bookmark_app_id, std::move(server_web_application_info),
base::BindLambdaForTesting(
[&](const AppId& installed_app_id, InstallResultCode code) {
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, code);
EXPECT_EQ(bookmark_app_id, installed_app_id);
EXPECT_TRUE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(0u, install_manager().tasks_size_for_testing());
run_loop.Quit();
}));
EXPECT_FALSE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(0u, install_manager().tasks_size_for_testing());
InitEmptyRegistrar();
run_loop.Run();
EXPECT_FALSE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(0u, install_manager().tasks_size_for_testing());
EXPECT_TRUE(registrar().GetAppById(bookmark_app_id));
}
TEST_F(WebAppInstallManagerTest,
InstallBookmarkAppFromSync_QueueAlreadyInstalled) {
// The registrar is not yet started (initialized) at the beginning of this
// test.
const GURL url{"https://example.com/path"};
const AppId bookmark_app_id = GenerateAppIdFromURL(url);
auto server_web_application_info = std::make_unique<WebApplicationInfo>();
server_web_application_info->app_url = url;
// Call InstallBookmarkAppFromSync while WebAppInstallManager is not yet
// started.
base::RunLoop run_loop;
install_manager().InstallBookmarkAppFromSync(
bookmark_app_id, std::move(server_web_application_info),
base::BindLambdaForTesting(
[&](const AppId& installed_app_id, InstallResultCode code) {
EXPECT_EQ(InstallResultCode::kSuccessAlreadyInstalled, code);
EXPECT_EQ(bookmark_app_id, installed_app_id);
EXPECT_FALSE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(0u, install_manager().tasks_size_for_testing());
run_loop.Quit();
}));
EXPECT_FALSE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(0u, install_manager().tasks_size_for_testing());
// The bookmark app shouldn't overwrite the existing web app which is already
// installed.
std::unique_ptr<WebApp> app =
CreateWebApp(url, Source::kSync,
/*user_display_mode=*/DisplayMode::kStandalone);
EXPECT_EQ(bookmark_app_id, app->app_id());
InitRegistrarWithApp(std::move(app));
run_loop.Run();
EXPECT_FALSE(install_manager().has_web_contents_for_testing());
EXPECT_EQ(0u, install_manager().tasks_size_for_testing());
EXPECT_TRUE(registrar().GetAppById(bookmark_app_id));
}
TEST_F(WebAppInstallManagerTest, SyncRace_InstallWebAppFull_ThenBookmarkApp) {
InitEmptyRegistrar();
const GURL url{"https://example.com/path"};
const AppId app_id = GenerateAppIdFromURL(url);
// The web site url must be loaded only once.
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
url_loader().AddNextLoadUrlResults(url,
{WebAppUrlLoader::Result::kUrlLoaded});
// Prepare web site data for next enqueued full install (the web app).
UseDefaultDataRetriever(url);
bool bookmark_app_already_installed = false;
base::RunLoop run_loop;
controller().SetInstallWebAppsAfterSyncDelegate(base::BindLambdaForTesting(
[&](std::vector<WebApp*> web_apps_installed,
SyncInstallDelegate::RepeatingInstallCallback callback) {
EXPECT_EQ(1u, web_apps_installed.size());
EXPECT_EQ(app_id, web_apps_installed[0]->app_id());
EXPECT_EQ(url, web_apps_installed[0]->launch_url());
install_manager().InstallWebAppsAfterSync(
std::move(web_apps_installed),
base::BindLambdaForTesting(
[&](const AppId& installed_app_id, InstallResultCode code) {
EXPECT_EQ(app_id, installed_app_id);
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, code);
EXPECT_TRUE(bookmark_app_already_installed);
run_loop.Quit();
}));
}));
// The web app object arrives first from the server. It creates a registry
// entry immediately (with is_in_sync_install() flag set to true).
controller().ApplySyncChanges_AddApps({url});
auto server_bookmark_app_info = std::make_unique<WebApplicationInfo>();
server_bookmark_app_info->app_url = url;
// The bookmark app object arrives second from the server. The install request
// gets declined.
install_manager().InstallBookmarkAppFromSync(
app_id, std::move(server_bookmark_app_info),
base::BindLambdaForTesting(
[&](const AppId& installed_app_id, InstallResultCode code) {
EXPECT_EQ(app_id, installed_app_id);
EXPECT_EQ(InstallResultCode::kSuccessAlreadyInstalled, code);
bookmark_app_already_installed = true;
}));
run_loop.Run();
EXPECT_TRUE(bookmark_app_already_installed);
}
TEST_F(WebAppInstallManagerTest, SyncRace_InstallBookmarkAppFull_ThenWebApp) {
InitEmptyRegistrar();
const GURL url{"https://example.com/path"};
const AppId app_id = GenerateAppIdFromURL(url);
// The web site url must be loaded only once.
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
url_loader().AddNextLoadUrlResults(url,
{WebAppUrlLoader::Result::kUrlLoaded});
// Prepare web site data for next enqueued full install (the bookmark app).
UseDefaultDataRetriever(url);
auto server_bookmark_app_info = std::make_unique<WebApplicationInfo>();
server_bookmark_app_info->app_url = url;
bool bookmark_app_installed = false;
bool web_app_install_returns_early = false;
base::RunLoop run_loop;
// The bookmark app object arrives first from the server, enqueue full
// install.
install_manager().InstallBookmarkAppFromSync(
app_id, std::move(server_bookmark_app_info),
base::BindLambdaForTesting(
[&](const AppId& installed_app_id, InstallResultCode code) {
EXPECT_EQ(app_id, installed_app_id);
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, code);
bookmark_app_installed = true;
run_loop.Quit();
}));
controller().SetInstallWebAppsAfterSyncDelegate(base::BindLambdaForTesting(
[&](std::vector<WebApp*> web_apps_installed,
SyncInstallDelegate::RepeatingInstallCallback callback) {
EXPECT_EQ(1u, web_apps_installed.size());
EXPECT_EQ(app_id, web_apps_installed[0]->app_id());
EXPECT_EQ(url, web_apps_installed[0]->launch_url());
install_manager().InstallWebAppsAfterSync(
std::move(web_apps_installed),
base::BindLambdaForTesting(
[&](const AppId& installed_app_id, InstallResultCode code) {
EXPECT_EQ(app_id, installed_app_id);
EXPECT_EQ(InstallResultCode::kSuccessAlreadyInstalled, code);
EXPECT_FALSE(bookmark_app_installed);
web_app_install_returns_early = true;
}));
}));
// The web app object arrives second from the server but it creates a registry
// entry immediately (with is_in_sync_install() flag set to true).
controller().ApplySyncChanges_AddApps({url});
run_loop.Run();
EXPECT_TRUE(web_app_install_returns_early);
EXPECT_TRUE(bookmark_app_installed);
}
TEST_F(WebAppInstallManagerTest,
SyncRace_InstallBookmarkAppFallback_ThenWebApp) {
InitEmptyRegistrar();
const GURL url{"https://example.com/path"};
const AppId app_id = GenerateAppIdFromURL(url);
// We will try to load the web site url only once.
url_loader().AddPrepareForLoadResults({WebAppUrlLoader::Result::kUrlLoaded});
// The web site url will fail.
url_loader().AddNextLoadUrlResults(
url, {WebAppUrlLoader::Result::kFailedPageTookTooLong});
// Prepare web site data for next enqueued full install (the bookmark app).
UseDefaultDataRetriever(url);
auto server_bookmark_app_info = std::make_unique<WebApplicationInfo>();
server_bookmark_app_info->app_url = url;
bool bookmark_app_installed = false;
bool web_app_install_returns_early = false;
base::RunLoop run_loop;
// The bookmark app object arrives first from the server, enqueue full
// install.
install_manager().InstallBookmarkAppFromSync(
app_id, std::move(server_bookmark_app_info),
base::BindLambdaForTesting(
[&](const AppId& installed_app_id, InstallResultCode code) {
EXPECT_EQ(app_id, installed_app_id);
// Full web app install fails, fallback install succeeds.
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, code);
bookmark_app_installed = true;
run_loop.Quit();
}));
controller().SetInstallWebAppsAfterSyncDelegate(base::BindLambdaForTesting(
[&](std::vector<WebApp*> web_apps_installed,
SyncInstallDelegate::RepeatingInstallCallback callback) {
EXPECT_EQ(1u, web_apps_installed.size());
EXPECT_EQ(app_id, web_apps_installed[0]->app_id());
EXPECT_EQ(url, web_apps_installed[0]->launch_url());
install_manager().InstallWebAppsAfterSync(
std::move(web_apps_installed),
base::BindLambdaForTesting(
[&](const AppId& installed_app_id, InstallResultCode code) {
EXPECT_EQ(app_id, installed_app_id);
// The web app fallback install returns early.
EXPECT_EQ(InstallResultCode::kSuccessAlreadyInstalled, code);
EXPECT_FALSE(bookmark_app_installed);
web_app_install_returns_early = true;
}));
}));
// The web app object arrives second from the server but it creates a registry
// entry immediately (with is_in_sync_install() flag set to true).
controller().ApplySyncChanges_AddApps({url});
run_loop.Run();
EXPECT_TRUE(web_app_install_returns_early);
EXPECT_TRUE(bookmark_app_installed);
}
TEST_F(WebAppInstallManagerTest, TaskQueueWebContentsReadyRace) {
InitEmptyRegistrar();
std::unique_ptr<WebAppInstallTask> task_a = CreateDummyTask();
WebAppInstallTask* task_a_ptr = task_a.get();
std::unique_ptr<WebAppInstallTask> task_b = CreateDummyTask();
std::unique_ptr<WebAppInstallTask> task_c = CreateDummyTask();
// Enqueue task A and await it to be started.
base::RunLoop run_loop_a_start;
url_loader().SetPrepareForLoadResultLoaded();
install_manager().EnsureWebContentsCreated();
install_manager().EnqueueTask(std::move(task_a),
run_loop_a_start.QuitClosure());
run_loop_a_start.Run();
// Enqueue task B before A has finished.
bool task_b_started = false;
install_manager().EnqueueTask(
std::move(task_b),
base::BindLambdaForTesting([&]() { task_b_started = true; }));
// Finish task A.
url_loader().SetPrepareForLoadResultLoaded();
install_manager().OnQueuedTaskCompleted(
task_a_ptr, base::DoNothing(), AppId(),
InstallResultCode::kSuccessNewInstall);
// Task B needs to wait for WebContents to return ready.
EXPECT_FALSE(task_b_started);
// Enqueue task C before B has started.
bool task_c_started = false;
install_manager().EnqueueTask(
std::move(task_c),
base::BindLambdaForTesting([&]() { task_c_started = true; }));
// Task C should not start before B has started.
EXPECT_FALSE(task_b_started);
EXPECT_FALSE(task_c_started);
}
TEST_F(WebAppInstallManagerTest,
InstallWebAppFromManifestWithFallback_OverwriteIsLocallyInstalled) {
const GURL launch_url{"https://example.com/path"};
const AppId app_id = GenerateAppIdFromURL(launch_url);
{
std::unique_ptr<WebApp> app_in_sync_install = CreateWebAppInSyncInstall(
launch_url, "Name from sync",
/*user_display_mode=*/DisplayMode::kStandalone, SK_ColorRED,
/*is_locally_installed=*/false, /*scope=*/GURL(), /*icon_infos=*/{});
InitRegistrarWithApp(std::move(app_in_sync_install));
}
EXPECT_FALSE(registrar().IsLocallyInstalled(app_id));
EXPECT_EQ(DisplayMode::kBrowser,
registrar().GetAppEffectiveDisplayMode(app_id));
// DefaultDataRetriever returns DisplayMode::kStandalone app's display mode.
UseDefaultDataRetriever(launch_url);
InstallResult result = InstallWebAppFromManifestWithFallback();
EXPECT_EQ(InstallResultCode::kSuccessNewInstall, result.code);
EXPECT_EQ(app_id, result.app_id);
EXPECT_TRUE(registrar().IsInstalled(app_id));
EXPECT_TRUE(registrar().IsLocallyInstalled(app_id));
EXPECT_EQ(DisplayMode::kStandalone,
registrar().GetAppEffectiveDisplayMode(app_id));
}
} // namespace web_app
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
682ada98afad36465ed6bda1b9a6a9a63fd52d4f | 826bceae0913ea7df1c273928a98e06edb29206c | /Shapes.cpp | 1721d4ed8d746f88e7e40e747eec449c3a4e60e3 | [] | no_license | ucla-projects/Animated-Bees-Rotation-Around-a-Flower | 4b3f1e8ac8f9d35261a2ccc9bcce305fcef03acb | 6be81683bbb0b7c0836a0f39be2bdda9935df576 | refs/heads/master | 2021-05-27T10:16:15.252670 | 2014-11-04T16:34:38 | 2014-11-04T16:34:38 | 26,177,915 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,234 | cpp | #include "Angel/Angel.h"
#include "Shapes.h"
#include <cmath>
typedef Angel::vec4 color4;
typedef Angel::vec4 point4;
typedef Angel::vec3 point3;
typedef Angel::vec2 point2;
void setVertexAttrib(GLuint program,
GLfloat* points, GLsizeiptr psize,
GLfloat* normals, GLsizeiptr nsize,
GLfloat* texcoords, GLsizeiptr tsize)
{
GLuint buffer[2];
glGenBuffers( 2, buffer );
glBindBuffer( GL_ARRAY_BUFFER, buffer[0] );
glBufferData( GL_ARRAY_BUFFER, psize, points, GL_STATIC_DRAW );
GLuint vPosition = glGetAttribLocation( program, "vPosition" );
glEnableVertexAttribArray( vPosition );
glVertexAttribPointer( vPosition, 4, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET(0) );
glBindBuffer( GL_ARRAY_BUFFER, buffer[1] );
glBufferData( GL_ARRAY_BUFFER, nsize, normals, GL_STATIC_DRAW );
GLuint vNormal = glGetAttribLocation( program, "vNormal" );
glEnableVertexAttribArray( vNormal );
glVertexAttribPointer( vNormal, 3, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET(0) );
if (texcoords)
{
GLuint tbuffer;
glGenBuffers( 1, &tbuffer );
glBindBuffer( GL_ARRAY_BUFFER, tbuffer );
glBufferData( GL_ARRAY_BUFFER, tsize, texcoords, GL_STATIC_DRAW );
GLuint vTexCoords = glGetAttribLocation( program, "vTexCoords" );
glEnableVertexAttribArray( vTexCoords );
glVertexAttribPointer( vTexCoords, 2, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET(0) );
}
glBindBuffer( GL_ARRAY_BUFFER, 0 );
glBindVertexArray(0);
}
//----------------------------------------------------------------------------
// Cube
const int numCubeVertices = 36; //(6 faces)(2 triangles/face)(3 vertices/triangle)
point4 cubePoints [numCubeVertices];
point3 cubeNormals[numCubeVertices];
point2 cubeUV [numCubeVertices];
// Vertices of a unit cube centered at origin, sides aligned with axes
// point4 is in homogeneous coordinate,
// first 3 parameters specify the x, y and z coordinate
// the last parameter is 1.0 for points
//
point4 vertices[8] = {
point4( -0.5, -0.5, 0.5, 1.0 ),
point4( -0.5, 0.5, 0.5, 1.0 ),
point4( 0.5, 0.5, 0.5, 1.0 ),
point4( 0.5, -0.5, 0.5, 1.0 ),
// other 4 corners/vertices are missing
// specify them here
//end
};
// quad generates two triangles for each face and assigns normals and texture coordinates to the vertices
int Index = 0;
void quad( int a, int b, int c, int d, const point3& normal )
{
cubePoints[Index] = vertices[a]; cubeNormals[Index] = normal;
cubeUV[Index] = point2(0.0f, 1.0f); Index++;
cubePoints[Index] = vertices[b]; cubeNormals[Index] = normal;
cubeUV[Index] = point2(0.0f, 0.0f); Index++;
cubePoints[Index] = vertices[c]; cubeNormals[Index] = normal;
cubeUV[Index] = point2(1.0f, 0.0f); Index++;
cubePoints[Index] = vertices[a]; cubeNormals[Index] = normal;
cubeUV[Index] = point2(0.0f, 1.0f); Index++;
cubePoints[Index] = vertices[c]; cubeNormals[Index] = normal;
cubeUV[Index] = point2(1.0f, 0.0f); Index++;
cubePoints[Index] = vertices[d]; cubeNormals[Index] = normal;
cubeUV[Index] = point2(1.0f, 1.0f); Index++;
}
// generate 12 triangles (each face of a cube has 2 triangles)
// using 6 calls of quad(): 36 vertices, 36 normals, 36 texture coordinates
// quad (implemented right above) takes five parameters,
// 1st, 2nd and 3rd parameter specify the corner of first triangle
// 1st, 3rd and 4th parameter specify the corner of the second trianle
// last parameter uses the format point3(x, y, z) to specify the normal,
// which is direction where the face is facing (measured from inside the cube to outside),
// eg. positive z direction = point3(0.0f, 0.0f, 1.0f) and negative y direction = point3(0.0f, -1.0f, 0.0f);
void colorcube()
{
quad( 1, 0, 3, 2, point3( 0.0f, 0.0f, 1.0f) );
// other 5 faces are missing
// specify them here
//end
}
// initialization
void generateCube(GLuint program, ShapeData* cubeData)
{
colorcube();
cubeData->numVertices = numCubeVertices;
// Create a vertex array object
glGenVertexArrays( 1, &cubeData->vao );
glBindVertexArray( cubeData->vao );
// Set vertex attributes
setVertexAttrib(program,
(float*)cubePoints, sizeof(cubePoints),
(float*)cubeNormals, sizeof(cubeNormals),
(float*)cubeUV, sizeof(cubeUV));
}
//----------------------------------------------------------------------------
// Sphere approximation by recursive subdivision of a tetrahedron
const int N = 5; // number of subdivisions
const int numSphereVertices = 16*256*3; // number of resulting points
point4 spherePoints [numSphereVertices];
point3 sphereNormals[numSphereVertices];
point2 sphereUVs[numSphereVertices];
// four equally spaced points on the unit circle
point4 v[4] = {
vec4(0.0, 0.0, 1.0, 1.0),
vec4(0.0, 0.942809, -0.333333, 1.0),
vec4(-0.816497, -0.471405, -0.333333, 1.0),
vec4(0.816497, -0.471405, -0.333333, 1.0)
};
static int k = 0;
// move a point to unit circle
point4 unit(const point4 &p)
{
point4 c;
double d=0.0;
for(int i=0; i<3; i++) d+=p[i]*p[i];
d=sqrt(d);
if(d > 0.0) for(int i=0; i<3; i++) c[i] = p[i]/d;
c[3] = 1.0;
return c;
}
void triangle(point4 a, point4 b, point4 c)
{
spherePoints[k] = a;
k++;
spherePoints[k] = b;
k++;
spherePoints[k] = c;
k++;
}
void divide_triangle(point4 a, point4 b, point4 c, int n)
{
point4 v1, v2, v3;
if(n>0)
{
v1 = unit(a + b);
v2 = unit(a + c);
v3 = unit(b + c);
divide_triangle(a , v2, v1, n-1);
divide_triangle(c , v3, v2, n-1);
divide_triangle(b , v1, v3, n-1);
divide_triangle(v1, v2, v3, n-1);
}
else triangle(a, b, c);
}
void tetrahedron(int n)
{
divide_triangle(v[0], v[1], v[2], n);
divide_triangle(v[3], v[2], v[1], n);
divide_triangle(v[0], v[3], v[1], n);
divide_triangle(v[0], v[3], v[2], n);
}
// initialization
void generateSphere(GLuint program, ShapeData* sphereData)
{
tetrahedron(N);
sphereData->numVertices = numSphereVertices;
// Normals
for (int i = 0; i < numSphereVertices; i++)
{
sphereNormals[i] = point3(spherePoints[i].x, spherePoints[i].y, spherePoints[i].z);
}
// TexCoords
double u, v;
for (int i = 0; i < numSphereVertices; i++)
{
v = 0.5 - asin(spherePoints[i].y)/M_PI ; //0~1
u = 0.5*(atan2(spherePoints[i].z,spherePoints[i].x)/M_PI + 1); //0~1
sphereUVs[i] = point2(u,v);
}
// Create a vertex array object
glGenVertexArrays( 1, &sphereData->vao );
glBindVertexArray( sphereData->vao );
// Set vertex attributes
setVertexAttrib(program,
(float*)spherePoints, sizeof(spherePoints),
(float*)sphereNormals, sizeof(sphereNormals),
(float*)sphereUVs, sizeof(sphereUVs));
}
//----------------------------------------------------------------------------
// Cone
const int numConeDivisions = 32;
const int numConeVertices = numConeDivisions * 6;
point4 conePoints [numConeVertices];
point3 coneNormals[numConeVertices];
point2 circlePoints[numConeDivisions];
void makeCircle(point2* dest, int numDivisions)
{
for (int i = 0; i < numDivisions; i++)
{
float a = i * 2.0f * M_PI / numDivisions;
dest[i] = point2(cosf(a), sinf(a));
}
}
void makeConeWall(point4* destp, point3* destn, int numDivisions, float z1, float z2, int& Index, int dir)
{
for (int i = 0; i < numDivisions; i++)
{
point3 p1(circlePoints[i].x, circlePoints[i].y, z1);
point3 p2(0.0f, 0.0f, z2);
point3 p3(circlePoints[(i+1)%numDivisions].x, circlePoints[(i+1)%numDivisions].y, z1);
if (dir == -1)
{
point3 temp = p1;
p1 = p3;
p3 = temp;
}
point3 n = cross(p1-p2, p3-p2);
destp[Index] = p1; destn[Index] = n; Index++;
destp[Index] = p2; destn[Index] = n; Index++;
destp[Index] = p3; destn[Index] = n; Index++;
}
}
void generateCone(GLuint program, ShapeData* coneData)
{
makeCircle(circlePoints, numConeDivisions);
int Index = 0;
makeConeWall(conePoints, coneNormals, numConeDivisions, 1.0f, 1.0f, Index, 1);
makeConeWall(conePoints, coneNormals, numConeDivisions, 1.0f, -1.0f, Index, -1);
coneData->numVertices = numConeVertices;
// Create a vertex array object
glGenVertexArrays( 1, &coneData->vao );
glBindVertexArray( coneData->vao );
// Set vertex attributes
setVertexAttrib(program,
(float*)conePoints, sizeof(conePoints),
(float*)coneNormals, sizeof(coneNormals),
0, 0);
}
//----------------------------------------------------------------------------
// Cylinder
const int numCylDivisions = 32;
const int numCylVertices = numCylDivisions * 12;
point4 cylPoints [numCylVertices];
point3 cylNormals[numCylVertices];
void generateCylinder(GLuint program, ShapeData* cylData)
{
makeCircle(circlePoints, numCylDivisions);
int Index = 0;
makeConeWall(cylPoints, cylNormals, numCylDivisions, 1.0f, 1.0f, Index, 1);
makeConeWall(cylPoints, cylNormals, numCylDivisions, -1.0f, -1.0f, Index, -1);
for (int i = 0; i < numCylDivisions; i++)
{
int i2 = (i+1)%numCylDivisions;
point3 p1(circlePoints[i2].x, circlePoints[i2].y, -1.0f);
point3 p2(circlePoints[i2].x, circlePoints[i2].y, 1.0f);
point3 p3(circlePoints[i].x, circlePoints[i].y, 1.0f);
//point3 n = cross(p3-p2, p1-p2);
cylPoints[Index] = p1; cylNormals[Index] = point3(p1.x, p1.y, 0.0f); Index++;
cylPoints[Index] = p2; cylNormals[Index] = point3(p2.x, p2.y, 0.0f); Index++;
cylPoints[Index] = p3; cylNormals[Index] = point3(p3.x, p3.y, 0.0f); Index++;
p1 = point3(circlePoints[i2].x, circlePoints[i2].y, -1.0f);
p2 = point3(circlePoints[i].x, circlePoints[i].y, 1.0f);
p3 = point3(circlePoints[i].x, circlePoints[i].y, -1.0f);
//n = cross(p3-p2, p1-p2);
cylPoints[Index] = p1; cylNormals[Index] = point3(p1.x, p1.y, 0.0f); Index++;
cylPoints[Index] = p2; cylNormals[Index] = point3(p2.x, p2.y, 0.0f); Index++;
cylPoints[Index] = p3; cylNormals[Index] = point3(p3.x, p3.y, 0.0f); Index++;
}
cylData->numVertices = numCylVertices;
// Create a vertex array object
glGenVertexArrays( 1, &cylData->vao );
glBindVertexArray( cylData->vao );
// Set vertex attributes
setVertexAttrib(program,
(float*)cylPoints, sizeof(cylPoints),
(float*)cylNormals, sizeof(cylNormals),
0, 0);
}
| [
"jeffreytai@ucla.edu"
] | jeffreytai@ucla.edu |
cb494dacb4d5fcc38c2fba0561384952f3f7e6b5 | d93159d0784fc489a5066d3ee592e6c9563b228b | /DQM/SiStripCommissioningDbClients/src/CalibrationHistosUsingDb.cc | 91294697e8dbfc149fc9ca29c04444808efd1828 | [] | permissive | simonecid/cmssw | 86396e31d41a003a179690f8c322e82e250e33b2 | 2559fdc9545b2c7e337f5113b231025106dd22ab | refs/heads/CAallInOne_81X | 2021-08-15T23:25:02.901905 | 2016-09-13T08:10:20 | 2016-09-13T08:53:42 | 176,462,898 | 0 | 1 | Apache-2.0 | 2019-03-19T08:30:28 | 2019-03-19T08:30:24 | null | UTF-8 | C++ | false | false | 9,874 | cc |
#include "DQM/SiStripCommissioningDbClients/interface/CalibrationHistosUsingDb.h"
#include "CondFormats/SiStripObjects/interface/CalibrationAnalysis.h"
#include "DataFormats/SiStripCommon/interface/SiStripConstants.h"
#include "DataFormats/SiStripCommon/interface/SiStripFecKey.h"
#include "DQM/SiStripCommon/interface/ExtractTObject.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include <iostream>
using namespace sistrip;
// -----------------------------------------------------------------------------
/** */
std::string getBasePath (const std::string &path)
{
return path.substr(0,path.find(std::string(sistrip::root_) + "/")+sizeof(sistrip::root_) );
}
// -----------------------------------------------------------------------------
/** */
CalibrationHistosUsingDb::CalibrationHistosUsingDb( const edm::ParameterSet & pset,
DQMStore* bei,
SiStripConfigDb* const db,
const sistrip::RunType& task )
: CommissioningHistograms( pset.getParameter<edm::ParameterSet>("CalibrationParameters"),
bei,
task ),
CommissioningHistosUsingDb( db,
task ),
CalibrationHistograms( pset.getParameter<edm::ParameterSet>("CalibrationParameters"),
bei,
task )
{
LogTrace(mlDqmClient_)
<< "[CalibrationHistosUsingDb::" << __func__ << "]"
<< " Constructing object...";
// Load and dump the current ISHA/VFS values. This is used by the standalone analysis script
const SiStripConfigDb::DeviceDescriptionsRange & apvDescriptions = db->getDeviceDescriptions(APV25);
for(SiStripConfigDb::DeviceDescriptionsV::const_iterator apv = apvDescriptions.begin();apv!=apvDescriptions.end();++apv) {
apvDescription* desc = dynamic_cast<apvDescription*>( *apv );
if ( !desc ) { continue; }
// Retrieve device addresses from device description
const SiStripConfigDb::DeviceAddress& addr = db->deviceAddress(*desc);
std::stringstream bin;
bin << std::setw(1) << std::setfill('0') << addr.fecCrate_;
bin << "." << std::setw(2) << std::setfill('0') << addr.fecSlot_;
bin << "." << std::setw(1) << std::setfill('0') << addr.fecRing_;
bin << "." << std::setw(3) << std::setfill('0') << addr.ccuAddr_;
bin << "." << std::setw(2) << std::setfill('0') << addr.ccuChan_;
bin << "." << desc->getAddress();
LogTrace(mlDqmClient_) << "Present values for ISHA/VFS of APV "
<< bin.str() << " : "
<< static_cast<uint16_t>(desc->getIsha()) << " " << static_cast<uint16_t>(desc->getVfs());
}
// Load the histograms with the results
std::string pwd = bei->pwd();
std::string ishaPath = getBasePath(pwd);
ishaPath += "/ControlView/isha";
LogTrace(mlDqmClient_) << "Looking for " << ishaPath;
ishaHistogram_ = ExtractTObject<TH1F>().extract( bei->get(ishaPath) );
std::string vfsPath = getBasePath(pwd);
vfsPath += "/ControlView/vfs";
LogTrace(mlDqmClient_) << "Looking for " << vfsPath;
vfsHistogram_ = ExtractTObject<TH1F>().extract( bei->get(vfsPath) );
}
// -----------------------------------------------------------------------------
/** */
CalibrationHistosUsingDb::~CalibrationHistosUsingDb() {
LogTrace(mlDqmClient_)
<< "[CalibrationHistosUsingDb::" << __func__ << "]"
<< " Destructing object...";
}
// -----------------------------------------------------------------------------
/** */
void CalibrationHistosUsingDb::uploadConfigurations() {
LogTrace(mlDqmClient_)
<< "[CalibrationHistosUsingDb::" << __func__ << "]" << ishaHistogram_ << " " << vfsHistogram_;
if(!ishaHistogram_ && !vfsHistogram_) return;
if ( !db() ) {
edm::LogWarning(mlDqmClient_)
<< "[CalibrationHistosUsingDb::" << __func__ << "]"
<< " NULL pointer to SiStripConfigDb interface!"
<< " Aborting upload...";
return;
}
// Update all APV device descriptions with new ISHA and VFS settings
SiStripConfigDb::DeviceDescriptionsRange devices = db()->getDeviceDescriptions();
update( devices );
if ( doUploadConf() ) {
edm::LogVerbatim(mlDqmClient_)
<< "[CalibrationHistosUsingDb::" << __func__ << "]"
<< " Uploading ISHA/VFS settings to DB...";
db()->uploadDeviceDescriptions();
edm::LogVerbatim(mlDqmClient_)
<< "[CalibrationHistosUsingDb::" << __func__ << "]"
<< " Uploaded ISHA/VFS settings to DB!";
} else {
edm::LogWarning(mlDqmClient_)
<< "[CalibrationHistosUsingDb::" << __func__ << "]"
<< " TEST only! No ISHA/VFS settings will be uploaded to DB...";
}
LogTrace(mlDqmClient_)
<< "[CalibrationHistosUsingDb::" << __func__ << "]"
<< " Upload of ISHA/VFS settings to DB finished!";
}
// -----------------------------------------------------------------------------
/** */
void CalibrationHistosUsingDb::update( SiStripConfigDb::DeviceDescriptionsRange& devices ) {
if(!ishaHistogram_ && !vfsHistogram_) return;
// Iterate through devices and update device descriptions
SiStripConfigDb::DeviceDescriptionsV::const_iterator idevice;
for ( idevice = devices.begin(); idevice != devices.end(); idevice++ ) {
// Check device type
if ( (*idevice)->getDeviceType() != APV25 ) { continue; }
// Cast to retrieve appropriate description object
apvDescription* desc = dynamic_cast<apvDescription*>( *idevice );
if ( !desc ) { continue; }
// Retrieve the device address from device description
const SiStripConfigDb::DeviceAddress& addr = db()->deviceAddress(*desc);
// Construct the string for that address
std::stringstream bin;
bin << std::setw(1) << std::setfill('0') << addr.fecCrate_;
bin << "." << std::setw(2) << std::setfill('0') << addr.fecSlot_;
bin << "." << std::setw(1) << std::setfill('0') << addr.fecRing_;
bin << "." << std::setw(3) << std::setfill('0') << addr.ccuAddr_;
bin << "." << std::setw(2) << std::setfill('0') << addr.ccuChan_;
bin << "." << desc->getAddress();
// Iterate over the histo bins and find the right one
for(int i = 1;i <= ishaHistogram_->GetNbinsX(); ++i) {
std::string label = ishaHistogram_->GetXaxis()->GetBinLabel(i);
if(label == bin.str()) {
desc->setIsha( (int)round(ishaHistogram_->GetBinContent(i)) );
LogDebug(mlDqmClient_) << "Setting ISHA to " << ((int)round(ishaHistogram_->GetBinContent(i))) << " for " << label;
}
}
for(int i = 1;i <= vfsHistogram_->GetNbinsX(); ++i) {
std::string label = vfsHistogram_->GetXaxis()->GetBinLabel(i);
if(label == bin.str()) {
desc->setVfs( (int)round(vfsHistogram_->GetBinContent(i)) );
LogDebug(mlDqmClient_) << "Setting VFS to " << ((int)round(vfsHistogram_->GetBinContent(i))) << " for " << label;
}
}
}
}
// -----------------------------------------------------------------------------
/** */
void CalibrationHistosUsingDb::create( SiStripConfigDb::AnalysisDescriptionsV& desc,
Analysis analysis) {
CalibrationAnalysis* anal = dynamic_cast<CalibrationAnalysis*>( analysis->second );
if ( !anal ) { return; }
SiStripFecKey fec_key( anal->fecKey() );
SiStripFedKey fed_key( anal->fedKey() );
std::ofstream ofile("calibrationResults.txt",ios_base::app);
for ( uint16_t iapv = 0; iapv < 2; ++iapv ) {
// Create description
CalibrationAnalysisDescription *tmp;
tmp = new CalibrationAnalysisDescription(anal->amplitudeMean()[iapv],
anal->tailMean()[iapv],
anal->riseTimeMean()[iapv],
anal->timeConstantMean()[iapv],
anal->smearingMean()[iapv],
anal->chi2Mean()[iapv],
anal->deconvMode(),
fec_key.fecCrate(),
fec_key.fecSlot(),
fec_key.fecRing(),
fec_key.ccuAddr(),
fec_key.ccuChan(),
SiStripFecKey::i2cAddr( fec_key.lldChan(), !iapv ),
db()->dbParams().partitions().begin()->second.partitionName(),
db()->dbParams().partitions().begin()->second.runNumber(),
anal->isValid(),
"",
fed_key.fedId(),
fed_key.feUnit(),
fed_key.feChan(),
fed_key.fedApv(),
calchan_,
isha_,
vfs_ );
// debug simplified printout in text file
ofile << " " << anal->amplitudeMean()[iapv]
<< " " << anal->tailMean()[iapv]
<< " " << anal->riseTimeMean()[iapv]
<< " " << anal->timeConstantMean()[iapv]
<< " " << anal->smearingMean()[iapv]
<< " " << anal->chi2Mean()[iapv]
<< " " << anal->deconvMode()
<< " " << fec_key.fecCrate()
<< " " << fec_key.fecSlot()
<< " " << fec_key.fecRing()
<< " " << fec_key.ccuAddr()
<< " " << fec_key.ccuChan()
<< " " << SiStripFecKey::i2cAddr( fec_key.lldChan(), !iapv )
<< " " << db()->dbParams().partitions().begin()->second.partitionName()
<< " " << db()->dbParams().partitions().begin()->second.runNumber()
<< " " << fed_key.fedId()
<< " " << fed_key.feUnit()
<< " " << fed_key.feChan()
<< " " << fed_key.fedApv()
<< " " << calchan_
<< " " << isha_
<< " " << vfs_ << std::endl;
// Add comments
typedef std::vector<std::string> Strings;
Strings errors = anal->getErrorCodes();
Strings::const_iterator istr = errors.begin();
Strings::const_iterator jstr = errors.end();
for ( ; istr != jstr; ++istr ) { tmp->addComments( *istr ); }
// Store description
desc.push_back( tmp );
}
ofile.close();
}
| [
"duggan@cern.ch"
] | duggan@cern.ch |
ae7ccc8c2f7d2689b87b32f17d79108d0ad0dd18 | db5664467043ecdf04304ad6e285251c137a803c | /codility/OddOccurencesInArray/src/code.cpp | b038ecc4a3327cdd4c8cc3e91e316a9de8fa0b4f | [] | no_license | sifaserdarozen/CodeTrain | 0cea53ca59bd0583f878f81680b816681c06a5af | 1e7aba7383cfba5e3aa55eceab25edf9bfed3499 | refs/heads/master | 2023-04-07T01:30:20.505660 | 2023-04-03T18:02:06 | 2023-04-03T18:02:06 | 61,748,291 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,128 | cpp | // you can use includes, for example:
// #include <algorithm>
// you can write to stdout for debugging purposes, e.g.
// cout << "this is a debug message" << endl;
#include <vector>
/** @brief function returning unpaired number in a vector
*
* Function that return the unpaired number in a vector
* Each element of vector is in range [1 .. 1000000000]
* Size of vector may be odd in range [1 .. 1000000]
*
* @param A input vector reference
* @retun unpaired number in the array
*/
int solution(std::vector<int> &A) {
// write your code in C++11 (g++ 4.8.2)
// get size of the vector
unsigned int N = A.size();
// do a sanity check. if size is 1, just return the only resident value
if ( 1 == N )
return A[0];
// a fast algoritm may be using xor's
// see that x^x is actually 0, and if we do an accumulating xor in the input vector
// the result will be the only odd number of the vector
int cummulative_xor = A[0];
for (unsigned int index = 1; index < A.size(); ++index)
cummulative_xor ^= A[index];
return cummulative_xor;
}
| [
"sifa.serdar.ozen@gmail.com"
] | sifa.serdar.ozen@gmail.com |
df0cff4d273924e2523ef5034f737382161143e7 | c489dd902955d805b6753f847c4fee38281c4c2f | /CPP_Classes/Trace.cpp | b1b6963ab647e7b072c58cd73dbaff31e365890f | [
"MIT"
] | permissive | germal/OpenCVB | f4f866abdc1910ccac5804ff8581702f38d2e93b | 312c452f3e981aa8238aa5f2d3d9928100bbeab6 | refs/heads/master | 2023-03-06T06:09:15.749020 | 2021-02-19T00:11:52 | 2021-02-19T00:11:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,452 | cpp | #include <cstdlib>
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <opencv2/core.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/core/utils/trace.hpp>
using namespace std;
using namespace cv;
// https://github.com/opencv/opencv/wiki/Profiling-OpenCV-Applications
class Trace_OpenCV
{
private:
public:
Mat gray, processed;
Mat src, dst;
Trace_OpenCV(){}
void Run() {
cv::cvtColor(src, gray, COLOR_BGR2GRAY);
Canny(gray, processed, 32, 64, 3);
}
};
extern "C" __declspec(dllexport)
Trace_OpenCV *Trace_OpenCV_Open() {
CV_TRACE_FUNCTION();
Trace_OpenCV *Trace_OpenCVPtr = new Trace_OpenCV();
CV_TRACE_REGION("Start");
return Trace_OpenCVPtr;
}
extern "C" __declspec(dllexport)
void Trace_OpenCV_Close(Trace_OpenCV *Trace_OpenCVPtr)
{
delete Trace_OpenCVPtr;
}
extern "C" __declspec(dllexport)
int* Trace_OpenCV_Run(Trace_OpenCV * Trace_OpenCVPtr, int* rgbPtr, int rows, int cols, int channels)
{
CV_TRACE_REGION_NEXT("process");
Trace_OpenCVPtr->src = Mat(rows, cols, (channels == 3) ? CV_8UC3 : CV_8UC1, rgbPtr);
Trace_OpenCVPtr->Run();
CV_TRACE_REGION("read"); // we are off to read the next frame...
return (int*)Trace_OpenCVPtr->processed.data; // return this C++ allocated data to managed code
}
#define NO_EXPAND_VTK
#include "../VTK_Apps/VTK.h"
extern "C" __declspec(dllexport)
int VTKPresentTest()
{
#ifdef WITH_VTK
return 1;
#else
return 0;
#endif
}
| [
"bobdavies2000@gmail.com"
] | bobdavies2000@gmail.com |
24084148877f708500b9ec2e1aeded417638d4fb | c9a0ee7e7ef7904db1a6786e48751ef750a78643 | /My_Tetris/src/Figuries/Back_L_Figure.cpp | 58e673a54c22115bfb33e1b66b14aaefb0c96247 | [] | no_license | L1ghT0/Tetris | f9123d9351da1c317f673f29ca497d5148cb17a2 | ac42cd314b6437bf3ba52fb9b9e1889312421b8f | refs/heads/master | 2021-02-11T08:27:04.365002 | 2020-09-25T14:09:57 | 2020-09-25T14:09:57 | 244,472,380 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 308 | cpp | #include "Back_L_Figure.h"
Back_L_Figure::Back_L_Figure()
{
heightFigure = 3;
widthFigure = 2;
}
void Back_L_Figure::push_figure()
{
for (int i = 0; i < heightFigure; i++)
FigureElement[i][1].symbolFigure = 219 + 255 * (getColor());
FigureElement[2][0].symbolFigure = 219 + 255 * (getColor());
}
| [
"zvjxrf@yandex.ru"
] | zvjxrf@yandex.ru |
f188af1cff6c55cb9337ef609c6306b61178b4f7 | 380d95bcf755f0c227130454e02b1e8698b274a2 | /cf658/a.cpp | 37b2a2683034b17ba76d9dd917d5cf060bd19c8e | [] | no_license | geekpradd/CP-Topicwise | dd590ce94d0feb6b7a7037dd54e54a4b40041e77 | 5a257676171d0c4db71125ad3e872b338202fe16 | refs/heads/master | 2021-05-20T09:29:35.898564 | 2020-12-25T18:54:30 | 2020-12-25T18:54:30 | 252,225,116 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,152 | cpp | #include <bits/stdc++.h>
#include <ctime>
#include <cstdlib>
#define int long long
#define ii pair<int, int>
#define pb push_back
#define mp make_pair
#define MOD 1000000007
#define E13 10000000000000
#define DUMP(a) \
do { std::cout << "[" << #a " = " << (a) << "]" << std::endl; } while(false)
#define d0(x) cout<<(x)<<" "
#define d1(x) cout<<(x)<<endl
#define edge pair<int, pair<int, int> >
#define REP0(i, n) for (int i=0; i<n; ++i)
#define REP1(i, n) for (int i=1; i<=n; ++i)
#define d2(x,y) cout<<(x)<<" "<<(y)<<endl
#define d3(x,y,z) cout<<(x)<<" "<<(y)<<" "<<(z)<<endl
#define d4(a,b,c,d) cout<<(a)<<" "<<(b)<<" "<<(c)<<" "<<(d)<<endl
#define d5(a,b,c,d,e) cout<<(a)<<" "<<(b)<<" "<<(c)<<" "<<(d)<<" "<<(e)<<endl
#define d6(a,b,c,d,e,f) cout<<(a)<<" "<<(b)<<" "<<(c)<<" "<<(d)<<" "<<(e)<<" "<<(f)<<endl
using namespace std;
template<class T> ostream& operator<<(ostream &os, vector<T> V) {
os << "[ ";
for(auto v : V) os << v << " ";
return os << "]";
}
template<class T> ostream& operator<<(ostream &os, set<T> S){
os << "{ ";
for(auto s:S) os<<s<<" ";
return os<<"}";
}
template<class L, class R> ostream& operator<<(ostream &os, pair<L,R> P) {
return os << "(" << P.first << "," << P.second << ")";
}
template<class L, class R> ostream& operator<<(ostream &os, map<L,R> M) {
os << "{ ";
for(auto m:M) os<<"("<<m.F<<":"<<m.S<<") ";
return os<<"}";
}
int n, m;
int power(int base, int exp){
if (exp==0)
return 1;
int res = power(base, exp/2);
res = (res*res)%MOD;
if (exp % 2)
return (res*base)%MOD;
return res;
}
int inverse(int n){
return power(n, MOD-2);
}
void solve(){
int n, m; cin >> n >> m;
int a[n];
map<int, int> counter;
REP0(i, n){
cin >> a[i];
counter[a[i]] = 1;
}
int b[m];
bool f = 0; int val;
REP0(i, m){
cin >> b[i];
if (counter.count(b[i])){
f = 1; val = b[i];
}
}
if (f){
d1("YES");
d0(1);
d0(val);
cout << endl;
}
else {
d1("NO");
}
}
signed main(){
cin.tie(NULL); ios_base::sync_with_stdio(false);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
#endif
int t; cin >> t;
while (t--){
solve();
}
return 0;
} | [
"geekpradd@gmail.com"
] | geekpradd@gmail.com |
9b98b04ad24b155ef470f1bf4e6a832bb04da5a8 | 70418d8faa76b41715c707c54a8b0cddfb393fb3 | /10598.cpp | 5458e91df8fa983b5e6b7f55aebdea996b3627ca | [] | no_license | evandrix/UVa | ca79c25c8bf28e9e05cae8414f52236dc5ac1c68 | 17a902ece2457c8cb0ee70c320bf0583c0f9a4ce | refs/heads/master | 2021-06-05T01:44:17.908960 | 2017-10-22T18:59:42 | 2017-10-22T18:59:42 | 107,893,680 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 381 | cpp | #include <bits/stdc++.h>
using namespace std;
const double pi = 2 * acos(0), k = 180.0 / pi;
double r, n;
int main()
{
int caseno = 1;
while (scanf("%lf %lf", &r, &n) == 2)
{
if (!r && !n)
{
break;
}
printf("Case %d:\n", caseno++);
for (int i = 1; i <= 10; i++)
{
double t = n / r, s = acos((n / 2 / pi / r / i));
printf("%.5lf\n", (s - t) * k);
}
}
}
| [
"yleewei@dso.org.sg"
] | yleewei@dso.org.sg |
9325e141517112b4c34034859719ebe3ec738d6e | d9d5d358efc7160571a3876780d921dc782c9830 | /gui/pages/LogPage.cpp | 7fbf5929d067979d40e427d7a95c31c43899fc8a | [
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
] | permissive | shaszard/test | 35b809ad0bd7309ffedd3c76440917a612679b05 | 7d1dd2a32f95eacaaea7d808cd07faf99e425977 | HEAD | 2016-09-06T18:23:44.062944 | 2014-11-02T19:29:09 | 2014-11-02T19:29:09 | 26,285,850 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,889 | cpp | #include "LogPage.h"
#include "ui_LogPage.h"
#include <QIcon>
#include <QScrollBar>
#include "logic/MinecraftProcess.h"
#include "gui/GuiUtil.h"
LogPage::LogPage(MinecraftProcess *proc, QWidget *parent)
: QWidget(parent), ui(new Ui::LogPage), m_process(proc)
{
ui->setupUi(this);
ui->tabWidget->tabBar()->hide();
connect(m_process, SIGNAL(log(QString, MessageLevel::Enum)), this,
SLOT(write(QString, MessageLevel::Enum)));
}
LogPage::~LogPage()
{
delete ui;
}
bool LogPage::apply()
{
return true;
}
bool LogPage::shouldDisplay() const
{
return m_process->instance()->isRunning();
}
void LogPage::on_btnPaste_clicked()
{
GuiUtil::uploadPaste(ui->text->toPlainText(), this);
}
void LogPage::on_btnCopy_clicked()
{
GuiUtil::setClipboardText(ui->text->toPlainText());
}
void LogPage::on_btnClear_clicked()
{
ui->text->clear();
}
void LogPage::writeColor(QString text, const char *color, const char * background)
{
// append a paragraph
QString newtext;
newtext += "<span style=\"";
{
if (color)
newtext += QString("color:") + color + ";";
if (background)
newtext += QString("background-color:") + background + ";";
newtext += "font-family: monospace;";
}
newtext += "\">";
newtext += text.toHtmlEscaped();
newtext += "</span>";
ui->text->appendHtml(newtext);
}
void LogPage::write(QString data, MessageLevel::Enum mode)
{
QScrollBar *bar = ui->text->verticalScrollBar();
int max_bar = bar->maximum();
int val_bar = bar->value();
if(isVisible())
{
if (m_scroll_active)
{
m_scroll_active = (max_bar - val_bar) <= 1;
}
else
{
m_scroll_active = val_bar == max_bar;
}
}
if (data.endsWith('\n'))
data = data.left(data.length() - 1);
QStringList paragraphs = data.split('\n');
QStringList filtered;
for (QString ¶graph : paragraphs)
{
// Quick hack for
if(paragraph.contains("Detected an attempt by a mod null to perform game activity during mod construction"))
continue;
filtered.append(paragraph.trimmed());
}
QListIterator<QString> iter(filtered);
if (mode == MessageLevel::MultiMC)
while (iter.hasNext())
writeColor(iter.next(), "blue", 0);
else if (mode == MessageLevel::Error)
while (iter.hasNext())
writeColor(iter.next(), "red", 0);
else if (mode == MessageLevel::Warning)
while (iter.hasNext())
writeColor(iter.next(), "orange", 0);
else if (mode == MessageLevel::Fatal)
while (iter.hasNext())
writeColor(iter.next(), "red", "black");
else if (mode == MessageLevel::Debug)
while (iter.hasNext())
writeColor(iter.next(), "green", 0);
else if (mode == MessageLevel::PrePost)
while (iter.hasNext())
writeColor(iter.next(), "grey", 0);
// TODO: implement other MessageLevels
else
while (iter.hasNext())
writeColor(iter.next(), 0, 0);
if(isVisible())
{
if (m_scroll_active)
{
bar->setValue(bar->maximum());
}
m_last_scroll_value = bar->value();
}
}
| [
"peterix@gmail.com"
] | peterix@gmail.com |
5d942b692010dc14c471a0936f2840f5155554d1 | 4b42d149cab66ad27fa955c0628537885587b7ee | /FriendshipIsMagic/jni/ai/dijkstra/pi.h | 625253863e0cc07f0c66dd28f99023f799b7ee74 | [] | no_license | lpzantony/friendshipismagic | 808c8189a02f897c87480ab75c95c008b4e1cd37 | 7938a6bac1eaa6679243c8f3a885e872c1af4430 | refs/heads/master | 2021-01-01T06:41:52.623238 | 2016-06-29T13:47:43 | 2016-06-29T13:47:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 458 | h | /*
* Pi.h
*
* Created on: 17 juin 2016
* Author: admin
*/
#ifndef DIJKSTRA_PI_H_
#define DIJKSTRA_PI_H_
#include "../dijkstrainterface/piinterface.h"
class VertexInterface;
#include <map>
class Pi : public PiInterface {
private :
std::map<VertexInterface*, int> pi;
public:
Pi();
virtual ~Pi();
void setValue(VertexInterface* vertex, int value) override;
int getValue(VertexInterface* vertex) override;
};
#endif /* DIJKSTRA_PI_H_ */
| [
"adrien.marcenat@orange.fr"
] | adrien.marcenat@orange.fr |
c6430233aefb2ca566b6006aeb843c5320bfd94e | 0022c1a9b713f240d9fe3bd1bab238efb527b606 | /src/acceptor_ssl.h | 6b21a87addf226ba96a6926acd78dc77b609a433 | [
"BSD-2-Clause"
] | permissive | kkqin/securesocks5 | 661c887f1a84772cc2960016e4a30f0d5bee11ab | 432cb4028c413808795645e4cd0cfff1c5aa2a2c | refs/heads/master | 2023-04-11T11:39:33.796176 | 2021-04-07T07:40:47 | 2021-04-07T07:40:47 | 279,085,868 | 0 | 0 | null | 2020-07-21T08:01:20 | 2020-07-12T14:51:36 | C++ | UTF-8 | C++ | false | false | 2,189 | h | #ifndef NETWORK_ACCEPTOR_SSL_H_
#define NETWORK_ACCEPTOR_SSL_H_
#include "secure_socks5.h"
#include "secure_socks5to.h"
namespace network
{
class Acceptor : public asio::ip::tcp::acceptor
{
public:
Acceptor(asio::io_service& io_service, int port) //NOLINT
: asio::ip::tcp::acceptor(io_service, asio::ip::tcp::endpoint(asio::ip::tcp::v4(), port))
{
}
};
template <typename Method>
class AcceptorSSL
{
public:
AcceptorSSL(std::shared_ptr<asio::io_service> io_service,
int port,
const std::function<void(std::shared_ptr<Connection>&&)> onAccept)
: context(asio::ssl::context::tlsv13),
io_service(io_service),
acceptor_(*(io_service.get()), port),
onAccept_(onAccept)
{
std::string cert_file = "./data/ssl/s4wss.crt";
std::string private_key_file = "./data/ssl/s4wss.key";
context.use_certificate_chain_file(cert_file);
context.use_private_key_file(private_key_file, asio::ssl::context::pem);
accept();
}
virtual ~AcceptorSSL()
{
acceptor_.cancel();
}
// Delete copy constructors
AcceptorSSL(const AcceptorSSL&) = delete;
AcceptorSSL& operator=(const AcceptorSSL&) = delete;
private:
void do_prepare() {
}
void accept() {
const auto socksConnect = std::make_shared<Socks5SecuretoImpl<Method>>(*io_service, context);
acceptor_.async_accept(socksConnect->socket_.lowest_layer(),
[this, socksConnect](const error_code& errorCode) {
if (errorCode == asio::error::basic_errors::operation_aborted) {
return;
}
else if (errorCode) {
DLOG(ERROR) << "Could not accept connection: " << errorCode.message();
}
else {
DLOG(INFO) << "Accepted connection start handshake";
socksConnect->set_timeout(5);
socksConnect->socket_.async_handshake(asio::ssl::stream_base::server,
[this, socksConnect](const error_code& errorCode) {
socksConnect->cancel_timeout();
if (!errorCode) {
onAccept_(socksConnect);
}
});
}
// Continue to accept new connections
accept();
});
}
asio::ssl::context context;
std::shared_ptr<asio::io_service> io_service;
Acceptor acceptor_;
std::function<void(std::shared_ptr<Connection>&&)> onAccept_;
};
}
#endif// NETWORK_SRC_ACCEPTOR_SSL_H_
| [
"asdfa@g"
] | asdfa@g |
5641778285c6f76f3f1f147941d05432dcb5a724 | 83cfd464643211f267dc167195259e77169de8cb | /HackerRank/Problem Solving/Algorithms/Greedy/Luck Balance.cpp | dd1a137b5c05764c20612a8c3db72aae9a68ae40 | [] | no_license | AnthonyDas/HackerRank | c97d3520d9902906c620774ece71b0b59f034bf9 | 8538625f13f20a1966cc1e138ac324a96157fc94 | refs/heads/master | 2020-04-05T13:14:15.123216 | 2019-01-22T00:02:47 | 2019-01-22T00:02:47 | 156,893,365 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 929 | cpp | #include <vector>
#include <algorithm> // sort
// HackerRank\HackerRank\Interview Preparation Kit\Greedy Algorithms\Luck Balance.cpp
/*
bool byImportanceDescThenLuckDesc(const std::vector<int> &a, const std::vector<int> &b) {
if (a.back() != b.back()) {
return a.back() > b.back();
}
return a.front() > b.front();
}
// Complete the luckBalance function below.
int luckBalance(int k, std::vector<std::vector<int> > contests) {
sort(contests.begin(), contests.end(), byImportanceDescThenLuckDesc);
int luck = 0;
for (std::vector<std::vector<int> >::iterator it = contests.begin(); it != contests.end(); ++it) {
// If important and k > 0 we can afford to lose this contest
if (it->back() == 1) {
if (k > 0) {
luck += it->front(); // Lose
--k;
}
else {
luck -= it->front(); // Win
}
}
else {
// Unimportant and can always lose
luck += it->front(); // Lose
}
}
return luck;
}
*/ | [
"anthony.das@gmail.com"
] | anthony.das@gmail.com |
d843aa608b6c88442fa466c41b972ceceb5e0c4e | 81464366d3d2ab91a6600be8646d0856d413d8be | /Printing_sum_increasing_subsequence.cpp | 371914191bfd97de0905d8c695d5cf0a7c631a97 | [] | no_license | SunnyJaiswal5297/Basic_c_programs | 08f289d04817f81222ceaacd7362e47fbae2935e | a2fd6168ce4ff075be6488c172200da21058dd93 | refs/heads/master | 2022-12-03T09:53:35.189234 | 2020-07-28T17:17:17 | 2020-07-28T17:17:17 | 283,201,986 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,051 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
int a[n],b[n],i,j;
for(i=0;i<n;i++)
{
cin>>a[i];
b[i]=a[i];
}
int max=INT_MIN;
vector<int> vec,res;
for(i=1;i<n;i++)
{
vec={};
for(j=0;j<i;j++)
{
if(a[i]>a[j] && b[i]<a[i]+b[j])
{
b[i]=a[i]+b[j];
vec.push_back(a[j]);
}
}
vec.push_back(a[i]);
//cout<<str<<endl;
if(b[i]>max)
{
max=b[i];
res=vec;
}
else if(b[i]==max)
{
if(vec.size()<res.size())
res=vec;
}
}
/*for(i=0;i<n;i++)
cout<<b[i]<<" ";*/
for(i=0;i<res.size();i++)
cout<<res[i]<<" ";
cout<<endl;
}
return 0;
} | [
"s2jaiswal.sj@gmail.com"
] | s2jaiswal.sj@gmail.com |
2ba25f31eda84d7b90c96ceee5af730b00059d57 | fdaa2c607e4bcbd23a3445a68c3d0a8265f92f2f | /Fall 2018/CS 225/POTD/potd-q40/main.cpp | b29e722f08f6aa325b900f18c6b4777502d72035 | [] | no_license | unnatr2/UIUC | a34cab9a0c867aa6e872800e365abaa25c08c9ae | 9ee14d0635116c03e7868cd6b3266aa9ea428570 | refs/heads/master | 2021-03-03T21:38:40.858998 | 2020-03-09T23:32:42 | 2020-03-09T23:32:42 | 245,987,822 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 890 | cpp | #include "OfficeHour.h"
#include "Student.h"
#include <iostream>
using namespace std;
int main()
{
Student Billy = Student(12, "POTD");
Student Joel = Student(15, "MP");
Student Jean = Student(8, "MP");
Student Taylor = Student(6, "LAB");
Student TimTim = Student(13, "POTD");
queue<Student> officeHourQueue;
officeHourQueue.push(Billy);
officeHourQueue.push(Joel);
officeHourQueue.push(Jean);
officeHourQueue.push(Taylor);
officeHourQueue.push(TimTim);
Staffer Wade = Staffer("LAB", 4);
Staffer Mattox = Staffer("MP", 0);
vector<Staffer> onDutyStaff{Wade, Mattox};
int expectedWaitTime = waitTime(officeHourQueue, onDutyStaff, 1);
cout << "The expected wait time for Taylor, the fourth student in the queue, is " << to_string(expectedWaitTime) << " minutes." << endl;
// add your own tests here!
return 0;
};
| [
"unnatr2@illinois.edu"
] | unnatr2@illinois.edu |
f97e72610a12691c55c832ce26f0ac4ef6ac46dd | e7197120793475467dab60bc46dee0529d6b6363 | /tensorflow/compiler/mlir/tfrt/jit/python_binding/tf_cpurt_executor.cc | 5ce3f13365783d41136b0a34ffe6e29ac804fed8 | [
"Apache-2.0",
"MIT",
"BSD-2-Clause"
] | permissive | sujitahirrao/tensorflow | 0488a33b9f8e8c2e2f623434204ddf48e8917ef4 | 70d727ba4e3fbe17ca07bdc325d81374b9e7ed80 | refs/heads/master | 2021-12-27T14:55:12.547793 | 2021-11-27T11:57:12 | 2021-11-27T11:57:12 | 50,644,575 | 1 | 0 | Apache-2.0 | 2021-11-27T11:57:13 | 2016-01-29T06:59:10 | C++ | UTF-8 | C++ | false | false | 12,936 | cc | /* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/compiler/mlir/tfrt/jit/python_binding/tf_cpurt_executor.h"
#include <iostream>
#include <stdexcept>
#include <string>
#include <utility>
#include "mlir/ExecutionEngine/CRunnerUtils.h"
#include "mlir/Transforms/Bufferize.h"
#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
#include "tensorflow/compiler/mlir/tensorflow/dialect_registration.h"
#include "tensorflow/compiler/mlir/tfrt/jit/tf_cpurt_pipeline.h"
#include "tensorflow/compiler/mlir/tfrt/python_tests/python_test_attrs_registration.h"
#include "tensorflow/core/platform/dynamic_annotations.h"
#include "tfrt/cpu/jit/cpurt.h" // from @tf_runtime
#include "tfrt/dtype/dtype.h" // from @tf_runtime
#include "tfrt/host_context/async_value.h" // from @tf_runtime
#include "tfrt/host_context/concurrent_work_queue.h" // from @tf_runtime
#include "tfrt/host_context/execution_context.h" // from @tf_runtime
#include "tfrt/host_context/host_allocator.h" // from @tf_runtime
#include "tfrt/host_context/kernel_utils.h" // from @tf_runtime
#include "tfrt/support/ref_count.h" // from @tf_runtime
#include "tfrt/support/string_util.h" // from @tf_runtime
namespace py = pybind11;
using ::tfrt::AsyncValue;
using ::tfrt::AsyncValuePtr;
using ::tfrt::CreateMallocAllocator;
using ::tfrt::CreateMultiThreadedWorkQueue;
using ::tfrt::DecodedDiagnostic;
using ::tfrt::DType;
using ::tfrt::ExecutionContext;
using ::tfrt::GetDType;
using ::tfrt::RCReference;
using ::tfrt::RemainingResults;
using ::tfrt::RequestContext;
using ::tfrt::RequestContextBuilder;
using ::tfrt::StrCat;
using ::tfrt::cpu::jit::CompilationOptions;
using ::tfrt::cpu::jit::Executable;
using ::tfrt::cpu::jit::JitExecutable;
using ::tfrt::cpu::jit::MemrefDesc;
using ::tfrt::cpu::jit::ReturnStridedMemref;
using ::tfrt::cpu::jit::ReturnValueConverter;
namespace tensorflow {
TfCpurtExecutor::TfCpurtExecutor()
: host_context_(
[](const DecodedDiagnostic& diag) {
llvm::errs() << "Encountered runtime error: " << diag.message
<< "\n";
},
CreateMallocAllocator(), CreateMultiThreadedWorkQueue(4, 4)) {}
TfCpurtExecutor::Handle TfCpurtExecutor::Compile(const std::string& mlir_module,
const std::string& entrypoint,
Specialization specialization,
bool vectorize,
bool legalize_i1_tensors) {
CompilationOptions opts;
// Create an async task for each worker thread.
opts.num_worker_threads = 4;
opts.register_dialects = [](mlir::DialectRegistry& registry) {
mlir::RegisterAllTensorFlowDialects(registry);
// Needed to verify function argument attributes which are used to
// annotate dynamic shaped types with static type information.
mlir::tfrt::RegisterPythonTestAttrsDialect(registry);
};
opts.register_pass_pipeline = [=](mlir::OpPassManager& pm) {
tensorflow::TfCpuRtPipelineOptions opts;
opts.vectorize = vectorize;
opts.legalize_i1_tensors = legalize_i1_tensors;
tensorflow::CreateTfCpuRtPipeline(pm, opts);
};
opts.specialization = specialization;
opts.type_converter = mlir::BufferizeTypeConverter();
// Instantiate new JitExecutable from the MLIR source.
llvm::Expected<JitExecutable> jit_executable =
JitExecutable::Instantiate(mlir_module, entrypoint, opts);
if (auto err = jit_executable.takeError())
throw std::runtime_error(
StrCat("Failed to instantiate JitExecutable: ", err));
Handle hdl = jit_executables_.size();
jit_executables_.insert({hdl, std::move(*jit_executable)});
return hdl;
}
// Returns Python buffer protocol's type string from TFRT's dtype.
static const char* ToPythonStructFormat(DType dtype_kind) {
// Reference: https://docs.python.org/3/library/struct.html
switch (dtype_kind) {
case DType::Invalid:
throw std::runtime_error("Invalid dtype.");
case DType::Unsupported:
throw std::runtime_error("Unsupported dtype.");
case DType::UI8:
return "B";
case DType::UI16:
return "H";
case DType::UI32:
return "I";
case DType::UI64:
return "Q";
case DType::I1:
return "?";
case DType::I8:
return "b";
case DType::I16:
return "h";
case DType::I32:
return "i";
case DType::I64:
return "q";
case DType::F32:
return "f";
case DType::F64:
return "d";
case DType::Complex64:
throw std::runtime_error("Unimplemented.");
case DType::Complex128:
throw std::runtime_error("Unimplemented.");
case DType::F16:
throw std::runtime_error("Unimplemented.");
case DType::BF16:
throw std::runtime_error("Unimplemented.");
case DType::String:
throw std::runtime_error("Unimplemented.");
default:
throw std::runtime_error("Unimplemented.");
}
}
// Returns TFRT's dtype for the Python buffer protocol's type string.
static DType FromPythonStructFormat(char dtype) {
// Reference: https://docs.python.org/3/library/struct.html
switch (dtype) {
case 'B':
return DType::UI8;
case 'H':
return DType::UI16;
case 'I':
return DType::UI32;
case 'Q':
return DType::UI64;
case '?':
return DType::I1;
case 'b':
return DType::I8;
case 'h':
return DType::I16;
case 'i':
return DType::I32;
case 'q':
return DType::I64;
case 'f':
return DType::F32;
case 'd':
return DType::F64;
default:
throw std::runtime_error("Unsupported python dtype.");
}
}
// Converts Python array to the Memref Descriptor.
static void ConvertPyArrayMemrefDesc(const py::array& array,
MemrefDesc* memref) {
auto py_dtype = [](pybind11::dtype dtype) -> char {
// np.int64 array for some reason has `i` dtype, however according to the
// documentation it must be `q`.
if (dtype.kind() == 'i' && dtype.itemsize() == 8) return 'q';
return dtype.char_();
};
memref->dtype = DType(FromPythonStructFormat(py_dtype(array.dtype())));
memref->data = const_cast<void*>(array.data());
memref->offset = 0;
int rank = array.ndim();
memref->sizes.resize(rank);
memref->strides.resize(rank);
for (ssize_t d = 0; d < rank; ++d) {
memref->sizes[d] = array.shape(d);
memref->strides[d] = array.strides(d) / array.itemsize();
}
}
template <typename T, int rank>
static llvm::ArrayRef<int64_t> Sizes(StridedMemRefType<T, rank>* memref) {
return memref->sizes;
}
template <typename T, int rank>
static llvm::ArrayRef<int64_t> Strides(StridedMemRefType<T, rank>* memref) {
return memref->strides;
}
template <typename T>
static llvm::ArrayRef<int64_t> Sizes(StridedMemRefType<T, 0>* memref) {
return {};
}
template <typename T>
static llvm::ArrayRef<int64_t> Strides(StridedMemRefType<T, 0>* memref) {
return {};
}
namespace {
struct PyBindingConversionContext {};
using PyBindingReturnValueConverter =
ReturnValueConverter<PyBindingConversionContext>;
} // namespace
template <typename T>
static bool IsAligned(const T* ptr) {
#if EIGEN_MAX_ALIGN_BYTES == 0
return true;
#else
return reinterpret_cast<intptr_t>(ptr) % EIGEN_MAX_ALIGN_BYTES == 0;
#endif
}
// Converts StridedMemrefType to the Python array. This struct satisfies
// ReturnStridedMemref's concept (see cpurt.h).
//
// TODO(ezhulenev): Currently this converter transfers ownership of the memref
// to the Python array. This is not correct in general, because memref does not
// imply ownership, for example it can be one of the forwarded inputs or a
// global memref that is owned by the compiled kernel.
struct MemrefToPyArray {
using ResultType = py::array;
using ConversionContext = PyBindingConversionContext;
template <typename T, int rank>
static py::array Convert(const ConversionContext&, void* memref_ptr) {
auto* memref = static_cast<StridedMemRefType<T, rank>*>(memref_ptr);
assert(IsAligned(memref->data) && "returned memref must be aligned");
auto memref_sizes = Sizes(memref);
auto memref_strides = Strides(memref);
std::vector<ssize_t> sizes(memref_sizes.begin(), memref_sizes.end());
std::vector<ssize_t> strides(memref_strides.begin(), memref_strides.end());
// Python expects strides in bytes.
auto dtype = GetDType<T>();
for (size_t d = 0; d < strides.size(); ++d)
strides[d] *= GetHostSize(dtype);
return py::array(py::buffer_info(memref->data, GetHostSize(dtype),
ToPythonStructFormat(dtype), rank, sizes,
strides));
}
};
std::vector<py::array> TfCpurtExecutor::Execute(
Handle handle, const std::vector<py::array>& arguments) {
// Verify that we have a compilatio result for the handle.
auto it = jit_executables_.find(handle);
if (it == jit_executables_.end())
throw std::runtime_error(StrCat("Unknown jit executable handle: ", handle));
JitExecutable& jit_executable = it->getSecond();
// Build an ExecutionContext from the HostContext.
llvm::Expected<RCReference<RequestContext>> req_ctx =
RequestContextBuilder(&host_context_, /*resource_context=*/nullptr)
.build();
tfrt::ExecutionContext exec_ctx(std::move(*req_ctx));
// Convert arguments to memrefs.
std::vector<MemrefDesc> memrefs(arguments.size());
for (int i = 0; i < arguments.size(); ++i)
ConvertPyArrayMemrefDesc(arguments[i], &memrefs[i]);
// Get an executable that might be specialized to the operands.
llvm::Expected<AsyncValuePtr<Executable>> executable =
jit_executable.GetExecutable(memrefs, exec_ctx);
if (auto err = executable.takeError())
throw std::runtime_error(
StrCat("Failed to get Executable: ", std::move(err)));
// Wait for the compilation completion.
host_context_.Await({executable->CopyRef()});
if (executable->IsError())
throw std::runtime_error(
StrCat("Failed to get Executable: ", executable->GetError()));
// Prepare storage for returned values.
unsigned num_results = (*executable)->num_results();
std::vector<RCReference<AsyncValue>> result_storage(num_results);
RemainingResults results(result_storage);
// Convert returned memrefs to Tensors.
PyBindingReturnValueConverter converter(results);
converter.AddConversion(ReturnStridedMemref<MemrefToPyArray>);
if (auto err = (*executable)->Execute(memrefs, converter, exec_ctx))
throw std::runtime_error(StrCat("Unsupported argument: ", err));
// Pull Python arrays out of async values.
std::vector<py::array> ret_values;
ret_values.reserve(result_storage.size());
for (auto& result : result_storage) {
if (result->IsError())
throw std::runtime_error(StrCat("result error: ", result->GetError()));
py::array& result_array = result->get<py::array>();
TF_ANNOTATE_MEMORY_IS_INITIALIZED(result_array.data(),
result_array.nbytes());
ret_values.emplace_back(result_array);
}
return ret_values;
}
bool TfCpurtExecutor::BuiltWith(const std::string& cpu_feature) {
if (cpu_feature == "AVX2") {
#ifdef __AVX2__
return true;
#else
return false;
#endif
}
return false;
}
} // namespace tensorflow
PYBIND11_MODULE(_tf_cpurt_executor, m) {
py::enum_<tensorflow::TfCpurtExecutor::Specialization>(m, "Specialization")
.value("ENABLED", tensorflow::TfCpurtExecutor::Specialization::kEnabled)
.value("DISABLED", tensorflow::TfCpurtExecutor::Specialization::kDisabled)
.value("ALWAYS", tensorflow::TfCpurtExecutor::Specialization::kAlways);
py::class_<tensorflow::TfCpurtExecutor>(m, "TfCpurtExecutor")
.def(py::init<>())
.def("compile", &tensorflow::TfCpurtExecutor::Compile,
py::arg("mlir_module"), py::arg("entrypoint"),
py::arg("specialization") =
tensorflow::TfCpurtExecutor::Specialization::kEnabled,
py::arg("vectorize") = false, py::arg("legalize_i1_tensors") = false)
.def("execute", &tensorflow::TfCpurtExecutor::Execute)
.def("built_with", &tensorflow::TfCpurtExecutor::BuiltWith,
py::arg("cpu_feature"));
}
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
50e80706e759657431951074c68a157ea1d7507b | 2c4a54cc3c1f48d9b34535b0f8d646c925b516e2 | /mspectrogram.h | ac38e57d57663c50fd4d261f5ea938bd07204fde | [] | no_license | mParkesUCL/ImageInversion | 6b93aa0d316f084b8fd212d50a73425b024f3269 | 3a4c124f81e7422cc176138bee9121b74bd53a81 | refs/heads/master | 2021-01-15T12:54:54.539543 | 2013-11-11T06:09:44 | 2013-11-11T06:09:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 325 | h | #ifndef MSPECTROGRAM_H
#define MSPECTROGRAM_H
#include <QWidget>
namespace Ui {
class MSpectrogram;
}
class MSpectrogram : public QWidget
{
Q_OBJECT
public:
explicit MSpectrogram(QWidget *parent = 0);
~MSpectrogram();
private:
Ui::MSpectrogram *ui;
};
#endif // MSPECTROGRAM_H
| [
"spesroma@gmail.com"
] | spesroma@gmail.com |
d2e8ecd3f44ebf25dd1bbd45ddf34cc8953a102a | 7c468d4b9101297a4ceabadc1166063f4a324dd0 | /src/main.cpp | 25ef537a04c747f7f80f193a742b37c1de4cbb77 | [] | no_license | ystc/kinste | 6e625d5c6791f4a0f04611617ef9adbe2cf3690b | 03f0428c6f66d3cbd556efb198840e1f75635237 | refs/heads/master | 2021-01-23T00:24:54.660845 | 2017-05-23T19:01:59 | 2017-05-23T19:01:59 | 85,726,780 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,637 | cpp | /*******************************************************************************
* Filename: main.cpp
* Author: ystc
* Created: 12.01.2016
* Last change: 27.01.2017
*******************************************************************************/
/*******************************************************************************
*
* Copyright (C) YLOG Industry Solutions GmbH
*
* The copyright to the computer program(s) herein is the property
* of YLOG Industry Solutions GmbH. The program(s) may be used and/or copied
* only with the written permission of YLOG or in accordance with the
* terms and conditions stipulated in the agreement/contract under
* which the program(s) have been supplied.
*
******************************************************************************/
#include <iostream>
#include "inc/MainPageControl.h"
#include "inc/UserInterface.h"
//------------------------------------------------------------------------------
void printHelp()
{
cout << "Shuttle test Environment (STE) Version 1.3.0" << endl;
cout << "Using Qt version 5.5.1" << endl << endl;
cout << "Usage:\t\t./ste\n" << endl;
cout << "Arguments:" << endl;
cout << "\t\t-v\t\t\n\t\t-i [shuttle-ip]\n";
cout << "\t\t-f [tasi-run-file]\n";
}
//------------------------------------------------------------------------------
int main(int argc, char* argv[])
{
if(argc > 3) {
printHelp();
return 0;
}
else if(argc == 2){
if(strcmp(argv[1], "-v") == 0){
printHelp();
return 0;
}
else{
printHelp();
}
}
else {
MainPageControl main_page;
main_page.show(argc, argv);
}
}
| [
"steinkellnerchristoph@gmx.at"
] | steinkellnerchristoph@gmx.at |
1e6587fd085967eddc0e4a68658b39288ed2fdfd | 8393915b57a5ff54938ad8d49f15ce617a640ddc | /src/core/camera_client.h | e45a2b90616997a38b4e815fbef9cd542fab4c06 | [] | no_license | lizhiqi-coder/FFmpegStudio | 8ffcf2f0aede20037c117f0a4895eff3336f28fa | ed1eb738e1737e3ae0c3bd6cb2f3cf0174afcc49 | refs/heads/master | 2021-09-21T13:00:50.585034 | 2017-12-04T12:58:49 | 2017-12-04T12:58:49 | 104,286,143 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 383 | h | //
// Created by 58boy on 2017/9/5.
//
#ifndef FFMPEGSTUDIO_CAMERA_CLIENT_H
#define FFMPEGSTUDIO_CAMERA_CLIENT_H
#include <pthread.h>
class CameraClient {
public:
void connect();
int detachThreadCreate(pthread_t *pthread,void *start_routine,void *arg);
void startConnection();
static void doStartThread(void *arg);
};
#endif //FFMPEGSTUDIO_CAMERA_CLIENT_H
| [
"chinalizhiqi@gmail.com"
] | chinalizhiqi@gmail.com |
857d002801dad6715f3835f5aea95bbd122b3022 | 067690553cf7fa81b5911e8dd4fb405baa96b5b7 | /9184/9184.cpp14.cpp | d805b85b2722033088d9ff10a32339fd58a97061 | [
"MIT"
] | permissive | isac322/BOJ | 4c79aab453c884cb253e7567002fc00e605bc69a | 35959dd1a63d75ebca9ed606051f7a649d5c0c7b | refs/heads/master | 2021-04-18T22:30:05.273182 | 2019-02-21T11:36:58 | 2019-02-21T11:36:58 | 43,806,421 | 14 | 9 | null | null | null | null | UTF-8 | C++ | false | false | 657 | cpp | #include <cstdio>
using namespace std;
int dp[20][20][20];
int solve(int a, int b, int c) {
if (a < 0 || b < 0 || c < 0) return 1;
else if (a >= 20 || b >= 20 || c >= 20) return solve(19, 19, 19);
int &p = dp[a][b][c];
if (p) return p;
if (a < b && b < c) return p = solve(a, b, c - 1) + solve(a, b - 1, c - 1) - solve(a, b - 1, c);
else return p = solve(a - 1, b, c) + solve(a - 1, b - 1, c) + solve(a - 1, b, c - 1) - solve(a - 1, b - 1, c - 1);
}
int main() {
int a, b, c;
while (true) {
scanf("%d%d%d", &a, &b, &c);
if (a == -1 && b == a && c == a) break;
else printf("w(%d, %d, %d) = %d\n", a, b, c, solve(a - 1, b - 1, c - 1));
}
} | [
"isac322@naver.com"
] | isac322@naver.com |
a5a89765f023813fa835eb1d841b99f6c783b985 | 6cfe7c65380924bfd6fe46a7b6cd5b006b333e96 | /source/physics/include/GateScintillationPB.hh | fc8bd2f1b171d377f08139c00f6d9fb4b1ffe4cf | [] | no_license | copernicus231/gatempi | 800eb61dd5de373d591e9cb49630172e1c4809b2 | b97c38418458dfd21e8d25887419f7967871782e | refs/heads/master | 2020-12-24T12:01:56.966710 | 2012-08-13T05:12:22 | 2012-08-13T05:12:22 | 5,534,931 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | hh | /*----------------------
GATE version name: gate_v6
Copyright (C): OpenGATE Collaboration
This software is distributed under the terms
of the GNU Lesser General Public Licence (LGPL)
See GATE/LICENSE.txt for further details
----------------------*/
#ifndef GATESCINTILLATIONPB_HH
#define GATESCINTILLATIONPB_HH
#include "GateVProcess.hh"
#include "G4Scintillation.hh"
MAKE_PROCESS_AUTO_CREATOR(GateScintillationPB)
#endif
| [
"copernicus231@gmail.com"
] | copernicus231@gmail.com |
67aabd5ef040ed10ef1c30413069ad85606f6bff | dd6c70ba403c80610f5a78a3492f367388102505 | /src/practice/dp/fpolice.cpp | 959f2bb89ce4805ada9b550bd7af848b278d4735 | [
"MIT"
] | permissive | paramsingh/cp | 80e13abe4dddb2ea1517a6423a7426c452a59be2 | 126ac919e7ccef78c4571cfc104be21da4a1e954 | refs/heads/master | 2023-04-11T05:20:47.473163 | 2023-03-23T20:20:58 | 2023-03-23T20:21:05 | 27,965,608 | 16 | 6 | null | 2017-03-21T03:10:03 | 2014-12-13T16:01:19 | C++ | UTF-8 | C++ | false | false | 1,768 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> pii;
vector<pii> graph[200];
vector<pii> risk[200];
int n, t;
int ris[200][300];
int tim[200][300];
pii ans(int u, int rem) {
if (ris[u][rem] != -1)
return make_pair(ris[u][rem], tim[u][rem]);
if (u == 1 && rem >= 0) {
return make_pair(0, 0);
}
if (rem < 0)
return make_pair(1e9, rem);
int mnr = 1e9, ti = -1;
for (int i = 0; i < graph[u].size(); i++) {
int v = graph[u][i].first;
if (v == u) continue;
assert(risk[u][i].first == v);
int wt = graph[u][i].second;
int r = risk[u][i].second;
pii go = ans(v, rem - wt);
if (go.first + r < mnr) {
mnr = go.first + r;
ti = go.second + wt;
}
}
ris[u][rem] = mnr;
tim[u][rem] = ti;
return make_pair(mnr, ti);
}
int main(void) {
int test;
scanf("%d", &test);
while (test--) {
scanf("%d %d", &n, &t);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
int w;
scanf("%d", &w);
graph[j].push_back(make_pair(i, w));
}
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
int r;
scanf("%d", &r);
risk[j].push_back(make_pair(i, r));
}
}
memset(ris, -1, sizeof(ris));
memset(tim, -1, sizeof(tim));
pii x = ans(n, t);
if (x.first == 1e9)
printf("-1\n");
else
printf("%d %d\n", x.first, x.second);
for (int i = 1; i <= n; i++) {
graph[i].clear();
risk[i].clear();
}
}
return 0;
}
| [
"paramsingh258@gmail.com"
] | paramsingh258@gmail.com |
b43f9065743ba1f5f92c471ad43f2a8b9b82c554 | b6fe7a5ce749cd05620080052cfea986817329bc | /src/subspaceSearchAlgorithms.h | ae0d6e28487aa76e68878575628d4644359fea73 | [] | no_license | holtri/R-subcon | cce5d8eaf6b6902c181f1d88ffac1163dc0f6233 | 77fd778514fca4f5cf7ab705633bc56ce43474d9 | refs/heads/master | 2020-04-03T07:11:28.194347 | 2019-02-14T17:10:16 | 2019-02-14T17:10:16 | 49,747,108 | 2 | 0 | null | 2018-11-30T10:04:11 | 2016-01-15T21:53:58 | C++ | UTF-8 | C++ | false | false | 2,183 | h | #ifndef SUBSPACESEARCHALGORITHMS_H
#define SUBSPACESEARCHALGORITHMS_H
using namespace Rcpp;
std::vector<int> sortIndices(const NumericVector &input);
//' Greedy Maximum Deviation Heuristic
//'
//' Constructs one deviation maximizing subspace for each dimension. The search
//' is based on the two dimensional deviations. For each dimension r, the
//' heuristic orders the two dimensional projections [r, s_i] by deviation, with
//' s_i being the conditional attribute. The search starts with the highest two
//' dimensional projection as the initial subspace. The next candidate to be
//' added to that subspace is the dimension that has the second highest
//' deviation. If the deviation for r increases by adding a dimension, the
//' subspace will be updated, else that dimension is discarded.
//'
//' Examples
//'
//' reference dimension: 1
//' 2-dim projections (ordered by deviation):
//' [1,3] deviation(1|3) = 0.6
//' [1,2] deviation(1|2) = 0.5
//' [1,5] deviation(1|5) = 0.4
//' [1,4] deviation(1|4) = 0.3
//'
//' Initial subspace: [1,3]
//'
//' add dimension 2
//' [1,2,3] deviation(1|2,3) = 0.65 -> increases the deviation for the reference dimension
//'
//' add dimension 5
//' [1,2,3,5] deviation(1|2,3) = 0.62 -> decreases the deviation for the reference dimension
//'
//' add dimension 5
//' [1,2,3,5] deviation(1|2,3,5) = 0.62 -> decreases the deviation for the reference dimension
//'
//' add dimension 4
//' [1,2,3,4] deviation(1|2,3,4) = 0.67 -> increases the deviation for the reference dimension
//'
//' Output space for reference dimension 1: [1,2,3,4]
//'
//'
//' @param indexMap Index for the data objects if ordered by dimension. Each
//' entry of the vector contains the index to the initial data set. The index
//' is starting with 1.
//' @param alpha Percentage of data objects to remain in the subspace slice
//' (expected value).
//' @param numRuns number of random subspace slices used to estimate the
//' deviation.
//' @return List of deviation maximizing subspaces, one for each reference dimension.
//' @export
// [[Rcpp::export]]
std::vector<NumericVector> GMD(NumericMatrix indexMap, double alpha, int numRuns, int seed = -1);
#endif
| [
"holger.trittenbach@gmail.com"
] | holger.trittenbach@gmail.com |
cdab7a9cfcc5a2515833054b18f6173e013855ba | d223f5f893c4173256eb8b94336f02ad2757459d | /Leetcode/Algorithms/Easy/Palindrome_Linked_List/Palindrome_linked_list_M2.cpp | 5cfd7aac0d7bda4b95375623648c5ad82666a740 | [
"MIT"
] | permissive | tanvipenumudy/Competitive-Programming-Solutions | 679c3f426bf0405447da373e27a2d956c6511989 | 9619181d79b7a861bbc80eff8a796866880b95e0 | refs/heads/master | 2023-02-26T14:20:41.213055 | 2021-01-29T07:09:02 | 2021-01-29T07:09:02 | 325,483,258 | 0 | 0 | MIT | 2021-01-29T07:09:03 | 2020-12-30T07:20:35 | null | UTF-8 | C++ | false | false | 755 | cpp |
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
#include <bits/stdc++.h>
class Solution
{
public:
bool isPalindrome(ListNode *head)
{
std::stack<int> s;
ListNode *temp = head;
while (temp != NULL)
{
s.push(temp->val);
temp = temp->next;
}
while (head != NULL)
{
int i = s.top();
if (head->val != i)
return false;
s.pop();
head = head->next;
}
return true;
}
}; | [
"aaaanchakure@gmail.com"
] | aaaanchakure@gmail.com |
a1ba76c2303276ed69b20dbadfe3e43e0d01f95f | 67a6efcdbc5fca554fbf31be8456ad5a3a2dac6d | /test1/stream_based/main.cpp | e962da0aa70b6274bd03214577ab289531ff413f | [] | no_license | shahzadXilinx/hlsStreamOfBlockTests | 20bf6ce122e7102b172dad659eaad2fcfdf4f2a4 | d1f58f6d4353b6859e5178b6d522372ed3d73217 | refs/heads/main | 2022-12-28T23:38:31.116375 | 2020-10-19T00:36:38 | 2020-10-19T00:36:38 | 305,215,561 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,483 | cpp | #include <math.h>
#include <stdio.h>
#include <cstring>
#include <vector>
#include "dct.h"
namespace ref
{
void DCT(float &d0, float &d1, float &d2, float &d3, float &d4, float &d5, float &d6, float &d7)
{
float tmp0 = d0 + d7;
float tmp7 = d0 - d7;
float tmp1 = d1 + d6;
float tmp6 = d1 - d6;
float tmp2 = d2 + d5;
float tmp5 = d2 - d5;
float tmp3 = d3 + d4;
float tmp4 = d3 - d4;
// Even part
float tmp10 = tmp0 + tmp3; // phase 2
float tmp13 = tmp0 - tmp3;
float tmp11 = tmp1 + tmp2;
float tmp12 = tmp1 - tmp2;
d0 = tmp10 + tmp11; // phase 3
d4 = tmp10 - tmp11;
float z1 = (tmp12 + tmp13) * 0.707106781f; // c4
d2 = tmp13 + z1; // phase 5
d6 = tmp13 - z1;
// Odd part
tmp10 = tmp4 + tmp5; // phase 2
tmp11 = tmp5 + tmp6;
tmp12 = tmp6 + tmp7;
// The rotator is modified from fig 4-8 to avoid extra negations.
float z5 = (tmp10 - tmp12) * 0.382683433f; // c6
float z2 = tmp10 * 0.541196100f + z5; // c2-c6
float z4 = tmp12 * 1.306562965f + z5; // c2+c6
float z3 = tmp11 * 0.707106781f; // c4
float z11 = tmp7 + z3; // phase 5
float z13 = tmp7 - z3;
d5 = z13 + z2; // phase 6
d3 = z13 - z2;
d1 = z11 + z4;
d7 = z11 - z4;
}
void dct(float data[64])
{
// DCT rows
for(int i=0; i<64; i+=8) {
DCT(data[i], data[i+1], data[i+2], data[i+3], data[i+4], data[i+5], data[i+6], data[i+7]);
}
// DCT columns
for(int i=0; i<8; ++i) {
DCT(data[i], data[i+8], data[i+16], data[i+24], data[i+32], data[i+40], data[i+48], data[i+56]);
}
}
void dct(unsigned int nblocks, float *data)
{
for (int i=0; i<nblocks; i++) {
dct( &data[64*i] );
}
}
};
int main(int argc, char *argv[])
{
unsigned int nvalues;
unsigned int nblocks;
if (argc>1)
nblocks = atoi(argv[1]);
else
nblocks = 512;
nvalues = nblocks*64;
printf("Running test %d blocks (%d values)\n", nblocks, nvalues);
std::vector<float> ref_v(nvalues);
hls::stream<float> dut_i;
hls::stream<float> dut_o;
float dat;
for (int i=0; i<nvalues; i++) {
dat = rand()%1024;
dut_i.write(dat);
ref_v[i] = dat;
}
ref::dct(nblocks, ref_v.data() );
krnl_dct(nblocks, dut_i, dut_o );
int err = 0;
for (int i=0; i<nvalues; i++) {
if (dut_o.read() != ref_v[i]) err++;
}
if (err)
printf("Test finished with %d error(s)\n", err);
else
printf("Test PASSED\n");
return err;
} | [
"shehzad.ee@gmail.com"
] | shehzad.ee@gmail.com |
d2482f41e49e23a831ce56d76ff04e00b12f0a0f | c7a9c8cadbfd2bcf2c373daee276104e93ce954a | /Library/GMFmodStudio/gmfs_studio_event_description.cpp | 6daa6fde9091c00aace5e05e8d4565b09df7974c | [] | no_license | tadashibashi/GMFmodStudio | 9b21c133fbe19242da6926461c7f36038c51a27d | ae4ae95c27b996a5a91a16b7df5cbbc75daebc01 | refs/heads/main | 2023-08-26T12:45:44.599708 | 2021-10-20T06:14:49 | 2021-10-20T06:14:49 | 340,236,219 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,074 | cpp | #include "gmfs_common.h"
#include "gmfs_buffer.h"
#include <iostream>
typedef FMOD::Studio::EventDescription EvDesc;
// ============================================================================
// Instances
// ============================================================================
/*
* Create Event Instance
* Returns the event instance ptr or NULL if there was a problem creating it.
*/
gms_export double fmod_studio_evdesc_create_instance(char *ptr)
{
FMOD::Studio::EventInstance *inst{ };
check = ((EvDesc *)ptr)->createInstance(&inst);
return (double)(uintptr_t)inst;
}
/*
* Get Instance Count.
* Returns -1 if the event description pointer is not a valid event description pointer.
*/
gms_export double fmod_studio_evdesc_get_instance_count(char *ptr)
{
int instance_count{ };
check = ((EvDesc *)ptr)->getInstanceCount(&instance_count);
return static_cast<double>(instance_count);
}
// Fills a buffer with an array of all the events instances as ptrs cast to uint64.
// Slow because of dynamic memory allocation.
// Returns count written on success and -1 on error.
gms_export double fmod_studio_evdesc_get_instance_list(char *ptr, double capacity, char *gmbuf)
{
int count{ };
if (((EvDesc *)ptr)->isValid())
{
check = ((EvDesc *)ptr)->getInstanceCount(&count);
if (check != FMOD_OK) return count;
if (count > capacity)
count = (int)capacity;
FMOD::Studio::EventInstance **insts = new FMOD::Studio::EventInstance *[(int)count];
check = ((EvDesc *)ptr)->getInstanceList(insts, count, &count);
if (check == FMOD_OK)
{
Buffer buf(gmbuf);
for (int i = 0; i < count; ++i)
{
buf.write<uint64_t>((uint64_t)(uintptr_t)insts[i]);
}
}
delete[] insts;
}
return static_cast<double>(count);
}
/*
* Release All Instances.
* Returns true or 1 on success, and false or 0 on failure.
*/
gms_export void fmod_studio_evdesc_release_all_instances(char *ptr)
{
check = ((EvDesc *)ptr)->releaseAllInstances();
}
// ============================================================================
// Sample Data
// ============================================================================
/*
* Loads all non-streaming sample data used by the event and any referenced event.
* Sample loading happens asynchronously and must be checked via
* getSampleLoadingState to poll for when the data has loaded.
*/
gms_export void fmod_studio_evdesc_load_sample_data(char *ptr)
{
check = ((EvDesc *)ptr)->loadSampleData();
}
/*
* Unloads all non-streaming sample data.
* Sample data will not be unloaded until all instances of the event are released.
* Returns true or 1 on success, and false or 0 on failure.
*/
gms_export void fmod_studio_evdesc_unload_sample_data(char *ptr)
{
check = ((EvDesc *)ptr)->unloadSampleData();
}
/*
* Unloads all non-streaming sample data.
* Sample data will not be unloaded until all instances of the event are released.
* Returns loading state enum on success or -1 on failure.
*/
gms_export double fmod_studio_evdesc_get_sample_loading_state(char *ptr)
{
FMOD_STUDIO_LOADING_STATE state{ };
check = ((EvDesc *)ptr)->getSampleLoadingState(&state);
return static_cast<double>(state);
}
// ============================================================================
// Attributes
// ============================================================================
/*
* Checks if the EventDescription is 3D.
* Returns true or false or -1 on error.
*/
gms_export double fmod_studio_evdesc_is_3D(char *ptr)
{
bool is3D{ };
check = ((EvDesc *)ptr)->is3D(&is3D);
return static_cast<double>(is3D);
}
/*
* Checks if the EventDescription is a oneshot.
* Returns true or false or -1 on error.
*/
gms_export double fmod_studio_evdesc_is_oneshot(char *ptr)
{
bool isOneshot{ };
check = ((EvDesc *)ptr)->isOneshot(&isOneshot);
return static_cast<double>(isOneshot);
}
/*
* Checks if the EventDescription is a snapshot.
* Returns true or false or -1 on error.
*/
gms_export double fmod_studio_evdesc_is_snapshot(char *ptr)
{
bool isSnapshot{ };
check = ((EvDesc *)ptr)->isSnapshot(&isSnapshot);
return static_cast<double>(isSnapshot);
}
/*
* Checks if the EventDescription is a stream.
* Returns true or false or -1 on error.
*/
gms_export double fmod_studio_evdesc_is_stream(char *ptr)
{
bool isStream{ };
check = ((EvDesc *)ptr)->isStream(&isStream);
return static_cast<double>(isStream);
}
/*
* Checks if the EventDescription has any sustain points.
* Returns true or false or -1 on error.
*/
gms_export double fmod_studio_evdesc_has_cue(char *ptr)
{
bool hasCue{ };
check = ((EvDesc *)ptr)->hasCue(&hasCue);
return static_cast<double>(hasCue);
}
/*
* Get the EventDescription's maximum distance for 3D attenuation.
* Returns maximum distance or -1 on error.
*/
gms_export double fmod_studio_evdesc_get_max_distance(char *ptr)
{
float maxdist{ };
check = ((EvDesc *)ptr)->getMaximumDistance(&maxdist);
return static_cast<double>(maxdist);
}
/*
* Get the EventDescription's minimum distance for 3D attenuation.
* Returns minimum distance or -1 on error.
*/
gms_export double fmod_studio_evdesc_get_min_distance(char *ptr)
{
float mindist{ };
check = ((EvDesc *)ptr)->getMinimumDistance(&mindist);
return static_cast<double>(mindist);
}
/*
* Retrieves the sound size for 3D panning.
* Retrieves the largest Sound Size value of all Spatializers and 3D Object
* Spatializers on the event's master track. Returns zero if there are no
* Spatializers or 3D Object Spatializers.
* Returns sound size or -1 on error.
*/
gms_export double fmod_studio_evdesc_get_sound_size(char *ptr)
{
float size{ };
check = ((EvDesc *)ptr)->getSoundSize(&size);
return static_cast<double>(size);
}
// ============================================================================
// Parameters
// ============================================================================
gms_export double fmod_studio_evdesc_get_paramdesc_count(char *ptr)
{
int count{ };
check = ((EvDesc *)ptr)->getParameterDescriptionCount(&count);
return static_cast<double>(count);
}
// Fills a gm buffer with information for a parameter description.
// Returns 0 on success and -1 on error.
gms_export void fmod_studio_evdesc_get_paramdesc_by_name(char *ptr, char *name, char *buf_address)
{
if (((EvDesc *)ptr)->isValid())
{
FMOD_STUDIO_PARAMETER_DESCRIPTION param;
check = ((EvDesc *)ptr)->getParameterDescriptionByName(name, ¶m);
if (check == FMOD_OK)
{
Buffer buf(buf_address);
buf.write_char_star(param.name);
buf.write<uint32_t>(param.id.data1);
buf.write<uint32_t>(param.id.data2);
buf.write(param.minimum);
buf.write(param.maximum);
buf.write(param.defaultvalue);
buf.write<uint32_t>(param.type);
buf.write<uint32_t>(param.flags);
}
}
else
{
check = FMOD_ERR_INVALID_HANDLE;
}
}
// Fills a gm buffer with information for a parameter description.
// Returns 0 on success and -1 on error.
gms_export void fmod_studio_evdesc_get_paramdesc_by_index(char *ptr, double index, char *buf_address)
{
if (((EvDesc *)ptr)->isValid())
{
FMOD_STUDIO_PARAMETER_DESCRIPTION param{ };
check = ((EvDesc *)ptr)->getParameterDescriptionByIndex(static_cast<int>(index), ¶m);
if (check == FMOD_OK)
{
Buffer buf(buf_address);
buf.write_char_star(param.name);
buf.write<uint32_t>(param.id.data1);
buf.write<uint32_t>(param.id.data2);
buf.write(param.minimum);
buf.write(param.maximum);
buf.write(param.defaultvalue);
buf.write<uint32_t>(param.type);
buf.write<uint32_t>(param.flags);
}
}
else
{
check = FMOD_ERR_INVALID_HANDLE;
}
}
// Fills a gm buffer with information for a parameter description.
// Returns 0 on success and -1 on error.
gms_export void fmod_studio_evdesc_get_paramdesc_by_id(char *ptr, char *buf_address)
{
if (((EvDesc *)ptr)->isValid())
{
Buffer buf(buf_address);
FMOD_STUDIO_PARAMETER_ID id;
id.data1 = buf.read<uint32_t>();
id.data2 = buf.read<uint32_t>();
FMOD_STUDIO_PARAMETER_DESCRIPTION param{ };
check = ((EvDesc *)ptr)->getParameterDescriptionByID(id, ¶m);
if (check == FMOD_OK)
{
buf.goto_start();
buf.write_char_star(param.name);
buf.write<uint32_t>(param.id.data1);
buf.write<uint32_t>(param.id.data2);
buf.write(param.minimum);
buf.write(param.maximum);
buf.write(param.defaultvalue);
buf.write<uint32_t>(param.type);
buf.write<uint32_t>(param.flags);
}
}
else
{
check = FMOD_ERR_INVALID_HANDLE;
}
}
// ============================================================================
// User Properties
// ============================================================================
/*
* Retrieves the data of the user property.
* Returns 0 on success and -1 on error.
*/
gms_export void fmod_studio_evdesc_get_user_property(char *ptr, const char *name, char *gmbuf)
{
if (((EvDesc *)ptr)->isValid())
{
FMOD_STUDIO_USER_PROPERTY prop;
check = ((EvDesc *)ptr)->getUserProperty(name, &prop);
if (check == FMOD_OK)
{
Buffer buf(gmbuf);
buf.write_char_star(prop.name);
buf.write((uint32_t)prop.type);
switch (prop.type)
{
case FMOD_STUDIO_USER_PROPERTY_TYPE_BOOLEAN:
buf.write<int8_t>(prop.boolvalue);
break;
case FMOD_STUDIO_USER_PROPERTY_TYPE_FLOAT:
buf.write(prop.floatvalue);
break;
case FMOD_STUDIO_USER_PROPERTY_TYPE_INTEGER:
buf.write<int32_t>(prop.intvalue);
break;
case FMOD_STUDIO_USER_PROPERTY_TYPE_STRING:
buf.write_char_star(prop.stringvalue);
break;
default:
std::cerr << "GMFMOD Internal Error! Tried to get the value of user property \""
<< prop.name << ", but the type of property was not supported.\n";
break;
}
}
}
}
/*
* Retrieves the data of the user property at the indicated index.
* Returns 0 on success and -1 on error.
*/
gms_export void fmod_studio_evdesc_get_user_property_by_index(char *ptr, double index, char *gmbuf)
{
if (((EvDesc *)ptr)->isValid())
{
FMOD_STUDIO_USER_PROPERTY prop{ };
check = ((EvDesc *)ptr)->getUserPropertyByIndex(static_cast<int>(index), &prop);
if (check == FMOD_OK)
{
Buffer buf(gmbuf);
buf.write_char_star(prop.name);
buf.write((uint32_t)prop.type);
switch (prop.type)
{
case FMOD_STUDIO_USER_PROPERTY_TYPE_BOOLEAN:
buf.write<int8_t>(prop.boolvalue);
break;
case FMOD_STUDIO_USER_PROPERTY_TYPE_FLOAT:
buf.write(prop.floatvalue);
break;
case FMOD_STUDIO_USER_PROPERTY_TYPE_INTEGER:
buf.write<int32_t>(prop.intvalue);
break;
case FMOD_STUDIO_USER_PROPERTY_TYPE_STRING:
buf.write_char_star(prop.stringvalue);
break;
default:
std::cerr << "Tried to get the value of user property \"" << prop.name <<
", but the type of property was not supported.\n";
break;
}
}
}
else
{
check = FMOD_ERR_INVALID_HANDLE;
}
}
/*
* Retrieves the number of user properties attached to an event description.
* Returns the number of properties or -1 on error.
*/
gms_export double fmod_studio_evdesc_get_user_property_count(char *ptr)
{
int count{ };
check = ((EvDesc *)ptr)->getUserPropertyCount(&count);
return static_cast<double>(count);
}
// ============================================================================
// General
// ============================================================================
gms_export void fmod_studio_evdesc_get_id(char *ptr, char *gm_buf)
{
if (((EvDesc *)ptr)->isValid())
{
FMOD_GUID id{ };
check = ((EvDesc *)ptr)->getID(&id);
if (check == FMOD_OK)
{
Buffer buffer(gm_buf);
buffer.write<uint32_t>(id.Data1);
buffer.write<uint16_t>(id.Data2);
buffer.write<uint16_t>(id.Data3);
for (int i = 0; i < 8; ++i)
{
buffer.write<uint8_t>(id.Data4[i]);
}
}
}
}
/*
* Gets the length of the EventDescription in milliseconds.
* Returns length or -1 on error.
*/
gms_export double fmod_studio_evdesc_get_length(char *ptr)
{
int length{ };
check = ((EvDesc *)ptr)->getLength(&length);
return static_cast<double>(length);
}
/*
* Gets the path of the EventDescription.
* Returns path or nullptr on error.
*/
gms_export const char *fmod_studio_evdesc_get_path(char *ptr)
{
static std::string ret;
if (((EvDesc *)ptr)->isValid())
{
char path[100];
check = ((EvDesc *)ptr)->getPath(path, 100, nullptr);
if (check == FMOD_OK)
{
ret.assign(path);
}
}
else
{
check = FMOD_ERR_INVALID_HANDLE;
}
return ret.c_str();
}
/*
* Checks if the EventDescription reference is valid.
* Returns true or false.
*/
gms_export double fmod_studio_evdesc_is_valid(char *ptr)
{
return (((EvDesc *)ptr)->isValid());
}
| [
"a.ishibashi.music@gmail.com"
] | a.ishibashi.music@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.