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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
61ec254da7434c8dea6f96e19a59f70f00edafb9 | dd6ff45ba19d2e72a7578b9f46d4a6876d2fd270 | /bitpack_x86/int8/bit_compressor.cc | 632507eefecce82d6acf78bf84d3187818ac6f94 | [] | no_license | zhuangsc/bitpack | 99afef05dd787c7c4c401e68406d031750fbaae9 | 5b0aba73954f807c8950dd364f3f77bec36a22a8 | refs/heads/master | 2022-04-20T16:47:59.175097 | 2020-04-21T19:59:47 | 2020-04-21T19:59:47 | 257,701,336 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,663 | cc | #define EIGEN_USE_THREADS
#include "tensorflow/core/framework/op.h"
#include "tensorflow/core/framework/shape_inference.h"
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/framework/tensor_types.h"
#include <cstdio>
#include <chrono>
#include <iostream>
using namespace tensorflow;
using GPUDevice = Eigen::GpuDevice;
void BitDecompressLauncher(const signed char* input, const int bits, const int nval, float* output, const GPUDevice& d);
REGISTER_OP("BitCompress")
.Input("input: float32")
.Input("bits: int32")
.Output("compressed: int8");
class BitCompressOp : public OpKernel {
public:
explicit BitCompressOp(OpKernelConstruction* context) : OpKernel(context) {}
void Compute(OpKernelContext* context) override {
typedef union {
unsigned int i; //Logical shift requires unsigned type
float f;
} _in_uni;
_in_uni utmp, utmp1;
const Tensor& traw = context->input(0);
auto input = traw.flat<float>();
const Tensor& tbits = context->input(1);
auto bits = tbits.flat<int32>();
const int BYTE = 8;
const int FP_LEN = BYTE * 4;
const int MANTISSA = 23;
const int N = input.size();
const int bround = MANTISSA - bits(0);
int tot_bits_in = N * FP_LEN;
int tot_bits_out = N * (FP_LEN-bround);
int tot_int8 = (tot_bits_out+8-1)/8;
if (sizeof(int) != 4)
std::printf("WARNING!!! sizeof int: %lu\n", sizeof(int));
#ifdef __DEBUG__
std::printf("N: %d, tot_in_bits: %d, tot_out_bits: %d, tot_int8: %d\n", N, tot_bits_in, tot_bits_out, tot_int8);
#endif
Tensor* output_tensor = NULL;
OP_REQUIRES_OK(context, context->allocate_output(0, TensorShape({tot_int8}), &output_tensor));
auto output = output_tensor->flat<int8>();
int i_idx = 0;
// Fill each element of the output tensor
for(int i = 0; i < tot_int8; i++) {
//int skip = 0;
int in_ptr = i_idx / FP_LEN; // element index
int in_off = i_idx % FP_LEN; // bit offset
int in_len = FP_LEN - (in_off + bround); //effecive bits from the current input value
if (in_len <= 0) {
in_ptr += 1;
in_off = 0;
in_len = BYTE;
i_idx = FP_LEN * in_ptr;
} else {
in_len = in_len >= BYTE ? BYTE : in_len;
}
int next_ptr = in_ptr;
int next_bits = 0;
if (in_len < BYTE && tot_bits_in-i_idx >= BYTE && i+1 < tot_int8) {
next_ptr += 1;
next_bits = BYTE - in_len;
}
#ifdef __DEBUG__
std::printf("i: %d in_ptr: %d in_off: %d in_len: %d next_bits: %d\n", i, in_ptr, in_off, in_len, next_bits);
#endif
//int itmp = *(int*)&input(in_ptr);
utmp.f = input(in_ptr);
#ifdef __DEBUG__
std::printf("utmp.i: 0x%X, utmp.f: %E\n", utmp.i, utmp.f);
#endif
if (in_ptr == next_ptr) {
char tmp = (utmp.i << in_off >> (FP_LEN - in_len));
output(i) = tmp;
i_idx += BYTE;
#ifdef __DEBUG__
std::printf("%d %d\n", in_off, FP_LEN-in_len);
std::printf("%X %X\n", utmp.i<<in_off, utmp.i<<in_off>>(FP_LEN-in_len));
std::printf("utmp.i: 0x%X tmp: 0x%hhX\n", utmp.i, tmp);
#endif
} else {
char tmp = (utmp.i >> (FP_LEN-in_off-in_len) << next_bits);
utmp1.f = input(next_ptr);
char tmp1 = (utmp1.i >> (FP_LEN-next_bits));
output(i) = tmp + tmp1;
i_idx = next_ptr * FP_LEN + next_bits;
#ifdef __DEBUG__
std::printf("utmp.i: 0x%X utmp1.i: 0x%X tmp: 0x%hhX tmp1: 0x%hhX sum(tmp): 0x%hhX\n", utmp.i, utmp1.i, tmp, tmp1, tmp+tmp1);
#endif
}
}
#ifdef __DEBUG__
for(int i = 0; i < tot_int8; i++){
std::printf("%hhX\n", output(i));
}
#endif
}
};
REGISTER_KERNEL_BUILDER(Name("BitCompress").Device(DEVICE_CPU), BitCompressOp);
REGISTER_OP("BitDecompress")
.Input("compressed: int8")
.Input("bits: int32")
.Input("nout: int32")
.Output("decompressed: float32");
/*
class BitDecompressOp : public OpKernel {
public:
explicit BitDecompressOp(OpKernelConstruction* context) : OpKernel(context) {}
void Compute(OpKernelContext* context) override {
typedef union {
unsigned int i;
float f;
} _in_uni;
_in_uni utmp, out;
const Tensor& traw = context->input(0);
auto input = traw.flat<int8>();
const Tensor& tbits = context->input(1);
auto bits = tbits.flat<int32>();
const Tensor& tnval = context->input(2);
auto nval = tnval.flat<int32>();
const int BYTE = 8;
const int FP_LEN = BYTE * 4;
const int MANTISSA = 23;
const int bround = MANTISSA - bits(0);
const int tot_float = nval(0);
//std::printf("---------------------------------------------------------\n");
if (sizeof(int) != 4)
std::printf("WARNING!!! sizeof int: %lu\n", sizeof(int));
//std::printf("N: %d, tot_in_bits: %d, tot_out_bits: %d, tot_int8: %d\n", N, tot_bits_in, tot_bits_out, tot_int8);
Tensor* output_tensor = NULL;
OP_REQUIRES_OK(context, context->allocate_output(0, TensorShape({tot_float}), &output_tensor));
auto output = output_tensor->flat<float>();
int i_idx = 0;
// Fill each element of the output tensor
for(int i = 0; i < tot_float; i++) {
int e_bits = FP_LEN - bround;
int acc_bits = 0;
out.i = 0;
while (acc_bits < FP_LEN) {
int in_ptr = i_idx / BYTE;
int in_off = i_idx % BYTE;
int len = e_bits - acc_bits;
utmp.i = input(in_ptr);
#ifdef __DEBUG__
std::printf("in_ptr: %d, in_off: %d\n", in_ptr, in_off);
std::printf("utmp.i: 0x%X\n", utmp.i);
#endif
if (len < BYTE) {
utmp.i = utmp.i >> (BYTE-len) << (BYTE-len);
i_idx += len;
break;
}
utmp.i = utmp.i & 0b11111111;
int shifts = FP_LEN - acc_bits - (BYTE - in_off);
out.i += utmp.i << shifts;
int bits = FP_LEN-acc_bits > BYTE-in_off ? BYTE-in_off : FP_LEN-acc_bits;
acc_bits += bits;
i_idx += bits;
#ifdef __DEBUG__
std::printf("0x%X 0x%X 0x%X\n", input(in_ptr), utmp.i, out.i);
std::printf("%d %d %d %d %d\n", bits, acc_bits, in_ptr, in_off, shifts);
#endif
}
#ifdef __DEBUG__
std::printf("out.i: 0x%X, out.f: %E\n", out.i, out.f);
#endif
output(i) = out.f;
}
}
};
REGISTER_KERNEL_BUILDER(Name("BitDecompress").Device(DEVICE_CPU), BitDecompressOp);
*/
class BitDecompressOp : public OpKernel {
public:
explicit BitDecompressOp(OpKernelConstruction* context) : OpKernel(context) {}
void Compute(OpKernelContext* context) override {
typedef union {
unsigned int i;
float f;
} _in_uni;
_in_uni utmp, out;
const Tensor& traw = context->input(0);
auto input = traw.flat<int8>();
const Tensor& tbits = context->input(1);
auto bits = tbits.flat<int32>();
const Tensor& tnval = context->input(2);
auto nval = tnval.flat<int32>();
const int tot_float = nval(0);
Tensor* output_tensor = NULL;
OP_REQUIRES_OK(context, context->allocate_output(0, TensorShape({tot_float}), &output_tensor));
auto output = output_tensor->flat<float>();
BitDecompressLauncher(input.data(), bits(0), nval(0), output.data(), context->eigen_device<Eigen::GpuDevice>());
}
};
REGISTER_KERNEL_BUILDER(Name("BitDecompress").Device(DEVICE_GPU) .HostMemory("bits") .HostMemory("nout"), BitDecompressOp);
| [
"zhuangsc1989@gmail.com"
] | zhuangsc1989@gmail.com |
04dee93de4b1c1db96c2157d1e210ad3c5daa621 | 841776845974ba2645eff58ff8fabedd873093f0 | /LeetCode/448找到所有数组中消失的数字.cpp | 275e53c62243ea572a6565e0754ae31c6f3587e9 | [] | no_license | hello-sources/Coding-Training | f2652c9b8e58d244a172922e56897fa2a3ad52fb | d885ca23676cb712243640169cf2e5bef2d8c70e | refs/heads/master | 2023-01-19T11:17:36.097846 | 2023-01-01T00:49:09 | 2023-01-01T00:49:09 | 246,630,755 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 462 | cpp | /**
* Note: The returned array must be malloced, assume caller calls free().
*/
#define MAX_N 100005
int* findDisappearedNumbers(int* nums, int numsSize, int* returnSize){
int num[MAX_N] = {0};
int *res = (int *)malloc(sizeof(int) * numsSize);
*returnSize = 0;
for (int i = 0; i < numsSize; i++) {
num[nums[i]]++;
}
for (int i = 1; i <= numsSize; i++) {
if (num[i] == 0) res[(*returnSize)++] = i;
}
return res;
} | [
"3245849061@qq.com"
] | 3245849061@qq.com |
0e722c6aa3e92f0abce627d23f0cd1a52ea6673a | 328c634ff527d827d3677f20f37d18b206d28f0a | /dependencies/Core2/include/DRVector3i.h | 9f6465653c7faca23c76115475edcacc949b4401 | [] | no_license | unicorny/DRUniversumEngine | a12a873f68ead50fc208e33fe97e1b27839b3a23 | 7ab8fb6a19abc86a62b74a54a75f34b4a78addee | refs/heads/master | 2023-02-27T15:25:26.534512 | 2021-02-03T18:51:49 | 2021-02-03T18:51:49 | 335,725,198 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,463 | h | /*/*************************************************************************
* *
* Core, Core-Lib for my programs, Core doesn't need any libraries *
* Copyright (C) 2012, 2013, 2014 Dario Rekowski *
* Email: dario.rekowski@gmx.de Web: www.einhornimmond.de *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
***************************************************************************/
#ifndef __DR_CORE2_VECTOR3_I__
#define __DR_CORE2_VECTOR3_I__
class DRMatrix;
/*! \brief repräsentiert einen 3D Vektor, bzw. Punkt
eine Klasse zum einfachen Rechnen mit 3D Vektoren.
Die Struktur der Klasse habe ich übernommen von <a href="http://www.spieleprogrammierer.de/" target="_blank">David Scherfgens</a>
tbVector3 Klasse aus seiner TriBase Engine
\author Dario Rekowski
\date 07.12.09
*/
class CORE2_API DRVector3i
{
public:
//! setzt alle werte auf null
//! \brief Standardkonstruktor
DRVector3i() : x(0), y(0), z(0) {}
//! setzt die werte auf die übergebenden
//! \brief Konstruktor
//! \param _x x Koordinate
//! \param _y y Koordinate
//! \param _z z Koordinate
DRVector3i(int _x, int _y, int _z) : x(_x), y(_y), z(_z) {}
//! setzt alle Werte auf einen Wert
//! \brief Konstruktor
//! \param c setzt alle 3 Koordinaten auf den Wert von c
DRVector3i(int c): x(c), y(c), z(c) {}
//! kopiert die Koordinaten eines anderen Vektors
//! \brief Kopierkonstruktor
//! \param v Vektor von dem die Koordinaten kopiert werden
DRVector3i(const DRVector3i& v): x(v.x), y(v.y), z(v.z) {}
//! setzt alle werte auf die Werte des übergebenden Arrays
//! \brief Konstruktor
//! \param ar ein Zeiger auf ein int array, mind. Länge 3
DRVector3i(const int* ar) : x(ar[0]), y(ar[1]), z(ar[2]) {}
union
{
//! zugriff via x, y z
struct
{
int x;
int y;
int z;
};
//! zugriff via c array
int c[3];
};
//! \brief () zugriffsoperator
//! \param index [0,2] für die gesuchte koordinate (x = 0, y = 1, z = 2)
//! \return eine Referenz, wenn verändert wird, wird der wert im Vektor verändert
int& operator [] (int index) {return c[index];}
//! \brief () zugriffsoperator, const
//! \param index [0,2] für die gesuchte koordinate (x = 0, y = 1, z = 2)
//! \return eine Kopie des Wertes, kann gefahrlos verändert werden
int operator [] (int index) const {return c[index];}
//! \brief Casting operator
//! \return einen Zeiger auf das Werte Array
operator int* () {return c;}
operator const int* () const {return c;}
//! addiert auf den aktuellen Vektor, die Koordinaten des übergebenden Vektors hinzu
//! \brief additions operator
//! \param v der Vektor der aufaddiert wird
//! \return referenz auf diesen Vektor
DRVector3i operator += (const DRVector3i& v) {x += v.x; y += v.y; z += v.z; return *this;}
//! addiert den Vektor mit dem übergebenden und liefert den neuen Vektor zurück
//! \brief additions operator
//! \param v der Vektor mit dem addiert wird
//! \return einen neuen Vektor
DRVector3i operator + (const DRVector3i& v) const {return DRVector3i(x+v.x, y+v.y, z+v.z);}
//! subtrahiert vom aktuellen Vektor, die Koordinaten des übergebenden Vektors
//! \brief subtraktions operator
//! \param v der Vektor der subtrahiert wird
//! \return referenz auf diesen Vektor
DRVector3i operator -= (const DRVector3i& v) {x -= v.x; y -= v.y; z -= v.z; return *this;}
//! subtrahiert den Vektor vom übergebenden und liefert den neuen Vektor zurück
//! \brief subtraktions operator
//! \param v der Vektor der subtrahiert wird
//! \return einen neuen Vektor
DRVector3i operator - (const DRVector3i& v) const {return DRVector3i(x-v.x, y-v.y, z-v.z);}
//! weist dem Vektor den Wert des übergebenden zu
//! \brief Zuweisungsoperator
//! \param v übergebender Vector
//! \return Referenz auf diesen Vektor
DRVector3i operator = (const DRVector3i& v) {x = v.x; y = v.y; z = v.z; return *this;}
//! dreht den Vektor um
//! \brief Negationsoperator
//! \return einen neuen Vektor, als Negation dieses Vektors
DRVector3i operator - () const {return DRVector3i(-x, -y, -z);}
//! teilt diesen Vektor durch einen Skalar, const
//! \brief / operator
//! \param f Skalar durch den geteilt wird
//! \return einen neuen Vektor
DRVector3i operator / (const int f) const {return DRVector3i(x/f, y/f, z/f);}
DRVector3i operator /= (const int f) {*this = *this / f; return *this;}
//! multiplieziert diesen Vektor mit einem Skalar, const
//! \brief operator: Vector * Scalar
//! \param f Skalar mit dem multipliziert wird
//! \return einen neuen Vektor
DRVector3i operator * (const int f) const {return DRVector3i(x*f, y*f, z*f);}
DRVector3i operator *= (const int f) {*this = *this * f; return *this;}
//! \brief transformiert diesen Vektor mit der Matrix m, const
//! \param die übergebende Mtrix m
//! \return einen neuen, transformierten Vektor
DRVector3i transformNormal(const DRMatrix& m) const;
DRVector3i transformCoords(const DRMatrix& m, int* const pfOutW = NULL) const;
//! \brief berechnet das Kreuzprodukt mit dem übergebendem Vektor, const
//! \param v2 der Vector mit dem das Kreuzprodukt errechnet werden soll
//! \return einen neuen Vektor, das Kreuzprodukt aus diesem und dem übergebendem Vektor
DRVector3i cross(const DRVector3i& v2) const {return DRVector3i(y * v2.z - z * v2.y, z * v2.x - x * v2.z, x * v2.y - y * v2.x);}
//! \brief berechnet das Punktprodukt mit dem übergebendem Vektor, const
//! \param v2 der Vectro mit dem das Punktprodukt errechnet werden soll
//! \return ein int Wert mit dem Punktprodukt
int dot(const DRVector3i& v2) const {return x * v2.x + y * v2.y + z * v2.z;}
//! \brief berechnet die Länge des Vektors, const
//! \return die länge des Vektors
// int length() const {return sqrtf(x*x + y*y + z*z);}
//! \brief berechnet die quadratische Länge des Vektors, const
//! \return die länge des Vektors
int lengthSq() const {return (x*x + y*y + z*z);}
//! \brief gibt den Vektor auf die Konsole aus, const
//! \param name wenn angegeben, wird name mit auf der Konsole ausgegeben
void print(const char* name = NULL) const
{
if(!name)
printf("x: %d, y: %d, z: %d\n", x, y, z);
else
printf("%s: x: %d, y: %d, z: %d\n",name, x, y, z);
}
//! \brief Vergelichsoperator für ungleich, const
//! \param a Vektor mit dem verglichen wird
//! \return true bei ungleichheit, sonst false
bool operator != (const DRVector3i& a) const
{
if(x != a.x || y != a.y || z != a.z) return true;
return false;
}
/* //! \brief standard value x Achse (1,0,0)
static const DRVector3i DRVector3i::X_AXIS;
//! \brief standard value y Achse (0,1,0)
static const DRVector3i DRVector3i::Y_AXIS;
//! \brief standard value y Achse (0,0,1)
static const DRVector3i DRVector3i::Z_AXIS;
* */
private:
};
#endif //__DR_CORE2_VECTOR3__
| [
"dario.rekowski@gmx.de"
] | dario.rekowski@gmx.de |
cb0b325870c14a069440b18eee18f7efb9aeab24 | 74d88d7eb0269e9ca73726fa5e1e6835ea227dc9 | /be/src/transport/TSaslServerTransport.h | 213706cc9eb2b62e82fe44e4aac8b7b309c0ce2b | [
"Apache-2.0"
] | permissive | hyphaltip/impala | 77dce9cec3e7e567cf7bdc6ffd884e41eb979fc5 | ab88c0c87f4a3278bfff8e9de7685235f2bdb296 | refs/heads/master | 2022-09-16T10:12:43.338810 | 2022-09-01T20:14:18 | 2022-09-01T20:14:18 | 8,172,332 | 0 | 0 | Apache-2.0 | 2022-09-01T20:10:08 | 2013-02-13T03:13:36 | C++ | UTF-8 | C++ | false | false | 6,400 | h | // This file will be removed when the code is accepted into the Thrift library.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#ifndef _THRIFT_TRANSPORT_TSASLSERVERTRANSPORT_H_
#define _THRIFT_TRANSPORT_TSASLSERVERTRANSPORT_H_ 1
#include <string>
#include <pthread.h>
#include <boost/shared_ptr.hpp>
#include <boost/thread/mutex.hpp>
#include <thrift/transport/TTransport.h>
#include "transport/TSasl.h"
#include "transport/TSaslTransport.h"
namespace apache { namespace thrift { namespace transport {
/**
*
* This transport implements the Simple Authentication and Security Layer (SASL).
* see: http://www.ietf.org/rfc/rfc2222.txt. It is based on and depends
* on the presence of the cyrus-sasl library.
*
*/
class TSaslServerTransport : public TSaslTransport {
private:
/* Handle the initial message from the client. */
virtual void handleSaslStartMessage();
/* Structure that defines a Sasl Server. */
struct TSaslServerDefinition {
/* Mechanism implemented */
std::string mechanism_;
/* Protocol */
std::string protocol_;
/* Name of the server node. */
std::string serverName_;
/* Sasl Flags: see sasl.h */
unsigned flags_;
/* Properties of this server. */
std::map<std::string, std::string> props_;
/* Callbacks to the application program. */
std::vector<struct sasl_callback> callbacks_;
TSaslServerDefinition(const std::string& mechanism, const std::string& protocol,
const std::string& serverName,
unsigned flags, const std::map<std::string, std::string>& props,
const std::vector<struct sasl_callback>& callbacks)
: mechanism_(mechanism),
protocol_(protocol),
serverName_(serverName),
flags_(flags),
props_(props),
callbacks_(callbacks) {
}
};
/* Map from a mechanism to a server definition. */
std::map<std::string, TSaslServerDefinition*> serverDefinitionMap_;
/* Wrap the passed transport in a transport for the defined server. */
TSaslServerTransport(const std::map<std::string, TSaslServerDefinition*>& serverMap,
boost::shared_ptr<TTransport> transport);
public:
/**
* Constructs a new TSaslTransport to act as a server.
* transport: the underlying transport used to read and write data.
*
*/
TSaslServerTransport(boost::shared_ptr<TTransport> transport);
/**
* Construct a new TSaslTrasnport, passing in the components of the definition.
*/
TSaslServerTransport(const std::string& mechanism, const std::string& protocol,
const std::string& serverName, unsigned flags,
const std::map<std::string, std::string>& props,
const std::vector<struct sasl_callback>& callbacks,
boost::shared_ptr<TTransport> transport);
/* Add a definition to a server transport */
void addServerDefinition(const std::string& mechanism,
const std::string& protocol, const std::string& serverName,
unsigned int flags,
std::map<std::string, std::string> props,
std::vector<struct sasl_callback> callbacks) {
serverDefinitionMap_.insert(std::pair<std::string, TSaslServerDefinition*>(mechanism,
new TSaslServerDefinition(mechanism,
protocol, serverName, flags, props, callbacks)));
}
/* Set the server */
void setSaslServer(sasl::TSasl* saslServer);
/**
* Factory to ensure that a given underlying TTransport instance receives
* the same TSaslServerTransport for both send and receive.
*/
class Factory : public TTransportFactory {
public:
Factory() {
}
/**
* Create a new Factor for a server definition.
* Provides a single definition for the server, others may be added.
*/
Factory(const std::string& mechanism, const std::string& protocol,
const std::string& serverName,
unsigned flags, std::map<std::string, std::string> props,
std::vector<struct sasl_callback> callbacks)
: TTransportFactory() {
addServerDefinition(mechanism, protocol, serverName, flags, props, callbacks);
}
virtual ~Factory() {}
/**
* Wraps the transport with the Sasl protocol.
*/
virtual boost::shared_ptr<TTransport> getTransport(
boost::shared_ptr<TTransport> trans);
/* Add a definition to a server transport factory */
void addServerDefinition(const std::string& mechanism,
const std::string& protocol, const std::string& serverName,
unsigned int flags,
std::map<std::string, std::string> props,
std::vector<struct sasl_callback> callbacks) {
serverDefinitionMap_.insert(
std::pair<std::string, TSaslServerDefinition*>(mechanism,
new TSaslServerDefinition(mechanism, protocol,
serverName, flags, props, callbacks)));
}
private:
/* Map for holding and returning server definitions. */
std::map<std::string, TSaslServerDefinition*> serverDefinitionMap_;
/* Map from a wrapped transport to its Sasl Transport. */
std::map<boost::shared_ptr<TTransport>,
boost::shared_ptr<TSaslServerTransport> > transportMap_;
/* Lock to synchronize the transport map. */
boost::mutex transportMap_mutex_;
};
};
}}} // apache::thrift::transport
#endif // #ifndef _THRIFT_TRANSPORT_TSSLSERVERTRANSPORT_H_
| [
"lskuff@cloudera.com"
] | lskuff@cloudera.com |
c2e9fa41b52065ff737fb3545f1ec6bc90fe3bc9 | 7620b3d9ea3ef3ba73d50d6448f51a9c1c1a3757 | /Arduino_package/hardware/variants/rtl8720dn/variant.cpp | a9b1ba852959d9b48bb47cfd844113e3584d3bde | [] | no_license | xidameng/BW16_RTL8720DN_Arduino | ba428e11f190d0402142262c0d77506b3bafcf3e | 31a304f19c2e829a84770abdc2eea3cd04e49f3e | refs/heads/main | 2023-03-28T03:59:07.267775 | 2021-04-01T10:45:17 | 2021-04-01T10:45:17 | 353,657,347 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,091 | cpp | /*
Copyright (c) 2011 Arduino. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "variant.h"
#ifdef __cplusplus
extern "C" {
#endif
//#include "PinNames.h"
void __libc_init_array(void);
/*
* Pins descriptions
*/
PinDescription g_APinDescription[TOTAL_GPIO_PIN_NUM]=
{
{PA_7, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ , NOT_INITIAL}, //Arduino pin 0, Serial(0) TX
{PA_8, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ , NOT_INITIAL}, //Arduino pin 1, Serial(0) RX
{PA_27, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ , NOT_INITIAL}, //Arduino pin 2
{PA_30, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ , NOT_INITIAL}, //Arduino pin 3
{PB_1, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ , NOT_INITIAL}, //Arduino pin 4, A4, Recommended Serial2 TX
{PB_2, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ , NOT_INITIAL}, //Arduino pin 5, A5, Recommended Serial2 RX
{PB_3, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ , NOT_INITIAL}, //Arduino pin 6, A6,
{NC, NOT_INITIAL, NOT_INITIAL , NOT_INITIAL}, //7
{NC, NOT_INITIAL, NOT_INITIAL , NOT_INITIAL}, //8
{NC, NOT_INITIAL, NOT_INITIAL , NOT_INITIAL}, //9
{NC, NOT_INITIAL, NOT_INITIAL , NOT_INITIAL}, //10
{NC, NOT_INITIAL, NOT_INITIAL , NOT_INITIAL}, //11
{NC, NOT_INITIAL, NOT_INITIAL , NOT_INITIAL}, //12
{NC, NOT_INITIAL, NOT_INITIAL , NOT_INITIAL}, //13
{NC, NOT_INITIAL, NOT_INITIAL , NOT_INITIAL}, //14
{NC, NOT_INITIAL, NOT_INITIAL , NOT_INITIAL}, //15
{PA_25, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ | PIO_PWM , NOT_INITIAL}, //Arduino pin 16, PWM, Default Serial2 TX, I2C0 SCL, IR TX
{PA_26, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ | PIO_PWM , NOT_INITIAL}, //Arduino pin 17, PWM, Default Serial2 RX, I2C0 SDA, IR RX
{PA_15, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ , NOT_INITIAL}, //Arduino pin 18, SPI1 CS
{PA_14, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ , NOT_INITIAL}, //Arduino pin 19, SPI1 CLK, GREEN LED
{PA_13, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ | PIO_PWM , NOT_INITIAL}, //Arduino pin 20, SPI1 MISO, PWM, BLUE LED
{PA_12, NOT_INITIAL, PIO_GPIO | PIO_GPIO_IRQ | PIO_PWM , NOT_INITIAL} //Arduino pin 21, SPI1 MOSI, PWM, RED LED
};
void *gpio_pin_struct[TOTAL_GPIO_PIN_NUM] = {NULL};
void *gpio_irq_handler_list[TOTAL_GPIO_PIN_NUM] = {NULL};
#ifdef __cplusplus
} // extern C
#endif
void serialEvent() __attribute__((weak));
bool Serial_available() __attribute__((weak));
// ----------------------------------------------------------------------------
void serialEventRun(void)
{
if (Serial_available && serialEvent && Serial_available()) serialEvent();
}
void init(void)
{
// zzw
// uint8_t *regionAddr;
// size_t regionSize;
// Initialize C library
__libc_init_array();
}
// ----------------------------------------------------------------------------
void wait_for_debug(void) {
while (((CoreDebug->DHCSR) & CoreDebug_DHCSR_C_DEBUGEN_Msk) == 0) {
asm("nop");
}
delay(1000);
}
| [
"xidameng@gmail.com"
] | xidameng@gmail.com |
9b824cc36321ef5c045775814255c20f6624f18b | 533ccf6f0e6caf9496e2d010300ae9d20c787659 | /dependencies/blah/include/blah/math/color.h | e5a8e378b756716eaaef4388f92a1bd39b63a77b | [] | no_license | dani-lp/chess2 | be9c67eec49f1596f638cca5b30f3bb8d2e96476 | dbf2b590741584309486204591872c51fe75e8d3 | refs/heads/master | 2023-06-01T04:22:37.987054 | 2021-06-30T16:37:25 | 2021-06-30T16:37:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,970 | h | #pragma once
#include <blah/core/common.h>
#include <blah/containers/str.h>
namespace Blah
{
struct Vec3;
struct Vec4;
struct Color
{
u8 r;
u8 g;
u8 b;
u8 a;
Color();
Color(int rgb);
Color(int rgb, float alpha);
Color(u8 r, u8 g, u8 b);
Color(u8 r, u8 g, u8 b, u8 a);
Color(const Vec3& vec3);
Color(const Vec3& vec3, float alpha);
Color(const Vec4& vec4);
// Parses a Hex string in the format of "#00000000" or "0x00000000" or "00000000"
Color(const String& hex_string);
// Premultiplies the Color
void premultiply();
// Returns an RGBA hex string of the color
String to_hex_rgba() const;
// Sets a Hex string to the given buffer, in the format of RRGGBBAA
// The buffer must be at least 8 bytes long
void to_hex_rgba(char* buffer) const;
// Sets a Hex string to the given buffer, in the format of RRGGBB
// The buffer must be at least 6 bytes long
void to_hex_rgb(char* buffer) const;
// Returns an RGB hex string of the color
String to_hex_rgb() const;
// Convers the Color to a u32
u32 to_rgba() const;
// Converts the Color to a Vec4
Vec4 to_vec4() const;
// Returns a RGBA Color representation of the integer value
static Color from_rgba(u32 value);
// Returns a RGB Color representation of the integer value, with Alpha = 255
static Color from_rgb(u32 value);
// Lerps between two colors
static Color lerp(Color a, Color b, float amount);
// Mutliplties the Color
Color operator*(float multiply) const;
// assignment from int
Color& operator= (const int rgb);
// comparisons
bool operator ==(const Color& rhs) const;
bool operator !=(const Color& rhs) const;
static const Color transparent;
static const Color white;
static const Color black;
static const Color red;
static const Color green;
static const Color blue;
static const Color yellow;
static const Color orange;
static const Color purple;
static const Color teal;
};
}
| [
"daniel.lauzurica@opendeusto.es"
] | daniel.lauzurica@opendeusto.es |
546e432bd77a0f05ebb6b988dbcd0e97c74ddd8c | c4022fe9ad42511ee596b2df7e8507d34a8e45b7 | /structurist/doublylinkedlists.cpp | 4216f92175ca4e9e62949c76ae7c83466fb4c074 | [] | no_license | deepbrook/nls-cppGround | fd3b266fab4de057e7e38db617a293e410a77710 | 12720764848a58a3048475aa64b633dcc88ef8b4 | refs/heads/master | 2021-06-09T03:47:53.623844 | 2016-12-01T13:30:21 | 2016-12-01T13:30:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,655 | cpp |
#include <iostream>
#include<cstdlib>
using namespace std;
struct ListItem2 {
unsigned int data;
struct ListItem2 *next;
struct ListItem2 *previous;
};
struct List{
struct ListItem2 *head;
struct ListItem2 *tail;
};
void push(int value, List **list)
{
ListItem2 *newEntry; // register a name with your machine for a var
newEntry = (ListItem2*)malloc(sizeof(struct ListItem2)); // reserve memory for an object with the size of a listItem
newEntry->data = value;
newEntry->next = (*list)->head;
newEntry->previous = NULL;
if ((*list)->head != NULL){
(*list)->head->previous = newEntry;
}
if ((*list)->tail == NULL){
(*list)->tail = newEntry;
};
(*list)->head = newEntry;
return;
}
unsigned int pop(List **list)
{
if ((*list)->tail == NULL){
return 0;
}
ListItem2* newTail = (*list)->tail->previous;
unsigned int val = (*list)->tail->data;
if ((*list)->tail->previous != NULL){
(*list)->tail->previous->next = NULL;
}
else{
(*list)->head = NULL;
}
free((*list)->tail);
(*list)->tail = newTail;
return val;
}
#if 0
int main()
{
List *dllist;
dllist= (List*)malloc(sizeof(struct List));
dllist->head = NULL;
dllist->tail = NULL;
for (int i = 0; i<100000; i++){
for(int a = 0; a<50; a++){
push(a, &dllist);
};
for(int a = 0; a<25; a++){
pop(&dllist);
};
for(int a = 0; a<50; a++){
push(a, &dllist);
};
for(int a = 0; a<75; a++){
pop(&dllist);
};
};
}
#endif
| [
"23okrs35+github@mykolab.com"
] | 23okrs35+github@mykolab.com |
be1043276358c62afff6179f1ca0695d6562726c | d0c9ab08ecad2fe5f7365490c47603d18d60808b | /Source/Picross/PuzzlePlayer.h | 74e40baa8cdaee8086a0c431fc0b7c02d4fc309f | [] | no_license | bohdon/Picross | 654ff1361f731332e0d5d7a416650c6f77c71f4a | 226b2262a5d58b7fff6537a6b32475eb374d3227 | refs/heads/main | 2023-04-02T21:26:44.609130 | 2021-04-05T09:10:32 | 2021-04-05T09:10:32 | 352,220,574 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,960 | h | // Copyright Bohdon Sayre.
#pragma once
#include "CoreMinimal.h"
#include "PuzzleTypes.h"
#include "GameFramework/Actor.h"
#include "PuzzlePlayer.generated.h"
class APuzzleBlockAvatar;
class APuzzleGrid;
/**
* Handles playing a puzzle. Generates nonogram hints
* about the puzzle, and manages the state of the puzzle solve.
*/
UCLASS()
class PICROSS_API APuzzlePlayer : public AActor
{
GENERATED_BODY()
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, meta = (AllowPrivateAccess = "true"))
USceneComponent* Root;
public:
APuzzlePlayer();
/** The puzzle to be solved */
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FPuzzleDef PuzzleDef;
/** The puzzle grid class to use */
UPROPERTY(EditAnywhere, BlueprintReadWrite)
TSubclassOf<APuzzleGrid> PuzzleGridClass;
/** Start playing the puzzle */
UFUNCTION(BlueprintCallable)
void Start();
/** Return the current puzzle grid */
UFUNCTION(BlueprintPure)
APuzzleGrid* GetPuzzleGrid() const { return PuzzleGrid; }
/** Set the current rotation of the puzzle */
UFUNCTION(BlueprintCallable)
void SetPuzzleRotation(float Pitch, float Yaw);
/** Add input to rotate the puzzle right or left */
UFUNCTION(BlueprintCallable)
void AddRotateRightInput(float Value);
/** Add input to rotate the puzzle up or down */
UFUNCTION(BlueprintCallable)
void AddRotateUpInput(float Value);
/** Automatically identify all empty blocks on rows with visible 0 annotations */
UFUNCTION(BlueprintCallable)
void BreakZeroRows();
/** Automatically identify all blocks for a row */
UFUNCTION(BlueprintCallable)
void AutoIdentifyBlocksInRow(FPuzzleRow Row);
/** Refresh the annotations displayed for all blocks */
UFUNCTION(BlueprintCallable)
void RefreshAllBlockAnnotations();
/** Return true if all blocks in a row have been identified */
UFUNCTION(BlueprintCallable, BlueprintPure = false)
bool IsRowIdentified(FPuzzleRow Row) const;
/** Return true if all blocks of a single type has been identified in a row */
UFUNCTION(BlueprintCallable, BlueprintPure = false)
bool IsRowTypeIdentified(FPuzzleRow Row, FGameplayTag BlockType) const;
/**
* Get all annotations for a block.
* Updates the row type annotations to include whether each type is identified for that row
*/
UFUNCTION(BlueprintCallable)
FPuzzleBlockAnnotations GetBlockAnnotations(FIntVector Position) const;
UFUNCTION(BlueprintCallable)
FPuzzleRowAnnotations GetRowAnnotation(FPuzzleRow Row) const;
virtual void BeginPlay() override;
/**
* Called when the true form of all blocks in a row has been revealed.
* Not called for empty rows.
*/
UFUNCTION(BlueprintImplementableEvent, meta = (DisplayName = "OnRowRevealed"))
void OnRowRevealed_BP(FPuzzleRow Row);
/**
* Called when the puzzle has been fully solved
*/
UFUNCTION(BlueprintImplementableEvent, meta = (DisplayName = "OnPuzzleSolved"))
void OnPuzzleSolved_BP();
protected:
/** Has the puzzle been started? */
UPROPERTY(Transient)
bool bIsStarted;
/** Has the puzzle been solved? */
UPROPERTY(Transient)
bool bIsSolved;
/** The current puzzle grid */
UPROPERTY(Transient)
APuzzleGrid* PuzzleGrid;
/** All annotations for the puzzle */
UPROPERTY(Transient)
FPuzzleAnnotations Annotations;
/** Regenerate all annotations */
void RegenerateAllAnnotations();
APuzzleGrid* CreatePuzzleGrid();
void SetAllBlockAnnotationsVisible(bool bNewVisible);
/** Check if the puzzle has been solved */
void CheckPuzzleSolved();
/**
* Check if a row has been solved, and reveal the true form of blocks if so
*/
void CheckRowSolved(FPuzzleRow Row);
/** Called when a block has been identified correctly */
void OnBlockIdentifyAttempt(APuzzleBlockAvatar* BlockAvatar, FGameplayTag BlockType);
/** Called when a block has been identified correctly */
void OnBlockIdentified(APuzzleBlockAvatar* BlockAvatar);
/** Called when all blocks in a row have been identified */
void OnRowIdentified(FPuzzleRow Row);
};
| [
"bohdon.sayre@flightschoolstudio.com"
] | bohdon.sayre@flightschoolstudio.com |
8ffaa1c8a61d82aacd0253bbacd35c8b1a595ce4 | 1bd447177198d081ab7d8a08cf94a6ee439d8e77 | /Domains/Swimmers/include/debug.h | 5045875a4908a4ee70b5700cf1ac7c4113f5926e | [] | no_license | curranw/Core | c115815368da0e2bc9addded7124a88f40c2f963 | fa941b887c3a9cf7bfdaed418cdc0d4a35caa666 | refs/heads/master | 2020-05-22T07:03:44.250777 | 2017-04-14T18:02:46 | 2017-04-14T18:02:46 | 42,198,694 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,643 | h | ////////////////////////////////////////////////////////////////////////////
//
// debug.h
//
// debug macros
//
// Macros for conditionnal compilation :
// INLINE, MY_ERROR, ASSERT, FATAL, CHECKPOINT, TRACE
// (see the following code for details)
//
// Remi Coulom
//
// April, 1996
//
////////////////////////////////////////////////////////////////////////////
#ifndef DEBUG_H
#define DEBUG_H
#include <iostream>
#include <cstdlib>
//
// MY_ERROR
//
#define MY_ERROR(s) do { \
std::cout << s << '\n'; \
std::cout << "File: " << __FILE__ << '\n'; \
std::cout << "Line: " << __LINE__ << '\n'; \
exit(1);} while(0)
//
// FATAL(x)
//
#define FATAL(x) do if ((x)) MY_ERROR("Fatal error: " << #x); while(0)
//
// INLINE, ASSERT(x), CHECKPOINT()
//
#ifdef DEBUG
#define INLINE
#define TRACE(s) do {cout << s << '\n';} while(0)
#define ASSERT(x) do if (!(x)) MY_ERROR("Assertion failed: "<<#x); while(0)
#define CHECKPOINT() do { \
cout << '?'; \
cout.flush(); \
int x = cin.get(); \
if (x != '\n') \
exit(1); \
} while(0);
#else
#define INLINE inline
#define TRACE(s)
#define ASSERT(x)
#define CHECKPOINT()
#endif
#endif
| [
"curranw@onid.orst.edu"
] | curranw@onid.orst.edu |
5db75e85f3554bc3e8f823938f07ad3e2f53a8a4 | 0615432075682c4a542d71194e6302007f4d8583 | /src/testApp.h | 3b5de19d94ae17b2f8c0e0c26e94bd31276e021f | [] | no_license | rezponze/AIDawn | b55e43b8505e3e994cd94de4351b67b57c96987c | be8ef48413e98f99ed49bbb6782cc6b723e8a0c8 | refs/heads/master | 2020-12-15T11:10:51.083761 | 2010-03-24T11:36:00 | 2010-03-24T11:36:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,397 | h | #ifndef _TEST_APP
#define _TEST_APP
#include "ofMain.h"
#include "ofxMultiTouch.h"
#include "ofxVectorMath.h"
#include "ofxALSoundPlayer.h"
#include "ofxXmlSettings.h"
#include "newlevel.h"
#include "glu.h"
#include "constant.h"
#include "plane.h"
#include "circle.h"
#include "initMenu.h"
#include "resetMenu.h"
#include "itemsMenu.h"
#include "introStage.h"
#include "sound.h"
#include "stageManager.h"
#include "clock.h"
#include "uploadManager.h"
class testApp : public ofSimpleApp, public ofxMultiTouchListener{
public:
//vars
int counter;
int globalcounter;
int level;
bool menuScene;
bool resetPressed;
bool end;
bool printScreen;
bool introStageFlag;
bool alertMessage;
bool gameOver;
bool resultStage;
bool loaded;
char alertText[255];
Sound *soundSystem;
ofTrueTypeFont tempesta;
//methods
void setup();
void update();
void draw();
void keyPressed (int key);
void keyReleased (int key);
void mouseMoved(int x, int y );
void mouseDragged(int x, int y, int button);
void mousePressed(int x, int y, int button);
void mouseReleased(int x, int y, int button);
void touchDown(float x, float y, int touchId, ofxMultiTouchCustomData *data = NULL);
void touchMoved(float x, float y, int touchId, ofxMultiTouchCustomData *data = NULL);
void touchUp(float x, float y, int touchId, ofxMultiTouchCustomData *data = NULL);
void touchDoubleTap(float x, float y, int touchId, ofxMultiTouchCustomData *data = NULL);
void windowResized(int w, int h);
void createPlane();
void checkHit(int x, int y);
void checkResetMenu(int x, int y);
bool checkBeginButton(int x, int y);
bool checkResetButton(int x, int y);
bool checkPlaneHit(int x, int y);
void resetLevel();
private:
//vars
float zoomIn;
bool endStage;
ofTexture screen;
InitMenu *menuInicio;
ResetMenu *menuReset;
ItemsMenu *menuItems;
Plane **plane;
StageManager *stageManager;
IntroStage *introStage;
Clock *clockUp;
Clock *clockDown;
UploadManager *uploader;
//methods
void initVars();
void checkHitIntroStage();
void checkHitMenuInicio();
void checkCountDownFinish();
void checkPrintScreen();
bool checkChangeStage();
void checkResetPressed();
void resetOption(resetMenuType option);
void drawScene();
};
#endif
| [
"rez@corelabs.cn"
] | rez@corelabs.cn |
037ec94cabb230a03ad9e26564129b9ed317d7fb | c6b6b15e89d56c589f73bf481f8d6e655207cf8f | /data/proto_converter.h | 272ffc603ba374151f3be8cafac8bf09edaebbc8 | [] | no_license | madhavsuresh/vaultdb_core_operators | 97106dc7846b51eadcc168d6882577cbd9fd1e73 | 753f29ff3bcee7ab465718d9e6e07b471b039ea6 | refs/heads/master | 2023-07-25T06:38:48.728908 | 2020-02-18T01:06:40 | 2020-02-18T01:06:40 | 232,232,110 | 3 | 0 | null | 2023-07-05T20:46:17 | 2020-01-07T03:09:03 | C++ | UTF-8 | C++ | false | false | 279 | h | //
// Created by madhav on 12/28/19.
//
#ifndef TESTING_PROTO_CONVERTER_H
#define TESTING_PROTO_CONVERTER_H
#include <dbquery.pb.h>
#include <querytable/query_table.h>
std::unique_ptr<QueryTable> ProtoToQuerytable(const dbquery::Table &t);
#endif // TESTING_PROTO_CONVERTER_H
| [
"madhav@thoughtbison.net"
] | madhav@thoughtbison.net |
36ecf81702c7ca7ea15fe253315bbd9503ce4836 | e3505cfd86c57b1869c2885a3a44550af552d483 | /source/resource/filter/filters/cxResampleImageFilter.h | ae939f284e7c1e16f52b23dfb4214fd3fe664eea | [
"BSD-3-Clause"
] | permissive | leettran/CustusX | afb6a3bc6607bf28fa1c94f94b66cf9979728cd5 | b4e64e0db364da189ee9eafa54ce0ab258f5105a | refs/heads/master | 2021-07-14T03:33:55.038281 | 2017-02-09T09:29:57 | 2017-02-09T09:29:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,731 | h | /*=========================================================================
This file is part of CustusX, an Image Guided Therapy Application.
Copyright (c) 2008-2014, SINTEF Department of Medical 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:
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.
=========================================================================*/
#ifndef CXRESAMPLEIMAGEFILTER_H
#define CXRESAMPLEIMAGEFILTER_H
#include "cxFilterImpl.h"
namespace cx
{
/** Filter for resampling and cropping a volume into the space of another.
*
*
* \ingroup cx_resource_filter
* \date Nov 26, 2012
* \author christiana
*/
class cxResourceFilter_EXPORT ResampleImageFilter : public FilterImpl
{
Q_OBJECT
public:
ResampleImageFilter(VisServicesPtr services);
virtual ~ResampleImageFilter() {}
virtual QString getType() const;
virtual QString getName() const;
virtual QString getHelp() const;
virtual bool execute();
virtual bool postProcess();
// extensions:
DoublePropertyPtr getMarginOption(QDomElement root);
protected:
virtual void createOptions();
virtual void createInputTypes();
virtual void createOutputTypes();
private slots:
private:
ImagePtr mRawResult;
};
typedef boost::shared_ptr<class ResampleImageFilter> ResampleImageFilterPtr;
} // namespace cx
#endif // CXRESAMPLEIMAGEFILTER_H
| [
"christian.askeland@sintef.no"
] | christian.askeland@sintef.no |
9ec9d3cd1fb4637d76636e89a10006db541ad232 | 8c2b209d83d457eb0b55822d440007387f2d2a75 | /foundation/include/lucid/AccessExpireLRUCache.h | 36c7a69cc8631ce1045d4a613e66d09749264937 | [] | no_license | MayaPosch/Lucid | 491277fdd2edacb8469171292330853d51b35bc6 | 48e7563f59ba125e3d694976fc4d7a8fd47e66bc | refs/heads/master | 2022-09-07T08:03:40.387631 | 2020-06-01T15:33:42 | 2020-06-01T15:33:42 | 266,867,257 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,621 | h | //
// AccessExpireLRUCache.h
//
// Library: Foundation
// Package: Cache
// Module: AccessExpireLRUCache
//
// Definition of the AccessExpireLRUCache class.
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef Foundation_AccessExpireLRUCache_INCLUDED
#define Foundation_AccessExpireLRUCache_INCLUDED
#include "lucid/AbstractCache.h"
#include "lucid/StrategyCollection.h"
#include "lucid/AccessExpireStrategy.h"
#include "lucid/LRUStrategy.h"
namespace Lucid {
template <
class TKey,
class TValue,
class TMutex = FastMutex,
class TEventMutex = FastMutex
>
class AccessExpireLRUCache: public AbstractCache<TKey, TValue, StrategyCollection<TKey, TValue>, TMutex, TEventMutex>
/// An AccessExpireLRUCache combines LRU caching and time based expire caching.
/// It cache entries for a fixed time period (per default 10 minutes)
/// but also limits the size of the cache (per default: 1024).
{
public:
AccessExpireLRUCache(std::size_t cacheSize = 1024, Timestamp::TimeDiff expire = 600000):
AbstractCache<TKey, TValue, StrategyCollection<TKey, TValue>, TMutex, TEventMutex >(StrategyCollection<TKey, TValue>())
{
this->_strategy.pushBack(new LRUStrategy<TKey, TValue>(cacheSize));
this->_strategy.pushBack(new AccessExpireStrategy<TKey, TValue>(expire));
}
~AccessExpireLRUCache()
{
}
private:
AccessExpireLRUCache(const AccessExpireLRUCache& aCache);
AccessExpireLRUCache& operator = (const AccessExpireLRUCache& aCache);
};
} // namespace Lucid
#endif // Foundation_AccessExpireLRUCache_INCLUDED
| [
"maya@nyanko.ws"
] | maya@nyanko.ws |
0ef1a94ce290245bb5cb766b46033a15cfc1e76d | f50da5dfb1d27cf737825705ce5e286bde578820 | /Temp/il2cppOutput/il2cppOutput/AssemblyU2DCSharp_Newtonsoft_Json_ConstructorHandl2670794114.h | 9d9a8fc60b563f41fbc8d8f83b082d8f515eeefa | [] | no_license | magonicolas/OXpecker | 03f0ea81d0dedd030d892bfa2afa4e787e855f70 | f08475118dc8f29fc9c89aafea5628ab20c173f7 | refs/heads/master | 2020-07-05T11:07:21.694986 | 2016-09-12T16:20:33 | 2016-09-12T16:20:33 | 67,150,904 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,006 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Enum2778772662.h"
#include "AssemblyU2DCSharp_Newtonsoft_Json_ConstructorHandl2670794114.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Newtonsoft.Json.ConstructorHandling
struct ConstructorHandling_t2670794114
{
public:
// System.Int32 Newtonsoft.Json.ConstructorHandling::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ConstructorHandling_t2670794114, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"magonicolas@gmail.com"
] | magonicolas@gmail.com |
046920a9ed6ffdc4ea7da11b7c72d41081dce771 | 256262880a2df87b61124ac8dbfd4a868a160127 | /src/Actions/AddStart.cpp | b829e7b4f574cd1c1b809f190f68661c3214b756 | [] | no_license | GamalMohamed/Flowchart-Simulator | b919da3188dc1ea4ff4d4e0104f5654b83c9a909 | ea6e5a2124cb71cbe680f3bb08c8ebfed8acbefd | refs/heads/master | 2021-01-17T06:57:06.739000 | 2016-05-29T10:11:55 | 2016-05-29T10:11:55 | 59,837,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,434 | cpp | #include "AddStart.h"
#include "..\ApplicationManager.h"
#include "..\GUI\input.h"
#include "..\GUI\Output.h"
//#include <sstream>
using namespace std;
AddStart::AddStart(ApplicationManager *pAppManager) :Action(pAppManager)
{}
void AddStart::ReadActionParameters()
{
Input *pIn = pManager->GetInput();
Output *pOut = pManager->GetOutput();
pOut->PrintMessage("Start Statement: Click to add the statement");
while (1)
{
pIn->GetPointClicked(Position);
if (Position.y > UI.TlBrWdth && Position.y < UI.height - UI.StBrWdth)
{
//Calculating each corner of the statement block then check if it's inside another statement
Point C1(Position.x - UI.START_WDTH / 2, Position.y);
Point C2(Position.x + UI.START_WDTH / 2, Position.y);
Point C3(Position.x - UI.START_WDTH / 2, Position.y + UI.START_HI);
Point C4(Position.x + UI.START_WDTH / 2, Position.y + UI.START_HI);
if (pManager->GetStatement(C1) == NULL && pManager->GetStatement(C2) == NULL && pManager->GetStatement(C3) == NULL && pManager->GetStatement(C4) == NULL)
{
pOut->ClearStatusBar();
break;
}
else
pOut->PrintMessage("Can't add statement near another one !! Click in another valid position");
}
else
pOut->PrintMessage("Invalid area !! Click in another valid position");
}
}
void AddStart::Execute()
{
this->ReadActionParameters();
Start *pStart = new Start(Position);
pManager->AddStatement(pStart);
}
| [
"Gamal Mohamed"
] | Gamal Mohamed |
2874612abacf68a4e42e6d6f190397f5eb44025b | 67ddedc825a4852349bb3e54f7d31cdeb34c64aa | /src/chain.h | fcb5d568f4a6da2ca88ff0dd71034adca323b59b | [
"MIT"
] | permissive | geranium-coin/geranium | 3500632ed8e666d30d1b28494b1b7b5003c18ecc | 93c08aa10ea151f4efd8337c1d5599ee7e8d58ea | refs/heads/master | 2022-07-28T21:28:55.717800 | 2022-01-10T17:30:13 | 2022-01-10T17:30:13 | 440,774,432 | 2 | 0 | MIT | 2022-01-04T08:33:10 | 2021-12-22T07:39:53 | C++ | UTF-8 | C++ | false | false | 14,980 | h | // Copyright (c) 2009-2010 Gem Nakamoto
// Copyright (c) 2009-2019 The Geranium Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef GERANIUM_CHAIN_H
#define GERANIUM_CHAIN_H
#include <arith_uint256.h>
#include <consensus/params.h>
#include <flatfile.h>
#include <primitives/block.h>
#include <tinyformat.h>
#include <uint256.h>
#include <vector>
/**
* Maximum amount of time that a block timestamp is allowed to exceed the
* current network-adjusted time before the block will be accepted.
*/
static constexpr int64_t MAX_FUTURE_BLOCK_TIME = 2 * 60 * 60;
/**
* Timestamp window used as a grace period by code that compares external
* timestamps (such as timestamps passed to RPCs, or wallet key creation times)
* to block timestamps. This should be set at least as high as
* MAX_FUTURE_BLOCK_TIME.
*/
static constexpr int64_t TIMESTAMP_WINDOW = MAX_FUTURE_BLOCK_TIME;
/**
* Maximum gap between node time and block time used
* for the "Catching up..." mode in GUI.
*
* Ref: https://github.com/geranium/geranium/pull/1026
*/
static constexpr int64_t MAX_BLOCK_TIME_GAP = 90 * 60;
class CBlockFileInfo
{
public:
unsigned int nBlocks; //!< number of blocks stored in file
unsigned int nSize; //!< number of used bytes of block file
unsigned int nUndoSize; //!< number of used bytes in the undo file
unsigned int nHeightFirst; //!< lowest height of block in file
unsigned int nHeightLast; //!< highest height of block in file
uint64_t nTimeFirst; //!< earliest time of block in file
uint64_t nTimeLast; //!< latest time of block in file
SERIALIZE_METHODS(CBlockFileInfo, obj)
{
READWRITE(VARINT(obj.nBlocks));
READWRITE(VARINT(obj.nSize));
READWRITE(VARINT(obj.nUndoSize));
READWRITE(VARINT(obj.nHeightFirst));
READWRITE(VARINT(obj.nHeightLast));
READWRITE(VARINT(obj.nTimeFirst));
READWRITE(VARINT(obj.nTimeLast));
}
void SetNull() {
nBlocks = 0;
nSize = 0;
nUndoSize = 0;
nHeightFirst = 0;
nHeightLast = 0;
nTimeFirst = 0;
nTimeLast = 0;
}
CBlockFileInfo() {
SetNull();
}
std::string ToString() const;
/** update statistics (does not update nSize) */
void AddBlock(unsigned int nHeightIn, uint64_t nTimeIn) {
if (nBlocks==0 || nHeightFirst > nHeightIn)
nHeightFirst = nHeightIn;
if (nBlocks==0 || nTimeFirst > nTimeIn)
nTimeFirst = nTimeIn;
nBlocks++;
if (nHeightIn > nHeightLast)
nHeightLast = nHeightIn;
if (nTimeIn > nTimeLast)
nTimeLast = nTimeIn;
}
};
enum BlockStatus: uint32_t {
//! Unused.
BLOCK_VALID_UNKNOWN = 0,
//! Reserved (was BLOCK_VALID_HEADER).
BLOCK_VALID_RESERVED = 1,
//! All parent headers found, difficulty matches, timestamp >= median previous, checkpoint. Implies all parents
//! are also at least TREE.
BLOCK_VALID_TREE = 2,
/**
* Only first tx is coinbase, 2 <= coinbase input script length <= 100, transactions valid, no duplicate txids,
* sigops, size, merkle root. Implies all parents are at least TREE but not necessarily TRANSACTIONS. When all
* parent blocks also have TRANSACTIONS, CBlockIndex::nChainTx will be set.
*/
BLOCK_VALID_TRANSACTIONS = 3,
//! Outputs do not overspend inputs, no double spends, coinbase output ok, no immature coinbase spends, BIP30.
//! Implies all parents are also at least CHAIN.
BLOCK_VALID_CHAIN = 4,
//! Scripts & signatures ok. Implies all parents are also at least SCRIPTS.
BLOCK_VALID_SCRIPTS = 5,
//! All validity bits.
BLOCK_VALID_MASK = BLOCK_VALID_RESERVED | BLOCK_VALID_TREE | BLOCK_VALID_TRANSACTIONS |
BLOCK_VALID_CHAIN | BLOCK_VALID_SCRIPTS,
BLOCK_HAVE_DATA = 8, //!< full block available in blk*.dat
BLOCK_HAVE_UNDO = 16, //!< undo data available in rev*.dat
BLOCK_HAVE_MASK = BLOCK_HAVE_DATA | BLOCK_HAVE_UNDO,
BLOCK_FAILED_VALID = 32, //!< stage after last reached validness failed
BLOCK_FAILED_CHILD = 64, //!< descends from failed block
BLOCK_FAILED_MASK = BLOCK_FAILED_VALID | BLOCK_FAILED_CHILD,
BLOCK_OPT_WITNESS = 128, //!< block data in blk*.data was received with a witness-enforcing client
};
/** The block chain is a tree shaped structure starting with the
* genesis block at the root, with each block potentially having multiple
* candidates to be the next block. A blockindex may have multiple pprev pointing
* to it, but at most one of them can be part of the currently active branch.
*/
class CBlockIndex
{
public:
//! pointer to the hash of the block, if any. Memory is owned by this CBlockIndex
const uint256* phashBlock{nullptr};
//! pointer to the index of the predecessor of this block
CBlockIndex* pprev{nullptr};
//! pointer to the index of some further predecessor of this block
CBlockIndex* pskip{nullptr};
//! height of the entry in the chain. The genesis block has height 0
int nHeight{0};
//! Which # file this block is stored in (blk?????.dat)
int nFile{0};
//! Byte offset within blk?????.dat where this block's data is stored
unsigned int nDataPos{0};
//! Byte offset within rev?????.dat where this block's undo data is stored
unsigned int nUndoPos{0};
//! (memory only) Total amount of work (expected number of hashes) in the chain up to and including this block
arith_uint256 nChainWork{};
//! Number of transactions in this block.
//! Note: in a potential headers-first mode, this number cannot be relied upon
unsigned int nTx{0};
//! (memory only) Number of transactions in the chain up to and including this block.
//! This value will be non-zero only if and only if transactions for this block and all its parents are available.
//! Change to 64-bit type when necessary; won't happen before 2030
unsigned int nChainTx{0};
//! Verification status of this block. See enum BlockStatus
uint32_t nStatus{0};
//! block header
int32_t nVersion{0};
uint256 hashMerkleRoot{};
uint32_t nTime{0};
uint32_t nBits{0};
uint32_t nNonce{0};
//! (memory only) Sequential id assigned to distinguish order in which blocks are received.
int32_t nSequenceId{0};
//! (memory only) Maximum nTime in the chain up to and including this block.
unsigned int nTimeMax{0};
CBlockIndex()
{
}
explicit CBlockIndex(const CBlockHeader& block)
: nVersion{block.nVersion},
hashMerkleRoot{block.hashMerkleRoot},
nTime{block.nTime},
nBits{block.nBits},
nNonce{block.nNonce}
{
}
FlatFilePos GetBlockPos() const {
FlatFilePos ret;
if (nStatus & BLOCK_HAVE_DATA) {
ret.nFile = nFile;
ret.nPos = nDataPos;
}
return ret;
}
FlatFilePos GetUndoPos() const {
FlatFilePos ret;
if (nStatus & BLOCK_HAVE_UNDO) {
ret.nFile = nFile;
ret.nPos = nUndoPos;
}
return ret;
}
CBlockHeader GetBlockHeader() const
{
CBlockHeader block;
block.nVersion = nVersion;
if (pprev)
block.hashPrevBlock = pprev->GetBlockHash();
block.hashMerkleRoot = hashMerkleRoot;
block.nTime = nTime;
block.nBits = nBits;
block.nNonce = nNonce;
return block;
}
uint256 GetBlockHash() const
{
return *phashBlock;
}
/**
* Check whether this block's and all previous blocks' transactions have been
* downloaded (and stored to disk) at some point.
*
* Does not imply the transactions are consensus-valid (ConnectTip might fail)
* Does not imply the transactions are still stored on disk. (IsBlockPruned might return true)
*/
bool HaveTxsDownloaded() const { return nChainTx != 0; }
int64_t GetBlockTime() const
{
return (int64_t)nTime;
}
int64_t GetBlockTimeMax() const
{
return (int64_t)nTimeMax;
}
static constexpr int nMedianTimeSpan = 11;
int64_t GetMedianTimePast() const
{
int64_t pmedian[nMedianTimeSpan];
int64_t* pbegin = &pmedian[nMedianTimeSpan];
int64_t* pend = &pmedian[nMedianTimeSpan];
const CBlockIndex* pindex = this;
for (int i = 0; i < nMedianTimeSpan && pindex; i++, pindex = pindex->pprev)
*(--pbegin) = pindex->GetBlockTime();
std::sort(pbegin, pend);
return pbegin[(pend - pbegin)/2];
}
std::string ToString() const
{
return strprintf("CBlockIndex(pprev=%p, nHeight=%d, merkle=%s, hashBlock=%s)",
pprev, nHeight,
hashMerkleRoot.ToString(),
GetBlockHash().ToString());
}
//! Check whether this block index entry is valid up to the passed validity level.
bool IsValid(enum BlockStatus nUpTo = BLOCK_VALID_TRANSACTIONS) const
{
assert(!(nUpTo & ~BLOCK_VALID_MASK)); // Only validity flags allowed.
if (nStatus & BLOCK_FAILED_MASK)
return false;
return ((nStatus & BLOCK_VALID_MASK) >= nUpTo);
}
//! Raise the validity level of this block index entry.
//! Returns true if the validity was changed.
bool RaiseValidity(enum BlockStatus nUpTo)
{
assert(!(nUpTo & ~BLOCK_VALID_MASK)); // Only validity flags allowed.
if (nStatus & BLOCK_FAILED_MASK)
return false;
if ((nStatus & BLOCK_VALID_MASK) < nUpTo) {
nStatus = (nStatus & ~BLOCK_VALID_MASK) | nUpTo;
return true;
}
return false;
}
//! Build the skiplist pointer for this entry.
void BuildSkip();
//! Efficiently find an ancestor of this block.
CBlockIndex* GetAncestor(int height);
const CBlockIndex* GetAncestor(int height) const;
};
arith_uint256 GetBlockProof(const CBlockIndex& block);
/** Return the time it would take to redo the work difference between from and to, assuming the current hashrate corresponds to the difficulty at tip, in seconds. */
int64_t GetBlockProofEquivalentTime(const CBlockIndex& to, const CBlockIndex& from, const CBlockIndex& tip, const Consensus::Params&);
/** Find the forking point between two chain tips. */
const CBlockIndex* LastCommonAncestor(const CBlockIndex* pa, const CBlockIndex* pb);
/** Used to marshal pointers into hashes for db storage. */
class CDiskBlockIndex : public CBlockIndex
{
public:
uint256 hashPrev;
CDiskBlockIndex() {
hashPrev = uint256();
}
explicit CDiskBlockIndex(const CBlockIndex* pindex) : CBlockIndex(*pindex) {
hashPrev = (pprev ? pprev->GetBlockHash() : uint256());
}
SERIALIZE_METHODS(CDiskBlockIndex, obj)
{
int _nVersion = s.GetVersion();
if (!(s.GetType() & SER_GETHASH)) READWRITE(VARINT_MODE(_nVersion, VarIntMode::NONNEGATIVE_SIGNED));
READWRITE(VARINT_MODE(obj.nHeight, VarIntMode::NONNEGATIVE_SIGNED));
READWRITE(VARINT(obj.nStatus));
READWRITE(VARINT(obj.nTx));
if (obj.nStatus & (BLOCK_HAVE_DATA | BLOCK_HAVE_UNDO)) READWRITE(VARINT_MODE(obj.nFile, VarIntMode::NONNEGATIVE_SIGNED));
if (obj.nStatus & BLOCK_HAVE_DATA) READWRITE(VARINT(obj.nDataPos));
if (obj.nStatus & BLOCK_HAVE_UNDO) READWRITE(VARINT(obj.nUndoPos));
// block header
READWRITE(obj.nVersion);
READWRITE(obj.hashPrev);
READWRITE(obj.hashMerkleRoot);
READWRITE(obj.nTime);
READWRITE(obj.nBits);
READWRITE(obj.nNonce);
}
uint256 GetBlockHash() const
{
CBlockHeader block;
block.nVersion = nVersion;
block.hashPrevBlock = hashPrev;
block.hashMerkleRoot = hashMerkleRoot;
block.nTime = nTime;
block.nBits = nBits;
block.nNonce = nNonce;
return block.GetHash();
}
std::string ToString() const
{
std::string str = "CDiskBlockIndex(";
str += CBlockIndex::ToString();
str += strprintf("\n hashBlock=%s, hashPrev=%s)",
GetBlockHash().ToString(),
hashPrev.ToString());
return str;
}
};
/** An in-memory indexed chain of blocks. */
class CChain {
private:
std::vector<CBlockIndex*> vChain;
public:
/** Returns the index entry for the genesis block of this chain, or nullptr if none. */
CBlockIndex *Genesis() const {
return vChain.size() > 0 ? vChain[0] : nullptr;
}
/** Returns the index entry for the tip of this chain, or nullptr if none. */
CBlockIndex *Tip() const {
return vChain.size() > 0 ? vChain[vChain.size() - 1] : nullptr;
}
/** Returns the index entry at a particular height in this chain, or nullptr if no such height exists. */
CBlockIndex *operator[](int nHeight) const {
if (nHeight < 0 || nHeight >= (int)vChain.size())
return nullptr;
return vChain[nHeight];
}
/** Compare two chains efficiently. */
friend bool operator==(const CChain &a, const CChain &b) {
return a.vChain.size() == b.vChain.size() &&
a.vChain[a.vChain.size() - 1] == b.vChain[b.vChain.size() - 1];
}
/** Efficiently check whether a block is present in this chain. */
bool Contains(const CBlockIndex *pindex) const {
return (*this)[pindex->nHeight] == pindex;
}
/** Find the successor of a block in this chain, or nullptr if the given index is not found or is the tip. */
CBlockIndex *Next(const CBlockIndex *pindex) const {
if (Contains(pindex))
return (*this)[pindex->nHeight + 1];
else
return nullptr;
}
/** Return the maximal height in the chain. Is equal to chain.Tip() ? chain.Tip()->nHeight : -1. */
int Height() const {
return vChain.size() - 1;
}
/** Set/initialize a chain with a given tip. */
void SetTip(CBlockIndex *pindex);
/** Return a CBlockLocator that refers to a block in this chain (by default the tip). */
CBlockLocator GetLocator(const CBlockIndex *pindex = nullptr) const;
/** Find the last common block between this chain and a block index entry. */
const CBlockIndex *FindFork(const CBlockIndex *pindex) const;
/** Find the earliest block with timestamp equal or greater than the given time and height equal or greater than the given height. */
CBlockIndex* FindEarliestAtLeast(int64_t nTime, int height) const;
};
#endif // GERANIUM_CHAIN_H
| [
"manomay.jyotish.vadhuvar@gmail.com"
] | manomay.jyotish.vadhuvar@gmail.com |
b4dfb5d04fafa0d603d3a5f480c1a77aeb338fb3 | 82b0fc68920f3406d620be54108533141c505bce | /AK/src/Praktikum-CryptoPP/PRNG.cpp | 4b24de33592c177ff776b2059a30553c94667f16 | [] | no_license | DanielEbert/crypto | ff15b05ea3231fea2e3336a6cb1b2516f84a3e7e | d053a5243660297752634d7c2c9ae221b6fd11eb | refs/heads/master | 2020-08-31T07:18:58.241989 | 2020-02-03T04:44:28 | 2020-02-03T04:44:28 | 218,632,935 | 0 | 1 | null | 2020-02-03T02:48:48 | 2019-10-30T21:49:04 | HTML | UTF-8 | C++ | false | false | 2,260 | cpp | #include "PRNG.h"
#include <cassert>
byte PRNG::getByte() {
/*************************************************************************
* Aufgabe 6d.
*************************************************************************/
byte ret = 0;
// zufälliges byte besteht aus 8 zufälligen Bits
for (int i = 0; i < 8; i++) {
// für jedes Bit im Byte wird ein zufälliges Bit erzeugt
ret = ret << 1;
ret += getBit();
}
return ret;
}
void PRNG::getBlock(byte *buffer, unsigned int n) {
/*************************************************************************
* Aufgabe 6e.
*************************************************************************/
// Buffer besteht aus n Bytes. Für jedes Byte wird ein
// zufälliges Byte erzeugt und im buffer an der jeweiligen
// Stelle abgespeichert
for(int i = 0; i < n; i++) {
buffer[i] = getByte();
}
}
Integer PRNG::getInteger(unsigned int size) {
/*************************************************************************
* Aufgabe 6g.
*************************************************************************/
// Wie getBlock aber der Rückgabewert ist ein Integer der CryptoPP Klasse
byte arr[size];
getBlock(arr, size);
// Integer Klasse hat Konstruktor für byte-Array
return Integer(arr, size);
}
Integer PRNG::getInteger(const Integer &m) {
/*************************************************************************
* Aufgabe 6i.
*************************************************************************/
// Der Parameter m muss laut Aufgabenstellung eine ganze Zahl > 0 sein.
assert(m > 0);
Integer ret;
do {
// Nach jedem Schleifendurchlauf muss ret zurückgesetzt werden.
// Sonst wird ret immer größer und ret >= m wird nie false.
ret = 0;
// caching der Anzahl von Bits um Integer m darzustellen
int bitCount = m.BitCount();
for (int i = 0; i < bitCount; i++) {
ret <<= 1;
ret += getBit();
}
} while (ret >= m); // für die geforderte gleichverteilung muss solange
// erzeugt werden, bis ret < m.
return ret;
}
| [
"iuq@web.de"
] | iuq@web.de |
3a2b39bc954479175fb9daacf487e7d9f51ffddb | a26cd8c860839fe41674580c86918ffeb6c79c32 | /dev/src/lobster/vmdata.h | b5d6b900c9790e85e9d70b99abe2067f25f96007 | [
"Apache-2.0"
] | permissive | OIEIEIO/lobster | b4ea112ceedca26fbe872d1e277d098b3732d9d0 | acae93f0cc2f0fa581492e681aae883a34b8a73f | refs/heads/master | 2022-04-13T13:18:17.213588 | 2020-03-27T19:18:08 | 2020-03-27T19:18:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 43,870 | h | // Copyright 2014 Wouter van Oortmerssen. 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 LOBSTER_VMDATA
#define LOBSTER_VMDATA
#include "il.h"
namespace bytecode { struct BytecodeFile; } // FIXME
namespace lobster {
#ifndef NDEBUG
#define RTT_ENABLED 1
#define RTT_TYPE_ERRORS 1
#else
#define RTT_ENABLED 0
#define RTT_TYPE_ERRORS 0
#endif
// These are used with VM_COMPILED_CODE_MODE
#define VM_DISPATCH_TRAMPOLINE 1
#define VM_DISPATCH_SWITCH_GOTO 2
#define VM_DISPATCH_METHOD VM_DISPATCH_TRAMPOLINE
#define STRING_CONSTANTS_KEEP 0
#define DELETE_DELAY 0
// Typedefs to make pointers and scalars the same size.
#if _WIN64 || __amd64__ || __x86_64__ || __ppc64__ || __LP64__
#if !defined(VM_COMPILED_CODE_MODE) || VM_DISPATCH_METHOD != VM_DISPATCH_TRAMPOLINE
//#define FORCE_32_BIT_MODEL
#endif
#ifndef FORCE_32_BIT_MODEL
#define VALUE_MODEL_64 1
#else
#define VALUE_MODEL_64 0
#endif
#else
#define VALUE_MODEL_64 0
#endif
#if VALUE_MODEL_64
typedef int64_t intp;
typedef uint64_t uintp;
typedef double floatp;
#else
typedef int32_t intp;
typedef uint32_t uintp;
typedef float floatp;
#endif
typedef vec<floatp, 2> floatp2;
typedef vec<floatp, 3> floatp3;
typedef vec<floatp, 4> floatp4;
typedef vec<intp, 2> intp2;
typedef vec<intp, 3> intp3;
typedef vec<intp, 4> intp4;
const floatp4 floatp4_0 = floatp4(0.0f);
const floatp3 floatp3_0 = floatp3(0.0f);
const floatp2 floatp2_0 = floatp2(0.0f);
const intp2 intp2_0 = intp2((intp)0);
const intp2 intp2_1 = intp2(1);
const intp3 intp3_0 = intp3((intp)0);
enum ValueType : int {
// refc types are negative
V_MINVMTYPES = -10,
V_ANY = -9, // any other reference type.
V_STACKFRAMEBUF = -8,
V_VALUEBUF = -7, // only used as memory type for vector/coro buffers, not used by Value.
V_STRUCT_R = -6,
V_RESOURCE = -5,
V_COROUTINE = -4,
V_STRING = -3,
V_CLASS = -2,
V_VECTOR = -1,
V_NIL = 0, // VM: null reference, Type checker: nillable.
V_INT,
V_FLOAT,
V_FUNCTION,
V_YIELD,
V_STRUCT_S,
V_VAR, // [typechecker only] like V_ANY, except idx refers to a type variable
V_TYPEVAR, // [typechecker only] refers to an explicit type variable in code, e.g. "T".
V_TYPEID, // [typechecker only] a typetable offset.
V_VOID, // [typechecker/codegen only] this exp does not produce a value.
V_TUPLE, // [typechecker/codegen only] this exp produces >1 value.
V_UUDT, // [parser/typechecker only] udt with unresolved generics.
V_UNDEFINED, // [typechecker only] this type should never be accessed.
V_MAXVMTYPES
};
inline bool IsScalar(ValueType t) { return t == V_INT || t == V_FLOAT; }
inline bool IsUnBoxed(ValueType t) { return t == V_INT || t == V_FLOAT || t == V_FUNCTION; }
inline bool IsRef(ValueType t) { return t < V_NIL; }
inline bool IsRefNil(ValueType t) { return t <= V_NIL; }
inline bool IsRefNilVar(ValueType t) { return t <= V_NIL || t == V_VAR; }
inline bool IsRefNilStruct(ValueType t) { return t <= V_NIL || t == V_STRUCT_S; }
inline bool IsRefNilNoStruct(ValueType t) { return t <= V_NIL && t != V_STRUCT_R; }
inline bool IsRuntime(ValueType t) { return t < V_VAR; }
inline bool IsRuntimePrintable(ValueType t) { return t <= V_FLOAT; }
inline bool IsStruct(ValueType t) { return t == V_STRUCT_R || t == V_STRUCT_S; }
inline bool IsUDT(ValueType t) { return t == V_CLASS || IsStruct(t); }
inline string_view BaseTypeName(ValueType t) {
static const char *typenames[] = {
"any", "<stackframe_buffer>", "<value_buffer>",
"struct_ref",
"resource", "coroutine", "string", "class", "vector",
"nil", "int", "float", "function", "yield_function", "struct_scalar",
"unknown", "type_variable", "typeid", "void",
"tuple", "unresolved_udt", "undefined",
};
if (t <= V_MINVMTYPES || t >= V_MAXVMTYPES) {
assert(false);
return "<internal-error-type>";
}
return typenames[t - V_MINVMTYPES - 1];
}
enum type_elem_t : int { // Strongly typed element of typetable.
// These must correspond to typetable init in Codegen constructor.
TYPE_ELEM_INT = 0, // This has -1 for its enumidx.
TYPE_ELEM_FLOAT = 2,
TYPE_ELEM_STRING = 3,
TYPE_ELEM_RESOURCE = 4,
TYPE_ELEM_ANY = 5,
TYPE_ELEM_VALUEBUF = 6,
TYPE_ELEM_STACKFRAMEBUF = 7,
TYPE_ELEM_VECTOR_OF_INT = 8, // 2 each.
TYPE_ELEM_VECTOR_OF_FLOAT = 10,
TYPE_ELEM_VECTOR_OF_STRING = 12,
TYPE_ELEM_VECTOR_OF_VECTOR_OF_INT = 14,
TYPE_ELEM_VECTOR_OF_VECTOR_OF_FLOAT = 16,
TYPE_ELEM_FIXED_OFFSET_END = 18
};
struct VM;
struct TypeInfo {
ValueType t;
union {
type_elem_t subt; // V_VECTOR | V_NIL
struct { // V_CLASS, V_STRUCT_*
int structidx;
int len;
int vtable_start;
type_elem_t elemtypes[1]; // len elems, followed by len parent types.
};
int enumidx; // V_INT, -1 if not an enum.
int sfidx; // V_FUNCTION;
struct { // V_COROUTINE
int cofunidx;
type_elem_t yieldtype;
};
};
TypeInfo() = delete;
TypeInfo(const TypeInfo &) = delete;
TypeInfo &operator=(const TypeInfo &) = delete;
string Debug(VM &vm, bool rec = true) const;
type_elem_t GetElemOrParent(intp i) const {
auto pti = elemtypes[len + i];
return pti >= 0 ? pti : elemtypes[i];
}
};
struct Value;
struct LString;
struct LVector;
struct LObject;
struct LCoRoutine;
struct PrintPrefs {
intp depth;
intp budget;
bool quoted;
intp decimals;
int cycles = -1;
int indent = 0;
int cur_indent = 0;
PrintPrefs(intp _depth, intp _budget, bool _quoted, intp _decimals)
: depth(_depth), budget(_budget), quoted(_quoted), decimals(_decimals) {}
};
typedef void *(*block_base_t)(VM &);
#if VM_DISPATCH_METHOD == VM_DISPATCH_TRAMPOLINE
typedef block_base_t block_t;
#elif VM_DISPATCH_METHOD == VM_DISPATCH_SWITCH_GOTO
typedef intp block_t;
#endif
// ANY memory allocated by the VM must inherit from this, so we can identify leaked memory
struct DynAlloc {
type_elem_t tti; // offset into the VM's typetable
const TypeInfo &ti(VM &vm) const;
DynAlloc(type_elem_t _tti) : tti(_tti) {}
};
struct RefObj : DynAlloc {
int refc = 1;
#if DELETE_DELAY
const int *alloc_ip;
#endif
RefObj(type_elem_t _tti) : DynAlloc(_tti)
#if DELETE_DELAY
, alloc_ip(nullptr)
#endif
{}
void Inc() {
#ifndef NDEBUG
if (refc <= 0) { // Should never be "re-vived".
#if DELETE_DELAY
LOG_DEBUG("revive: ", (size_t)this);
#endif
assert(false);
}
#endif
#if DELETE_DELAY
LOG_DEBUG("inc: ", (size_t)this);
#endif
refc++;
}
void Dec(VM &vm) {
refc--;
#ifndef NDEBUG
DECSTAT(vm);
#endif
#if DELETE_DELAY
LOG_DEBUG("dec: ", (size_t)this);
#endif
if (refc <= 0) {
DECDELETE(vm);
}
}
void CycleStr(string &sd) const { append(sd, "_", -refc, "_"); }
bool CycleCheck(string &sd, PrintPrefs &pp) {
if (pp.cycles >= 0) {
if (refc < 0) { CycleStr(sd); return true; }
refc = -(++pp.cycles);
}
return false;
}
void DECDELETE(VM &vm);
void DECDELETENOW(VM &vm);
void DECSTAT(VM &vm);
intp Hash(VM &vm);
};
extern bool RefEqual(VM &vm, const RefObj *a, const RefObj *b, bool structural);
extern void RefToString(VM &vm, string &sd, const RefObj *ro, PrintPrefs &pp);
struct LString : RefObj {
intp len; // has to match the Value integer type, since we allow the length to be obtained
LString(intp _l);
const char *data() const { return (char *)(this + 1); }
string_view strv() const { return string_view(data(), len); }
void ToString(string &sd, PrintPrefs &pp);
void DeleteSelf(VM &vm);
bool operator==(LString &o) { return strv() == o.strv(); }
bool operator!=(LString &o) { return strv() != o.strv(); }
bool operator< (LString &o) { return strv() < o.strv(); }
bool operator<=(LString &o) { return strv() <= o.strv(); }
bool operator> (LString &o) { return strv() > o.strv(); }
bool operator>=(LString &o) { return strv() >= o.strv(); }
intp Hash();
};
// There must be a single of these per type, since they are compared by pointer.
struct ResourceType {
const char *name;
void (* deletefun)(void *);
};
struct LResource : RefObj {
void *val;
const ResourceType *type;
LResource(void *v, const ResourceType *t);
void DeleteSelf(VM &vm);
void ToString(string &sd) {
append(sd, "(resource:", type->name, ")");
}
};
struct InsPtr {
#ifdef VM_COMPILED_CODE_MODE
block_t f;
explicit InsPtr(block_t _f) : f(_f) {}
static_assert(sizeof(block_t) == sizeof(intp), "");
#else
intp f;
explicit InsPtr(intp _f) : f(_f) {}
#ifdef FORCE_32_BIT_MODEL
explicit InsPtr(ptrdiff_t _f) : f((intp)_f) {}
#endif
#endif
InsPtr() : f(0) {}
bool operator==(const InsPtr o) const { return f == o.f; }
bool operator!=(const InsPtr o) const { return f != o.f; }
};
#if RTT_ENABLED
#define TYPE_INIT(t) type(t),
#define TYPE_ASSERT(c) assert(c)
#else
#define TYPE_INIT(t)
#define TYPE_ASSERT(c)
#endif
// These pointer types are for use inside Value below. In most other parts of the code we
// use naked pointers.
#ifndef FORCE_32_BIT_MODEL
// We use regular pointers of the current architecture.
typedef LString *LStringPtr;
typedef LVector *LVectorPtr;
typedef LObject *LStructPtr;
typedef LCoRoutine *LCoRoutinePtr;
typedef LResource *LResourcePtr;
typedef RefObj *RefObjPtr;
#else
// We use a compressed pointer to fit in 32-bit on a 64-bit build.
// These are shifted by COMPRESS_BITS, so for 3 we can address the bottom 32GB of the
// address space. The memory allocator for these values must guarantee we only allocate
// from that region, by using mmap or similar.
template<typename T> class CompressedPtr {
uint32_t c;
enum { COMPRESS_BITS = 3, COMPRESS_MASK = (1 << COMPRESS_BITS) - 1 };
public:
CompressedPtr(const T *p) {
auto bits = (size_t)p;
assert(!(bits & COMPRESS_MASK)); // Must not have low bits set.
bits >>= COMPRESS_BITS;
assert(!(bits >> 32)); // Must not have high bits set.
c = (uint32_t)bits;
}
T *get() const { return (T *)(((size_t)c) << COMPRESS_BITS); }
operator T *() const { return get(); }
T *operator->() const { return get(); }
};
typedef CompressedPtr<LString> LStringPtr;
typedef CompressedPtr<LVector> LVectorPtr;
typedef CompressedPtr<LObject> LStructPtr;
typedef CompressedPtr<LCoRoutine> LCoRoutinePtr;
typedef CompressedPtr<LResource> LResourcePtr;
typedef CompressedPtr<BoxedInt> BoxedIntPtr;
typedef CompressedPtr<BoxedFloat> BoxedFloatPtr;
typedef CompressedPtr<RefObj> RefObjPtr;
#endif
static_assert(sizeof(intp) == sizeof(floatp) && sizeof(intp) == sizeof(RefObjPtr),
"typedefs need fixing");
struct Value {
#if RTT_ENABLED
ValueType type;
#endif
private:
union {
// All these types can be defined to be either all 32 or 64-bit, depending on the
// compilation mode.
// Non-reference values.
intp ival_; // scalars stored as pointer-sized versions.
floatp fval_;
InsPtr ip_;
// Reference values (includes NULL if nillable version).
LStringPtr sval_;
LVectorPtr vval_;
LStructPtr oval_;
LCoRoutinePtr cval_;
LResourcePtr xval_;
// Generic reference access.
RefObjPtr ref_;
// Temp: for inline structs.
TypeInfo *ti_;
};
public:
// These asserts help track down any invalid code generation issues.
intp ival () const { TYPE_ASSERT(type == V_INT); return ival_; }
floatp fval () const { TYPE_ASSERT(type == V_FLOAT); return fval_; }
int intval() const { TYPE_ASSERT(type == V_INT); return (int)ival_; }
float fltval() const { TYPE_ASSERT(type == V_FLOAT); return (float)fval_; }
LString *sval () const { TYPE_ASSERT(type == V_STRING); return sval_; }
LVector *vval () const { TYPE_ASSERT(type == V_VECTOR); return vval_; }
LObject *oval () const { TYPE_ASSERT(type == V_CLASS); return oval_; }
LCoRoutine *cval () const { TYPE_ASSERT(type == V_COROUTINE); return cval_; }
LResource *xval () const { TYPE_ASSERT(type == V_RESOURCE); return xval_; }
RefObj *ref () const { TYPE_ASSERT(IsRef(type)); return ref_; }
RefObj *refnil() const { TYPE_ASSERT(IsRefNil(type)); return ref_; }
InsPtr ip () const { TYPE_ASSERT(type >= V_FUNCTION); return ip_; }
void *any () const { return ref_; }
TypeInfo *tival () const { TYPE_ASSERT(type == V_STRUCT_S); return ti_; }
template<typename T> T ifval() const {
if constexpr (is_floating_point<T>()) { TYPE_ASSERT(type == V_FLOAT); return (T)fval_; }
else { TYPE_ASSERT(type == V_INT); return (T)ival_; }
}
void setival(intp i) { TYPE_ASSERT(type == V_INT); ival_ = i; }
void setfval(floatp f) { TYPE_ASSERT(type == V_FLOAT); fval_ = f; }
inline Value() : TYPE_INIT(V_NIL) ref_(nullptr) {}
inline Value(int i) : TYPE_INIT(V_INT) ival_(i) {}
inline Value(uint i) : TYPE_INIT(V_INT) ival_((intp)i) {}
inline Value(int64_t i) : TYPE_INIT(V_INT) ival_((intp)i) {}
inline Value(uint64_t i) : TYPE_INIT(V_INT) ival_((intp)i) {}
inline Value(int i, ValueType t) : TYPE_INIT(t) ival_(i) { (void)t; }
inline Value(bool b) : TYPE_INIT(V_INT) ival_(b) {}
inline Value(float f) : TYPE_INIT(V_FLOAT) fval_(f) {}
inline Value(double f) : TYPE_INIT(V_FLOAT) fval_((floatp)f) {}
inline Value(InsPtr i) : TYPE_INIT(V_FUNCTION) ip_(i) {}
inline Value(LString *s) : TYPE_INIT(V_STRING) sval_(s) {}
inline Value(LVector *v) : TYPE_INIT(V_VECTOR) vval_(v) {}
inline Value(LObject *s) : TYPE_INIT(V_CLASS) oval_(s) {}
inline Value(LCoRoutine *c) : TYPE_INIT(V_COROUTINE) cval_(c) {}
inline Value(LResource *r) : TYPE_INIT(V_RESOURCE) xval_(r) {}
inline Value(RefObj *r) : TYPE_INIT(V_NIL) ref_(r) { assert(false); }
inline Value(TypeInfo *ti) : TYPE_INIT(V_STRUCT_S) ti_(ti) {}
inline bool True() const { return ival_ != 0; }
inline Value <INCRT() {
TYPE_ASSERT(IsRef(type) && ref_);
ref_->Inc();
return *this;
}
inline Value <INCRTNIL() {
// Can't assert IsRefNil here, since scalar 0 are valid NIL values due to e.g. and/or.
if (ref_) LTINCRT();
return *this;
}
inline Value <INCTYPE(ValueType t) {
return IsRefNil(t) ? LTINCRTNIL() : *this;
}
inline void LTDECRT(VM &vm) const { // we already know its a ref type
TYPE_ASSERT(IsRef(type) && ref_);
ref_->Dec(vm);
}
inline void LTDECRTNIL(VM &vm) const {
// Can't assert IsRefNil here, since scalar 0 are valid NIL values due to e.g. and/or.
if (ref_) LTDECRT(vm);
}
inline void LTDECTYPE(VM &vm, ValueType t) const {
if (IsRefNil(t)) LTDECRTNIL(vm);
}
void ToString(VM &vm, string &sd, const TypeInfo &ti, PrintPrefs &pp) const;
void ToStringBase(VM &vm, string &sd, ValueType t, PrintPrefs &pp) const;
bool Equal(VM &vm, ValueType vtype, const Value &o, ValueType otype, bool structural) const;
intp Hash(VM &vm, ValueType vtype);
Value Copy(VM &vm); // Shallow.
};
template<typename T> inline T *AllocSubBuf(VM &vm, size_t size, type_elem_t tti);
template<typename T> inline void DeallocSubBuf(VM &vm, T *v, size_t size);
struct LObject : RefObj {
LObject(type_elem_t _tti) : RefObj(_tti) {}
// FIXME: reduce the use of these.
intp Len(VM &vm) const { return ti(vm).len; }
Value *Elems() const { return (Value *)(this + 1); }
// This may only be called from a context where i < len has already been ensured/asserted.
Value &AtS(intp i) const {
return Elems()[i];
}
void DeleteSelf(VM &vm);
// This may only be called from a context where i < len has already been ensured/asserted.
const TypeInfo &ElemTypeS(VM &vm, intp i) const;
const TypeInfo &ElemTypeSP(VM &vm, intp i) const;
void ToString(VM &vm, string &sd, PrintPrefs &pp);
bool Equal(VM &vm, const LObject &o) {
// RefObj::Equal has already guaranteed the typeoff's are the same.
auto len = Len(vm);
assert(len == o.Len(vm));
for (intp i = 0; i < len; i++) {
auto et = ElemTypeS(vm, i).t;
if (!AtS(i).Equal(vm, et, o.AtS(i), et, true))
return false;
}
return true;
}
intp Hash(VM &vm) {
intp hash = 0;
for (int i = 0; i < Len(vm); i++) hash ^= AtS(i).Hash(vm, ElemTypeS(vm, i).t);
return hash;
}
void Init(VM &vm, Value *from, intp len, bool inc) {
assert(len && len == Len(vm));
t_memcpy(Elems(), from, len);
if (inc) for (intp i = 0; i < len; i++) {
AtS(i).LTINCTYPE(ElemTypeS(vm, i).t);
}
}
};
struct LVector : RefObj {
intp len; // has to match the Value integer type, since we allow the length to be obtained
intp maxl;
intp width; // TODO: would be great to not have to store this.
private:
Value *v; // use At()
public:
LVector(VM &vm, intp _initial, intp _max, type_elem_t _tti);
~LVector() { assert(0); } // destructed by DECREF
void DeallocBuf(VM &vm) {
if (v) DeallocSubBuf(vm, v, maxl * width);
}
void DecSlot(VM &vm, intp i, ValueType et) const {
AtSlot(i).LTDECTYPE(vm, et);
}
void DeleteSelf(VM &vm);
const TypeInfo &ElemType(VM &vm) const;
void Resize(VM &vm, intp newmax);
void Push(VM &vm, const Value &val) {
assert(width == 1);
if (len == maxl) Resize(vm, maxl ? maxl * 2 : 4);
v[len++] = val;
}
void PushVW(VM &vm, const Value *vals) {
if (len == maxl) Resize(vm, maxl ? maxl * 2 : 4);
tsnz_memcpy(v + len * width, vals, width);
len++;
}
Value Pop() {
assert(width == 1);
return v[--len];
}
void PopVW(Value *dest) {
len--;
tsnz_memcpy(dest, v + len * width, width);
}
Value &Top() const {
assert(width == 1);
return v[len - 1];
}
void TopVW(Value *dest) {
tsnz_memcpy(dest, v + (len - 1) * width, width);
}
void Insert(VM &vm, const Value *vals, intp i) {
assert(i >= 0 && i <= len); // note: insertion right at the end is legal, hence <=
if (len + 1 > maxl) Resize(vm, max(len + 1, maxl ? maxl * 2 : 4));
t_memmove(v + (i + 1) * width, v + i * width, (len - i) * width);
len++;
tsnz_memcpy(v + i * width, vals, width);
}
void Remove(VM &vm, intp i, intp n, intp decfrom, bool stack_ret);
Value *Elems() { return v; }
Value &At(intp i) const {
assert(i < len && width == 1);
return v[i];
}
Value *AtSt(intp i) const {
assert(i < len);
return v + i * width;
}
Value &AtSlot(intp i) const {
assert(i < len * width);
return v[i];
}
void AtVW(VM &vm, intp i) const;
void AtVWSub(VM &vm, intp i, int w, int off) const;
void Append(VM &vm, LVector *from, intp start, intp amount);
void ToString(VM &vm, string &sd, PrintPrefs &pp);
bool Equal(VM &vm, const LVector &o) {
// RefObj::Equal has already guaranteed the typeoff's are the same.
assert(width == 1);
if (len != o.len) return false;
auto et = ElemType(vm).t;
for (intp i = 0; i < len; i++) {
if (!At(i).Equal(vm, et, o.At(i), et, true))
return false;
}
return true;
}
intp Hash(VM &vm) {
intp hash = 0;
assert(width == 1);
auto et = ElemType(vm).t;
for (int i = 0; i < len; i++) hash ^= At(i).Hash(vm, et);
return hash;
}
void Init(VM &vm, Value *from, bool inc) {
assert(len);
t_memcpy(v, from, len * width);
auto et = ElemType(vm).t;
if (inc && IsRefNil(et)) {
for (intp i = 0; i < len; i++) {
At(i).LTINCRTNIL();
}
}
}
};
struct VMLog {
struct LogVar {
vector<Value> values;
size_t read;
const TypeInfo *type;
};
vector<LogVar> logvars;
VM &vm;
VMLog(VM &_vm);
void LogInit(const uchar *bcf);
void LogPurge();
void LogFrame();
Value LogGet(Value def, int idx);
void LogWrite(Value newval, int idx);
void LogCleanup();
};
struct StackFrame {
InsPtr retip;
const int *funstart;
int spstart;
};
struct NativeFun;
struct NativeRegistry;
// This contains all data shared between threads.
struct TupleSpace {
struct TupleType {
// We have an independent list of tuples and synchronization per type, for minimum
// contention.
list<Value *> tuples;
mutex mtx;
condition_variable condition;
};
vector<TupleType> tupletypes;
atomic<bool> alive;
TupleSpace(size_t numstructs) : tupletypes(numstructs), alive(true) {}
~TupleSpace() {
for (auto &tt : tupletypes) for (auto p : tt.tuples) delete[] p;
}
};
enum class TraceMode { OFF, ON, TAIL };
struct VMArgs {
NativeRegistry 𝔫
string_view programname;
string bytecode_buffer;
const void *entry_point = nullptr;
const void *static_bytecode = nullptr;
size_t static_size = 0;
vector<string> program_args;
const lobster::block_t *native_vtables = nullptr;
TraceMode trace = TraceMode::OFF;
};
struct VM : VMArgs {
SlabAlloc pool;
Value *stack = nullptr;
int stacksize = 0;
int maxstacksize;
int sp = -1;
Value retvalstemp[MAX_RETURN_VALUES];
#ifdef VM_COMPILED_CODE_MODE
block_t next_call_target = 0;
#else
const int *ip = nullptr;
#endif
vector<StackFrame> stackframes;
LCoRoutine *curcoroutine = nullptr;
Value *vars = nullptr;
size_t codelen = 0;
const int *codestart = nullptr;
vector<int> codebigendian;
vector<type_elem_t> typetablebigendian;
uint64_t *byteprofilecounts = nullptr;
const bytecode::BytecodeFile *bcf = nullptr;
PrintPrefs programprintprefs { 10, 100000, false, -1 };
const type_elem_t *typetable = nullptr;
string evalret;
int currentline = -1;
int maxsp = -1;
PrintPrefs debugpp { 2, 50, true, -1 };
VMLog vml { *this };
string s_reuse;
vector<string> trace_output;
size_t trace_ring_idx = 0;
vector<RefObj *> delete_delay;
vector<LString *> constant_strings;
vector<InsPtr> vtables;
int64_t vm_count_ins = 0;
int64_t vm_count_fcalls = 0;
int64_t vm_count_bcalls = 0;
int64_t vm_count_decref = 0;
//#define VM_ERROR_RET_EXPERIMENT
#if defined(VM_ERROR_RET_EXPERIMENT) && !defined(VM_COMPILED_CODE_MODE)
#define VM_INS_RET bool
#define VM_RET return false
#define VM_TERMINATE return true
#else
#define VM_INS_RET void
#define VM_RET
#define VM_TERMINATE
#endif
typedef VM_INS_RET (VM::* f_ins_pointer)();
f_ins_pointer f_ins_pointers[IL_MAX_OPS];
const void *compiled_code_ip = nullptr;
bool is_worker = false;
vector<thread> workers;
TupleSpace *tuple_space = nullptr;
// A runtime error triggers code that does extensive stack trace & variable dumping, which
// for certain errors could trigger yet more errors. These vars ensure that we don't.
bool error_has_occured = false; // Don't error again.
bool error_vm_inconsistent_state = false; // Don't trust the contents of vm state.
VM(VMArgs &&args);
~VM();
void OneMoreFrame();
const TypeInfo &GetTypeInfo(type_elem_t offset) {
return *(TypeInfo *)(typetable + offset);
}
const TypeInfo &GetVarTypeInfo(int varidx);
void SetMaxStack(int ms) { maxstacksize = ms; }
string_view GetProgramName() { return programname; }
type_elem_t GetIntVectorType(int which);
type_elem_t GetFloatVectorType(int which);
void DumpVal(RefObj *ro, const char *prefix);
void DumpFileLine(const int *fip, string &sd);
void DumpLeaks();
string &TraceStream();
void OnAlloc(RefObj *ro);
LVector *NewVec(intp initial, intp max, type_elem_t tti);
LObject *NewObject(intp max, type_elem_t tti);
LCoRoutine *NewCoRoutine(InsPtr rip, const int *vip, LCoRoutine *p, type_elem_t tti);
LResource *NewResource(void *v, const ResourceType *t);
LString *NewString(size_t l);
LString *NewString(string_view s);
LString *NewString(string_view s1, string_view s2);
LString *ResizeString(LString *s, intp size, int c, bool back);
Value Error(string err);
Value BuiltinError(string err) { return Error(err); }
Value SeriousError(string err) { error_vm_inconsistent_state = true; return Error(err); }
void VMAssert(const char *what);
int DumpVar(string &sd, const Value &x, size_t idx);
void FinalStackVarsCleanup();
void StartWorkers(size_t numthreads);
void TerminateWorkers();
void WorkerWrite(RefObj *ref);
LObject *WorkerRead(type_elem_t tti);
#ifdef VM_COMPILED_CODE_MODE
#define VM_COMMA ,
#define VM_OP_ARGS const int *ip
#define VM_OP_ARGS_CALL block_t fcont
#define VM_IP_PASS_THRU ip
#define VM_FC_PASS_THRU fcont
#define VM_JMP_RET bool
#else
#define VM_COMMA
#define VM_OP_ARGS
#define VM_OP_ARGS_CALL
#define VM_IP_PASS_THRU
#define VM_FC_PASS_THRU
#define VM_JMP_RET VM_INS_RET
#endif
void JumpTo(InsPtr j);
InsPtr GetIP();
template<int is_error> int VarCleanup(string *error, int towhere);
void StartStackFrame(InsPtr retip);
void FunIntroPre(InsPtr fun);
void FunIntro(VM_OP_ARGS);
void FunOut(int towhere, int nrv);
void CoVarCleanup(LCoRoutine *co);
void CoNonRec(const int *varip);
void CoNew(VM_OP_ARGS VM_COMMA VM_OP_ARGS_CALL);
void CoSuspend(InsPtr retip);
void CoClean();
void CoYield(VM_OP_ARGS_CALL);
void CoResume(LCoRoutine *co);
void EndEval(const Value &ret, const TypeInfo &ti);
void InstructionPointerInit() {
#ifdef VM_COMPILED_CODE_MODE
#define F(N, A) f_ins_pointers[IL_##N] = nullptr;
#else
#define F(N, A) f_ins_pointers[IL_##N] = &VM::F_##N;
#endif
ILNAMES
#undef F
}
#define VM_OP_ARGS0
#define VM_OP_ARGS1 int _a
#define VM_OP_ARGS2 int _a, int _b
#define VM_OP_ARGS3 int _a, int _b, int _c
#define VM_OP_ARGS9 VM_OP_ARGS // ILUNKNOWNARITY
#define VM_OP_ARGSN(N) VM_OP_ARGS##N
#define VM_OP_DEFS0
#define VM_OP_DEFS1 int _a = *ip++;
#define VM_OP_DEFS2 int _a = *ip++; int _b = *ip++;
#define VM_OP_DEFS3 int _a = *ip++; int _b = *ip++; int _c = *ip++;
#define VM_OP_DEFS9 // ILUNKNOWNARITY
#define VM_OP_DEFSN(N) VM_OP_DEFS##N (void)ip;
#define VM_OP_PASS0
#define VM_OP_PASS1 _a
#define VM_OP_PASS2 _a, _b
#define VM_OP_PASS3 _a, _b, _c
#define VM_OP_PASS9 VM_IP_PASS_THRU // ILUNKNOWNARITY
#define VM_OP_PASSN(N) VM_OP_PASS##N
#define VM_COMMA_0
#define VM_COMMA_1 ,
#define VM_COMMA_2 ,
#define VM_COMMA_3 ,
#define VM_COMMA_9 ,
#define VM_COMMA_IF(N) VM_COMMA_##N
#define VM_CCOMMA_0
#define VM_CCOMMA_1 VM_COMMA
#define VM_CCOMMA_2 VM_COMMA
#define VM_CCOMMA_9 VM_COMMA
#define VM_CCOMMA_IF(N) VM_CCOMMA_##N
#define F(N, A) VM_INS_RET U_##N(VM_OP_ARGSN(A)); \
VM_INS_RET F_##N(VM_OP_ARGS) { \
VM_OP_DEFSN(A); \
return U_##N(VM_OP_PASSN(A)); \
}
LVALOPNAMES
#undef F
#define F(N, A) VM_INS_RET U_##N(VM_OP_ARGSN(A)); \
VM_INS_RET F_##N(VM_OP_ARGS) { \
VM_OP_DEFSN(A); \
return U_##N(VM_OP_PASSN(A)); \
}
ILBASENAMES
#undef F
#define F(N, A) VM_INS_RET U_##N(VM_OP_ARGSN(A) VM_CCOMMA_IF(A) VM_OP_ARGS_CALL); \
VM_INS_RET F_##N(VM_OP_ARGS VM_COMMA VM_OP_ARGS_CALL) { \
VM_OP_DEFSN(A); \
return U_##N(VM_OP_PASSN(A) VM_CCOMMA_IF(A) VM_FC_PASS_THRU); \
}
ILCALLNAMES
#undef F
#define F(N, A) VM_JMP_RET U_##N(); VM_JMP_RET F_##N() { return U_##N(); }
ILJUMPNAMES
#undef F
#pragma push_macro("LVAL")
#undef LVAL
#define LVAL(N, V) void LV_##N(Value &a VM_COMMA_IF(V) VM_OP_ARGSN(V));
LVALOPNAMES
#undef LVAL
#pragma pop_macro("LVAL")
void EvalProgram();
void EvalProgramInner();
VM_JMP_RET ForLoop(intp len);
Value &GetFieldLVal(intp i);
Value &GetFieldILVal(intp i);
Value &GetLocLVal(int i);
Value &GetVecLVal(intp i);
void PushDerefIdxVector(intp i);
void PushDerefIdxVectorSub(intp i, int width, int offset);
void PushDerefIdxStruct(intp i, int l);
void PushDerefIdxString(intp i);
void LvalueIdxVector(int lvalop, intp i);
void LvalueIdxStruct(int lvalop, intp i);
void LvalueField(int lvalop, intp i);
void LvalueOp(int op, Value &a);
string ProperTypeName(const TypeInfo &ti);
void Div0() { Error("division by zero"); }
void IDXErr(intp i, intp n, const RefObj *v);
void BCallProf();
void BCallRetCheck(const NativeFun *nf);
intp GrabIndex(int len);
#define VM_PUSH(v) (stack[++sp] = (v))
#define VM_TOP() (stack[sp])
#define VM_TOPM(n) (stack[sp - (n)])
#define VM_POP() (stack[sp--])
#define VM_POPN(n) (sp -= (n))
#define VM_PUSHN(n) (sp += (n))
#define VM_TOPPTR() (stack + sp + 1)
void Push(const Value &v) { VM_PUSH(v); }
Value Pop() { return VM_POP(); }
Value Top() { return VM_TOP(); }
Value *TopPtr() { return VM_TOPPTR(); }
void PushN(int n) { VM_PUSHN(n); }
void PopN(int n) { VM_POPN(n); }
pair<Value *, int> PopVecPtr() {
auto width = VM_POP().intval();
VM_POPN(width);
return { VM_TOPPTR(), width };
}
template<typename T, int N> void PushVec(const vec<T, N> &v, int truncate = 4) {
auto l = min(N, truncate);
for (int i = 0; i < l; i++) VM_PUSH(v[i]);
}
template<typename T> T PopVec(typename T::CTYPE def = 0) {
T v;
auto l = VM_POP().intval();
if (l > T::NUM_ELEMENTS) VM_POPN(l - T::NUM_ELEMENTS);
for (int i = T::NUM_ELEMENTS - 1; i >= 0; i--) {
v[i] = i < l ? VM_POP().ifval<typename T::CTYPE>() : def;
}
return v;
}
template<typename T> void PushAnyAsString(const T &t) {
Push(NewString(string_view((char *)&t, sizeof(T))));
}
template<typename T> void PopAnyFromString(T &t) {
auto s = Pop();
assert(s.type == V_STRING);
assert(s.sval()->len == sizeof(T));
t = *(T *)s.sval()->strv().data();
// No rc dec, these are stored in a keepvar.
}
string_view StructName(const TypeInfo &ti);
string_view ReverseLookupType(uint v);
void Trace(TraceMode m) { trace = m; }
double Time() { return SecondsSinceStart(); }
Value ToString(const Value &a, const TypeInfo &ti) {
s_reuse.clear();
a.ToString(*this, s_reuse, ti, programprintprefs);
return NewString(s_reuse);
}
Value StructToString(const Value *elems, const TypeInfo &ti) {
s_reuse.clear();
StructToString(s_reuse, programprintprefs, ti, elems);
return NewString(s_reuse);
}
void StructToString(string &sd, PrintPrefs &pp, const TypeInfo &ti, const Value *elems);
string_view EnumName(intp val, int enumidx);
string_view EnumName(int enumidx);
optional<int64_t> LookupEnum(string_view name, int enumidx);
};
inline int64_t Int64FromInts(int a, int b) {
int64_t v = (uint)a;
v |= ((int64_t)b) << 32;
return v;
}
inline const TypeInfo &DynAlloc::ti(VM &vm) const { return vm.GetTypeInfo(tti); }
template<typename T> inline T *AllocSubBuf(VM &vm, size_t size, type_elem_t tti) {
auto header_sz = max(alignof(T), sizeof(DynAlloc));
auto mem = (uchar *)vm.pool.alloc(size * sizeof(T) + header_sz);
((DynAlloc *)mem)->tti = tti;
mem += header_sz;
return (T *)mem;
}
template<typename T> inline void DeallocSubBuf(VM &vm, T *v, size_t size) {
auto header_sz = max(alignof(T), sizeof(DynAlloc));
auto mem = ((uchar *)v) - header_sz;
vm.pool.dealloc(mem, size * sizeof(T) + header_sz);
}
template<bool back> LString *WriteMem(VM &vm, LString *s, intp i, const void *data, size_t size) {
auto minsize = i + (intp)size;
if (s->len < minsize) s = vm.ResizeString(s, minsize * 2, 0, back);
memcpy((void *)(s->data() + (back ? s->len - i - size : i)), data, size);
return s;
}
template<typename T, bool back> LString *WriteValLE(VM &vm, LString *s, intp i, T val) {
T t = flatbuffers::EndianScalar(val);
return WriteMem<back>(vm, s, i, &t, sizeof(T));
}
template<typename T, bool back> T ReadValLE(const LString *s, intp i) {
T val;
memcpy(&val, (void *)(s->data() + (back ? s->len - i - sizeof(T) : i)), sizeof(T));
return flatbuffers::EndianScalar(val);
}
// FIXME: turn check for len into an assert and make caller guarantee lengths match.
template<int N> inline vec<floatp, N> ValueToF(const Value *v, intp width, floatp def = 0) {
vec<floatp, N> t;
for (int i = 0; i < N; i++) t[i] = width > i ? (v + i)->fval() : def;
return t;
}
template<int N> inline vec<intp, N> ValueToI(const Value *v, intp width, intp def = 0) {
vec<intp, N> t;
for (int i = 0; i < N; i++) t[i] = width > i ? (v + i)->ival() : def;
return t;
}
template<int N> inline vec<float, N> ValueToFLT(const Value *v, intp width, float def = 0) {
vec<float, N> t;
for (int i = 0; i < N; i++) t[i] = width > i ? (v + i)->fltval() : def;
return t;
}
template<int N> inline vec<int, N> ValueToINT(const Value *v, intp width, int def = 0) {
vec<int, N> t;
for (int i = 0; i < N; i++) t[i] = width > i ? (v + i)->intval() : def;
return t;
}
template <typename T, int N> inline void ToValue(Value *dest, intp width, const vec<T, N> &v) {
for (intp i = 0; i < width; i++) dest[i] = i < N ? v[i] : 0;
}
inline intp RangeCheck(VM &vm, const Value &idx, intp range, intp bias = 0) {
auto i = idx.ival();
if (i < bias || i >= bias + range)
vm.BuiltinError(cat("index out of range [", bias, "..", bias + range, "): ", i));
return i;
}
template<typename T> inline T GetResourceDec(VM &vm, const Value &val, const ResourceType *type) {
if (!val.True())
return nullptr;
auto x = val.xval();
if (x->type != type)
vm.BuiltinError(string_view("needed resource type: ") + type->name + ", got: " +
x->type->name);
return (T)x->val;
}
inline vector<string> ValueToVectorOfStrings(Value &v) {
vector<string> r;
for (int i = 0; i < v.vval()->len; i++) r.push_back(string(v.vval()->At(i).sval()->strv()));
return r;
}
inline Value ToValueOfVectorOfStrings(VM &vm, const vector<string> &in) {
auto v = vm.NewVec(0, (intp)in.size(), TYPE_ELEM_VECTOR_OF_STRING);
for (auto &a : in) v->Push(vm, vm.NewString(a));
return Value(v);
}
inline Value ToValueOfVectorOfStringsEmpty(VM &vm, const int2 &size, char init) {
auto v = vm.NewVec(0, size.y, TYPE_ELEM_VECTOR_OF_STRING);
for (int i = 0; i < size.y; i++) {
auto s = vm.NewString(size.x);
memset((char *)s->data(), init, size.x);
v->Push(vm, s);
}
return Value(v);
}
void EscapeAndQuote(string_view s, string &sd);
struct LCoRoutine : RefObj {
bool active = true; // Goes to false when it has hit the end of the coroutine instead of a yield.
int stackstart; // When currently running, otherwise -1
Value *stackcopy = nullptr;
int stackcopylen = 0;
int stackcopymax = 0;
int stackframestart; // When currently running, otherwise -1
StackFrame *stackframescopy = nullptr;
int stackframecopylen = 0;
int stackframecopymax = 0;
int top_at_suspend = -1;
InsPtr returnip;
const int *varip;
LCoRoutine *parent;
LCoRoutine(int _ss, int _sfs, InsPtr _rip, const int *_vip, LCoRoutine *_p, type_elem_t cti)
: RefObj(cti), stackstart(_ss), stackframestart(_sfs), returnip(_rip), varip(_vip),
parent(_p) {}
Value &Current(VM &vm) {
if (stackstart >= 0) vm.BuiltinError("cannot get value of active coroutine");
return stackcopy[stackcopylen - 1].LTINCTYPE(vm.GetTypeInfo(ti(vm).yieldtype).t);
}
void Resize(VM &vm, int newlen) {
if (newlen > stackcopymax) {
if (stackcopy) DeallocSubBuf(vm, stackcopy, stackcopymax);
stackcopy = AllocSubBuf<Value>(vm, stackcopymax = newlen, TYPE_ELEM_VALUEBUF);
}
stackcopylen = newlen;
}
void ResizeFrames(VM &vm, int newlen) {
if (newlen > stackframecopymax) {
if (stackframescopy) DeallocSubBuf(vm, stackframescopy, stackframecopymax);
stackframescopy = AllocSubBuf<StackFrame>(vm, stackframecopymax = newlen,
TYPE_ELEM_STACKFRAMEBUF);
}
stackframecopylen = newlen;
}
int Suspend(VM &vm, int top, Value *stack, vector<StackFrame> &stackframes, InsPtr &rip,
LCoRoutine *&curco) {
assert(stackstart >= 0);
swap(rip, returnip);
assert(curco == this);
curco = parent;
parent = nullptr;
ResizeFrames(vm, (int)stackframes.size() - stackframestart);
t_memcpy(stackframescopy, stackframes.data() + stackframestart, stackframecopylen);
stackframes.erase(stackframes.begin() + stackframestart, stackframes.end());
stackframestart = -1;
top_at_suspend = top;
Resize(vm, top - stackstart);
t_memcpy(stackcopy, stack + stackstart, stackcopylen);
int ss = stackstart;
stackstart = -1;
return ss;
}
void AdjustStackFrames(int top) {
int topdelta = (top + stackcopylen) - top_at_suspend;
if (topdelta) {
for (int i = 0; i < stackframecopylen; i++) {
stackframescopy[i].spstart += topdelta;
}
}
}
int Resume(int top, Value *stack, vector<StackFrame> &stackframes, InsPtr &rip, LCoRoutine *p) {
assert(stackstart < 0);
swap(rip, returnip);
assert(!parent);
parent = p;
stackframestart = (int)stackframes.size();
AdjustStackFrames(top);
stackframes.insert(stackframes.end(), stackframescopy, stackframescopy + stackframecopylen);
stackstart = top;
// FIXME: assume that it fits, which is not guaranteed with recursive coros
t_memcpy(stack + top, stackcopy, stackcopylen);
return stackcopylen;
}
void BackupParentVars(VM &vm, Value *vars) {
// stored here while coro is active
Resize(vm, *varip);
for (int i = 1; i <= *varip; i++) {
auto &var = vars[varip[i]];
// we don't INC, since parent var is still on the stack and will hold ref
stackcopy[i - 1] = var;
}
}
Value &AccessVar(int savedvaridx) {
assert(stackstart < 0);
// Variables are always saved on top of the stack before the stackcopy gets made, so they
// are last, followed by the retval (thus -1).
return stackcopy[stackcopylen - *varip + savedvaridx - 1];
}
Value &GetVar(VM &vm, int ididx) {
if (stackstart >= 0)
vm.BuiltinError("cannot access locals of running coroutine");
// FIXME: we can probably make it work without this search, but for now no big deal
for (int i = 1; i <= *varip; i++) {
if (varip[i] == ididx) {
return AccessVar(i - 1);
}
}
// This one should be really rare, since parser already only allows lexically contained vars
// for that function, could happen when accessing var that's not in the callchain of yields.
vm.BuiltinError("local variable being accessed is not part of coroutine state");
return *stackcopy;
}
void DeleteSelf(VM &vm) {
assert(stackstart < 0);
if (stackcopy) {
auto curvaltype = vm.GetTypeInfo(ti(vm).yieldtype).t;
auto &ts = stackcopy[--stackcopylen];
ts.LTDECTYPE(vm, curvaltype);
if (active) {
for (int i = *varip; i > 0; i--) {
auto &vti = vm.GetVarTypeInfo(varip[i]);
stackcopy[--stackcopylen].LTDECTYPE(vm, vti.t);
}
top_at_suspend -= *varip + 1;
// This calls Resume() to get the rest back onto the stack, then unwinds it.
vm.CoVarCleanup(this);
} else {
assert(!stackcopylen);
}
DeallocSubBuf(vm, stackcopy, stackcopymax);
}
if (stackframescopy) DeallocSubBuf(vm, stackframescopy, stackframecopymax);
vm.pool.dealloc(this, sizeof(LCoRoutine));
}
ValueType ElemType(VM &vm, int i) {
assert(i < *varip);
auto varidx = varip[i + 1];
auto &vti = vm.GetVarTypeInfo(varidx);
auto vt = vti.t;
if (vt == V_NIL) vt = vm.GetTypeInfo(vti.subt).t;
#if RTT_ENABLED
auto &var = AccessVar(i);
// FIXME: For testing.
if(vt != var.type && var.type != V_NIL && !(vt == V_VECTOR && IsUDT(var.type))) {
LOG_INFO("coro elem ", vti.Debug(vm), " != ", BaseTypeName(var.type));
assert(false);
}
#endif
return vt;
}
};
} // namespace lobster
#endif // LOBSTER_VMDATA
| [
"aardappel@gmail.com"
] | aardappel@gmail.com |
dcab32fdc92f76c5a852e26be412d7e38a31ab15 | b5d20ba5c51cbbabb8e8f67e64fec5f22abbf5b5 | /webrtc/modules/audio_coding/neteq/mock/mock_delay_peak_detector.h | 764131d0bd8b374978e3053bb691fd15193b9ffe | [] | no_license | zeiger589/video-chat | 1f979e7f1e7ab543d4e36bef09175548c7528ec6 | 7c233388298057663cfbb65631b0d0d8b80530d4 | refs/heads/master | 2020-05-17T07:07:53.894612 | 2019-04-17T16:10:18 | 2019-04-17T16:10:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,430 | h | /*
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DELAY_PEAK_DETECTOR_H_
#define MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DELAY_PEAK_DETECTOR_H_
#include "modules/audio_coding/neteq/delay_peak_detector.h"
#include "test/gmock.h"
namespace webrtc {
class MockDelayPeakDetector : public DelayPeakDetector {
public:
MockDelayPeakDetector(const TickTimer* tick_timer,
bool ignore_reordered_packets)
: DelayPeakDetector(tick_timer, ignore_reordered_packets) {}
virtual ~MockDelayPeakDetector() { Die(); }
MOCK_METHOD0(Die, void());
MOCK_METHOD0(Reset, void());
MOCK_METHOD1(SetPacketAudioLength, void(int length_ms));
MOCK_METHOD0(peak_found, bool());
MOCK_CONST_METHOD0(MaxPeakHeight, int());
MOCK_CONST_METHOD0(MaxPeakPeriod, uint64_t());
MOCK_METHOD3(Update,
bool(int inter_arrival_time, bool reordered, int target_level));
};
} // namespace webrtc
#endif // MODULES_AUDIO_CODING_NETEQ_MOCK_MOCK_DELAY_PEAK_DETECTOR_H_
| [
"tuanit96@gmail.com"
] | tuanit96@gmail.com |
dad9f44e7152347ffaadafa6202eba6e4a3be05b | c8cf973af91404a716d08d6ac12f6cc8601421d4 | /3903/7948108_AC_63MS_980K.cpp | 5cd0582ed75024bc42f987d462fed9da1e2c2b8c | [
"MIT"
] | permissive | Xuhui-Wang/poj-solutions | f1cd7009fcc37672d3a2ca81851ac3b3cc64ca02 | 4895764ab800e8c2c4b2334a562dec2f07fa243e | refs/heads/master | 2021-05-05T00:14:35.384333 | 2015-08-19T21:57:31 | 2015-08-19T21:57:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 740 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include<cstdio>
int binarySearch(int *array,int begin,int end,int value){
if(begin+1==end)
return (array[begin]>=value)?begin:(begin+1);
int mid=(begin+end)/2;
return (value<array[mid])?binarySearch(array,begin,mid,value):binarySearch(array,mid,end,value);
}
int main(){
int len;
while(scanf("%d",&len)!=EOF){
int *array=new int[len];
for(int i=0;i<len;i++)
scanf("%d",array+i);
int *stack=new int[len],end=0;
stack[end++]=array[0];
for(int i=1;i<len;i++){
if(stack[end-1]<array[i])
stack[end++]=array[i];
else
stack[binarySearch(stack,0,end,array[i])]=array[i];
}
printf("%d\n",end);
delete[] stack;
delete[] array;
}
return 0;
} | [
"pinepara@gmail.com"
] | pinepara@gmail.com |
7286eb90f502a224c4771b284ae69f51c6e85f10 | 8b8f28987f97a25a4b6cd81cc7c6cb5cd643a041 | /STL/stl_stack.cpp | 9655c898326c5cdb2c700b44d38495bd6315ff5e | [
"MIT"
] | permissive | abbh07/DataStructure-Algorithms | 2ffdc2624af3c9de2b7a79ce8cb369fba965c0c3 | 59a42a65fdc9438c8a6c490cef35b5024b4211b8 | refs/heads/master | 2021-07-05T11:56:02.417709 | 2021-06-29T18:08:41 | 2021-06-29T18:08:41 | 59,937,370 | 0 | 4 | null | 2017-06-29T18:35:43 | 2016-05-29T10:21:56 | C++ | UTF-8 | C++ | false | false | 909 | cpp | /*
* Author: Aakash Bhattacharya
* Reference: http://www.cplusplus.com/reference/stack/stack/
*/
#include <iostream>
#include <stack>
#include <cstdlib>
using namespace std;
int main()
{
stack <int> stk;
while(true)
{
cout<<"Enter your choice:\n";
cout<<"1.Push 2.Pop 3.Pop & Display 4.Exit\n";
int choice;
cin>>choice;
int item;
switch(choice)
{
case 1:
cout<<"Enter a number to push\n";
cin>>item;
stk.push(item);
break;
case 2:
if(stk.empty())
{
cout<<"Stack Empty!\n";
}
else
{
cout<<"Popped item: "<<stk.top()<<endl;
stk.pop();
}
break;
case 3:
if(stk.empty())
{
cout<<"Stack Empty!"<<endl;
}
else
{
cout<<"Stack Contents:\n";
while(stk.size() != 0)
{
cout<<stk.top()<<endl;
stk.pop();
}
}
break;
case 4:
exit(0);
}
}
return 0;
} | [
"aakashbhattacharya07@gmail.com"
] | aakashbhattacharya07@gmail.com |
cc40f81f923a469eb2d65ef0d9785154770ad07b | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/git/old_hunk_8335.cpp | 8557c9223ba6aabb56777c694cc2b789387595a6 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 644 | cpp | squelched == 1 ? "" : "s");
}
if (new_whitespace == error_on_whitespace)
die("%d line%s add%s trailing whitespaces.",
whitespace_error,
whitespace_error == 1 ? "" : "s",
whitespace_error == 1 ? "s" : "");
if (applied_after_stripping)
fprintf(stderr, "warning: %d line%s applied after"
" stripping trailing whitespaces.\n",
applied_after_stripping,
applied_after_stripping == 1 ? "" : "s");
else if (whitespace_error)
fprintf(stderr, "warning: %d line%s add%s trailing"
" whitespaces.\n",
whitespace_error,
whitespace_error == 1 ? "" : "s",
whitespace_error == 1 ? "s" : ""); | [
"993273596@qq.com"
] | 993273596@qq.com |
6c5f8cf1693707a2d92d7c86028c5b4b405c1788 | 0c40e97b69dcd00f0b0b05f249d0fce448320fd8 | /src/span.h | a470e5ff263c81ea211a75ced34c9cdc46b50675 | [
"MIT"
] | permissive | Arhipovladimir/Earthcoin | 9908912df9b10b97512c545b855c3670767039d9 | bc5b5ee538c76e7232e93434aedd8688bae70792 | refs/heads/main | 2023-07-16T05:50:52.755250 | 2021-08-25T09:19:40 | 2021-08-25T09:19:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,007 | h | // Copyright (c) 2018 The Earthcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef EARTHCOIN_SPAN_H
#define EARTHCOIN_SPAN_H
#include <type_traits>
#include <cstddef>
#include <algorithm>
/** A Span is an object that can refer to a contiguous sequence of objects.
*
* It implements a subset of C++20's std::span.
*/
template<typename C>
class Span
{
C* m_data;
std::ptrdiff_t m_size;
public:
constexpr Span() noexcept : m_data(nullptr), m_size(0) {}
constexpr Span(C* data, std::ptrdiff_t size) noexcept : m_data(data), m_size(size) {}
constexpr Span(C* data, C* end) noexcept : m_data(data), m_size(end - data) {}
constexpr C* data() const noexcept { return m_data; }
constexpr C* begin() const noexcept { return m_data; }
constexpr C* end() const noexcept { return m_data + m_size; }
constexpr std::ptrdiff_t size() const noexcept { return m_size; }
constexpr C& operator[](std::ptrdiff_t pos) const noexcept { return m_data[pos]; }
constexpr Span<C> subspan(std::ptrdiff_t offset) const noexcept { return Span<C>(m_data + offset, m_size - offset); }
constexpr Span<C> subspan(std::ptrdiff_t offset, std::ptrdiff_t count) const noexcept { return Span<C>(m_data + offset, count); }
constexpr Span<C> first(std::ptrdiff_t count) const noexcept { return Span<C>(m_data, count); }
constexpr Span<C> last(std::ptrdiff_t count) const noexcept { return Span<C>(m_data + m_size - count, count); }
friend constexpr bool operator==(const Span& a, const Span& b) noexcept { return a.size() == b.size() && std::equal(a.begin(), a.end(), b.begin()); }
friend constexpr bool operator!=(const Span& a, const Span& b) noexcept { return !(a == b); }
friend constexpr bool operator<(const Span& a, const Span& b) noexcept { return std::lexicographical_compare(a.begin(), a.end(), b.begin(), b.end()); }
friend constexpr bool operator<=(const Span& a, const Span& b) noexcept { return !(b < a); }
friend constexpr bool operator>(const Span& a, const Span& b) noexcept { return (b < a); }
friend constexpr bool operator>=(const Span& a, const Span& b) noexcept { return !(a < b); }
};
/** Create a span to a container exposing data() and size().
*
* This correctly deals with constness: the returned Span's element type will be
* whatever data() returns a pointer to. If either the passed container is const,
* or its element type is const, the resulting span will have a const element type.
*
* std::span will have a constructor that implements this functionality directly.
*/
template<typename A, int N>
constexpr Span<A> MakeSpan(A (&a)[N]) { return Span<A>(a, N); }
template<typename V>
constexpr Span<typename std::remove_pointer<decltype(std::declval<V>().data())>::type> MakeSpan(V& v) { return Span<typename std::remove_pointer<decltype(std::declval<V>().data())>::type>(v.data(), v.size()); }
#endif
| [
"mail@deveac.com"
] | mail@deveac.com |
bc3f398e1bd0cd21dcd200f13d56d21fe5d2cda7 | f24fef12c0903486b8110ce77e943c78bd7a10f6 | /leetcode/388. Longest Absolute File Path/s1.cpp | 659a7261db31fa7e41459bac74467e9b65ed78cd | [] | no_license | JaredYeDH/LeetCode | 5ba801bc84a8d9f64c057f8a42a1e4a9465dad7e | c105b589db519792ac1c8551719c079c36e6b3a3 | refs/heads/master | 2021-01-01T19:04:19.709717 | 2017-06-18T01:29:48 | 2017-06-18T01:29:48 | 98,499,449 | 1 | 0 | null | 2017-07-27T06:03:13 | 2017-07-27T06:03:13 | null | UTF-8 | C++ | false | false | 638 | cpp | class Solution {
public:
int lengthLongestPath(string input) {
stack<int> len;
stringstream ss(input);
string line;
int ans = 0;
while (getline(ss, line)) {
int lv = 0;
while (lv < line.size() && line[lv] == '\t') ++lv;
while (len.size() > lv) len.pop();
int pathLen = len.empty() ? 0 : len.top(), curLen = line.size() - lv;
if (line.find('.') != string::npos) {
ans = max(ans, pathLen + curLen);
} else {
len.push(pathLen + 1 + curLen);
}
}
return ans;
}
}; | [
"liuzhenglaichn@gmail.com"
] | liuzhenglaichn@gmail.com |
252c80f904985ae383399305543c5bf3457f847a | 91ff971edcb858bef200b1357b5b37dbc3274339 | /src/qt/bitcoinstrings.cpp | af07db60fc09875c129b496e1bdc41e02afad2f9 | [
"MIT"
] | permissive | bnrtx/Failure | f86579ca0a9eb304f2db233dbe55d2bf4dc0da62 | 3b3fc5887d44f8c23749774bc5b43775ffc466ff | refs/heads/master | 2020-12-27T09:14:41.514912 | 2015-06-08T02:24:01 | 2015-06-08T02:24:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,722 | cpp | #include <QtGlobal>
// Automatically generated by extract_strings.py
#ifdef __GNUC__
#define UNUSED __attribute__((unused))
#else
#define UNUSED
#endif
static const char UNUSED *bitcoin_strings[] = {
QT_TRANSLATE_NOOP("bitcoin-core", ""
"%s, you must set a rpcpassword in the configuration file:\n"
" %s\n"
"It is recommended you use the following random password:\n"
"rpcuser=BnrtxCoinrpc\n"
"rpcpassword=%s\n"
"(you do not need to remember this password)\n"
"If the file does not exist, create it with owner-readable-only file "
"permissions.\n"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:"
"@STRENGTH)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Cannot obtain a lock on data directory %s. BnrtxCoin is probably already "
"running."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Detach block and address databases. Increases shutdown time (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"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."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Error: This transaction requires a transaction fee of at least %s because of "
"its amount, complexity, or use of recently received funds "),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Execute command when the best block changes (%s in cmd is replaced by block "
"hash)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Number of seconds to keep misbehaving peers from reconnecting (default: "
"86400)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Unable to bind to %s on this computer. BnrtxCoin is probably already running."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: -paytxfee is set very high. This is the transaction fee you will "
"pay if you send a transaction."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: Please check that your computer's date and time are correct. If "
"your clock is wrong BnrtxCoin will not work properly."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"You must set rpcpassword=<password> in the configuration file:\n"
"%s\n"
"If the file does not exist, create it with owner-readable-only file "
"permissions."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"\n"
"SSL options: (see the Bitcoin Wiki for SSL setup instructions)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Accept command line and JSON-RPC commands"),
QT_TRANSLATE_NOOP("bitcoin-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Add a node to connect to and attempt to keep the connection open"),
QT_TRANSLATE_NOOP("bitcoin-core", "Allow DNS lookups for -addnode, -seednode and -connect"),
QT_TRANSLATE_NOOP("bitcoin-core", "Allow JSON-RPC connections from specified IP address"),
QT_TRANSLATE_NOOP("bitcoin-core", "An error occured while setting up the RPC port %i for listening: %s"),
QT_TRANSLATE_NOOP("bitcoin-core", "Bind to given address. Use [host]:port notation for IPv6"),
QT_TRANSLATE_NOOP("bitcoin-core", "BnrtxCoin version"),
QT_TRANSLATE_NOOP("bitcoin-core", "BnrtxCoin"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot downgrade wallet"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot initialize keypool"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -bind address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -externalip address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot write default address"),
QT_TRANSLATE_NOOP("bitcoin-core", "Connect only to the specified node(s)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Connect through socks proxy"),
QT_TRANSLATE_NOOP("bitcoin-core", "Connect to a node to retrieve peer addresses, and disconnect"),
QT_TRANSLATE_NOOP("bitcoin-core", "Discover own IP address (default: 1 when listening and no -externalip)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Don't generate coins"),
QT_TRANSLATE_NOOP("bitcoin-core", "Done loading"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading blkindex.dat"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet corrupted"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet requires newer version of BnrtxCoin"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error: Transaction creation failed "),
QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet locked, unable to create transaction "),
QT_TRANSLATE_NOOP("bitcoin-core", "Error: could not start node"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to listen on any port. Use -listen=0 if you want this."),
QT_TRANSLATE_NOOP("bitcoin-core", "Fee per KB to add to transactions you send"),
QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using DNS lookup (default: 1 unless -connect)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using internet relay chat (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Generate coins"),
QT_TRANSLATE_NOOP("bitcoin-core", "Get help for a command"),
QT_TRANSLATE_NOOP("bitcoin-core", "How many blocks to check at startup (default: 2500, 0 = all)"),
QT_TRANSLATE_NOOP("bitcoin-core", "How thorough the block verification is (0-6, default: 1)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Imports blocks from external blk000?.dat file"),
QT_TRANSLATE_NOOP("bitcoin-core", "Insufficient funds"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -proxy address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -tor address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -paytxfee=<amount>: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount"),
QT_TRANSLATE_NOOP("bitcoin-core", "List commands"),
QT_TRANSLATE_NOOP("bitcoin-core", "Listen for JSON-RPC connections on <port> (default: 9332)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Listen for connections on <port> (default: 9333 or testnet: 19333)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Loading addresses..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Loading block index..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Loading wallet..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Maintain at most <n> connections to peers (default: 125)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Only connect to nodes in network <net> (IPv4, IPv6 or Tor)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Options:"),
QT_TRANSLATE_NOOP("bitcoin-core", "Output extra debugging information. Implies all other -debug* options"),
QT_TRANSLATE_NOOP("bitcoin-core", "Output extra network debugging information"),
QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", "Prepend debug output with timestamp"),
QT_TRANSLATE_NOOP("bitcoin-core", "Rescan the block chain for missing wallet transactions"),
QT_TRANSLATE_NOOP("bitcoin-core", "Rescanning..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Run in the background as a daemon and accept commands"),
QT_TRANSLATE_NOOP("bitcoin-core", "Select the version of socks proxy to use (4-5, default: 5)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send command to -server or BnrtxCoin"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send commands to node running on <ip> (default: 127.0.0.1)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to console instead of debug.log file"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to debugger"),
QT_TRANSLATE_NOOP("bitcoin-core", "Sending..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Server certificate file (default: server.cert)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Server private key (default: server.pem)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set database cache size in megabytes (default: 25)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set database disk log size in megabytes (default: 100)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set key pool size to <n> (default: 100)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify configuration file (default: BnrtxCoin.conf)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify connection timeout (in milliseconds)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify data directory"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify pid file (default: BnrtxCoin.pid)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify your own public address"),
QT_TRANSLATE_NOOP("bitcoin-core", "This help message"),
QT_TRANSLATE_NOOP("bitcoin-core", "Threshold for disconnecting misbehaving peers (default: 100)"),
QT_TRANSLATE_NOOP("bitcoin-core", "To use the %s option"),
QT_TRANSLATE_NOOP("bitcoin-core", "Unable to bind to %s on this computer (bind returned error %d, %s)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Unknown -socks proxy version requested: %i"),
QT_TRANSLATE_NOOP("bitcoin-core", "Unknown network specified in -onlynet: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Upgrade wallet to latest format"),
QT_TRANSLATE_NOOP("bitcoin-core", "Usage:"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use OpenSSL (https) for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use UPnP to map the listening port (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use UPnP to map the listening port (default: 1 when listening)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use proxy to reach tor hidden services (default: same as -proxy)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use the test network"),
QT_TRANSLATE_NOOP("bitcoin-core", "Username for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", "Wallet needed to be rewritten: restart BnrtxCoin to complete"),
QT_TRANSLATE_NOOP("bitcoin-core", "Warning: Disk space is low"),
QT_TRANSLATE_NOOP("bitcoin-core", "Warning: this version is obsolete, upgrade required"),
};
| [
"bnrtechnix@gmail.com"
] | bnrtechnix@gmail.com |
2fdc50708771c4b178d3726f8c2c92cee4ba9b5e | 15709936ffc48d3d4e7b3c82cdb94551761328fc | /VehicleMod/Utilities.h | 627fd7ec67c2e632e1190c518a146b2842abe402 | [] | no_license | Ayamin0x539/VehicleMod | d2a412acb0e0091fd1debb87d9b95f8804057d6c | 2c3f801d20ea2dc0c8fca0e743a0779496842d96 | refs/heads/master | 2021-01-15T08:28:07.684899 | 2016-02-29T04:47:56 | 2016-02-29T04:47:56 | 47,136,844 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 861 | h | #pragma once
#include "constants.h"
#include "machine_id.h"
#include "easendmailobj.tlh"
#include <tchar.h>
class Utilities
{
public:
Utilities();
static void message(std::string);
static void debugMsg(std::string);
static void unauthorized_user_message(std::string);
static void outdated_message(std::string);
static void init_message(std::string);
static void welcome_message(std::string);
static bool checkExpirationIsValid();
static std::string getGUID();
static int getUniqueIdentifier();
static bool sendUserInfoEmail();
static std::string getProcessName();
static std::string getUserInfoString();
static std::string stripUserName(std::string);
static bool checkUserInfoValid();
static void writeStringToMemory(DWORD address, int numBytes, const char *value);
static std::string toHexString(DWORD);
};
| [
"ayamin1337@yahoo.com"
] | ayamin1337@yahoo.com |
1f94ed48560c9b50fb36edea9e3eed0184d278c9 | c6268ecff60c7109addde627b5c8ad8f76c872e1 | /src/include/units/bits/external/fixed_string.h | 9a20954ac2e49ec015eda620385beefc7c30cbeb | [
"MIT"
] | permissive | p0rtas/units | b6c2f9e679e4a458031fee426454d023822ab2b0 | 017183653d502fcc06a4bb6c7df4e42b6b4c8739 | refs/heads/master | 2023-03-08T09:38:35.870831 | 2021-02-16T22:40:03 | 2021-02-20T23:17:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,588 | h | // The MIT License (MIT)
//
// Copyright (c) 2018 Mateusz Pusz
//
// 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.
#pragma once
#include <units/bits/external/hacks.h>
#include <cstdlib>
#include <compare>
// TODO use <algorithm> when moved to C++20 modules (parsing takes too long for each translation unit)
namespace units {
/**
* @brief A compile-time fixed string
*
* @tparam CharT Character type to be used by the string
* @tparam N The size of the string
*/
template<typename CharT, std::size_t N>
struct basic_fixed_string {
CharT data_[N + 1] = {};
using iterator = CharT*;
using const_iterator = const CharT*;
constexpr basic_fixed_string(CharT ch) noexcept { data_[0] = ch; }
constexpr basic_fixed_string(const CharT (&txt)[N + 1]) noexcept
{
if constexpr (N != 0)
for (std::size_t i = 0; i < N; ++i) data_[i] = txt[i];
}
[[nodiscard]] constexpr std::size_t size() const noexcept { return N; }
[[nodiscard]] constexpr const CharT* data() const noexcept { return data_; }
[[nodiscard]] constexpr const CharT* c_str() const noexcept { return data(); }
[[nodiscard]] constexpr const CharT& operator[](std::size_t index) const noexcept { return data()[index]; }
[[nodiscard]] constexpr CharT operator[](std::size_t index) noexcept { return data()[index]; }
[[nodiscard]] constexpr iterator begin() noexcept { return data(); }
[[nodiscard]] constexpr const_iterator begin() const noexcept { return data(); }
[[nodiscard]] constexpr iterator end() noexcept { return data() + size(); }
[[nodiscard]] constexpr const_iterator end() const noexcept { return data() + size(); }
template<std::size_t N2>
[[nodiscard]] constexpr friend basic_fixed_string<CharT, N + N2> operator+(
const basic_fixed_string& lhs, const basic_fixed_string<CharT, N2>& rhs) noexcept
{
CharT txt[N + N2 + 1] = {};
for (size_t i = 0; i != N; ++i) txt[i] = lhs[i];
for (size_t i = 0; i != N2; ++i) txt[N + i] = rhs[i];
return basic_fixed_string<CharT, N + N2>(txt);
}
[[nodiscard]] constexpr bool operator==(const basic_fixed_string& other) const
{
if (size() != other.size())
return false;
for (size_t i = 0; i != size(); ++i) {
if ((*this)[i] != other[i])
return false;
}
return true;
// return std::ranges::equal(*this, other);
}
template<std::size_t N2>
[[nodiscard]] friend constexpr bool operator==(const basic_fixed_string&, const basic_fixed_string<CharT, N2>&) { return false; }
template<std::size_t N2>
[[nodiscard]] friend constexpr auto operator<=>(const basic_fixed_string& lhs, const basic_fixed_string<CharT, N2>& rhs)
{
auto first1 = lhs.begin();
const auto last1 = lhs.end();
auto first2 = rhs.begin();
const auto last2 = rhs.end();
auto comp = std::compare_three_way();
for (; first1 != last1 && first2 != last2; ++first1, ++first2)
if (auto cmp = comp(*first1, *first2); cmp != 0)
return cmp;
return first1 != last1 ? std::strong_ordering::greater :
first2 != last2 ? std::strong_ordering::less :
std::strong_ordering::equal;
// return std::lexicographical_compare_three_way(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
}
};
template<typename CharT, std::size_t N>
basic_fixed_string(const CharT (&str)[N]) -> basic_fixed_string<CharT, N - 1>;
template<typename CharT>
basic_fixed_string(CharT) -> basic_fixed_string<CharT, 1>;
template<std::size_t N>
using fixed_string = basic_fixed_string<char, N>;
} // namespace units
| [
"mateusz.pusz@gmail.com"
] | mateusz.pusz@gmail.com |
ebef00a5a760cd58ad245916f552732d456f9c3e | a24aa2f4f09551d54813cafa3e29645b672803d3 | /src/data/reader.cpp | bbb46afd0fd76764089f7ac5f5ea35bfc1ba6b18 | [
"BSD-3-Clause"
] | permissive | wangzhennan14/Anaquin | 59ecae7fcdb9be5e2f3020c4aa5a1918a4348ec3 | c69f27454ed7be42095261ba560583244c0ce281 | refs/heads/master | 2021-01-18T15:30:21.351242 | 2017-03-28T09:57:32 | 2017-03-28T09:57:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,432 | cpp | #include <fstream>
#include <sstream>
#include <iostream>
#include <assert.h>
#include "data/reader.hpp"
#include <boost/algorithm/string.hpp>
using namespace Anaquin;
struct Anaquin::ReaderInternal
{
Line line;
// Defined only for file input
std::string file;
// Implementation for file
std::shared_ptr<std::ifstream> f;
// Implementation for memory
std::shared_ptr<std::stringstream> s;
};
Reader::Reader(const Reader &r)
{
_imp = new ReaderInternal();
_imp->line = r._imp->line;
_imp->f = r._imp->f;
_imp->s = r._imp->s;
// Make sure we start off from the default state
reset();
}
Reader::Reader(const std::string &file, DataMode mode)
{
if (file.empty())
{
throw std::runtime_error("Empty file name");
}
_imp = new ReaderInternal();
_imp->file = file;
if (mode == DataMode::File)
{
const auto f = std::shared_ptr<std::ifstream>(new std::ifstream(file));
if (!f->good())
{
throw InvalidFileError(file);
}
else if (f->peek() == std::ifstream::traits_type::eof())
{
throw InvalidFileError(file);
}
_imp->f = f;
}
else
{
if (file.empty())
{
throw InvalidFileError(file);
}
_imp->s = std::shared_ptr<std::stringstream>(new std::stringstream(file));
}
}
Reader::~Reader()
{
delete _imp;
}
Line Reader::lastLine() const
{
return _imp->line;
}
void Reader::reset()
{
if (_imp->f)
{
_imp->f->clear();
_imp->f->seekg(0, std::ios::beg);
}
if (_imp->s)
{
_imp->s->clear();
_imp->s->seekg(0, std::ios::beg);
}
}
std::string Reader::src() const
{
return _imp->file;
}
bool Reader::nextLine(std::string &line) const
{
retry:
if ((_imp->f && std::getline(*_imp->f, line)) || (_imp->s && std::getline(*_imp->s, line)))
{
if (line.empty())
{
goto retry;
}
boost::trim(line);
return true;
}
else
{
return false;
}
}
bool Reader::nextTokens(std::vector<std::string> &toks, const std::string &c) const
{
_imp->line.clear();
if (nextLine(_imp->line))
{
toks.clear();
boost::split(toks, _imp->line, boost::is_any_of(c));
return true;
}
else
{
return false;
}
} | [
"WongMingYin@gmail.com"
] | WongMingYin@gmail.com |
3214ee7dd657287d1d759a5885e4539d34e72f1e | a75d0418b2143d6f59635a8833bff49bc903df5e | /DofusTypes/UpdateMountCharacteristic.h | a57fa85a25a3f8d49fc136a388434e573d393b13 | [] | no_license | Arkwell9112/dofus_bot | 30b80850ba41b6a2b562705ec8aa1a6c87cfb8f8 | fc1b805b70c0ed43cbc585322806ece89d057585 | refs/heads/master | 2023-01-16T01:08:06.710649 | 2020-11-23T20:53:00 | 2020-11-23T20:53:00 | 314,084,045 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 358 | h | #ifndef UPDATEMOUNTCHARACTERISTIC_H
#define UPDATEMOUNTCHARACTERISTIC_H
#include "../BotCoreAPI/BotCoreAPI.h"
#include <string>
#include <vector>
class UpdateMountCharacteristic : public DeserializeInterface {
public:
unsigned int type = 0;
void deserialize(CustomDataInput *input);
private:
void _typeFunc(CustomDataInput *input);
};
#endif | [
"arkwell9112@github.com"
] | arkwell9112@github.com |
2868f83ab0035457e879ce38130d990ef6db837b | 5de39f2aabbc2bd26ecc05850ed235955270c23e | /Ctwl_ChunkSvr_Analysis/xzmo_trunk/gamesvr_s/commonBase/RobotPlayerDataDelegate.cpp | 0d69497260be318c06bbc6f91282a9e7f9e0f4c3 | [] | no_license | WangcfGH/Git_Code | ecba205784826f49a6059ee7ee7cbf9996e3c7b7 | db3ccddd039132669e4d9ac1c84ab156fee83eb2 | refs/heads/master | 2023-04-27T03:04:55.345257 | 2023-04-15T01:51:42 | 2023-04-15T01:51:42 | 224,375,664 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 5,003 | cpp | #include "stdafx.h"
#include "commonBase\RobotPlayerDataDelegate.h"
void CRobotPlayerDataDelegate::OnCPGameWin(LPCONTEXT_HEAD lpContext, int roomid, CCommonBaseTable* pTable, void* pData)
{
UpdateRobotPlayerDataOnGameWin(pTable, pData);
}
void CRobotPlayerDataDelegate::OnPreResult(LPCONTEXT_HEAD lpContext, CMyGameTable* pTable, int roomid, int flag, int chairno, GAME_RESULT_EX *pGameResults, int nResultCount)
{
if (chairno != INVALID_OBJECT_ID)
{
BOOL isPlayerHu = (flag == ResultByHu);
BOOL isPlayerGiveup = (flag == ResultByGiveUp);
if (isPlayerGiveup)
{
UpdateRobotPlayerData(pTable, chairno, pTable->m_stPreSaveInfo[chairno].nPreSaveAllDeposit);
}
else if (isPlayerHu)
{
if (!pTable->IsXueLiuRoom()) //XL 血战游戏结束
{
for (int i = 0; i < pTable->m_nTotalChairs; i++)
{
if (pTable->m_stHuMultiInfo.nHuChair[i] != INVALID_OBJECT_ID)
{
UpdateRobotPlayerData(pTable, i, pTable->m_stPreSaveInfo[i].nPreSaveAllDeposit);
}
}
}
}
}
}
void CRobotPlayerDataDelegate::UpdateRobotPlayerDataOnGameWin(CCommonBaseTable* pTable, void* pData)
{
if (!pTable)
{
return;
}
CMyGameTable* pGameTable = (CMyGameTable*)pTable;
LPGAME_WIN_RESULT pGameWin = (LPGAME_WIN_RESULT)pData;
int nRobotCount = 0; //本桌机器人数
for (int i = 0; i < pTable->m_nTotalChairs; i++)
{
if (pGameTable->m_bIsRobot[i])
{
nRobotCount++;
}
}
BOOL bIsSpecialRobot = (nRobotCount == TOTAL_CHAIRS - 1) ? 1 : 0; //是否匹配了新手机器人
for (int i = 0; i < pTable->m_nTotalChairs; i++)
{
if (pGameTable->m_bIsRobot[i] || (pGameTable->m_ptrPlayers[i] == nullptr) || (pGameTable->m_ptrPlayers[i] != nullptr && pGameTable->m_ptrPlayers[i]->m_bIdlePlayer))
{
continue;
}
CPLAYER_INFO playerInfo = pTable->m_PlayersBackup[i];
if (playerInfo.nUserID > 0)
{
int nWin = 0;
if (pGameWin->nTotalDepositDiff[i] > 0)
{
nWin = 1;
}
else if (pGameWin->nTotalDepositDiff[i] < 0)
{
nWin = -1;
}
CONTEXT_HEAD context;
memset(&context, 0, sizeof(context));
REQUEST request;
memset(&request, 0, sizeof(request));
request.head.nRequest = GR_UPDATE_ROBOT_INFO;
ROBOT_UPDATE_PLAYERDATA reqUpdatePlayerData;
memset(&reqUpdatePlayerData, 0, sizeof(reqUpdatePlayerData));
reqUpdatePlayerData.nUserID = playerInfo.nUserID;
reqUpdatePlayerData.nWin = nWin;
reqUpdatePlayerData.bSpecialRobot = bIsSpecialRobot;
reqUpdatePlayerData.nTotalBouts = playerInfo.nBout;
request.nDataLen = sizeof(reqUpdatePlayerData);
request.pDataPtr = &reqUpdatePlayerData;
imMsg2Chunk.notify(&context, &request);
LOG_DEBUG(_T("UpdateRobotPlayerData userid: %d, nWin: %d, specialrobot: %d"), playerInfo.nUserID, nWin, bIsSpecialRobot);
}
}
}
void CRobotPlayerDataDelegate::UpdateRobotPlayerData(CCommonBaseTable* pTable, int nChairNO, int nDepositDiff)
{
if (!pTable)
{
return;
}
CMyGameTable* pGameTable = (CMyGameTable*)pTable;
int nRobotCount = 0; //本桌机器人数
for (int i = 0; i < pTable->m_nTotalChairs; i++)
{
if (pGameTable->m_bIsRobot[i])
{
nRobotCount++;
}
}
BOOL bIsSpecialRobot = (nRobotCount == TOTAL_CHAIRS - 1) ? 1 : 0; //是否匹配了新手机器人
if (pGameTable->m_bIsRobot[nChairNO])
{
return;
}
CPLAYER_INFO playerInfo = pTable->m_PlayersBackup[nChairNO];
if (playerInfo.nUserID > 0)
{
int nWin = 0;
if (nDepositDiff > 0)
{
nWin = 1;
}
else if (nDepositDiff < 0)
{
nWin = -1;
}
CONTEXT_HEAD context;
memset(&context, 0, sizeof(context));
REQUEST request;
memset(&request, 0, sizeof(request));
request.head.nRequest = GR_UPDATE_ROBOT_INFO;
ROBOT_UPDATE_PLAYERDATA reqUpdatePlayerData;
memset(&reqUpdatePlayerData, 0, sizeof(reqUpdatePlayerData));
reqUpdatePlayerData.nUserID = playerInfo.nUserID;
reqUpdatePlayerData.nWin = nWin;
reqUpdatePlayerData.bSpecialRobot = bIsSpecialRobot;
reqUpdatePlayerData.nTotalBouts = playerInfo.nBout;
request.nDataLen = sizeof(reqUpdatePlayerData);
request.pDataPtr = &reqUpdatePlayerData;
imMsg2Chunk.notify(&context, &request);
LOG_DEBUG(_T("UpdateRobotPlayerData userid: %d, nWin: %d, specialrobot: %d"), playerInfo.nUserID, nWin, bIsSpecialRobot);
}
}
| [
"15988132243@163.com"
] | 15988132243@163.com |
5b901450f7c4133b9b79d1656b1df46bac0981dd | 9a3fc0a5abe3bf504a63a643e6501a2f3452ba6d | /tc/testprograms/LanguageRecognition.cpp | cd21cadfa9b6aa7a9c3ab24b21695d21feedbf8f | [] | no_license | rodolfo15625/algorithms | 7034f856487c69553205198700211d7afb885d4c | 9e198ff0c117512373ca2d9d706015009dac1d65 | refs/heads/master | 2021-01-18T08:30:19.777193 | 2014-10-20T13:15:09 | 2014-10-20T13:15:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,339 | cpp | #include <vector>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cstring>
#define all(v) (v).begin(),(v).end()
#define rall(v) (v).rbegin(),(v).rend()
#define sz size()
#define pb push_back
#define mp make_pair
#define mem(x,i) memset(x,i,sizeof(x))
#define cpresent(V,e) (find(all(V),(e))!=(V).end())
#define foreach(c,it) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();it++)
#define f(i,n) for(int (i)=0;i<(int)(n);(i)++)
using namespace std;
long long toi(string s){istringstream is(s);long long x;is>>x;return x;}
string tos(long long t){stringstream st; st<<t;return st.str();}
long long gcd(long long a, long long b){return __gcd(a,b);}
long long _lcm(long long a,long long b){return a*(b/gcd(a,b));}
class LanguageRecognition {
public:vector<double> getDiff(string s){
double z=0;
vector<double> t(26,0);
f(i,s.sz){
if(isalpha(s[i])){
char c=tolower(s[i]);
t[c-'a']+=1;
z++;
}
}
f(i,26)
t[i]/=z;
return t;
}
public:int whichLanguage(vector <string> lang, string text) {
vector<double> vd=getDiff(text);
int index=0;
double mx=1<<30;
f(i,lang.sz){
vector<double> c=getDiff(lang[i]);
double d=0;
f(j,26)
d+=((c[j]-vd[j])*(c[j]-vd[j]));
cout<<d<<" ";
if(d<mx){
index=i;
mx=d;
}
}
cout<<endl;
return index;
}
//Powered by [Ziklon]
};
// BEGIN KAWIGIEDIT TESTING
// Generated by KawigiEdit 2.1.4 (beta) modified by pivanof
bool KawigiEdit_RunTest(int testNum, vector <string> p0, string p1, bool hasAnswer, int p2) {
cout << "Test " << testNum << ": [" << "{";
for (int i = 0; int(p0.size()) > i; ++i) {
if (i > 0) {
cout << ",";
}
cout << "\"" << p0[i] << "\"";
}
cout << "}" << "," << "\"" << p1 << "\"";
cout << "]" << endl;
LanguageRecognition *obj;
int answer;
obj = new LanguageRecognition();
clock_t startTime = clock();
answer = obj->whichLanguage(p0, p1);
clock_t endTime = clock();
delete obj;
bool res;
res = true;
cout << "Time: " << double(endTime - startTime) / CLOCKS_PER_SEC << " seconds" << endl;
if (hasAnswer) {
cout << "Desired answer:" << endl;
cout << "\t" << p2 << endl;
}
cout << "Your answer:" << endl;
cout << "\t" << answer << endl;
if (hasAnswer) {
res = answer == p2;
}
if (!res) {
cout << "DOESN'T MATCH!!!!" << endl;
} else if (double(endTime - startTime) / CLOCKS_PER_SEC >= 2) {
cout << "FAIL the timeout" << endl;
res = false;
} else if (hasAnswer) {
cout << "Match :-)" << endl;
} else {
cout << "OK, but is it right?" << endl;
}
cout << "" << endl;
return res;
}
int main() {
bool all_right;
all_right = true;
vector <string> p0;
string p1;
int p2;
{
// ----- test 0 -----
string t0[] = {"This is an English sentence.","Dieser ist ein Deutscher Satz.","C'est une phrase Francaise.","Dit is een Nederlandse zin."};
p0.assign(t0, t0 + sizeof(t0) / sizeof(t0[0]));
p1 = "In welke taal is deze zin geschreven?";
p2 = 3;
all_right = KawigiEdit_RunTest(0, p0, p1, true, p2) && all_right;
// ------------------
}
{
// ----- test 1 -----
string t0[] = {"aaaaa","bbbb","ccc","dd","e"};
p0.assign(t0, t0 + sizeof(t0) / sizeof(t0[0]));
p1 = "xxx";
p2 = 0;
all_right = KawigiEdit_RunTest(1, p0, p1, true, p2) && all_right;
// ------------------
}
{
// ----- test 2 -----
string t0[] = {"AABB","AaBb","A? B!","ab!@#$%"};
p0.assign(t0, t0 + sizeof(t0) / sizeof(t0[0]));
p1 = "ab";
p2 = 0;
all_right = KawigiEdit_RunTest(2, p0, p1, true, p2) && all_right;
// ------------------
}
{
// ----- test 3 -----
string t0[] = {"{\"aaaaaabbbbcd\", \"aaaaaabbbbaaaaaabbbbaaaaaabbbbaaaaaabbbbccccdddd\"}"};
p0.assign(t0, t0 + sizeof(t0) / sizeof(t0[0]));
p1 = "aaaaabbbbbcd";
p2 = 0;
all_right = KawigiEdit_RunTest(3, p0, p1, true, p2) && all_right;
// ------------------
}
if (all_right) {
cout << "You're a stud (at least on the example cases)!" << endl;
} else {
cout << "Some of the test cases had errors." << endl;
}
return 0;
}
// END KAWIGIEDIT TESTING
//Powered by KawigiEdit 2.1.4 (beta) modified by pivanof!
| [
"winftc@gmail.com"
] | winftc@gmail.com |
d4431c0440a790febd581712f65c866fe057721a | bb47fc1c01eeb3ded25ad8c63e93b4deef205f7d | /fileio.cpp | df9bc00064ee7ddf4dd4a26abd64be3d19df000d | [] | no_license | filushka/cpu_qml_model_TableView_updatable | 1f0d855ecf31626d17bb92408869c3b13deb43a4 | f72f6fda4a63e5b7f8af97c0ff3caf9d905e3583 | refs/heads/master | 2021-01-13T07:06:02.826238 | 2017-02-10T23:46:44 | 2017-02-10T23:46:44 | 81,615,563 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,093 | cpp | #include "fileio.h"
#include <QFile>
#include <QTextStream>
FileIO::FileIO(QObject *parent) :
QObject(parent)
{
m_line_numbers =0;
}
QStringList FileIO::read()
{
if (mSource.isEmpty()){
emit error("source is empty");
return QStringList();
}
QFile file(mSource);
QStringList fileContent;
if ( file.open(QIODevice::ReadOnly) ) {
QString line;
QTextStream t( &file );
do {
line = t.readLine();
fileContent.append( QString(" " ) + line );
m_line_numbers+=1;
} while (!line.isNull());
file.close();
} else {
emit error("Unable to open the file");
return QStringList();
}
return fileContent;
}
bool FileIO::write(const QString& data)
{
if (mSource.isEmpty())
return false;
QFile file(mSource);
if (!file.open(QFile::WriteOnly | QFile::Truncate))
return false;
QTextStream out(&file);
out << data;
file.close();
return true;
}
quint32 FileIO::line_number( void )
{
return m_line_numbers;
}
| [
"efilenko"
] | efilenko |
7352cc41adcc7e35bbbbad0360759ce505705f58 | 82a2be8e2f9ee82aae96d0a82bf77aa1a4db3a46 | /plugins/Substance/Source/SubstanceSource/Private/SourceCallbacks.h | d4ccba620aa32638124024556b8d14bbf4a1582e | [] | no_license | JoelWaterworth/Mice | 38d35d4a4e9f71b3f5288a8982d326b2c8bd50b4 | c19cf172ee0fe88c2dbdf9e72a8dbb3265b967b4 | refs/heads/master | 2021-09-14T04:04:38.670168 | 2018-05-08T03:42:10 | 2018-05-08T03:42:10 | 106,102,739 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 663 | h | // Copyright 2017 Allegorithmic Inc. All rights reserved.
// File: SourceCallbacks.h
#pragma once
#include <substance/source/callbacks.h>
class SourceHTTPRequest;
/**/
class SourceCallbacks : public Alg::Source::Callbacks
{
public:
//from Alg::Source::Callbacks
virtual void* memoryAlloc(size_t bytesCount, size_t alignment) override;
virtual void memoryFree(void* ptr) override;
virtual Alg::Source::SharedPtr<Alg::Source::IHTTPRequest> createHTTPRequest() override;
virtual Alg::Source::SharedPtr<Alg::Source::IJSONObject> createJSONObject(const Alg::Source::String& json) override;
virtual Alg::Source::String getPlatformName() const override;
};
| [
"joelwaterworth@gmail.com"
] | joelwaterworth@gmail.com |
2e87116af97a3e73de0089b52b9be5abea56529f | f01c77e0e5ce699c2d27dcc23955f8e5f6cae2a5 | /frameworks/js-bindings/cocos2d-x/cocos/ui/UIRichText.h | b65ee42053ee14b25dec51bfc42228824d4fb048 | [] | no_license | teitei-tk/Cocos2d-js-Test | 58929b6bf3c4669104a27250823732cf49f9fab6 | 6cf7cca17b9426c2af577022da4dce39f15cf777 | refs/heads/master | 2021-01-10T19:47:06.164788 | 2014-05-17T07:19:35 | 2014-05-17T07:19:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,639 | h | /****************************************************************************
Copyright (c) 2013 cocos2d-x.org
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 __UIRICHTEXT_H__
#define __UIRICHTEXT_H__
#include "ui/UIWidget.h"
NS_CC_BEGIN
namespace ui {
class RichElement : public Ref
{
public:
enum class Type
{
TEXT,
IMAGE,
CUSTOM
};
RichElement(){};
virtual ~RichElement(){};
bool init(int tag, const Color3B& color, GLubyte opacity);
protected:
Type _type;
int _tag;
Color3B _color;
GLubyte _opacity;
friend class RichText;
};
class RichElementText : public RichElement
{
public:
RichElementText(){_type = Type::TEXT;};
virtual ~RichElementText(){};
bool init(int tag, const Color3B& color, GLubyte opacity, const std::string& text, const std::string& fontName, float fontSize);
static RichElementText* create(int tag, const Color3B& color, GLubyte opacity, const std::string& text, const std::string& fontName, float fontSize);
protected:
std::string _text;
std::string _fontName;
float _fontSize;
friend class RichText;
};
class RichElementImage : public RichElement
{
public:
RichElementImage(){_type = Type::IMAGE;};
virtual ~RichElementImage(){};
bool init(int tag, const Color3B& color, GLubyte opacity, const std::string& filePath);
static RichElementImage* create(int tag, const Color3B& color, GLubyte opacity, const std::string& filePath);
protected:
std::string _filePath;
Rect _textureRect;
int _textureType;
friend class RichText;
};
class RichElementCustomNode : public RichElement
{
public:
RichElementCustomNode(){_type = Type::CUSTOM;};
virtual ~RichElementCustomNode(){CC_SAFE_RELEASE(_customNode);};
bool init(int tag, const Color3B& color, GLubyte opacity, Node* customNode);
static RichElementCustomNode* create(int tag, const Color3B& color, GLubyte opacity, Node* customNode);
protected:
Node* _customNode;
friend class RichText;
};
class RichText : public Widget
{
public:
RichText();
virtual ~RichText();
static RichText* create();
void insertElement(RichElement* element, int index);
void pushBackElement(RichElement* element);
void removeElement(int index);
void removeElement(RichElement* element);
virtual void visit(cocos2d::Renderer *renderer, const Matrix &parentTransform, bool parentTransformUpdated) override;
void setVerticalSpace(float space);
virtual void setAnchorPoint(const Vector2 &pt);
virtual const Size& getVirtualRendererSize() const override;
void formatText();
virtual void ignoreContentAdaptWithSize(bool ignore);
virtual std::string getDescription() const override;
CC_CONSTRUCTOR_ACCESS:
virtual bool init() override;
protected:
virtual void initRenderer();
void pushToContainer(Node* renderer);
void handleTextRenderer(const std::string& text, const std::string& fontName, float fontSize, const Color3B& color, GLubyte opacity);
void handleImageRenderer(const std::string& fileParh, const Color3B& color, GLubyte opacity);
void handleCustomRenderer(Node* renderer);
void formarRenderers();
void addNewLine();
protected:
bool _formatTextDirty;
Vector<RichElement*> _richElements;
std::vector<Vector<Node*>*> _elementRenders;
float _leftSpaceWidth;
float _verticalSpace;
Node* _elementRenderersContainer;
};
}
NS_CC_END
#endif /* defined(__UIRichText__) */
| [
"teitei.tk@gmail.com"
] | teitei.tk@gmail.com |
6df29a1a8f8d029d525a2c11b310bf996f93e213 | 8dac77bf1df7cdc364f17777e4066128818fc377 | /DmtpcMonteCarlo/WimpSpectrum/include/VelocityDistribution.hh | 21771d0ebff3e91296481557200cc1a7855958ef | [] | no_license | HPTPC/DMTPC-Code | b9e0e92f878dbd847891fad7a74ff69f6fa35fe0 | 8d5588b97dadc8361daa9d2175f8977454f4758a | refs/heads/master | 2020-04-05T12:09:46.173053 | 2017-11-10T13:18:00 | 2017-11-10T13:18:00 | 95,233,777 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,258 | hh | #ifndef __DMTPC_MC_WIMPSPECTRUM_VELOCITY_DIST_HH
#define __DMTPC_MC_WIMPSPECTRUM_VELOCITY_DIST_HH
class TVector3;
namespace dmtpc
{
namespace mc
{
namespace wimpspectrum
{
class VelocityDistribution
{
public:
/* Fills vector with a velocity in the galactic frame according to this distribution */
//by default, this uses accept reject to pick something from f using g as bounding distribution.
virtual void v(TVector3 * v, const TVector3 *vE);
virtual ~VelocityDistribution() { ; }
protected:
virtual double f(double v) const = 0;
double vEsc;
//bounding function used for accept reject. Must bound vf(v).
virtual double g(double v, double vE) const = 0;
bool gDependsOnv;
};
class MaxwellBoltzmannDistribution : public VelocityDistribution
{
public:
MaxwellBoltzmannDistribution(double vesc = 2300, double v0 = 230);
virtual ~MaxwellBoltzmannDistribution() {;}
private:
double v02inv;
double v0;
virtual double f(double v) const;
virtual double g(double v, double vE) const;
};
}
}
}
#endif
| [
"wparker2@linappserv2.pp.rhul.ac.uk"
] | wparker2@linappserv2.pp.rhul.ac.uk |
d7f22ddfb007b2f528b53b312cfa65988c5bff9f | a9994594a815a834cbfd16cca684c5c060f85f39 | /BOJ/1743 음식물 피하기.cpp | b5ae79bb030709387848dfd6bccf40250682e248 | [] | no_license | KyungminYu/Algorithm | 25af17819b01e5e0a78a6e8edb45738d3f9ee4ec | 405f30434ddca419330e7db12a44d091cf90b41c | refs/heads/master | 2023-04-08T13:01:59.725887 | 2021-04-03T09:06:57 | 2021-04-03T09:06:57 | 94,004,576 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 754 | cpp | #include <stdio.h>
#include <vector>
using namespace std;
int G[101][101];
int visit[101][101];
int dx[] = {1, -1, 0, 0};
int dy[] = {0, 0, 1, -1};
int N, M, K, u, v, mass, MAX;
void dfs(int x, int y){
visit[x][y] = 1;
mass++;
for (int i = 0; i < 4; i++){
int tx = x + dx[i];
int ty = y + dy[i];
if (visit[tx][ty] == 0 && G[tx][ty] == 1 && 1 <= tx && tx <= N && 1 <= ty && ty <= M)
dfs(tx, ty);
}
}
int main(){
scanf("%d %d %d", &N, &M, &K);
for (int i = 0; i < K; i++){
scanf("%d %d", &u, &v);
G[u][v] = 1;
}
MAX = -1;
for (int i = 1; i <= N; i++){
for (int j = 1; j <= M; j++){
if (visit[i][j] == 0 && G[i][j] == 1){
mass = 0;
dfs(i, j);
if (MAX < mass) MAX = mass;
}
}
}
printf("%d\n", MAX);
return 0;
} | [
"ykmyou@naver.com"
] | ykmyou@naver.com |
9b976a942e7cf4db5c2361ce0d351eec4a0f7f22 | 4cd7f9447801592739d8b05c4f41f9f210fdb784 | /src/components/offline_pages/offline_page_model_unittest.cc | 710f2553312f8fabb1e1f6abe797db5b7ff9f581 | [
"BSD-3-Clause"
] | permissive | crash0verrid3/Firework-Browser | 15fbcdcdf521f1b1a1f609310fba9a5ab520b92a | 9f2e99135fa4230581bde1806ca51e484372be50 | refs/heads/master | 2021-01-10T13:18:41.267236 | 2015-10-18T23:04:10 | 2015-10-18T23:04:10 | 44,147,842 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,682 | cc | // Copyright 2015 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/offline_pages/offline_page_model.h"
#include "base/strings/string16.h"
#include "components/offline_pages/offline_page_metadata_store.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace offline_pages {
namespace {
class OfflinePageTestStore : public OfflinePageMetadataStore {
public:
~OfflinePageTestStore() override;
// OfflinePageMetadataStore overrides:
void Load(const LoadCallback& callback) override;
void AddOfflinePage(const OfflinePageItem& offline_page,
const UpdateCallback& callback) override;
void RemoveOfflinePage(const GURL& page_url,
const UpdateCallback& callback) override;
};
OfflinePageTestStore::~OfflinePageTestStore() {
}
void OfflinePageTestStore::Load(const LoadCallback& callback) {
}
void OfflinePageTestStore::AddOfflinePage(const OfflinePageItem& offline_page,
const UpdateCallback& callback) {
}
void OfflinePageTestStore::RemoveOfflinePage(const GURL& page_url,
const UpdateCallback& callback) {
}
class OfflinePageTestArchiver : public OfflinePageArchiver {
public:
OfflinePageTestArchiver();
~OfflinePageTestArchiver() override;
// OfflinePageArchiver implementation:
void CreateArchive(const CreateArchiveCallback& callback) override;
private:
DISALLOW_COPY_AND_ASSIGN(OfflinePageTestArchiver);
};
OfflinePageTestArchiver::OfflinePageTestArchiver() {
}
OfflinePageTestArchiver::~OfflinePageTestArchiver() {
}
void OfflinePageTestArchiver::CreateArchive(
const CreateArchiveCallback& callback) {
}
class OfflinePageModelTest : public testing::Test {
public:
OfflinePageModelTest();
~OfflinePageModelTest() override;
scoped_ptr<OfflinePageMetadataStore> BuildStore();
OfflinePageTestArchiver* archiver() { return &archiver_; }
private:
OfflinePageTestArchiver archiver_;
};
OfflinePageModelTest::OfflinePageModelTest() {
}
OfflinePageModelTest::~OfflinePageModelTest() {
}
scoped_ptr<OfflinePageMetadataStore> OfflinePageModelTest::BuildStore() {
return scoped_ptr<OfflinePageMetadataStore>(new OfflinePageTestStore());
}
TEST_F(OfflinePageModelTest, Initialize) {
scoped_ptr<OfflinePageMetadataStore> store = BuildStore();
OfflinePageMetadataStore* store_ptr = store.get();
OfflinePageModel model(store.Pass(), archiver());
EXPECT_EQ(store_ptr, model.GetStoreForTesting());
}
} // namespace
} // namespace offline_pages
| [
"sasha@sasha-kaidalov"
] | sasha@sasha-kaidalov |
3c1071afbd7d70ac7362e224f000bcbd9ec93a13 | 0d8e01b4e8ab05cf887cf261b16be5aa431f233b | /coconut-pulp-renderer/src/main/c++/coconut/pulp/renderer/PerspectiveLens.hpp | 1f92a96899e08fa4a8abfa4f09c4e4f35098e634 | [
"Apache-2.0"
] | permissive | mikosz/coconut | 3f6ce1d7fd465394e7ecc6c5e171981f00786c93 | 547bfd55062f09d7af853043c393fc51e8a7a8b6 | refs/heads/master | 2020-04-04T04:16:10.973918 | 2017-08-19T13:33:41 | 2017-08-19T13:33:41 | 26,015,502 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 587 | hpp | #ifndef _COCONUT_PULP_RENDERER_PERSPECTIVELENS_HPP_
#define _COCONUT_PULP_RENDERER_PERSPECTIVELENS_HPP_
#include "Lens.hpp"
namespace coconut {
namespace pulp {
namespace renderer {
class PerspectiveLens : public Lens {
public:
PerspectiveLens(
pulp::math::Handedness handedness,
Angle fov,
float aspectRatio,
float nearZ,
float farZ
);
const Matrix4x4& projectionTransformation() const override;
private:
Matrix4x4 projectionMatrix_;
};
} // namespace renderer
} // namespace pulp
} // namespace coconut
#endif /* _COCONUT_PULP_RENDERER_PERSPECTIVELENS_HPP_ */
| [
"mikoszrrr@gmail.com"
] | mikoszrrr@gmail.com |
e7e215fa4528e8b5bb962ff35d0ee5460441ad88 | 43260ae9ca878721e72b37ad21349cd9d7553c8d | /spoj.com/UPDTARR - Arithmetic Progression Query v2.cpp | b02a93fd43566e534d00585a7f9fb843b86b4728 | [] | no_license | PawelMasluch/Programming-tasks-and-my-solutons | 55e9d72917499c30e596d3e64639048edbf22e01 | 6177e0908bca61141b1851b73dc0d0c950d6229f | refs/heads/main | 2023-08-24T07:10:55.111954 | 2021-10-17T10:01:48 | 2021-10-17T10:01:48 | 372,923,592 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,015 | cpp | #include<bits/stdc++.h> // AC; C++/C++14 (gcc 8.3)
typedef std::pair <int, int> PII;
typedef std::map <PII, int> MPIII;
typedef std::vector <int> VI;
#define REP(i,a,b) for(int i=a; i<=b; ++i)
#define FOR(i,a,b,jump) for(int i=a; i<=b; i+=jump)
#define PB push_back
#define C clear
#define MP std::make_pair
#define remainder first.first
#define modulo first.second
#define counter second
int main(){
int t, n, q, a, b, r, jump, count;
// t - number of test cases
scanf( "%d", &t );
// For each test case
REP(k,1,t){
// n - length of sequence
// q - number of operations
scanf( "%d %d", &n, &q );
MPIII MAP;
VI ans(n+1, 0);
REP(i,1,q){
scanf( "%d %d", &a, &b );
++MAP[ MP(a%b, b) ];
}
for(auto it: MAP){
r = it.remainder;
jump = it.modulo;
count = it.counter;
FOR(j,r,n,jump){
ans[j] += count;
}
}
printf( "Case %d: ", k );
REP(i,1,n){
printf( "%d ", ans[i] );
}
printf( "\n" );
ans.C();
MAP.C();
}
return 0;
}
| [
"48213773+PawelMasluch@users.noreply.github.com"
] | 48213773+PawelMasluch@users.noreply.github.com |
ac0e12051eae57d3c4551a13f3f8418001ab67e0 | 02f68c18366e006e073787f5d30747cc2b6aee11 | /md-parser/src/content_list.cc | ce631c7e57e3c3fc1321349ea611db823cfa53b4 | [] | no_license | stonesteel1023/ModooCode | fd919e542bc94f2ef85ca9d4b9edeb7548d6aa00 | 32296eca67373a6305533ade69e3de16b843a0d5 | refs/heads/master | 2020-04-15T02:26:17.968813 | 2019-01-05T16:07:54 | 2019-01-05T16:07:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,209 | cc | #include "content_list.h"
#include <limits>
#include <vector>
#include "util.h"
namespace md_parser {
string EnumListContent::OutputHtml(ParserEnvironment* parser_env) {
string output_html;
// Decide whether to start with a new <ul>.
if (parser_env->ShouldStartNewListTag()) {
output_html += "<ol>";
}
output_html += StrCat("<li>", Content::OutputHtml(parser_env), "</li>");
int close_tag_count = parser_env->ShouldEndListTag();
while (close_tag_count) {
output_html += "</ol>";
close_tag_count--;
}
return output_html;
}
void EnumListContent::AddContent(const string& content) { content_ += content; }
string UnorderedListContent::OutputHtml(ParserEnvironment* parser_env) {
string output_html;
// Decide whether to start with a new <ul>.
if (parser_env->ShouldStartNewListTag()) {
output_html += "<ul>";
}
output_html += StrCat("<li>", Content::OutputHtml(parser_env), "</li>");
int close_tag_count = parser_env->ShouldEndListTag();
while (close_tag_count) {
output_html += "</ul>";
close_tag_count--;
}
return output_html;
}
void UnorderedListContent::AddContent(const string& content) {
content_ += content;
}
} // namespace md_parser
| [
"kev0960@gmail.com"
] | kev0960@gmail.com |
5afc0267779c287ec81abd851a45091fe8f8ca6b | 90ed5a6508792fb8a2729949a050f6da84ee249b | /fonts/Open24Display34.cpp | 854eef7fb800a0951b20a664e26229b348870d20 | [
"BSD-3-Clause"
] | permissive | enki1986/TFT | 95b23af0e12be0f9a61dd4103d62bb00e36b1c21 | 83daf28a7380bf23f7075c1f8a2e50ca51bab776 | refs/heads/master | 2021-01-16T22:04:56.852493 | 2015-03-22T18:30:18 | 2015-03-22T18:30:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 591,180 | cpp | #include <TFT.h>
const uint8_t Fonts::Open24Display34[] = {
55, 7, 0x00, 0xFF, 1,
2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x0F, 0x00, 0x00, 0x00, 0x07, 0xF3, 0xDF, 0xEF, 0x9F, 0xC0, 0x00, 0x0F, 0xFB, 0xDF, 0xE7, 0xBF, 0xE0, 0x00, 0x07, 0xF1, 0xCF, 0xE3, 0x9F, 0xC0, 0x00, 0x03, 0xE1, 0xC7, 0xC3, 0x8F, 0x80, 0x00, 0x00, 0x01, 0xE0, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x78, 0x00, 0x00, 0x00, 0x1F, 0x3C, 0x3E, 0x78, 0x7C, 0x00, 0x00, 0x3F, 0x9E, 0x7F, 0x3C, 0xFE, 0x00, 0x00, 0x7F, 0xDE, 0xFF, 0xBD, 0xFF, 0x00, 0x00, 0x3F, 0x8E, 0x7F, 0x1C, 0xFE, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x07, 0x80, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x31, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x70, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x08, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x18, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x02, 0x18, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xD0, 0x06, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x67, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x01, 0xDF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0xFD, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x79, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0xF9, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x01, 0xFD, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xE0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x01, 0xDF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1D, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1D, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1D, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7D, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7D, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1D, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1D, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3D, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCC, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCC, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDE, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDE, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDE, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x8F, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x0F, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x83, 0x00, 0x00, 0x00, 0x00, 0x03, 0x83, 0xC7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC1, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x01, 0xDF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x01, 0xEF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xBF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x01, 0xDF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xEF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x01, 0xDF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x01, 0xEF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0xEF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xDF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC7, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCC, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x8C, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x8C, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x08, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0B, 0xC1, 0x00, 0x00, 0x00, 0x00, 0x03, 0x0C, 0xC3, 0x00, 0x00, 0x00, 0x00, 0x03, 0x8C, 0xC7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCC, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCC, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC7, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3E, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0xFF, 0xFC, 0x00, 0x00, 0x03, 0xFF, 0xFB, 0xFF, 0xFF, 0x00, 0x00, 0x03, 0xFF, 0xFB, 0xFF, 0xFF, 0x00, 0x00, 0x03, 0xBF, 0xE3, 0xBF, 0xF7, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0x80, 0x03, 0x80, 0x07, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x03, 0x00, 0x0E, 0x00, 0x00, 0x03, 0xC0, 0x03, 0x80, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0x80, 0x0F, 0x00, 0x00, 0x01, 0xC0, 0x03, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 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,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC1, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC7, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDF, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDF, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFE, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBC, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x38, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC1, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC7, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xE0, 0x03, 0x80, 0x03, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x07, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x01, 0xC0, 0x07, 0x00, 0x00, 0x00, 0xE0, 0x00, 0xC0, 0x03, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x01, 0x80, 0x07, 0x00, 0x00, 0x00, 0x78, 0x01, 0xE0, 0x1F, 0x00, 0x00, 0x00, 0x78, 0x05, 0xE0, 0x1E, 0x00, 0x00, 0x00, 0x3C, 0x0E, 0xF0, 0x3E, 0x00, 0x00, 0x00, 0x3E, 0x0E, 0x78, 0x3C, 0x00, 0x00, 0x00, 0x1E, 0x1E, 0x78, 0x78, 0x00, 0x00, 0x00, 0x0F, 0x3E, 0x3C, 0xF8, 0x00, 0x00, 0x00, 0x0F, 0x3C, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x07, 0xF8, 0x1F, 0xF0, 0x00, 0x00, 0x00, 0x03, 0xB8, 0x1E, 0xE0, 0x00, 0x00, 0x00, 0x03, 0xB0, 0x0E, 0xC0, 0x00, 0x00, 0x00, 0x01, 0x30, 0x04, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF9, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF1, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x78, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x78, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3E, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0xFF, 0xFC, 0x00, 0x00, 0x03, 0xFF, 0xFB, 0xFF, 0xFF, 0x00, 0x00, 0x03, 0xFF, 0xFB, 0xFF, 0xFF, 0x00, 0x00, 0x03, 0xBF, 0xE3, 0xBF, 0xF7, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0x80, 0x03, 0x80, 0x07, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x03, 0x00, 0x0E, 0x00, 0x00, 0x03, 0xC0, 0x03, 0x80, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x03, 0xC0, 0x03, 0x80, 0x0F, 0x00, 0x00, 0x01, 0xC0, 0x03, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 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,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC1, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC7, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xCF, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDF, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDF, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFE, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBC, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x38, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC1, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC7, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0xE0, 0x03, 0x80, 0x03, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x07, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0xF0, 0x01, 0xC0, 0x07, 0x00, 0x00, 0x00, 0xE0, 0x00, 0xC0, 0x03, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x01, 0x80, 0x07, 0x00, 0x00, 0x00, 0x78, 0x01, 0xE0, 0x1F, 0x00, 0x00, 0x00, 0x78, 0x05, 0xE0, 0x1E, 0x00, 0x00, 0x00, 0x3C, 0x0E, 0xF0, 0x3E, 0x00, 0x00, 0x00, 0x3E, 0x0E, 0x78, 0x3C, 0x00, 0x00, 0x00, 0x1E, 0x1E, 0x78, 0x78, 0x00, 0x00, 0x00, 0x0F, 0x3E, 0x3C, 0xF8, 0x00, 0x00, 0x00, 0x0F, 0x3C, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x07, 0xF8, 0x1F, 0xF0, 0x00, 0x00, 0x00, 0x03, 0xB8, 0x1E, 0xE0, 0x00, 0x00, 0x00, 0x03, 0xB0, 0x0E, 0xC0, 0x00, 0x00, 0x00, 0x01, 0x30, 0x04, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x01, 0x40, 0x00, 0x00, 0x00, 0x00, 0x07, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x03, 0x87, 0x70, 0x00, 0x00, 0x00, 0x00, 0x01, 0xCE, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0xDC, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1E, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x3D, 0x84, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x70, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x30, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0C, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x0F, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE3, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE7, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF7, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF7, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x3F, 0xE3, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x7F, 0xF8, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x3F, 0xF3, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x3F, 0xE3, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x80, 0x07, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x03, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE3, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE7, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF7, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF7, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC1, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC7, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDF, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDF, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDE, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x9C, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x18, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE3, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE7, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF7, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF7, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE3, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE7, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF7, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF7, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x3F, 0xE3, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x7F, 0xF8, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x3F, 0xF3, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x3F, 0xE3, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x80, 0x07, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x03, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE3, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE7, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF7, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF7, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC1, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC7, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDF, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDF, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xDE, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x9C, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x18, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC3, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE3, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE7, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF7, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF7, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0x7F, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3F, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x07, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
};
| [
"matt@majenko.co.uk"
] | matt@majenko.co.uk |
679cfd4c1054945971b423592c8acc3debb40bf1 | 802606ee077fa3a9e31e594306190630e0fa85f7 | /main.cpp | d686afd4dd4fa0e051360f5b08a69f23cfc9a96e | [
"MIT"
] | permissive | Raam7777/messageBoard-b | e9d5b32c2bc594cb7f6190c5bffc6b9594e1b743 | b21e3979dad1adeab888c69b866ffa8bdb9dd4a2 | refs/heads/main | 2023-04-05T14:40:25.075681 | 2021-04-07T14:29:39 | 2021-04-07T14:29:39 | 355,575,390 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 896 | cpp | #include "Board.cpp"
#include "Direction.hpp"
using ariel::Direction;
#include <iostream>
#include <stdexcept>
using namespace std;
int main() {
ariel::Board board;
board.post(/*row=*/100, /*column=*/200, Direction::Horizontal, "abcd");
cout << board.read(/*row=*/99, /*column=*/201, Direction::Vertical, /*length=*/3) << endl;
// prints "_b_" (starts at row 99 which is empty; then at row 100 there is "b"; then row 101 is empty again).
board.post(/*row=*/99, /*column=*/202, Direction::Vertical, "xyz");
cout << board.read(/*row=*/100, /*column=*/200, Direction::Horizontal, /*length=*/6) << endl;
// prints "abyd__" (First letters are ab; then y from the "xyz"; then d; then two empty cells).
board.show(); // shows the board in a reasonable way. For example:
// 98: _________
// 99: ____x____
// 100: __abyd___
// 101: ____z____
// 102: _________
} | [
"Raam7777@gmail.com"
] | Raam7777@gmail.com |
09e19d7a49193dd37cdf3c4eede8d9cb8f44df16 | 4b4b8dd2f0376c1b08faae39165bb731d8f2fbe7 | /third_party/mlir/include/mlir/Conversion/GPUToNVVM/GPUToNVVMPass.h | b53549fb2756e283091f03e77db07424570ad0f9 | [
"Apache-2.0"
] | permissive | godot-extended-libraries/tensorflow | d0ce2e28d5908af0c9eb8897eb5d46d370dee1b6 | b2234a88a4cbe1e71b6d1a0b02d20dca53e902a8 | refs/heads/master | 2022-12-29T14:07:32.044837 | 2020-01-11T16:20:27 | 2020-01-11T16:20:27 | 186,188,911 | 3 | 0 | Apache-2.0 | 2020-10-13T13:13:15 | 2019-05-11T22:58:18 | C++ | UTF-8 | C++ | false | false | 1,106 | h | //===- GPUToNVMMPass.h - Convert GPU kernel to NVVM dialect -----*- C++ -*-===//
//
// Copyright 2019 The MLIR Authors.
//
// 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 MLIR_CONVERSION_GPUTONVVM_GPUTONVVMPASS_H_
#define MLIR_CONVERSION_GPUTONVVM_GPUTONVVMPASS_H_
namespace mlir {
struct FunctionPassBase;
/// Creates a pass that lowers GPU dialect operations to NVVM counterparts.
FunctionPassBase *createLowerGpuOpsToNVVMOpsPass();
} // namespace mlir
#endif // MLIR_CONVERSION_GPUTONVVM_GPUTONVVMPASS_H_
| [
"ernest.lee@chibifire.com"
] | ernest.lee@chibifire.com |
27e3cfcb70701be0a93d49e28cd47a47835de814 | fc0b1c947b9485a54bad5f61d11993e750e7338f | /trunk/Study/StencilBuffer/MDxRT.cpp | c3774634f480ae5984278106fd6a5825c7400c0a | [] | no_license | garammaru68/DX2DGame | 3f552607e50d1b66316627790bbc7b64a76a057f | 6456beb5bf4df5242589d65d3f5fd15ab2ced48b | refs/heads/main | 2023-01-12T02:54:56.172711 | 2020-11-19T03:14:41 | 2020-11-19T03:14:41 | 314,122,498 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19 | cpp | #include "MDxRT.h"
| [
"63288078+garammaru68@users.noreply.github.com"
] | 63288078+garammaru68@users.noreply.github.com |
ac204343c13c631b07f402809c67287cc60fce25 | 820554c77b70088b25724824170478b4c60f33b3 | /Client/Player/JumpHelper.cpp | 8587c963b51d75de3193c46a7e5398b70fd344e5 | [
"MIT"
] | permissive | pajon/build-age | ff169e0d3081d0a8c53509296c5d62c523d05f9c | 334ab7dfd19efea1b5f83eaaa5c60473307dba43 | refs/heads/master | 2020-05-17T12:03:55.396033 | 2014-10-31T14:53:03 | 2014-10-31T14:53:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,618 | cpp | //
// JumpHelper.cpp
// Build-Age
//
// Created by Patrik Štrba on 20.1.2013.
// Copyright (c) 2013 Patrik Štrba. All rights reserved.
//
#include "Client/Player/JumpHelper.h"
#include "Client/World/World.h"
#include "Client/Control/Timer.h"
JumpHelper::JumpHelper() {
jumpTime = 0;
}
bool JumpHelper::jump(Vector3F *v) {
float t = 0.33;
float dt = Timer::getTick() / 1000000.0;
if(jumpTime > t) {
jumpTime = 0;
return false;
}
float jumpAct = (sinf(jumpTime * M_PI/(2/t)) - sinf((jumpTime+dt) * M_PI/(2/t))) * 10;
jumpTime += dt;
v->y -= jumpAct;
if(checkCollision(v)) {
v->y += jumpAct;
jumpTime = 0;
return false;
}
return true;
}
bool JumpHelper::checkCollision(Vector3F *v) {
Vector3F p;
p.x = v->x;
p.y = v->y;
p.z = v->z;
p.y += HUMAN_HEIGHT + 0.1;
if(World::instance()->checkCollision(p))
return true;
// +X CHECK
p.x += HUMAN_SIZE;
if(World::instance()->checkCollision(p))
return true;
p.x -= HUMAN_SIZE;
// +X CHECK
// -X CHECK
p.x -= HUMAN_SIZE;
if(World::instance()->checkCollision(p))
return true;
p.x += HUMAN_SIZE;
// -X CHECK
// +Z CHECK
p.z += HUMAN_SIZE;
if(World::instance()->checkCollision(p))
return true;
p.z -= HUMAN_SIZE;
// +Z CHECK
// -Z CHECK
p.z -= HUMAN_SIZE;
if(World::instance()->checkCollision(p))
return true;
p.z += HUMAN_SIZE;
// -Z CHECK
p.y -= HUMAN_HEIGHT + 0.1;
return false;
} | [
"patrik.strba@gmail.com"
] | patrik.strba@gmail.com |
4bc13179f2d9edcb92f66a1e1727e5b459a6fe69 | f19e40bf0fcbe88e69549f85f720d50ef3a8027e | /C++/Vezbi_15_Site_Zadaci/main.cpp | 4d7e9de44986ce4a22ab25349fc4ba7cfbcf9131 | [] | no_license | DemjanGolubovski/Qt_Project | f1639b9c2bc49e2afb52bf68015c73bbfd88edc5 | 28a21ffed4da0d81114cc0c8e0d17548f5f7faac | refs/heads/master | 2022-12-28T21:19:50.530301 | 2020-10-13T08:30:07 | 2020-10-13T08:30:07 | 286,823,389 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,356 | cpp | #include <iostream>
#include "Oblici.h"
#include "SLL.h"
using namespace std;
int main()
{
SLL<Oblik> oblici;
cout<<"0-Kreiraj oblik"<<endl;
cout<<"1-Ispecati gi site oblici"<<endl;
cout<<"2-Ispecati odreden tip(2D/3D) na oblik"<<endl;
cout<<"3-END"<<endl;
int choice;
cin>>choice;
while(choice!=3){
switch (choice) {
case 0:
{
cout<<"0-Krug\n1-Kvadrat\n2-Triagolnik\n3-Topka\n4-Kocka\n5-Cilindar"<<endl;
int tip;
cin>>tip;
if(tip==0){
cout<<"Vnesi radius"<<endl;
float r;
cin>>r;
Krug *k=new Krug(r);
oblici.setLast(k);
}
else if(tip==1){
cout<<"Vnesi strana"<<endl;
float a;
cin>>a;
Kvadrat *k=new Kvadrat(a);
oblici.setLast(k);
}
else if(tip==2){
cout<<"Vnesi visina i strana"<<endl;
float a,h;
cin>>h>>a;
Triagolni *t=new Triagolni(h, a);
oblici.setLast(t);
}
else if(tip==3){
cout<<"Vnesi radius"<<endl;
float r;
cin>>r;
Topka *t=new Topka(r);
oblici.setLast(t);
}
else if(tip==4){
cout<<"Vnesi strana"<<endl;
float a;
cin>>a;
Kocka *k=new Kocka(a);
oblici.setLast(k);
}
else if(tip==5){
cout<<"Vnesi visina i radius"<<endl;
float r, h;
cin>>h>>r;
Cilindar *c=new Cilindar(h, r);
oblici.setLast(c);
}
else
cout<<"Invalid input"<<endl;
break;
}
case 1:
{
SLLNode<Oblik> *f=oblici.getFirst();
while(f!=NULL){
f->getData()->print();
f=f->getNext();
}
break;
}
case 2:
{
cout<<"0-2D\n1-3D"<<endl;
int tip;
cin>>tip;
if(tip==0){
SLLNode<Oblik> *f=oblici.getFirst();
while(f!=NULL){
DvoDimenzionalni *tmp=dynamic_cast<DvoDimenzionalni *>(f->getData());
if(tmp!=0){
tmp->print();
cout<<"Plostina: "<<tmp->plostina()<<endl;
}
f=f->getNext();
}
}
else if(tip==1){
SLLNode<Oblik> *f=oblici.getFirst();
while(f!=NULL){
TroDimenzionalni *tmp=dynamic_cast<TroDimenzionalni *>(f->getData());
if(tmp!=0){
tmp->print();
cout<<"Plostina: "<<tmp->plostina()<<endl;
cout<<"Volumen: "<<tmp->volumen()<<endl;
}
f=f->getNext();
}
}
else{
cout<<"Invalid input"<<endl;
}
break;
}
default:
break;
}
cin>>choice;
}
return 0;
}
| [
"g.demjan@yahoo.com"
] | g.demjan@yahoo.com |
7a791ad1dd1977ad027ed026f83286ad70b77d66 | 2b1bd4c1a43463c6e1be7968b8d9f63d070aa2c7 | /cereal_tests/tests/tests_blabla.cpp | 256f5758c57096635649eb1b357a5a55dfdf4260 | [] | no_license | jeremimucha/small_projects | 02db0a0e7709a518b4c7e9dc0291329b0aee856c | 1cf4304469b21a8eb85aaaf94e8ca9f3d942ef95 | refs/heads/master | 2021-01-23T17:42:59.682127 | 2018-06-18T20:17:48 | 2018-06-18T20:17:48 | 102,774,178 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 124 | cpp | #include "testsheader.hpp"
#include <iostream>
void a_test_case()
{
std::cout << "running a_test_case()\n";
}
| [
"rockpaperbanan@gmail.com"
] | rockpaperbanan@gmail.com |
9933ca4bebc2b028a1fb6f0dc36d564ddf520359 | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /components/sync_device_info/local_device_info_util.h | 27f48d5ab8c64eae81fc38e5a3bcc8edc1736fb7 | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 1,698 | h | // 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.
#ifndef COMPONENTS_SYNC_DEVICE_INFO_LOCAL_DEVICE_INFO_UTIL_H_
#define COMPONENTS_SYNC_DEVICE_INFO_LOCAL_DEVICE_INFO_UTIL_H_
#include <string>
#include "base/callback_forward.h"
#include "components/sync/protocol/sync_enums.pb.h"
namespace syncer {
// Contains device specific names to be used by DeviceInfo. These are specific
// to the local device only. DeviceInfoSyncBridge uses either |model_name| or
// |personalizable_name| for the |client_name| depending on the current
// SyncMode. Only fully synced clients will use the personalizable name.
struct LocalDeviceNameInfo {
// Manufacturer name retrieved from SysInfo::GetHardwareInfo() - e.g. LENOVO.
std::string manufacturer_name;
// Model name retrieved from SysInfo::GetHardwareInfo() on non CrOS platforms.
// On CrOS this will be set to GetChromeOSDeviceNameFromType() instead.
std::string model_name;
// Personalizable device name from GetPersonalizableDeviceNameBlocking(). See
// documentation below for more information.
std::string personalizable_name;
};
sync_pb::SyncEnums::DeviceType GetLocalDeviceType();
#if defined(OS_CHROMEOS)
std::string GetChromeOSDeviceNameFromType();
#endif
// Returns the personalizable device name. This may contain
// personally-identifiable information - e.g. Alex's MacbookPro.
std::string GetPersonalizableDeviceNameBlocking();
void GetLocalDeviceNameInfo(
base::OnceCallback<void(LocalDeviceNameInfo)> callback);
} // namespace syncer
#endif // COMPONENTS_SYNC_DEVICE_INFO_LOCAL_DEVICE_INFO_UTIL_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
f88c2eb271f2c51ee2c62fc46c3a8ac270e78cdb | 1e85a004b1c36bc19ab5bee787b98ab4a756fa2f | /code_in_class/字符串KMP-AC/I.cpp | 3c9846cc91df137c003a7d11550e4b51afe56f3f | [] | no_license | Hu-chi/code_for_acm | 7f260175e254821395908fdf203319432a9da99b | d0f48078d1dc7f047ef6a19278619deaaf62b787 | refs/heads/master | 2020-05-30T06:30:07.672818 | 2019-06-22T06:21:04 | 2019-06-22T06:21:04 | 189,581,837 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,450 | cpp | #include <cstdio>
#include <algorithm>
#include <iostream>
#include <cstring>
#include <vector>
using namespace std;
const int maxn = 1e5;
const int maxk = 131;
struct Node{
int nxt[maxk];
int fail, cnt, id;
void init(){
memset(nxt, -1, sizeof nxt);
fail = -1;
cnt = 0;
id = 0;
}
}trie[maxn];
int root, num;
int que[maxn], head, tail;
char w[60], str[maxn];
void init(){
root=num=0;
trie[root].init();
}
inline void inser(char *s, int id){
int idx, p = root;
while(*s){
idx = *s - '\0';
if(trie[p].nxt[idx]==-1){
trie[++num].init();
trie[p].nxt[idx] = num;
}
p = trie[p].nxt[idx];
s ++;
}
trie[p].cnt++;
trie[p].id = id;
}
void AC(){
int cur,p,son;
head = tail = 0;
que[tail++] = root;
while(head < tail){
cur = que[head++];
for(int i = 0; i < maxk; i++){
if(trie[cur].nxt[i]!=-1){
son = trie[cur].nxt[i];
p = trie[cur].fail;
if(cur == root) trie[son].fail = root;
else trie[son].fail = trie[p].nxt[i];
que[tail++] = son;
} else {
p = trie[cur].fail;
if(cur == root){
trie[cur].nxt[i] = root;
}
else trie[cur].nxt[i] = trie[p].nxt[i];
}
}
}
}
vector<int> ans;
int Find(char *s){
ans.clear();
int p = root, cnt = 0, idx, tmp;
while(*s){
idx = *s - '\0';
p = trie[p].nxt[idx];
if(p==-1) p = root;
tmp = p;
while(tmp != root){
if(trie[tmp].cnt>0) {
ans.push_back(trie[tmp].id);
cnt++;
if(cnt == 3) return 3;
}
tmp = trie[tmp].fail;
}
s ++;
}
return cnt;
}
char s[maxn];
int n;
int main(){
scanf("%d",&n);
init();
for(int i = 0; i < n; i++){
scanf("%s",s);
inser(s, i+1);
}
AC();
scanf("%d",&n);
int total = 0;
for(int i = 0; i < n; i++){
scanf("%s", s);
Find(s);
if(ans.size() == 0) continue;
total ++;
printf("web %d:",i+1);
sort(ans.begin(), ans.end());
for(int i = 0; i < ans.size(); i++)
printf(" %d",ans[i]);
puts("");
}
printf("total: %d\n",total);
return 0;
}
| [
"779197837@qq.com"
] | 779197837@qq.com |
ceded1705c59ee2b45c32533dff9f68635c5256e | 671b7a5440473eb261ca95d0e79139299fe17d08 | /Space-Harriers-Clone/ModuleTime.cpp | 441e35a619ab15fdb44ead5dc3dd8f63168b55c2 | [
"MIT"
] | permissive | PereViader/Space-Harriers-Clone | 6e29422a173e71d0965816d505f0301d5cf8b5de | 25f73d79a94dfbe8c19f32141b34e7899c3d6253 | refs/heads/master | 2021-09-25T18:01:26.300264 | 2018-10-24T21:57:56 | 2018-10-24T21:57:56 | 108,997,440 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 514 | cpp | #include "ModuleTime.h"
#include "SDL/include/SDL.h"
ModuleTime::ModuleTime(bool enabled) : Module(enabled)
{}
ModuleTime::~ModuleTime()
{
}
bool ModuleTime::Init()
{
currentDeltaTime = 0;
previousTicks = 0;
return true;
}
update_status ModuleTime::PreUpdate()
{
Uint32 currentTicks = SDL_GetTicks();
currentDeltaTime = (currentTicks - previousTicks)/1000.0f;
previousTicks = currentTicks;
return update_status::UPDATE_CONTINUE;
}
float ModuleTime::GetDeltaTime() const
{
return currentDeltaTime;
}
| [
"pere.viader22@gmail.com"
] | pere.viader22@gmail.com |
60de363cb9c438decd42a43e64219809d829fa14 | 4fee3ae04f052cfb44536f9ee46139dfbdeaab58 | /src/test/coins_tests.cpp | f2e145d71d25c66321184189f9b52a4594e8efc6 | [
"MIT"
] | permissive | bulletcore/Bulletcore | 1dcb497f749c07df26a4eb18a3782f5696736eb3 | 5b3868a93dd3bdb3a0e6aaf8de5dc1b3661a3ba3 | refs/heads/master | 2021-04-15T17:43:17.517115 | 2018-03-25T11:00:21 | 2018-03-25T11:00:21 | 125,358,530 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,159 | cpp | // Copyright (c) 2014-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 "coins.h"
#include "random.h"
#include "uint256.h"
#include "test/test_bullet.h"
#include "main.h"
#include "consensus/validation.h"
#include <vector>
#include <map>
#include <boost/test/unit_test.hpp>
namespace
{
class CCoinsViewTest : public CCoinsView
{
uint256 hashBestBlock_;
std::map<uint256, CCoins> map_;
public:
bool GetCoins(const uint256& txid, CCoins& coins) const
{
std::map<uint256, CCoins>::const_iterator it = map_.find(txid);
if (it == map_.end()) {
return false;
}
coins = it->second;
if (coins.IsPruned() && insecure_rand() % 2 == 0) {
// Randomly return false in case of an empty entry.
return false;
}
return true;
}
bool HaveCoins(const uint256& txid) const
{
CCoins coins;
return GetCoins(txid, coins);
}
uint256 GetBestBlock() const { return hashBestBlock_; }
bool BatchWrite(CCoinsMap& mapCoins, const uint256& hashBlock)
{
for (CCoinsMap::iterator it = mapCoins.begin(); it != mapCoins.end(); ) {
if (it->second.flags & CCoinsCacheEntry::DIRTY) {
// Same optimization used in CCoinsViewDB is to only write dirty entries.
map_[it->first] = it->second.coins;
if (it->second.coins.IsPruned() && insecure_rand() % 3 == 0) {
// Randomly delete empty entries on write.
map_.erase(it->first);
}
}
mapCoins.erase(it++);
}
if (!hashBlock.IsNull())
hashBestBlock_ = hashBlock;
return true;
}
bool GetStats(CCoinsStats& stats) const { return false; }
};
class CCoinsViewCacheTest : public CCoinsViewCache
{
public:
CCoinsViewCacheTest(CCoinsView* base) : CCoinsViewCache(base) {}
void SelfTest() const
{
// Manually recompute the dynamic usage of the whole data, and compare it.
size_t ret = memusage::DynamicUsage(cacheCoins);
for (CCoinsMap::iterator it = cacheCoins.begin(); it != cacheCoins.end(); it++) {
ret += it->second.coins.DynamicMemoryUsage();
}
BOOST_CHECK_EQUAL(DynamicMemoryUsage(), ret);
}
};
}
BOOST_FIXTURE_TEST_SUITE(coins_tests, BasicTestingSetup)
static const unsigned int NUM_SIMULATION_ITERATIONS = 40000;
// This is a large randomized insert/remove simulation test on a variable-size
// stack of caches on top of CCoinsViewTest.
//
// It will randomly create/update/delete CCoins entries to a tip of caches, with
// txids picked from a limited list of random 256-bit hashes. Occasionally, a
// new tip is added to the stack of caches, or the tip is flushed and removed.
//
// During the process, booleans are kept to make sure that the randomized
// operation hits all branches.
BOOST_AUTO_TEST_CASE(coins_cache_simulation_test)
{
// Various coverage trackers.
bool removed_all_caches = false;
bool reached_4_caches = false;
bool added_an_entry = false;
bool removed_an_entry = false;
bool updated_an_entry = false;
bool found_an_entry = false;
bool missed_an_entry = false;
// A simple map to track what we expect the cache stack to represent.
std::map<uint256, CCoins> result;
// The cache stack.
CCoinsViewTest base; // A CCoinsViewTest at the bottom.
std::vector<CCoinsViewCacheTest*> stack; // A stack of CCoinsViewCaches on top.
stack.push_back(new CCoinsViewCacheTest(&base)); // Start with one cache.
// Use a limited set of random transaction ids, so we do test overwriting entries.
std::vector<uint256> txids;
txids.resize(NUM_SIMULATION_ITERATIONS / 8);
for (unsigned int i = 0; i < txids.size(); i++) {
txids[i] = GetRandHash();
}
for (unsigned int i = 0; i < NUM_SIMULATION_ITERATIONS; i++) {
// Do a random modification.
{
uint256 txid = txids[insecure_rand() % txids.size()]; // txid we're going to modify in this iteration.
CCoins& coins = result[txid];
CCoinsModifier entry = stack.back()->ModifyCoins(txid);
BOOST_CHECK(coins == *entry);
if (insecure_rand() % 5 == 0 || coins.IsPruned()) {
if (coins.IsPruned()) {
added_an_entry = true;
} else {
updated_an_entry = true;
}
coins.nVersion = insecure_rand();
coins.vout.resize(1);
coins.vout[0].nValue = insecure_rand();
*entry = coins;
} else {
coins.Clear();
entry->Clear();
removed_an_entry = true;
}
}
// Once every 1000 iterations and at the end, verify the full cache.
if (insecure_rand() % 1000 == 1 || i == NUM_SIMULATION_ITERATIONS - 1) {
for (std::map<uint256, CCoins>::iterator it = result.begin(); it != result.end(); it++) {
const CCoins* coins = stack.back()->AccessCoins(it->first);
if (coins) {
BOOST_CHECK(*coins == it->second);
found_an_entry = true;
} else {
BOOST_CHECK(it->second.IsPruned());
missed_an_entry = true;
}
}
BOOST_FOREACH(const CCoinsViewCacheTest *test, stack) {
test->SelfTest();
}
}
if (insecure_rand() % 100 == 0) {
// Every 100 iterations, flush an intermediate cache
if (stack.size() > 1 && insecure_rand() % 2 == 0) {
unsigned int flushIndex = insecure_rand() % (stack.size() - 1);
stack[flushIndex]->Flush();
}
}
if (insecure_rand() % 100 == 0) {
// Every 100 iterations, change the cache stack.
if (stack.size() > 0 && insecure_rand() % 2 == 0) {
//Remove the top cache
stack.back()->Flush();
delete stack.back();
stack.pop_back();
}
if (stack.size() == 0 || (stack.size() < 4 && insecure_rand() % 2)) {
//Add a new cache
CCoinsView* tip = &base;
if (stack.size() > 0) {
tip = stack.back();
} else {
removed_all_caches = true;
}
stack.push_back(new CCoinsViewCacheTest(tip));
if (stack.size() == 4) {
reached_4_caches = true;
}
}
}
}
// Clean up the stack.
while (stack.size() > 0) {
delete stack.back();
stack.pop_back();
}
// Verify coverage.
BOOST_CHECK(removed_all_caches);
BOOST_CHECK(reached_4_caches);
BOOST_CHECK(added_an_entry);
BOOST_CHECK(removed_an_entry);
BOOST_CHECK(updated_an_entry);
BOOST_CHECK(found_an_entry);
BOOST_CHECK(missed_an_entry);
}
// This test is similar to the previous test
// except the emphasis is on testing the functionality of UpdateCoins
// random txs are created and UpdateCoins is used to update the cache stack
// In particular it is tested that spending a duplicate coinbase tx
// has the expected effect (the other duplicate is overwitten at all cache levels)
BOOST_AUTO_TEST_CASE(updatecoins_simulation_test)
{
bool spent_a_duplicate_coinbase = false;
// A simple map to track what we expect the cache stack to represent.
std::map<uint256, CCoins> result;
// The cache stack.
CCoinsViewTest base; // A CCoinsViewTest at the bottom.
std::vector<CCoinsViewCacheTest*> stack; // A stack of CCoinsViewCaches on top.
stack.push_back(new CCoinsViewCacheTest(&base)); // Start with one cache.
// Track the txids we've used and whether they have been spent or not
std::map<uint256, CAmount> coinbaseids;
std::set<uint256> alltxids;
std::set<uint256> duplicateids;
for (unsigned int i = 0; i < NUM_SIMULATION_ITERATIONS; i++) {
{
CMutableTransaction tx;
tx.vin.resize(1);
tx.vout.resize(1);
tx.vout[0].nValue = i; //Keep txs unique unless intended to duplicate
unsigned int height = insecure_rand();
// 1/10 times create a coinbase
if (insecure_rand() % 10 == 0 || coinbaseids.size() < 10) {
// 1/100 times create a duplicate coinbase
if (insecure_rand() % 10 == 0 && coinbaseids.size()) {
std::map<uint256, CAmount>::iterator coinbaseIt = coinbaseids.lower_bound(GetRandHash());
if (coinbaseIt == coinbaseids.end()) {
coinbaseIt = coinbaseids.begin();
}
//Use same random value to have same hash and be a true duplicate
tx.vout[0].nValue = coinbaseIt->second;
assert(tx.GetHash() == coinbaseIt->first);
duplicateids.insert(coinbaseIt->first);
}
else {
coinbaseids[tx.GetHash()] = tx.vout[0].nValue;
}
assert(CTransaction(tx).IsCoinBase());
}
// 9/10 times create a regular tx
else {
uint256 prevouthash;
// equally likely to spend coinbase or non coinbase
std::set<uint256>::iterator txIt = alltxids.lower_bound(GetRandHash());
if (txIt == alltxids.end()) {
txIt = alltxids.begin();
}
prevouthash = *txIt;
// Construct the tx to spend the coins of prevouthash
tx.vin[0].prevout.hash = prevouthash;
tx.vin[0].prevout.n = 0;
// Update the expected result of prevouthash to know these coins are spent
CCoins& oldcoins = result[prevouthash];
oldcoins.Clear();
// It is of particular importance here that once we spend a coinbase tx hash
// it is no longer available to be duplicated (or spent again)
// BIP 34 in conjunction with enforcing BIP 30 (at least until BIP 34 was active)
// results in the fact that no coinbases were duplicated after they were already spent
alltxids.erase(prevouthash);
coinbaseids.erase(prevouthash);
// The test is designed to ensure spending a duplicate coinbase will work properly
// if that ever happens and not resurrect the previously overwritten coinbase
if (duplicateids.count(prevouthash))
spent_a_duplicate_coinbase = true;
assert(!CTransaction(tx).IsCoinBase());
}
// Track this tx to possibly spend later
alltxids.insert(tx.GetHash());
// Update the expected result to know about the new output coins
CCoins &coins = result[tx.GetHash()];
coins.FromTx(tx, height);
CValidationState dummy;
UpdateCoins(tx, dummy, *(stack.back()), height);
}
// Once every 1000 iterations and at the end, verify the full cache.
if (insecure_rand() % 1000 == 1 || i == NUM_SIMULATION_ITERATIONS - 1) {
for (std::map<uint256, CCoins>::iterator it = result.begin(); it != result.end(); it++) {
const CCoins* coins = stack.back()->AccessCoins(it->first);
if (coins) {
BOOST_CHECK(*coins == it->second);
} else {
BOOST_CHECK(it->second.IsPruned());
}
}
}
if (insecure_rand() % 100 == 0) {
// Every 100 iterations, flush an intermediate cache
if (stack.size() > 1 && insecure_rand() % 2 == 0) {
unsigned int flushIndex = insecure_rand() % (stack.size() - 1);
stack[flushIndex]->Flush();
}
}
if (insecure_rand() % 100 == 0) {
// Every 100 iterations, change the cache stack.
if (stack.size() > 0 && insecure_rand() % 2 == 0) {
stack.back()->Flush();
delete stack.back();
stack.pop_back();
}
if (stack.size() == 0 || (stack.size() < 4 && insecure_rand() % 2)) {
CCoinsView* tip = &base;
if (stack.size() > 0) {
tip = stack.back();
}
stack.push_back(new CCoinsViewCacheTest(tip));
}
}
}
// Clean up the stack.
while (stack.size() > 0) {
delete stack.back();
stack.pop_back();
}
// Verify coverage.
BOOST_CHECK(spent_a_duplicate_coinbase);
}
BOOST_AUTO_TEST_SUITE_END()
| [
"37403272+bulletcore@users.noreply.github.com"
] | 37403272+bulletcore@users.noreply.github.com |
d03649f889a489f00550196d80969f91d251a1af | eb773126b9899c6aa26124e304f3ab92f6a1d183 | /Utils/Timer.hpp | 08c937c74d7d747caa3bdc9ac2a69e7b64dd53e2 | [] | no_license | JirkaVrbka/Tetris | 12f486c81f7d051024a8f779059a6c4ab4942b4e | 7e48b12b8c64681713d9a1a596b77a15ca87e05c | refs/heads/master | 2021-02-08T20:04:56.152762 | 2020-03-01T17:22:11 | 2020-03-01T17:22:11 | 244,191,799 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 454 | hpp | #ifndef TETRIS_TIMER_HPP
#define TETRIS_TIMER_HPP
#include <SDL_timer.h>
class Timer {
public:
void reset_timer() {
stored_time = SDL_GetTicks();
}
bool did_time_passed(unsigned int time_to_pass) {
return get_time_elapsed() > time_to_pass;
}
unsigned int get_time_elapsed() {
return SDL_GetTicks() - stored_time;
}
private:
unsigned int stored_time = SDL_GetTicks();
};
#endif //TETRIS_TIMER_HPP
| [
"vrbka.jirka@gmail.com"
] | vrbka.jirka@gmail.com |
0e5c3d7c9f22155a612f8467a9dc11358a788689 | f914a54dc56c68c7f5f54fd61732e86f35224f9d | /Sketches/sketch_feb17a/sketch_feb17a.ino | 66b60f9c9d54a9451f3c557df6ee6e5e19439866 | [] | no_license | nt314p/Arduino-Projects | 57edc355a256949d10d92416ea2a8f192155657b | 84d8d136f2583398786eb34236988b0137414d1a | refs/heads/main | 2023-03-11T15:24:04.085130 | 2023-02-20T22:57:35 | 2023-02-20T22:57:35 | 155,002,762 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 437 | ino | void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
}
// the loop routine runs over and over again forever:
void loop() {
// read the input on analog pin 0:
int sensorValue = analogRead(A0);
// Convert the analog reading (which goes from 0 - 1023) to a voltage (0 - 5V):
float voltage = sensorValue * (5.0 / 1023.0);
// print out the value you read:
Serial.println(voltage);
}
| [
"ntong@bayviewglen.ca"
] | ntong@bayviewglen.ca |
937cd1818767662b415c0ddb1d2a6f7ef86ee22b | 678b69602d6c8fa8a697894bc23363a889f66a3d | /src/rpcdump.cpp | 997471e44ea243181a661fbc7532dfc4606245bb | [
"MIT"
] | permissive | MintcoinCommunity/Mintcoin-Desktop-Wallet | 34eb1ed6b8e6063068bbb7c4a6a04e63fdefdc20 | d693d27337a0b52d77f80cd578f6f8b73002e4bc | refs/heads/master | 2022-03-08T19:00:10.930693 | 2022-02-09T13:25:06 | 2022-02-09T13:25:06 | 22,492,735 | 54 | 45 | MIT | 2021-04-14T20:10:35 | 2014-08-01T02:29:33 | C++ | UTF-8 | C++ | false | false | 3,106 | cpp | // Copyright (c) 2009-2012 Bitcoin Developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "init.h" // for pwalletMain
#include "bitcoinrpc.h"
#include "ui_interface.h"
#include "base58.h"
#include <boost/lexical_cast.hpp>
#define printf OutputDebugStringF
using namespace json_spirit;
using namespace std;
class CTxDump
{
public:
CBlockIndex *pindex;
int64 nValue;
bool fSpent;
CWalletTx* ptx;
int nOut;
CTxDump(CWalletTx* ptx = NULL, int nOut = -1)
{
pindex = NULL;
nValue = 0;
fSpent = false;
this->ptx = ptx;
this->nOut = nOut;
}
};
Value importprivkey(const Array& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw runtime_error(
"importprivkey <MintCoinprivkey> [label]\n"
"Adds a private key (as returned by dumpprivkey) to your wallet.");
string strSecret = params[0].get_str();
string strLabel = "";
if (params.size() > 1)
strLabel = params[1].get_str();
CBitcoinSecret vchSecret;
bool fGood = vchSecret.SetString(strSecret);
if (!fGood) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid private key");
if (fWalletUnlockMintOnly) // ppcoin: no importprivkey in mint-only mode
throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Wallet is unlocked for minting only.");
CKey key;
bool fCompressed;
CSecret secret = vchSecret.GetSecret(fCompressed);
key.SetSecret(secret, fCompressed);
CKeyID vchAddress = key.GetPubKey().GetID();
{
LOCK2(cs_main, pwalletMain->cs_wallet);
pwalletMain->MarkDirty();
pwalletMain->SetAddressBookName(vchAddress, strLabel);
if (!pwalletMain->AddKey(key))
throw JSONRPCError(RPC_WALLET_ERROR, "Error adding key to wallet");
pwalletMain->ScanForWalletTransactions(pindexGenesisBlock, true);
pwalletMain->ReacceptWalletTransactions();
}
return Value::null;
}
Value dumpprivkey(const Array& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw runtime_error(
"dumpprivkey <MintCoinaddress>\n"
"Reveals the private key corresponding to <MintCoinaddress>.");
string strAddress = params[0].get_str();
CBitcoinAddress address;
if (!address.SetString(strAddress))
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid MintCoin address");
if (fWalletUnlockMintOnly) // ppcoin: no dumpprivkey in mint-only mode
throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Wallet is unlocked for minting only.");
CKeyID keyID;
if (!address.GetKeyID(keyID))
throw JSONRPCError(RPC_TYPE_ERROR, "Address does not refer to a key");
CSecret vchSecret;
bool fCompressed;
if (!pwalletMain->GetSecret(keyID, vchSecret, fCompressed))
throw JSONRPCError(RPC_WALLET_ERROR, "Private key for address " + strAddress + " is not known");
return CBitcoinSecret(vchSecret, fCompressed).ToString();
}
| [
"mintcoin96326@gmail.com"
] | mintcoin96326@gmail.com |
9852a73b5e878c8518beb0c2f24f3139502f8161 | bd8eda6121dc036844b404b63cafb0b3c926d3c2 | /compare right and left.cpp | f3c8126c7fcff6b4c254419a53269b78a4c7a538 | [] | no_license | Yinkular/HackerRank | 7b92427027ada196cfbbe63e8ca58340e7cfe29e | 15c3c534818725049cbd6836747d1e66e14cc431 | refs/heads/master | 2020-05-29T08:45:17.341262 | 2016-09-23T23:46:12 | 2016-09-23T23:46:12 | 69,068,018 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,485 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
//no fo test cases
int test_cases;
cin >> test_cases;
//run loop for number of test cases
for(int test_number=1;test_number<=test_cases;test_number++)
{
int no_of_elements;
cin >> no_of_elements;
int array[no_of_elements];
for(int i=0;i<no_of_elements;i++)
{
cin >> array[i];
}
int sum_left,sum_right;
for(int i=0;i<no_of_elements;i++)
{
sum_left=0,sum_right=0;
//get sum of all right elements
if(i< no_of_elements-1)
{
for(int j=i+1;j<no_of_elements;j++)
{
sum_right+=array[j];
}
}
if(i!=0)
{
for(int k=i-1;k>=0;k--)
{
sum_left+=array[k];
}
}
if(sum_right==sum_left)
{
cout << "YES"<<endl;;
break;
}
else if(i==no_of_elements-1 && sum_left!=sum_right)
{
cout << "NO"<<endl;
}
}
}
return 0;
}
| [
"olayinka.soyinka@gmail.com"
] | olayinka.soyinka@gmail.com |
71a36a298fd9abadb59b466c87c447132afe3fb4 | d43c1bfe19af7b1268ffb797a328da29f3bd6131 | /sensor_4LED/sensor_4LED.ino | 3a391581f184eb75a4dec2fcea16e9a123a77a75 | [] | no_license | JORGUITO/ARDUINO_UNO | 289a5a5bf9231c854e97c73163989e07242ab7a3 | 9885e0ae8a1d4246897648e9873c5b7c365aab31 | refs/heads/master | 2021-01-25T05:35:31.346713 | 2014-02-07T17:17:08 | 2014-02-07T17:17:08 | 16,438,748 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,502 | ino | int luz; //DECLARACIÓN DE VARIABLES
int led;
int i=0;
void setup()
{
Serial.begin(9600); //VELOCIDAD DE COMUNICACIÓN CON EL PC
pinMode(3,OUTPUT); //DECLARAMOS 4 SALIDAS CON PWM COMO DE SALIDA
pinMode(5,OUTPUT);
pinMode(6,OUTPUT);
pinMode(9,OUTPUT);
digitalWrite(3,HIGH); //HACEMOS UNA COMPROBACIÓN DE FUNCIONAMIENTO DE LOS 4 LED
delay(200); //ANTES DE EMPEZAR CON EL PROGRAMA
digitalWrite(3,LOW);
digitalWrite(5,HIGH);
delay(200);
digitalWrite(5,LOW);
digitalWrite(6,HIGH);
delay(200);
digitalWrite(6,LOW);
digitalWrite(9,HIGH);
delay(200);
digitalWrite(9,LOW);
}
void loop()
{
luz=analogRead(A2); //LEEMOS EL NIVEL DE ILUMINACIÓN EN EL LDR
if(luz<400) //ESTABLECEMOS UN NIVEL DE ILUMINACIÓN MINIMO A PARTIR DEL CUAL
{ //REACCIONARÁN LOS LED
led=map(luz,0,400,255,0); //HACEMOS UNA INTERPOLACIÓN ENTRE LA SEÑAL DEL LDR Y LA ILUMINACIÓN
}
else{led=0;} //POR ENCIMA DEL VALOR MINIMO, LOS LED NO SE ENCIENDEN
analogWrite(3,led); //QUE CADA LED ILUMINE SEGÚN LO ANTERIOR
analogWrite(5,led);
analogWrite(6,led);
analogWrite(9,led);
i=i+1; //PARA NO LLENAR LA PANTALLA DE LINEAS DE INFORMACIÓN, CADA VEZ QUE EL
if (i%2000==0) //PROGRAMA EJECUTE 2000 VECES, QUE IMPRIMA EN PATALLA LOS VALORES DE luz y DE led
{
Serial.print("Nivel de luz: ");Serial.println(luz);
Serial.print("Salida PWM: ");Serial.println(led);
}
}
| [
"jmg_ma@hotmail.com"
] | jmg_ma@hotmail.com |
e399d6c7021384d4adaf5ab7525446433bbc9017 | 710ac923ad7aaaf3c59882a057a2ebbe159ef135 | /Ogre-1.9a/Components/RTShaderSystem/include/OgreShaderProgramManager.h | 6b1c725c8049d8de4e7b05be424b9c5e28a8b306 | [] | no_license | lennonchan/OgreKit | 3e8ec4b0f21653cb668d5cd7d58acc8d45de6a96 | ac5ca9b9731ce5f8eb145e7a8414e781f34057ab | refs/heads/master | 2021-01-01T06:04:40.107584 | 2013-04-19T05:02:42 | 2013-04-19T05:02:42 | 9,538,177 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 8,747 | h | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org
Copyright (c) 2000-2012 Torus Knot Software Ltd
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 _ShaderProgramManager_
#define _ShaderProgramManager_
#include "OgreShaderPrerequisites.h"
#include "OgreShaderProgram.h"
#include "OgreShaderProgramWriter.h"
namespace Ogre {
namespace RTShader {
/** \addtogroup Core
* @{
*/
/** \addtogroup RTShader
* @{
*/
/** A singleton manager class that manages shader based programs.
*/
class _OgreRTSSExport ProgramManager : public Singleton<ProgramManager>, public RTShaderSystemAlloc
{
// Interface.
public:
/** Class default constructor */
ProgramManager();
/** Class destructor */
~ProgramManager();
/** Override standard Singleton retrieval.
@remarks
Why do we do this? Well, it's because the Singleton
implementation is in a .h file, which means it gets compiled
into anybody who includes it. This is needed for the
Singleton template to work, but we actually only want it
compiled into the implementation of the class based on the
Singleton, not all of them. If we don't change this, we get
link errors when trying to use the Singleton-based class from
an outside dll.
@par
This method just delegates to the template version anyway,
but the implementation stays in this single compilation unit,
preventing link errors.
*/
static ProgramManager& getSingleton();
/** Override standard Singleton retrieval.
@remarks
Why do we do this? Well, it's because the Singleton
implementation is in a .h file, which means it gets compiled
into anybody who includes it. This is needed for the
Singleton template to work, but we actually only want it
compiled into the implementation of the class based on the
Singleton, not all of them. If we don't change this, we get
link errors when trying to use the Singleton-based class from
an outside dll.
@par
This method just delegates to the template version anyway,
but the implementation stays in this single compilation unit,
preventing link errors.
*/
static ProgramManager* getSingletonPtr();
/** Acquire CPU/GPU programs set associated with the given render state and bind them to the pass.
@param pass The pass to bind the programs to.
@param renderState The render state that describes the program that need to be generated.
*/
void acquirePrograms(Pass* pass, TargetRenderState* renderState);
/** Release CPU/GPU programs set associated with the given render state and pass.
@param pass The pass to release the programs from.
@param renderState The render state holds the programs.
*/
void releasePrograms(Pass* pass, TargetRenderState* renderState);
/** Flush the local GPU programs cache.
*/
void flushGpuProgramsCache();
protected:
//-----------------------------------------------------------------------------
typedef map<String, GpuProgramPtr>::type GpuProgramsMap;
typedef GpuProgramsMap::iterator GpuProgramsMapIterator;
typedef GpuProgramsMap::const_iterator GpuProgramsMapConstIterator;
//-----------------------------------------------------------------------------
typedef set<Program*>::type ProgramList;
typedef ProgramList::iterator ProgramListIterator;
typedef map<String, ProgramWriter*>::type ProgramWriterMap;
typedef ProgramWriterMap::iterator ProgramWriterIterator;
typedef vector<ProgramWriterFactory*>::type ProgramWriterFactoryList;
//-----------------------------------------------------------------------------
typedef map<String, ProgramProcessor*>::type ProgramProcessorMap;
typedef ProgramProcessorMap::iterator ProgramProcessorIterator;
typedef ProgramProcessorMap::const_iterator ProgramProcessorConstIterator;
typedef vector<ProgramProcessor*>::type ProgramProcessorList;
protected:
/** Create default program processors. */
void createDefaultProgramProcessors();
/** Destroy default program processors. */
void destroyDefaultProgramProcessors();
/** Create default program processors. */
void createDefaultProgramWriterFactories();
/** Destroy default program processors. */
void destroyDefaultProgramWriterFactories();
/** Destroy all program writers. */
void destroyProgramWriters();
/** Create CPU program .
@param type The type of the program to create.
*/
Program* createCpuProgram(GpuProgramType type);
/** Destroy a CPU program by name.
@param shaderProgram The CPU program instance to destroy.
*/
void destroyCpuProgram(Program* shaderProgram);
/** Create GPU programs for the given program set based on the CPU programs it contains.
@param programSet The program set container.
*/
bool createGpuPrograms(ProgramSet* programSet);
/**
Generates a unique guid value from a string
@param programString string to generate a hash value for
@return A string representing a 128 bit hash value of the original string
*/
String generateGUID(const String& programString);
/** Create GPU program based on the give CPU program.
@param shaderProgram The CPU program instance.
@param programWriter The program writer instance.
@param language The target shader language.
@param profiles The profiles string for program compilation.
@param profilesList The profiles string for program compilation as string list.
@param cachePath The output path to write the program into.
*/
GpuProgramPtr createGpuProgram(Program* shaderProgram,
ProgramWriter* programWriter,
const String& language,
const String& profiles,
const StringVector& profilesList,
const String& cachePath);
/**
Add program processor instance to this manager.
@param processor The instance to add.
*/
void addProgramProcessor(ProgramProcessor* processor);
/**
Remove program processor instance from this manager.
@param processor The instance to remove.
*/
void removeProgramProcessor(ProgramProcessor* processor);
/** Destroy a GPU program by name.
@param name The name of the program to destroy.
@param type The type of the program to destroy.
*/
void destroyGpuProgram(GpuProgramPtr& gpuProgram);
/** Flush the local GPU programs cache.
@param gpuProgramsMap The GPU programs cache.
*/
void flushGpuProgramsCache(GpuProgramsMap& gpuProgramsMap);
/** Return the number of created vertex shaders. */
size_t getVertexShaderCount() const { return mVertexShaderMap.size(); }
/** Return the number of created fragment shaders. */
size_t getFragmentShaderCount() const { return mFragmentShaderMap.size(); }
/** Fix the input of the pixel shader to be the same as the output of the vertex shader */
void synchronizePixelnToBeVertexOut(ProgramSet* programSet);
/** Bind the uniform parameters of a given CPU and GPU program set. */
void bindUniformParameters(Program* pCpuProgram, const GpuProgramParametersSharedPtr& passParams);
protected:
protected:
// CPU programs list.
ProgramList mCpuProgramsList;
// Map between target language and shader program writer.
ProgramWriterMap mProgramWritersMap;
// Map between target language and shader program processor.
ProgramProcessorMap mProgramProcessorsMap;
// Holds standard shader writer factories
ProgramWriterFactoryList mProgramWriterFactories;
// The generated vertex shaders.
GpuProgramsMap mVertexShaderMap;
// The generated fragment shaders.
GpuProgramsMap mFragmentShaderMap;
// The default program processors.
ProgramProcessorList mDefaultProgramProcessors;
private:
friend class ProgramSet;
friend class TargetRenderState;
friend class ShaderGenerator;
};
/** @} */
/** @} */
}
}
#endif
| [
"qinlong.mkl@gmail.com"
] | qinlong.mkl@gmail.com |
16a334060249a79d0033195adbf6413fc2ba8335 | ab9d5e6d7187390f64bdab563d31d25ddcb38547 | /Source/TestingGrounds/ActorPool.cpp | e9147b99e23ff22d9540a2947d240d3a73d81d25 | [] | no_license | jh318/TestingGrounds | a8291d2649078050ab9c93138785b2fee09a051a | 5e8c0e8cf0c3af9069a1a1809001bda32388bd76 | refs/heads/master | 2020-03-27T16:30:19.146985 | 2018-09-18T02:18:46 | 2018-09-18T02:18:46 | 146,787,654 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 666 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "ActorPool.h"
// Sets default values for this component's properties
UActorPool::UActorPool()
{
// Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features
// off to improve performance if you don't need them.
PrimaryComponentTick.bCanEverTick = true;
// ...
}
AActor* UActorPool::Checkout()
{
if (Pool.Num() == 0)
{
return nullptr;
}
return Pool.Pop();
}
void UActorPool::Return(AActor* ActorToReturn)
{
Add(ActorToReturn);
}
void UActorPool::Add(AActor* ActorToAdd)
{
Pool.Push(ActorToAdd);
}
| [
"jhawley318@gmail.com"
] | jhawley318@gmail.com |
edaf21db0c02f768f2e70d8c49e3f437155f6615 | 3ba1c246e6c82053b84a4c050280d7314e6c7a1a | /review/webrev-all/webrev/raw_files/new/src/hotspot/share/memory/metaspace/msMetachunkList.hpp | 52e7681d3cf8cd633a9549f7b11273cc43b80ce0 | [] | no_license | tstuefe/jep387 | a0686b735bf7bb2387551b5611a6769059a4b842 | 996625e564b25913df7b15fa016c8be4f896fd9f | refs/heads/master | 2023-04-03T13:37:13.321249 | 2021-03-24T05:49:10 | 2021-04-12T13:44:55 | 173,600,264 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,991 | hpp | /*
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2020 SAP SE. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
#ifndef SHARE_MEMORY_METASPACE_MSMETACHUNKLIST_HPP
#define SHARE_MEMORY_METASPACE_MSMETACHUNKLIST_HPP
#include "memory/metaspace/msCommon.hpp"
#include "memory/metaspace/msCounter.hpp"
#include "memory/metaspace/msMetachunk.hpp"
#include "utilities/debug.hpp"
#include "utilities/globalDefinitions.hpp"
class outputStream;
namespace metaspace {
// A simple single-linked list of chunks, used in MetaspaceArena to keep
// a list of retired chunks, as well as in the ChunkHeaderPool to keep
// a cache of unused chunk headers.
class MetachunkList {
Metachunk* _first;
IntCounter _num_chunks;
// Note: The chunks inside this list may be dead (->chunk header pool).
// So, do not call c->word size on them or anything else which may not
// work with dead chunks.
public:
MetachunkList() : _first(NULL), _num_chunks() {}
int count() const { return _num_chunks.get(); }
void add(Metachunk* c) {
// Note: contains is expensive (linear search).
ASSERT_SOMETIMES(contains(c) == false, "Chunk already in this list");
c->set_next(_first);
if (_first) {
_first->set_prev(c);
}
_first = c;
_num_chunks.increment();
}
Metachunk* remove_first() {
if (_first) {
Metachunk* c = _first;
_first = _first->next();
if (_first) {
_first->set_prev(NULL);
}
_num_chunks.decrement();
c->set_prev(NULL);
c->set_next(NULL);
return c;
}
return NULL;
}
Metachunk* first() { return _first; }
const Metachunk* first() const { return _first; }
#ifdef ASSERT
// Note: linear search
bool contains(const Metachunk* c) const;
void verify() const;
#endif
size_t calc_committed_word_size() const;
size_t calc_word_size() const;
void print_on(outputStream* st) const;
};
} // namespace metaspace
#endif // SHARE_MEMORY_METASPACE_MSMETACHUNKLIST_HPP
| [
"thomas.stuefe@gmail.com"
] | thomas.stuefe@gmail.com |
f4cbfbff5a88771346cd82045a44d7910b3af624 | c39e19e8fada4df5bf8999f93a470fc5db0b8ea7 | /tensorflow/core/kernels/collective_ops.cc | b262dc58dcac4a776902f47933e2cd171c5c29b9 | [
"Apache-2.0"
] | permissive | ivomarb/tensorflow | 6bb05bc6dbaa8e59b43d00a8216bb0b8cb766080 | df2fbb89588065fca2c6e5fcfba7d8c2b4378591 | refs/heads/master | 2020-06-26T05:03:06.321649 | 2019-07-29T20:30:03 | 2019-07-29T21:40:30 | 199,530,704 | 1 | 0 | Apache-2.0 | 2019-07-29T21:45:39 | 2019-07-29T21:45:38 | null | UTF-8 | C++ | false | false | 16,725 | cc | /* 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.
==============================================================================*/
#include "tensorflow/core/framework/attr_value.pb.h"
#include "tensorflow/core/framework/collective.h"
#include "tensorflow/core/framework/node_def.pb.h"
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/lib/core/errors.h"
namespace tensorflow {
namespace {
class CollectiveOpKernel : public AsyncOpKernel {
public:
explicit CollectiveOpKernel(OpKernelConstruction* c) : AsyncOpKernel(c) {}
// A string encoding instance, frame and iter to be handed off to
// the implementation for use in generating RecvBuf keys.
string GetCollectiveKey(OpKernelContext* c) {
return strings::StrCat(col_params_.instance.instance_key, ":",
c->frame_iter().frame_id, ":",
c->frame_iter().iter_id);
}
// Returns false if calling invocation of ComputeAsync should return
// immediately.
bool CanProceedWithCompute(OpKernelContext* c, CollectiveExecutor* col_exec,
const DoneCallback& done) {
if (col_params_.group.group_size >
col_params_.instance.device_names.size()) {
// This is the first invocation: Finish initializing col_params_.
// Call in a blockable thread because it's not guaranteed that
// this call cannot block.
c->env()->SchedClosure([this, c, done, col_exec]() {
VLOG(1) << "CollectiveOpKernel CompleteParams for collective "
<< col_params_.name << " device " << c->device()->name()
<< " group " << col_params_.group.group_key << " instance "
<< col_params_.instance.instance_key;
col_exec->CompleteParamsAsync(
c->device()->name(), &col_params_, c->cancellation_manager(),
[this, c, done](const Status& s) {
if (s.ok()) {
col_params_.instance.impl_details.dependencies = dependencies_;
ComputeAsync(c, done);
} else {
c->SetStatus(s);
done();
}
});
});
return false;
}
return true;
}
CollectiveParams col_params_;
std::vector<int32> dependencies_;
};
class CollectiveGatherOpKernel : public CollectiveOpKernel {
public:
explicit CollectiveGatherOpKernel(OpKernelConstruction* c)
: CollectiveOpKernel(c) {
col_params_.instance.type = GATHER_COLLECTIVE;
OP_REQUIRES_OK(c, c->GetAttr("group_size", &col_params_.group.group_size));
OP_REQUIRES_OK(c, c->GetAttr("group_key", &col_params_.group.group_key));
OP_REQUIRES_OK(
c, c->GetAttr("instance_key", &col_params_.instance.instance_key));
OP_REQUIRES_OK(c, c->GetAttr("T", &col_params_.instance.data_type));
const NodeDef& real_node = c->def();
col_params_.name = strings::StrCat(real_node.name(), ": Gather");
col_params_.group.device_type = c->device_type();
}
void ComputeAsync(OpKernelContext* c, DoneCallback done) override {
CollectiveExecutor* col_exec = c->collective_executor();
OP_REQUIRES_ASYNC(
c, col_exec,
errors::Internal(
"Failed to get CollectiveExecutor from OpKernelContext for Op ",
col_params_.name),
done);
auto output_shape = c->input(0).shape();
output_shape.set_dim(
0, output_shape.dim_size(0) * col_params_.group.group_size);
if (col_params_.instance.shape.num_elements() == 0) {
col_params_.instance.shape = output_shape;
} else {
OP_REQUIRES_ASYNC(
c, col_params_.instance.shape == output_shape,
errors::Internal("Inconsistent output shapes, got ",
output_shape.DebugString(), ", but expected is ",
col_params_.instance.shape.DebugString(), "."),
done);
}
// Allocate output on the first pass through this function. This must be
// done immediately, while we're still in the executor thread. Otherwise
// the memory is not guaranteed to be unused by any concurrently executing
// GPU kernel.
if (c->mutable_output(0) == nullptr) {
// Allocate the output tensor.
Tensor* output = nullptr;
OP_REQUIRES_OK_ASYNC(
c, c->allocate_output(0, col_params_.instance.shape, &output), done);
}
if (!CanProceedWithCompute(c, col_exec, done)) return;
auto actual_done = [c, done](const Status& s) {
VLOG(1) << "CollectiveGatherOpKernel ExecuteAsync done for collective "
<< c->op_kernel().name() << " device " << c->device()->name()
<< " status " << s;
OP_REQUIRES_OK_ASYNC(c, s, done);
done();
};
VLOG(1) << "CollectiveGatherOpKernel ExecuteAsync start for collective "
<< col_params_.name << " device " << c->device()->name()
<< " group " << col_params_.group.group_key << " instance "
<< col_params_.instance.instance_key;
col_exec->ExecuteAsync(c, col_params_, GetCollectiveKey(c), actual_done);
}
private:
TF_DISALLOW_COPY_AND_ASSIGN(CollectiveGatherOpKernel);
};
REGISTER_KERNEL_BUILDER(Name("CollectiveGather").Device(DEVICE_CPU),
CollectiveGatherOpKernel);
REGISTER_KERNEL_BUILDER(Name("CollectiveGather").Device(DEVICE_GPU),
CollectiveGatherOpKernel);
class CollectiveReduceOpKernel : public CollectiveOpKernel {
public:
explicit CollectiveReduceOpKernel(OpKernelConstruction* c)
: CollectiveOpKernel(c) {
col_params_.instance.type = REDUCTION_COLLECTIVE;
OP_REQUIRES_OK(c, c->GetAttr("group_size", &col_params_.group.group_size));
OP_REQUIRES_OK(c, c->GetAttr("group_key", &col_params_.group.group_key));
OP_REQUIRES_OK(
c, c->GetAttr("instance_key", &col_params_.instance.instance_key));
OP_REQUIRES_OK(
c, c->GetAttr("subdiv_offsets",
&col_params_.instance.impl_details.subdiv_offsets));
string merge_op_name;
OP_REQUIRES_OK(c, c->GetAttr("merge_op", &merge_op_name));
OP_REQUIRES(c, merge_op_name == "Add" || merge_op_name == "Mul",
errors::InvalidArgument(
"merge_op must be one of {\"Add\", \"Mul\"} but got ",
merge_op_name));
string final_op_name;
OP_REQUIRES_OK(c, c->GetAttr("final_op", &final_op_name));
OP_REQUIRES(c, final_op_name == "Id" || final_op_name == "Div",
errors::InvalidArgument(
"final_op must be one of {\"Id\", \"Div\"} but got ",
final_op_name));
OP_REQUIRES_OK(c, c->GetAttr("T", &col_params_.instance.data_type));
OP_REQUIRES_OK(c, c->GetAttr("wait_for", &dependencies_));
const NodeDef& real_node = c->def();
col_params_.name = strings::StrCat(real_node.name(), ": Reduce(",
merge_op_name, ",", final_op_name, ")");
col_params_.group.device_type = c->device_type();
// Find the OpKernels by name, type and device type.
NodeDef sub_node;
// The merge_op takes two inputs
sub_node.add_input(real_node.input(0));
sub_node.add_input(real_node.input(0));
sub_node.set_device(real_node.device());
SetAttrValue(col_params_.instance.data_type,
&(*sub_node.mutable_attr())["T"]);
col_params_.merge_op = BuildOpKernel(c, merge_op_name, &sub_node);
col_params_.final_op = BuildOpKernel(c, final_op_name, &sub_node);
}
std::unique_ptr<OpKernel> BuildOpKernel(OpKernelConstruction* c,
const string& name,
NodeDef* sub_node) {
std::unique_ptr<OpKernel> k;
if (name.empty() || name == "Id") return k;
sub_node->set_name(name);
sub_node->set_op(name);
Status status;
k = CreateOpKernel(c->device_type(), c->device(),
c->device()->GetAllocator(AllocatorAttributes()),
*sub_node, c->graph_def_version(), &status);
if (!status.ok()) {
c->CtxFailureWithWarning(errors::Internal("Failed to build OpKernel for ",
name, " : ",
status.error_message()));
}
return k;
}
void ComputeAsync(OpKernelContext* c, DoneCallback done) override {
CollectiveExecutor* col_exec = c->collective_executor();
OP_REQUIRES_ASYNC(
c, col_exec,
errors::Internal(
"Failed to get CollectiveExecutor from OpKernelContext for Op ",
col_params_.name),
done);
// Allocate output on the first pass through this function. This must be
// done immediately, while we're still in the executor thread. Otherwise
// the memory is not guaranteed to be unused by any concurrently executing
// GPU kernel.
if (c->mutable_output(0) == nullptr) {
// Allocate the output tensor, trying to reuse the input.
Tensor* output = nullptr;
OP_REQUIRES_OK_ASYNC(c,
c->forward_input_or_allocate_output(
{0}, 0, c->input(0).shape(), &output),
done);
col_params_.instance.shape = c->input(0).shape();
}
if (!CanProceedWithCompute(c, col_exec, done)) return;
auto actual_done = [c, done](const Status& s) {
VLOG(1) << "CollectiveReduceOpKernel ExecuteAsync done for collective "
<< c->op_kernel().name() << " device " << c->device()->name()
<< " status " << s;
OP_REQUIRES_OK_ASYNC(c, s, done);
done();
};
VLOG(1) << "CollectiveReduceOpKernel ExecuteAsync start for collective "
<< col_params_.name << " device " << c->device()->name()
<< " group " << col_params_.group.group_key << " instance "
<< col_params_.instance.instance_key;
col_exec->ExecuteAsync(c, col_params_, GetCollectiveKey(c), actual_done);
}
private:
TF_DISALLOW_COPY_AND_ASSIGN(CollectiveReduceOpKernel);
};
REGISTER_KERNEL_BUILDER(Name("CollectiveReduce").Device(DEVICE_CPU),
CollectiveReduceOpKernel);
REGISTER_KERNEL_BUILDER(Name("CollectiveReduce").Device(DEVICE_GPU),
CollectiveReduceOpKernel);
class CollectiveBcastSendOpKernel : public CollectiveOpKernel {
public:
explicit CollectiveBcastSendOpKernel(OpKernelConstruction* c)
: CollectiveOpKernel(c) {
col_params_.instance.type = BROADCAST_COLLECTIVE;
OP_REQUIRES_OK(c, c->GetAttr("group_size", &col_params_.group.group_size));
OP_REQUIRES_OK(c, c->GetAttr("group_key", &col_params_.group.group_key));
OP_REQUIRES_OK(
c, c->GetAttr("instance_key", &col_params_.instance.instance_key));
OP_REQUIRES_OK(c, c->GetAttr("T", &col_params_.instance.data_type));
OP_REQUIRES_OK(c, c->GetAttr("shape", &col_params_.instance.shape));
col_params_.is_source = true;
col_params_.instance.impl_details.subdiv_offsets = {0};
col_params_.name =
strings::StrCat(name(), ": Broadcast(", col_params_.is_source, ")");
col_params_.group.device_type = c->device_type();
}
void ComputeAsync(OpKernelContext* c, DoneCallback done) override {
CollectiveExecutor* col_exec = c->collective_executor();
OP_REQUIRES_ASYNC(
c, col_exec,
errors::Internal(
"Failed to get CollectiveExecutor from OpKernelContext for Op ",
col_params_.name),
done);
// Allocate output on the first pass through this function. This must be
// done immediately, while we're still in the executor thread. Otherwise
// the memory is not guaranteed to be unused by any concurrently executing
// GPU kernel.
if (c->mutable_output(0) == nullptr) {
// Allocate the output tensor, trying to reuse the input.
Tensor* output = nullptr;
OP_REQUIRES_OK_ASYNC(c,
c->forward_input_or_allocate_output(
{0}, 0, col_params_.instance.shape, &output),
done);
}
if (!CanProceedWithCompute(c, col_exec, done)) return;
OP_REQUIRES_ASYNC(
c, col_params_.instance.shape.IsSameSize(c->input(0).shape()),
errors::Internal("Declared shape of op ", col_params_.name,
" does not match shape of input"),
done);
auto actual_done = [c, done](const Status& s) {
VLOG(1) << "CollectiveBcastSendOpKernel ExecuteAsync done for collective "
<< c->op_kernel().name() << " device " << c->device()->name()
<< " status " << s;
OP_REQUIRES_OK_ASYNC(c, s, done);
done();
};
VLOG(1) << "CollectiveBcastSendOpKernel ExecuteAsync start for collective "
<< col_params_.name << " device " << c->device()->name()
<< " group " << col_params_.group.group_key << " instance "
<< col_params_.instance.instance_key;
col_exec->ExecuteAsync(c, col_params_, GetCollectiveKey(c), actual_done);
}
private:
TF_DISALLOW_COPY_AND_ASSIGN(CollectiveBcastSendOpKernel);
};
REGISTER_KERNEL_BUILDER(Name("CollectiveBcastSend").Device(DEVICE_CPU),
CollectiveBcastSendOpKernel);
REGISTER_KERNEL_BUILDER(Name("CollectiveBcastSend").Device(DEVICE_GPU),
CollectiveBcastSendOpKernel);
class CollectiveBcastRecvOpKernel : public CollectiveOpKernel {
public:
explicit CollectiveBcastRecvOpKernel(OpKernelConstruction* c)
: CollectiveOpKernel(c) {
col_params_.instance.type = BROADCAST_COLLECTIVE;
OP_REQUIRES_OK(c, c->GetAttr("group_size", &col_params_.group.group_size));
OP_REQUIRES_OK(c, c->GetAttr("group_key", &col_params_.group.group_key));
OP_REQUIRES_OK(
c, c->GetAttr("instance_key", &col_params_.instance.instance_key));
OP_REQUIRES_OK(c, c->GetAttr("T", &col_params_.instance.data_type));
OP_REQUIRES_OK(c, c->GetAttr("shape", &col_params_.instance.shape));
col_params_.is_source = false;
col_params_.instance.impl_details.subdiv_offsets = {0};
col_params_.name =
strings::StrCat(name(), ": Broadcast(", col_params_.is_source, ")");
col_params_.group.device_type = c->device_type();
}
void ComputeAsync(OpKernelContext* c, DoneCallback done) override {
CollectiveExecutor* col_exec = c->collective_executor();
OP_REQUIRES_ASYNC(
c, col_exec,
errors::Internal(
"Failed to get CollectiveExecutor from OpKernelContext for Op ",
col_params_.name),
done);
// Allocate output on the first pass through this function. This must be
// done immediately, while we're still in the executor thread. Otherwise
// the memory is not guaranteed to be unused by any concurrently executing
// GPU kernel.
if (c->mutable_output(0) == nullptr) {
// No input, so must allocate output.
Tensor* output = nullptr;
OP_REQUIRES_OK_ASYNC(
c, c->allocate_output(0, col_params_.instance.shape, &output), done);
}
if (!CanProceedWithCompute(c, col_exec, done)) return;
auto actual_done = [c, done](const Status& s) {
VLOG(1) << "CollectiveBcastRecvOpKernel ExecuteAsync done for collective "
<< c->op_kernel().name() << " device " << c->device()->name()
<< " status " << s;
OP_REQUIRES_OK_ASYNC(c, s, done);
done();
};
VLOG(1) << "CollectiveBcastRecvOpKernel ExecuteAsync start for collective "
<< col_params_.name << " device " << c->device()->name()
<< " group " << col_params_.group.group_key << " instance "
<< col_params_.instance.instance_key;
col_exec->ExecuteAsync(c, col_params_, GetCollectiveKey(c), actual_done);
}
private:
TF_DISALLOW_COPY_AND_ASSIGN(CollectiveBcastRecvOpKernel);
};
REGISTER_KERNEL_BUILDER(Name("CollectiveBcastRecv").Device(DEVICE_CPU),
CollectiveBcastRecvOpKernel);
REGISTER_KERNEL_BUILDER(Name("CollectiveBcastRecv").Device(DEVICE_GPU),
CollectiveBcastRecvOpKernel);
} // namespace
} // namespace tensorflow
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
7f0efea0ac44851378a43567f99e3ec26348017f | edeb76fa1138cf52dba1aecbea0c31eb8ff88171 | /cse240a/project/cse240a-proj1/pin-2.5-23100-gcc.3.4.6-ia32_intel64-linux/source/tools/SignalTests/spilltool.cpp | 6c1af3f4085571e48c7cf51c6718918f49fbb64c | [
"Intel",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | dcashman/Coursework | f6a11cf644b2137e2db30ed26d337ff34b41e080 | 5f2fec814a6cf002244dbfda26ab9955e0dab2e2 | refs/heads/master | 2021-01-10T20:50:20.008561 | 2014-01-10T06:03:33 | 2014-01-10T06:03:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,082 | cpp | /*BEGIN_LEGAL
Intel Open Source License
Copyright (c) 2002-2008 Intel Corporation
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 Intel Corporation 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 INTEL OR
ITS 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.
END_LEGAL */
/*
* This tool inserts instrumentation before every instruction
*
* When the instrumentation is not inlined, it forces the xmm registers to
* be spilled. This is used to test construction of a context during a
* synchronous signal when xmm registers are spilled
*
*/
#include <pin.H>
int n = 0;
void Spill()
{
}
void Ins(INS ins, VOID *)
{
INS_InsertCall(ins, IPOINT_BEFORE, AFUNPTR(Spill), IARG_END);
}
main(int argc, char * argv[])
{
PIN_Init(argc, argv);
INS_AddInstrumentFunction(Ins, 0);
PIN_StartProgram();
}
| [
"dan.a.cashman@gmail.com"
] | dan.a.cashman@gmail.com |
a59ad4116868c9101a09fd254b7246e87a93b712 | d084c38697d64f432288282c397d80630a0795c9 | /src/ESBServer/src/Model/MetaModel/Class.h | 3d2f6945c05652ff6cfba83fb53eb1c0ce7fc8b9 | [
"MIT"
] | permissive | 124327288/BeSweet | 6e0d9dd863b8e5a0927eb693c4d1ec80c7e3f880 | fc58c24a32a96cc4026fdf2ff97c1a99b89ba86f | refs/heads/master | 2021-06-13T02:49:41.213640 | 2017-04-20T20:03:29 | 2017-04-20T20:03:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,441 | h | /**
/* Copyright (c) 2003by Marco Welti
/*
/* This document is bound by the QT Public License
/* (http://www.trolltech.com/licenses/qpl.html).
/* See License.txt for more information.
/*
/*
/*
/* ALL RIGHTS RESERVED.
/*
/* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
/* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
/* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
/* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
/* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
/* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
/* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
/* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
/* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
/* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
/* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/*
/***********************************************************************/
#ifndef Class_H
#define Class_H
#include <Model/MetaModel/Inheritable.h>
class Class : public Inheritable
{
public:
typedef Inheritable super;
typedef super::DatastoreType DatastoreType;
public:
Class(const std::string &fqn, AccessQualifier access, const TagLocation &location = TagLocation());
virtual void acceptVisitor(MetaObjectVisitor *);
};
#endif | [
"david.koch@9online.fr"
] | david.koch@9online.fr |
473a16b60d89f60c182bab2b11e4f1cef1fb497b | 69452adcf66e6da0adef609b055419f9538a6e5f | /morris-travel.cpp | cde7530ac78162a8d17c4158a1bab6e50d1acc93 | [] | no_license | Sbbq/morris-travel | 085f2eb802f97d0c851608bcae4cb4dfb260762a | f842349bb8d56ff3e6ff6f45abd5106b43fd6b79 | refs/heads/master | 2021-01-01T03:44:37.650087 | 2016-05-16T13:18:25 | 2016-05-16T13:18:25 | 58,932,989 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 983 | cpp | void bst_morris_inorder(struct bst_node *root)
{
struct bst_node *p = root, *tmp;
while (p) {
//负责输出,取下一个
if (p->left == NULL) {
printf("%d ", p->key);
p = p->right;
}
//做两件事,1.画当前节点的前驱节点链接,2将链接清除
else {
tmp = p->left;
while (tmp->right != NULL && tmp->right != p)
tmp = tmp->right;
//当前节点左子树的最右节点,即当前节点的前驱节点
if (tmp->right == NULL) {
//画链接,然后取下一个继续画
tmp->right = p;
p = p->left;
}
else {
//将链接清除,并输出当前节点,取下一个
printf("%d ", p->key);
tmp->right = NULL;
p = p->right;
}
}
}
}
| [
"yxzzkx@163.com"
] | yxzzkx@163.com |
34432acf76a935dfec6c2ed97286abe3c440dcbb | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /chrome/browser/ui/views/autofill/autofill_popup_view_native_views.cc | 6a750f145d158bf5a28fddebc34385982e663241 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 20,047 | cc | // Copyright 2017 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/ui/views/autofill/autofill_popup_view_native_views.h"
#include <algorithm>
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/ui/autofill/autofill_popup_controller.h"
#include "chrome/browser/ui/autofill/autofill_popup_layout_model.h"
#include "chrome/browser/ui/autofill/popup_view_common.h"
#include "chrome/browser/ui/views/harmony/chrome_layout_provider.h"
#include "chrome/browser/ui/views/harmony/chrome_typography.h"
#include "chrome/browser/ui/views/harmony/harmony_typography_provider.h"
#include "components/autofill/core/browser/popup_item_ids.h"
#include "components/autofill/core/browser/suggestion.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/font.h"
#include "ui/gfx/geometry/rect_conversions.h"
#include "ui/native_theme/native_theme.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/background.h"
#include "ui/views/border.h"
#include "ui/views/controls/image_view.h"
#include "ui/views/controls/label.h"
#include "ui/views/controls/menu/menu_config.h"
#include "ui/views/controls/separator.h"
#include "ui/views/layout/box_layout.h"
#include "ui/views/layout/fill_layout.h"
#include "ui/views/style/typography.h"
#include "ui/views/view.h"
#include "ui/views/widget/widget.h"
#include "ui/gfx/shadow_value.h"
namespace {
// By spec, dropdowns should have a min width of 64, and should always have
// a width which is a multiple of 12.
const int kDropdownWidthMultiple = 12;
const int kDropdownMinWidth = 64;
// TODO(crbug.com/831603): Determine how colors should be shared with menus
// and/or omnibox, and how these should interact (if at all) with native
// theme colors.
const SkColor kBackgroundColor = SK_ColorWHITE;
const SkColor kSelectedBackgroundColor = gfx::kGoogleGrey200;
const SkColor kFooterBackgroundColor = gfx::kGoogleGrey050;
const SkColor kSeparatorColor = gfx::kGoogleGrey200;
} // namespace
namespace autofill {
namespace {
// This represents a single selectable item. Subclasses distinguish between
// footer and suggestion rows, which are structurally similar but have
// distinct styling.
class AutofillPopupItemView : public AutofillPopupRowView {
public:
~AutofillPopupItemView() override = default;
// views::View:
void GetAccessibleNodeData(ui::AXNodeData* node_data) override {
node_data->SetName(controller_->GetSuggestionAt(line_number_).value);
// Options are selectable.
node_data->role = ax::mojom::Role::kMenuItem;
node_data->AddBoolAttribute(ax::mojom::BoolAttribute::kSelected,
is_selected_);
// Compute set size and position in set, which must not include separators.
int set_size = 0;
int pos_in_set = line_number_ + 1;
for (int i = 0; i < controller_->GetLineCount(); ++i) {
if (controller_->GetSuggestionAt(i).frontend_id ==
autofill::POPUP_ITEM_ID_SEPARATOR) {
if (i < line_number_)
--pos_in_set;
} else {
++set_size;
}
}
node_data->AddIntAttribute(ax::mojom::IntAttribute::kSetSize, set_size);
node_data->AddIntAttribute(ax::mojom::IntAttribute::kPosInSet, pos_in_set);
}
void OnMouseEntered(const ui::MouseEvent& event) override {
controller_->SetSelectedLine(line_number_);
}
void OnMouseReleased(const ui::MouseEvent& event) override {
if (event.IsOnlyLeftMouseButton() && HitTestPoint(event.location()))
controller_->AcceptSuggestion(line_number_);
}
protected:
AutofillPopupItemView(AutofillPopupController* controller, int line_number)
: AutofillPopupRowView(controller, line_number) {}
// AutofillPopupRowView:
void CreateContent() override {
auto* layout = SetLayoutManager(std::make_unique<views::BoxLayout>(
views::BoxLayout::kHorizontal,
gfx::Insets(0, views::MenuConfig::instance().item_left_margin)));
layout->set_cross_axis_alignment(
views::BoxLayout::CrossAxisAlignment::CROSS_AXIS_ALIGNMENT_CENTER);
layout->set_minimum_cross_axis_size(
views::MenuConfig::instance().touchable_menu_height);
// TODO(crbug.com/831603): Remove elision responsibilities from controller.
text_label_ = new views::Label(
controller_->GetElidedValueAt(line_number_),
{views::style::GetFont(ChromeTextContext::CONTEXT_BODY_TEXT_LARGE,
views::style::TextStyle::STYLE_PRIMARY)});
AddChildView(text_label_);
AddSpacerWithSize(views::MenuConfig::instance().label_to_minor_text_padding,
/*resize=*/true, layout);
const base::string16& description_text =
controller_->GetElidedLabelAt(line_number_);
if (!description_text.empty()) {
subtext_label_ = new views::Label(
description_text,
{views::style::GetFont(ChromeTextContext::CONTEXT_BODY_TEXT_LARGE,
ChromeTextStyle::STYLE_HINT)});
AddChildView(subtext_label_);
}
}
void RefreshStyle() override {
SetBackground(CreateBackground());
if (text_label_) {
int text_style = is_warning_ ? ChromeTextStyle::STYLE_RED
: views::style::TextStyle::STYLE_PRIMARY;
text_label_->SetEnabledColor(views::style::GetColor(
*this, ChromeTextContext::CONTEXT_BODY_TEXT_LARGE, text_style));
}
if (subtext_label_) {
SkColor secondary = views::style::GetColor(
*this, ChromeTextContext::CONTEXT_BODY_TEXT_LARGE,
ChromeTextStyle::STYLE_HINT);
subtext_label_->SetEnabledColor(secondary);
}
SchedulePaint();
}
private:
void AddSpacerWithSize(int spacer_width,
bool resize,
views::BoxLayout* layout) {
auto* spacer = new views::View;
spacer->SetPreferredSize(gfx::Size(spacer_width, 1));
AddChildView(spacer);
layout->SetFlexForView(spacer, /*flex=*/resize ? 1 : 0);
}
views::Label* text_label_ = nullptr;
views::Label* subtext_label_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(AutofillPopupItemView);
};
class AutofillPopupSuggestionView : public AutofillPopupItemView {
public:
~AutofillPopupSuggestionView() override = default;
static AutofillPopupSuggestionView* Create(
AutofillPopupController* controller,
int line_number) {
AutofillPopupSuggestionView* result =
new AutofillPopupSuggestionView(controller, line_number);
result->Init();
return result;
}
protected:
// AutofillPopupRowView:
std::unique_ptr<views::Background> CreateBackground() override {
return views::CreateSolidBackground(is_selected_ ? kSelectedBackgroundColor
: kBackgroundColor);
}
private:
AutofillPopupSuggestionView(AutofillPopupController* controller,
int line_number)
: AutofillPopupItemView(controller, line_number) {
SetFocusBehavior(FocusBehavior::ALWAYS);
}
DISALLOW_COPY_AND_ASSIGN(AutofillPopupSuggestionView);
};
class AutofillPopupFooterView : public AutofillPopupItemView {
public:
~AutofillPopupFooterView() override = default;
static AutofillPopupFooterView* Create(AutofillPopupController* controller,
int line_number) {
AutofillPopupFooterView* result =
new AutofillPopupFooterView(controller, line_number);
result->Init();
return result;
}
protected:
// AutofillPopupRowView:
void CreateContent() override {
SetBorder(views::CreateSolidSidedBorder(
/*top=*/views::MenuConfig::instance().separator_thickness,
/*left=*/0,
/*bottom=*/0,
/*right=*/0,
/*color=*/kSeparatorColor));
AutofillPopupItemView::CreateContent();
}
std::unique_ptr<views::Background> CreateBackground() override {
return views::CreateSolidBackground(is_selected_ ? kSelectedBackgroundColor
: kFooterBackgroundColor);
}
private:
AutofillPopupFooterView(AutofillPopupController* controller, int line_number)
: AutofillPopupItemView(controller, line_number) {
SetFocusBehavior(FocusBehavior::ALWAYS);
}
DISALLOW_COPY_AND_ASSIGN(AutofillPopupFooterView);
};
class AutofillPopupSeparatorView : public AutofillPopupRowView {
public:
~AutofillPopupSeparatorView() override = default;
static AutofillPopupSeparatorView* Create(AutofillPopupController* controller,
int line_number) {
AutofillPopupSeparatorView* result =
new AutofillPopupSeparatorView(controller, line_number);
result->Init();
return result;
}
// views::View:
void GetAccessibleNodeData(ui::AXNodeData* node_data) override {
// Separators are not selectable.
node_data->role = ax::mojom::Role::kSplitter;
}
void OnMouseEntered(const ui::MouseEvent& event) override {}
void OnMouseReleased(const ui::MouseEvent& event) override {}
void OnNativeThemeChanged(const ui::NativeTheme* theme) override {
RefreshStyle();
}
protected:
// AutofillPopupRowView:
void CreateContent() override {
SetLayoutManager(std::make_unique<views::FillLayout>());
// In order to draw the horizontal line for the separator, create an empty
// view which matches the width of the parent (by using full flex) and has a
// height equal to the desired padding, then paint a border on the bottom.
empty_ = new views::View();
empty_->SetPreferredSize(
gfx::Size(1, views::MenuConfig::instance().menu_vertical_border_size));
AddChildView(empty_);
}
void RefreshStyle() override {
empty_->SetBorder(views::CreateSolidSidedBorder(
/*top=*/0,
/*left=*/0,
/*bottom=*/views::MenuConfig::instance().separator_thickness,
/*right=*/0,
/*color=*/kSeparatorColor));
SchedulePaint();
}
std::unique_ptr<views::Background> CreateBackground() override {
return views::CreateSolidBackground(SK_ColorWHITE);
}
private:
AutofillPopupSeparatorView(AutofillPopupController* controller,
int line_number)
: AutofillPopupRowView(controller, line_number) {
SetFocusBehavior(FocusBehavior::NEVER);
}
views::View* empty_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(AutofillPopupSeparatorView);
};
} // namespace
void AutofillPopupRowView::SetSelected(bool is_selected) {
if (is_selected == is_selected_)
return;
is_selected_ = is_selected;
NotifyAccessibilityEvent(ax::mojom::Event::kSelection, true);
RefreshStyle();
}
bool AutofillPopupRowView::OnMouseDragged(const ui::MouseEvent& event) {
return true;
}
bool AutofillPopupRowView::OnMousePressed(const ui::MouseEvent& event) {
return true;
}
AutofillPopupRowView::AutofillPopupRowView(AutofillPopupController* controller,
int line_number)
: controller_(controller), line_number_(line_number) {
int frontend_id = controller_->GetSuggestionAt(line_number_).frontend_id;
is_warning_ =
frontend_id ==
autofill::POPUP_ITEM_ID_INSECURE_CONTEXT_PAYMENT_DISABLED_MESSAGE;
}
void AutofillPopupRowView::Init() {
CreateContent();
RefreshStyle();
}
AutofillPopupViewNativeViews::AutofillPopupViewNativeViews(
AutofillPopupController* controller,
views::Widget* parent_widget)
: AutofillPopupBaseView(controller, parent_widget),
controller_(controller) {
views::BoxLayout* layout = SetLayoutManager(
std::make_unique<views::BoxLayout>(views::BoxLayout::kVertical));
layout->set_main_axis_alignment(views::BoxLayout::MAIN_AXIS_ALIGNMENT_START);
CreateChildViews();
SetBackground(views::CreateSolidBackground(kBackgroundColor));
}
AutofillPopupViewNativeViews::~AutofillPopupViewNativeViews() {}
void AutofillPopupViewNativeViews::Show() {
DoShow();
}
void AutofillPopupViewNativeViews::Hide() {
// The controller is no longer valid after it hides us.
controller_ = nullptr;
DoHide();
}
gfx::Size AutofillPopupViewNativeViews::CalculatePreferredSize() const {
// The border of the input element should be aligned with the border of the
// dropdown when suggestions are not too wide.
int contents_width =
gfx::ToEnclosingRect(controller_->element_bounds()).width();
// Allow the dropdown to grow beyond the element width if it requires more
// horizontal space to render the suggestions.
gfx::Size size = AutofillPopupBaseView::CalculatePreferredSize();
if (contents_width < size.width()) {
contents_width = size.width();
// Use multiples of |kDropdownWidthMultiple| if the required width is larger
// than the element width.
if (contents_width % kDropdownWidthMultiple) {
contents_width +=
kDropdownWidthMultiple - (contents_width % kDropdownWidthMultiple);
}
}
// Notwithstanding all the above rules, enforce a hard minimum so the dropdown
// is not too small to interact with.
size.set_width(std::max(kDropdownMinWidth, contents_width));
return size;
}
void AutofillPopupViewNativeViews::VisibilityChanged(View* starting_from,
bool is_visible) {
if (is_visible) {
GetViewAccessibility().OnAutofillShown();
} else {
GetViewAccessibility().OnAutofillHidden();
NotifyAccessibilityEvent(ax::mojom::Event::kMenuEnd, true);
}
}
void AutofillPopupViewNativeViews::OnSelectedRowChanged(
base::Optional<int> previous_row_selection,
base::Optional<int> current_row_selection) {
if (previous_row_selection) {
rows_[*previous_row_selection]->SetSelected(false);
} else {
// Fire this the first time a row is selected. By firing this and the
// matching kMenuEnd event, we are telling screen readers that the focus
// is only changing temporarily, and the screen reader will restore the
// focus back to the appropriate textfield when the menu closes.
// This is deferred until the first focus so that the screen reader doesn't
// treat the textfield as unfocused while the user edits, just because
// autofill options are visible.
NotifyAccessibilityEvent(ax::mojom::Event::kMenuStart, true);
}
if (current_row_selection)
rows_[*current_row_selection]->SetSelected(true);
}
void AutofillPopupViewNativeViews::OnSuggestionsChanged() {
CreateChildViews();
DoUpdateBoundsAndRedrawPopup();
}
void AutofillPopupViewNativeViews::CreateChildViews() {
RemoveAllChildViews(true /* delete_children */);
rows_.clear();
// Create one container to wrap the "regular" (non-footer) rows.
// TODO(crbug.com/768881): Make |body_container| scrollable.
views::View* body_container = new views::View();
views::BoxLayout* body_layout =
body_container->SetLayoutManager(std::make_unique<views::BoxLayout>(
views::BoxLayout::kVertical,
gfx::Insets(views::MenuConfig::instance().menu_vertical_border_size,
0)));
body_layout->set_main_axis_alignment(
views::BoxLayout::MAIN_AXIS_ALIGNMENT_START);
int line_number = 0;
bool has_footer = false;
// Process and add all the suggestions which are in the primary container.
// Stop once the first footer item is found, or there are no more items.
while (line_number < controller_->GetLineCount()) {
int item_id = controller_->GetSuggestionAt(line_number).frontend_id;
if (item_id == autofill::PopupItemId::POPUP_ITEM_ID_CLEAR_FORM ||
item_id == autofill::PopupItemId::POPUP_ITEM_ID_AUTOFILL_OPTIONS ||
item_id == autofill::PopupItemId::POPUP_ITEM_ID_SCAN_CREDIT_CARD ||
item_id ==
autofill::PopupItemId::POPUP_ITEM_ID_CREDIT_CARD_SIGNIN_PROMO) {
// This is a footer, so this suggestion will be processed later. Don't
// increment |line_number|, or else it will be skipped when adding footer
// rows below.
has_footer = true;
break;
}
if (item_id == autofill::PopupItemId::POPUP_ITEM_ID_SEPARATOR) {
rows_.push_back(
AutofillPopupSeparatorView::Create(controller_, line_number));
} else {
rows_.push_back(
AutofillPopupSuggestionView::Create(controller_, line_number));
}
body_container->AddChildView(rows_.back());
line_number++;
}
AddChildView(body_container);
// All the remaining rows (where index >= |line_number|) are part of the
// footer. This needs to be in its own container because it should not be
// affected by scrolling behavior (it's "sticky") and because it has a
// special background color.
if (has_footer) {
views::View* footer_container = new views::View();
footer_container->SetBackground(
views::CreateSolidBackground(kFooterBackgroundColor));
views::BoxLayout* footer_layout =
footer_container->SetLayoutManager(std::make_unique<views::BoxLayout>(
views::BoxLayout::kVertical,
gfx::Insets(/*top=*/0,
/*left=*/0,
/*bottom=*/
views::MenuConfig::instance().menu_vertical_border_size,
/*right=*/0)));
footer_layout->set_main_axis_alignment(
views::BoxLayout::MAIN_AXIS_ALIGNMENT_START);
while (line_number < controller_->GetLineCount()) {
rows_.push_back(
AutofillPopupFooterView::Create(controller_, line_number));
footer_container->AddChildView(rows_.back());
line_number++;
}
AddChildView(footer_container);
}
}
void AutofillPopupViewNativeViews::AddExtraInitParams(
views::Widget::InitParams* params) {
// Ensure the bubble border is not painted on an opaque background.
params->opacity = views::Widget::InitParams::TRANSLUCENT_WINDOW;
params->shadow_type = views::Widget::InitParams::SHADOW_TYPE_NONE;
}
std::unique_ptr<views::View> AutofillPopupViewNativeViews::CreateWrapperView() {
// Create a wrapper view that contains the current view and will receive the
// bubble border. This is needed so that a clipping path can be later applied
// on the contents only and not affect the border.
auto wrapper_view = std::make_unique<views::View>();
wrapper_view->SetLayoutManager(std::make_unique<views::FillLayout>());
wrapper_view->AddChildView(this);
return wrapper_view;
}
std::unique_ptr<views::Border> AutofillPopupViewNativeViews::CreateBorder() {
auto border = std::make_unique<views::BubbleBorder>(
views::BubbleBorder::NONE, views::BubbleBorder::SMALL_SHADOW,
SK_ColorWHITE);
border->SetCornerRadius(
ChromeLayoutProvider::Get()->GetCornerRadiusMetric(views::EMPHASIS_LOW));
border->set_md_shadow_elevation(
ChromeLayoutProvider::Get()->GetShadowElevationMetric(
views::EMPHASIS_LOW));
bubble_border_ = border.get();
return border;
}
void AutofillPopupViewNativeViews::DoUpdateBoundsAndRedrawPopup() {
SizeToPreferredSize();
// When a bubble border is shown, the contents area (inside the shadow) is
// supposed to be aligned with input element boundaries.
gfx::Rect popup_bounds = PopupViewCommon().CalculatePopupBounds(
size().width(), size().height(),
gfx::ToEnclosingRect(controller_->element_bounds()),
controller_->container_view(), controller_->IsRTL());
// Expand the widget bounds to include the border.
popup_bounds.Inset(-bubble_border_->GetInsets());
GetWidget()->SetBounds(popup_bounds);
// Ensure the child views are not rendered beyond the bubble border
// boundaries.
SkRect local_bounds = gfx::RectToSkRect(GetLocalBounds());
SkScalar radius = SkIntToScalar(bubble_border_->GetBorderCornerRadius());
gfx::Path clip_path;
clip_path.addRoundRect(local_bounds, radius, radius);
set_clip_path(clip_path);
SchedulePaint();
}
} // namespace autofill
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
ca75ad862313389e18fa3b9d524b55dbb5488c7f | 45a01a6d1641635027c5ee739ee44be349e8fc52 | /lab3_4b/PrimeNumbersSet/PrimeNumbersSet.cpp | d781794f7918df8b6358148e242af6731cddcea2 | [] | no_license | Kohiba/IPS_oop_Labs | 7925f047269ed8652fa0841e9489d4ac685eb45f | a9b9f790ba187384bf35db3f6e151bfb62f47ab1 | refs/heads/master | 2016-09-05T23:35:33.666293 | 2015-02-19T17:19:31 | 2015-02-19T17:19:31 | 25,410,942 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 980 | cpp | // PrimeNumbersSet.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "FunctionPrimeNumbersSet.h"
#include "iostream"
#include "iterator"
#include "set"
using namespace std;
int StringToInt(const char * str, bool & err)
{
char * pLastChar = NULL;
int param = strtol(str, &pLastChar, 10);
err = ((*str == '\0') || (*pLastChar != '\0'));
return param;
}
int main(int argc, char* argv[])
{
if (argc <= 1)
{
cout << "Program finds prime numbers in the range from 2 to N." << endl
<< "N Specify the parameters start the program." << endl
<< "N = Maximum 100 000 000" << endl;
return 1;
}
bool err;
int upperBound = StringToInt(argv[1], err);
if (err)
{
cout << "Argument not a number\n.";
return 1;
}
set<int> primeNumber = GeneratePrimeNumbersSet(upperBound);
cout << "Prime numbers are:\n";
copy(primeNumber.begin(), primeNumber.end(), ostream_iterator<int>(cout, ", "));
cout << "\n";
return 0;
}
| [
"skiff-tiv@yandex.ru"
] | skiff-tiv@yandex.ru |
5193d76dfd21cc16a00c5cbd6ac76c646c3be0bd | 9ecc06b6bcd7000a2190eee212a1b09f1a279866 | /cheats/visuals/bullet_tracers.h | f7ffef7a0ad12d7828232b101a26a2b1e96954ec | [] | no_license | imcarter5/subliminal.pub | 43a890fc11558b363bb3bc7643e5ef15e109a111 | 9cd4acbabd25b7ebe69c36f298375b66dabee413 | refs/heads/master | 2023-06-01T19:51:14.251287 | 2021-06-21T11:07:54 | 2021-06-21T11:07:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 566 | h | #pragma once
#include "..\..\includes.hpp"
#include "..\..\sdk\structs.hpp"
class bullettracers : public singleton< bullettracers > {
private:
class trace_info {
public:
trace_info( Vector starts, Vector positions, float times, Color color ) {
this->start = starts;
this->position = positions;
this->time = times;
this->color = color;
}
Vector position;
Vector start;
float time;
Color color;
};
std::vector<trace_info> impacts;
public:
void draw_beam();
void events( IGameEvent* event );
bool beam_exists(const float curtime);
}; | [
"somageller06@gmail.com"
] | somageller06@gmail.com |
822459571f3e283e44eb8d7a4aa940d5301a7ee6 | 4503b4ec29e9a30d26c433bac376f2bddaefd9e5 | /PCL 1.7.2_vs2013/x86/3rdParty/VTK/include/vtk-6.2/vtkImageData.h | 91585d71a4487d0c98a14b88e37687cd7a5d073a | [] | no_license | SwunZH/ecocommlibs | 0a872e0bbecbb843a0584fb787cf0c5e8a2a270b | 4cff09ff1e479f5f519f207262a61ee85f543b3a | refs/heads/master | 2021-01-25T12:02:39.067444 | 2018-02-23T07:04:43 | 2018-02-23T07:04:43 | 123,447,012 | 1 | 0 | null | 2018-03-01T14:37:53 | 2018-03-01T14:37:53 | null | UTF-8 | C++ | false | false | 18,953 | h | /*=========================================================================
Program: Visualization Toolkit
Module: vtkImageData.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkImageData - topologically and geometrically regular array of data
// .SECTION Description
// vtkImageData is a data object that is a concrete implementation of
// vtkDataSet. vtkImageData represents a geometric structure that is
// a topological and geometrical regular array of points. Examples include
// volumes (voxel data) and pixmaps.
#ifndef vtkImageData_h
#define vtkImageData_h
#include "vtkCommonDataModelModule.h" // For export macro
#include "vtkDataSet.h"
#include "vtkStructuredData.h" // Needed for inline methods
class vtkDataArray;
class vtkLine;
class vtkPixel;
class vtkVertex;
class vtkVoxel;
class VTKCOMMONDATAMODEL_EXPORT vtkImageData : public vtkDataSet
{
public:
static vtkImageData *New();
vtkTypeMacro(vtkImageData,vtkDataSet);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Copy the geometric and topological structure of an input image data
// object.
virtual void CopyStructure(vtkDataSet *ds);
// Description:
// Return what type of dataset this is.
virtual int GetDataObjectType() {return VTK_IMAGE_DATA;};
// Description:
// Standard vtkDataSet API methods. See vtkDataSet for more information.
virtual vtkIdType GetNumberOfCells();
virtual vtkIdType GetNumberOfPoints();
virtual double *GetPoint(vtkIdType ptId);
virtual void GetPoint(vtkIdType id, double x[3]);
virtual vtkCell *GetCell(vtkIdType cellId);
virtual void GetCell(vtkIdType cellId, vtkGenericCell *cell);
virtual void GetCellBounds(vtkIdType cellId, double bounds[6]);
virtual vtkIdType FindPoint(double x, double y, double z)
{
return this->vtkDataSet::FindPoint(x, y, z);
}
virtual vtkIdType FindPoint(double x[3]);
virtual vtkIdType FindCell(
double x[3], vtkCell *cell, vtkIdType cellId, double tol2,
int& subId, double pcoords[3], double *weights);
virtual vtkIdType FindCell(
double x[3], vtkCell *cell, vtkGenericCell *gencell,
vtkIdType cellId, double tol2, int& subId,
double pcoords[3], double *weights);
virtual vtkCell *FindAndGetCell(double x[3], vtkCell *cell, vtkIdType cellId,
double tol2, int& subId, double pcoords[3],
double *weights);
virtual int GetCellType(vtkIdType cellId);
virtual void GetCellPoints(vtkIdType cellId, vtkIdList *ptIds)
{vtkStructuredData::GetCellPoints(cellId,ptIds,this->DataDescription,
this->GetDimensions());}
virtual void GetPointCells(vtkIdType ptId, vtkIdList *cellIds)
{vtkStructuredData::GetPointCells(ptId,cellIds,this->GetDimensions());}
virtual void ComputeBounds();
virtual int GetMaxCellSize() {return 8;}; //voxel is the largest
// Description:
// Restore data object to initial state.
virtual void Initialize();
// Description:
// \deprecated{This is for backward compatibility only - use SetExtent().}
// Same as SetExtent(0, i-1, 0, j-1, 0, k-1)
virtual void SetDimensions(int i, int j, int k);
// Description:
// \deprecated{This is for backward compatibility only - use SetExtent().}
// Same as SetExtent(0, dims[0]-1, 0, dims[1]-1, 0, dims[2]-1)
virtual void SetDimensions(const int dims[3]);
// Description:
// Get dimensions of this structured points dataset.
// It is the number of points on each axis.
// Dimensions are computed from Extents during this call.
virtual int *GetDimensions();
virtual void GetDimensions(int dims[3]);
// Description:
// Convenience function computes the structured coordinates for a point x[3].
// The voxel is specified by the array ijk[3], and the parametric coordinates
// in the cell are specified with pcoords[3]. The function returns a 0 if the
// point x is outside of the volume, and a 1 if inside the volume.
virtual int ComputeStructuredCoordinates(
const double x[3], int ijk[3], double pcoords[3]);
static int ComputeStructuredCoordinates( const double x[3], int ijk[3], double pcoords[3],
const int* extent,
const double* spacing,
const double* origin,
const double* bounds);
// Description:
// Given structured coordinates (i,j,k) for a voxel cell, compute the eight
// gradient values for the voxel corners. The order in which the gradient
// vectors are arranged corresponds to the ordering of the voxel points.
// Gradient vector is computed by central differences (except on edges of
// volume where forward difference is used). The scalars s are the scalars
// from which the gradient is to be computed. This method will treat
// only 3D structured point datasets (i.e., volumes).
virtual void GetVoxelGradient(
int i,int j,int k, vtkDataArray *s, vtkDataArray *g);
// Description:
// Given structured coordinates (i,j,k) for a point in a structured point
// dataset, compute the gradient vector from the scalar data at that point.
// The scalars s are the scalars from which the gradient is to be computed.
// This method will treat structured point datasets of any dimension.
virtual void GetPointGradient(
int i, int j, int k, vtkDataArray *s, double g[3]);
// Description:
// Return the dimensionality of the data.
virtual int GetDataDimension();
// Description:
// Given a location in structured coordinates (i-j-k), return the point id.
virtual vtkIdType ComputePointId(int ijk[3]) {
return vtkStructuredData::ComputePointIdForExtent(this->Extent,ijk);};
// Description:
// Given a location in structured coordinates (i-j-k), return the cell id.
virtual vtkIdType ComputeCellId(int ijk[3]) {
return vtkStructuredData::ComputeCellIdForExtent(this->Extent,ijk);};
// Description:
// Set / Get the extent on just one axis
virtual void SetAxisUpdateExtent(int axis, int min, int max,
const int* updateExtent,
int* axisUpdateExtent);
virtual void GetAxisUpdateExtent(int axis, int &min, int &max, const int* updateExtent);
// Description:
// Set/Get the extent. On each axis, the extent is defined by the index
// of the first point and the index of the last point. The extent should
// be set before the "Scalars" are set or allocated. The Extent is
// stored in the order (X, Y, Z).
// The dataset extent does not have to start at (0,0,0). (0,0,0) is just the
// extent of the origin.
// The first point (the one with Id=0) is at extent
// (Extent[0],Extent[2],Extent[4]). As for any dataset, a data array on point
// data starts at Id=0.
virtual void SetExtent(int extent[6]);
virtual void SetExtent(int x1, int x2, int y1, int y2, int z1, int z2);
vtkGetVector6Macro(Extent, int);
// Description:
// These returns the minimum and maximum values the ScalarType can hold
// without overflowing.
virtual double GetScalarTypeMin(vtkInformation* meta_data);
virtual double GetScalarTypeMin();
virtual double GetScalarTypeMax(vtkInformation* meta_data);
virtual double GetScalarTypeMax();
// Description:
// Get the size of the scalar type in bytes.
virtual int GetScalarSize(vtkInformation* meta_data);
virtual int GetScalarSize();
// Description:
// Different ways to get the increments for moving around the data.
// GetIncrements() calls ComputeIncrements() to ensure the increments are
// up to date. The first three methods compute the increments based on the
// active scalar field while the next three, the scalar field is passed in.
virtual vtkIdType *GetIncrements();
virtual void GetIncrements(vtkIdType &incX, vtkIdType &incY, vtkIdType &incZ);
virtual void GetIncrements(vtkIdType inc[3]);
virtual vtkIdType *GetIncrements(vtkDataArray *scalars);
virtual void GetIncrements(vtkDataArray *scalars,
vtkIdType &incX, vtkIdType &incY, vtkIdType &incZ);
virtual void GetIncrements(vtkDataArray *scalars, vtkIdType inc[3]);
// Description:
// Different ways to get the increments for moving around the data.
// incX is always returned with 0. incY is returned with the
// increment needed to move from the end of one X scanline of data
// to the start of the next line. incZ is filled in with the
// increment needed to move from the end of one image to the start
// of the next. The proper way to use these values is to for a loop
// over Z, Y, X, C, incrementing the pointer by 1 after each
// component. When the end of the component is reached, the pointer
// is set to the beginning of the next pixel, thus incX is properly set to 0.
// The first form of GetContinuousIncrements uses the active scalar field
// while the second form allows the scalar array to be passed in.
virtual void GetContinuousIncrements(
int extent[6], vtkIdType &incX, vtkIdType &incY, vtkIdType &incZ);
virtual void GetContinuousIncrements(vtkDataArray *scalars,
int extent[6], vtkIdType &incX, vtkIdType &incY, vtkIdType &incZ);
// Description:
// Access the native pointer for the scalar data
virtual void *GetScalarPointerForExtent(int extent[6]);
virtual void *GetScalarPointer(int coordinates[3]);
virtual void *GetScalarPointer(int x, int y, int z);
virtual void *GetScalarPointer();
// Description:
// For access to data from tcl
virtual float GetScalarComponentAsFloat(int x, int y, int z, int component);
virtual void SetScalarComponentFromFloat(
int x, int y, int z, int component, float v);
virtual double GetScalarComponentAsDouble(int x, int y, int z, int component);
virtual void SetScalarComponentFromDouble(
int x, int y, int z, int component, double v);
// Description:
// Allocate the point scalars for this dataset. The data type determines
// the type of the array (VTK_FLOAT, VTK_INT etc.) where as numComponents
// determines its number of components.
virtual void AllocateScalars(int dataType, int numComponents);
// Description:
// Allocate the point scalars for this dataset. The data type and the
// number of components of the array is determined by the meta-data in
// the pipeline information. This is usually produced by a reader/filter
// upstream in the pipeline.
virtual void AllocateScalars(vtkInformation* pipeline_info);
// Description:
// This method is passed a input and output region, and executes the filter
// algorithm to fill the output from the input.
// It just executes a switch statement to call the correct function for
// the regions data types.
virtual void CopyAndCastFrom(vtkImageData *inData, int extent[6]);
virtual void CopyAndCastFrom(vtkImageData *inData, int x0, int x1,
int y0, int y1, int z0, int z1)
{int e[6]; e[0]=x0; e[1]=x1; e[2]=y0; e[3]=y1; e[4]=z0; e[5]=z1;
this->CopyAndCastFrom(inData, e);}
// Description:
// Reallocates and copies to set the Extent to updateExtent.
// This is used internally when the exact extent is requested,
// and the source generated more than the update extent.
virtual void Crop(const int* updateExtent);
// Description:
// Return the actual size of the data in kilobytes. This number
// is valid only after the pipeline has updated. The memory size
// returned is guaranteed to be greater than or equal to the
// memory required to represent the data (e.g., extra space in
// arrays, etc. are not included in the return value). THIS METHOD
// IS THREAD SAFE.
virtual unsigned long GetActualMemorySize();
// Description:
// Set the spacing (width,height,length) of the cubical cells that
// compose the data set.
vtkSetVector3Macro(Spacing,double);
vtkGetVector3Macro(Spacing,double);
// Description:
// Set/Get the origin of the dataset. The origin is the position in world
// coordinates of the point of extent (0,0,0). This point does not have to be
// part of the dataset, in other words, the dataset extent does not have to
// start at (0,0,0) and the origin can be outside of the dataset bounding
// box.
// The origin plus spacing determine the position in space of the points.
vtkSetVector3Macro(Origin,double);
vtkGetVector3Macro(Origin,double);
static void SetScalarType(int, vtkInformation* meta_data);
static int GetScalarType(vtkInformation* meta_data);
static bool HasScalarType(vtkInformation* meta_data);
int GetScalarType();
const char* GetScalarTypeAsString()
{ return vtkImageScalarTypeNameMacro ( this->GetScalarType() ); };
// Description:
// Set/Get the number of scalar components for points. As with the
// SetScalarType method this is setting pipeline info.
static void SetNumberOfScalarComponents( int n, vtkInformation* meta_data);
static int GetNumberOfScalarComponents(vtkInformation* meta_data);
static bool HasNumberOfScalarComponents(vtkInformation* meta_data);
int GetNumberOfScalarComponents();
// Description:
// Override these to handle origin, spacing, scalar type, and scalar
// number of components. See vtkDataObject for details.
virtual void CopyInformationFromPipeline(vtkInformation* information);
// Description:
// make the output data ready for new data to be inserted. For most
// objects we just call Initialize. But for image data we leave the old
// data in case the memory can be reused.
virtual void PrepareForNewData();
// Description:
// Shallow and Deep copy.
virtual void ShallowCopy(vtkDataObject *src);
virtual void DeepCopy(vtkDataObject *src);
//--------------------------------------------------------------------------
// Methods that apply to any array (not just scalars).
// I am starting to experiment with generalizing imaging fitlers
// to operate on more than just scalars.
// Description:
// These are convenience methods for getting a pointer
// from any filed array. It is a start at expanding image filters
// to process any array (not just scalars).
void *GetArrayPointerForExtent(vtkDataArray* array, int extent[6]);
void *GetArrayPointer(vtkDataArray* array, int coordinates[3]);
// Description:
// Since various arrays have different number of components,
// the will have different increments.
void GetArrayIncrements(vtkDataArray *array, vtkIdType increments[3]);
// Description:
// Given how many pixel are required on a side for bounrary conditions (in
// bnds), the target extent to traverse, compute the internal extent (the
// extent for this ImageData that does not suffer from any boundary
// conditions) and place it in intExt
void ComputeInternalExtent(int *intExt, int *tgtExt, int *bnds);
// Description:
// The extent type is a 3D extent
virtual int GetExtentType() { return VTK_3D_EXTENT; };
//BTX
// Description:
// Retrieve an instance of this class from an information object.
static vtkImageData* GetData(vtkInformation* info);
static vtkImageData* GetData(vtkInformationVector* v, int i=0);
//ETX
protected:
vtkImageData();
~vtkImageData();
// The extent of what is currently in the structured grid.
// Dimensions is just an array to return a value.
// Its contents are out of data until GetDimensions is called.
int Dimensions[3];
vtkIdType Increments[3];
double Origin[3];
double Spacing[3];
int Extent[6];
// The first method assumes Active Scalars
void ComputeIncrements();
// This one is given the number of components of the
// scalar field explicitly
void ComputeIncrements(int numberOfComponents);
void ComputeIncrements(vtkDataArray *scalars);
// The first method assumes Acitive Scalars
void ComputeIncrements(vtkIdType inc[3]);
// This one is given the number of components of the
// scalar field explicitly
void ComputeIncrements(int numberOfComponents, vtkIdType inc[3]);
void ComputeIncrements(vtkDataArray *scalars, vtkIdType inc[3]);
void CopyOriginAndSpacingFromPipeline(vtkInformation* info);
vtkTimeStamp ExtentComputeTime;
void SetDataDescription(int desc);
int GetDataDescription() { return this->DataDescription; }
private:
void InternalImageDataCopy(vtkImageData *src);
private:
//BTX
friend class vtkUniformGrid;
//ETX
// for the GetCell method
vtkVertex *Vertex;
vtkLine *Line;
vtkPixel *Pixel;
vtkVoxel *Voxel;
// for the GetPoint method
double Point[3];
int DataDescription;
vtkImageData(const vtkImageData&); // Not implemented.
void operator=(const vtkImageData&); // Not implemented.
};
//----------------------------------------------------------------------------
inline void vtkImageData::ComputeIncrements()
{
this->ComputeIncrements(this->Increments);
}
//----------------------------------------------------------------------------
inline void vtkImageData::ComputeIncrements(int numberOfComponents)
{
this->ComputeIncrements(numberOfComponents, this->Increments);
}
//----------------------------------------------------------------------------
inline void vtkImageData::ComputeIncrements(vtkDataArray *scalars)
{
this->ComputeIncrements(scalars, this->Increments);
}
//----------------------------------------------------------------------------
inline double * vtkImageData::GetPoint(vtkIdType id)
{
this->GetPoint(id, this->Point);
return this->Point;
}
//----------------------------------------------------------------------------
inline vtkIdType vtkImageData::GetNumberOfPoints()
{
const int *extent = this->Extent;
vtkIdType dims[3];
dims[0] = extent[1] - extent[0] + 1;
dims[1] = extent[3] - extent[2] + 1;
dims[2] = extent[5] - extent[4] + 1;
return dims[0]*dims[1]*dims[2];
}
//----------------------------------------------------------------------------
inline int vtkImageData::GetDataDimension()
{
return vtkStructuredData::GetDataDimension(this->DataDescription);
}
#endif
| [
"hnk0313@3e9e098e-e079-49b3-9d2b-ee27db7392fb"
] | hnk0313@3e9e098e-e079-49b3-9d2b-ee27db7392fb |
5e245451600d692cde9541eca134c312fbf2f134 | 16ecae6b4d2cfc4605b68874faaea7c91e412f1b | /runtime/gmm_helper/resource_info_impl.cpp | f689d6f69e4fcc1288677e1d90dfe220d68cada4 | [
"MIT",
"LicenseRef-scancode-free-unknown"
] | permissive | maxwell-zhengxu/compute-runtime | 70ffa07ed6e1fc30626aa77e6434642f7f73e723 | 74bc0afb035420aee4669611f34e18e56a6a29ca | refs/heads/master | 2020-03-22T04:59:29.844367 | 2018-07-02T09:28:20 | 2018-07-02T14:11:12 | 139,534,594 | 1 | 0 | MIT | 2018-07-03T05:50:47 | 2018-07-03T05:50:47 | null | UTF-8 | C++ | false | false | 1,917 | cpp | /*
* Copyright (c) 2018, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include "runtime/gmm_helper/resource_info.h"
#include "runtime/gmm_helper/gmm_helper.h"
namespace OCLRT {
void GmmResourceInfo::customDeleter(GMM_RESOURCE_INFO *gmmResourceInfo) {
GmmHelper::gmmClientContext->DestroyResInfoObject(gmmResourceInfo);
}
GmmResourceInfo::GmmResourceInfo(GMM_RESCREATE_PARAMS *resourceCreateParams) {
auto resourceInfoPtr = GmmHelper::gmmClientContext->CreateResInfoObject(resourceCreateParams);
this->resourceInfo = UniquePtrType(resourceInfoPtr, GmmResourceInfo::customDeleter);
}
GmmResourceInfo::GmmResourceInfo(GMM_RESOURCE_INFO *inputGmmResourceInfo) {
auto resourceInfoPtr = GmmHelper::gmmClientContext->CopyResInfoObject(inputGmmResourceInfo);
this->resourceInfo = UniquePtrType(resourceInfoPtr, GmmResourceInfo::customDeleter);
}
} // namespace OCLRT
| [
"ocldev@intel.com"
] | ocldev@intel.com |
063801b8d753060cbe4c4d631e7271a0614843db | cd8aaba3b851977bfea8941e521ab1c22bbc4a6f | /clock/buzzer.ino | 0ac36b8dee2a0e06db9fc03d3ed7b94be18df368 | [
"MIT"
] | permissive | bitlinker/LedMatrixClock | aae28371d740ffe6ecd0526f5de5e2958536726d | 72c5f25ad379c8881abb6ddb81738559967c2ff0 | refs/heads/master | 2021-01-09T06:35:06.059751 | 2017-02-09T12:03:32 | 2017-02-09T12:03:32 | 81,003,195 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,836 | ino | //#define NOTE_B0 31
//#define NOTE_C1 33
//#define NOTE_CS1 35
//#define NOTE_D1 37
//#define NOTE_DS1 39
//#define NOTE_E1 41
//#define NOTE_F1 44
//#define NOTE_FS1 46
//#define NOTE_G1 49
//#define NOTE_GS1 52
//#define NOTE_A1 55
//#define NOTE_AS1 58
//#define NOTE_B1 62
//#define NOTE_C2 65
//#define NOTE_CS2 69
//#define NOTE_D2 73
//#define NOTE_DS2 78
//#define NOTE_E2 82
//#define NOTE_F2 87
//#define NOTE_FS2 93
//#define NOTE_G2 98
//#define NOTE_GS2 104
//#define NOTE_A2 110
//#define NOTE_AS2 117
//#define NOTE_B2 123
//#define NOTE_C3 131
//#define NOTE_CS3 139
//#define NOTE_D3 147
//#define NOTE_DS3 156
//#define NOTE_E3 165
//#define NOTE_F3 175
//#define NOTE_FS3 185
//#define NOTE_G3 196
//#define NOTE_GS3 208
//#define NOTE_A3 220
//#define NOTE_AS3 233
//#define NOTE_B3 247
//#define NOTE_C4 262
//#define NOTE_CS4 277
//#define NOTE_D4 294
//#define NOTE_DS4 311
//#define NOTE_E4 330
//#define NOTE_F4 349
//#define NOTE_FS4 370
//#define NOTE_G4 392
//#define NOTE_GS4 415
//#define NOTE_A4 440
//#define NOTE_AS4 466
//#define NOTE_B4 494
//#define NOTE_C5 523
//#define NOTE_CS5 554
//#define NOTE_D5 587
//#define NOTE_DS5 622
//#define NOTE_E5 659
//#define NOTE_F5 698
//#define NOTE_FS5 740
//#define NOTE_G5 784
//#define NOTE_GS5 831
//#define NOTE_A5 880
//#define NOTE_AS5 932
//#define NOTE_B5 988
//#define NOTE_C6 1047
//#define NOTE_CS6 1109
//#define NOTE_D6 1175
//#define NOTE_DS6 1245
//#define NOTE_E6 1319
//#define NOTE_F6 1397
//#define NOTE_FS6 1480
//#define NOTE_G6 1568
//#define NOTE_GS6 1661
//#define NOTE_A6 1760
//#define NOTE_AS6 1865
//#define NOTE_B6 1976
//#define NOTE_C7 2093
//#define NOTE_CS7 2217
//#define NOTE_D7 2349
//#define NOTE_DS7 2489
//#define NOTE_E7 2637
//#define NOTE_F7 2794
//#define NOTE_FS7 2960
//#define NOTE_G7 3136
//#define NOTE_GS7 3322
//#define NOTE_A7 3520
//#define NOTE_AS7 3729
//#define NOTE_B7 3951
//#define NOTE_C8 4186
//#define NOTE_CS8 4435
//#define NOTE_D8 4699
//#define NOTE_DS8 4978
//
// //Mario main theme melody
//int melody[] = {
// NOTE_E7, NOTE_E7, 0, NOTE_E7,
// 0, NOTE_C7, NOTE_E7, 0,
// NOTE_G7, 0, 0, 0,
// NOTE_G6, 0, 0, 0,
//
// NOTE_C7, 0, 0, NOTE_G6,
// 0, 0, NOTE_E6, 0,
// 0, NOTE_A6, 0, NOTE_B6,
// 0, NOTE_AS6, NOTE_A6, 0,
//
// NOTE_G6, NOTE_E7, NOTE_G7,
// NOTE_A7, 0, NOTE_F7, NOTE_G7,
// 0, NOTE_E7, 0, NOTE_C7,
// NOTE_D7, NOTE_B6, 0, 0,
//
// NOTE_C7, 0, 0, NOTE_G6,
// 0, 0, NOTE_E6, 0,
// 0, NOTE_A6, 0, NOTE_B6,
// 0, NOTE_AS6, NOTE_A6, 0,
//
// NOTE_G6, NOTE_E7, NOTE_G7,
// NOTE_A7, 0, NOTE_F7, NOTE_G7,
// 0, NOTE_E7, 0, NOTE_C7,
// NOTE_D7, NOTE_B6, 0, 0
//};
////Mario main them tempo
//int tempo[] = {
// 12, 12, 12, 12,
// 12, 12, 12, 12,
// 12, 12, 12, 12,
// 12, 12, 12, 12,
//
// 12, 12, 12, 12,
// 12, 12, 12, 12,
// 12, 12, 12, 12,
// 12, 12, 12, 12,
//
// 9, 9, 9,
// 12, 12, 12, 12,
// 12, 12, 12, 12,
// 12, 12, 12, 12,
//
// 12, 12, 12, 12,
// 12, 12, 12, 12,
// 12, 12, 12, 12,
// 12, 12, 12, 12,
//
// 9, 9, 9,
// 12, 12, 12, 12,
// 12, 12, 12, 12,
// 12, 12, 12, 12,
//};
//
//void playMelody(int targetPin)
//{
// int size = sizeof(melody) / sizeof(int);
// for (int thisNote = 0; thisNote < size; thisNote++) {
//
// // to calculate the note duration, take one second
// // divided by the note type.
// //e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc.
// int noteDuration = 1000 / tempo[thisNote];
//
// buzz(targetPin, melody[thisNote], noteDuration);
//
// // to distinguish the notes, set a minimum time between them.
// // the note's duration + 30% seems to work well:
// int pauseBetweenNotes = noteDuration * 1.30;
// delay(pauseBetweenNotes);
//
// // stop the tone playing:
// digitalWrite(targetPin, LOW);
// }
//}
//
//void buzz(int targetPin, long frequency, long length) {
// digitalWrite(13, HIGH);
// long delayValue = 1000000 / frequency / 2; // calculate the delay value between transitions
// //// 1 second's worth of microseconds, divided by the frequency, then split in half since
// //// there are two phases to each cycle
// long numCycles = frequency * length / 1000; // calculate the number of cycles for proper timing
// //// multiply frequency, which is really cycles per second, by the number of seconds to
// //// get the total number of cycles to produce
// for (long i = 0; i < numCycles; i++) { // for the calculated length of time...
// digitalWrite(targetPin, HIGH); // write the buzzer pin high to push out the diaphram
// delayMicroseconds(delayValue); // wait for the calculated delay value
// digitalWrite(targetPin, LOW); // write the buzzer pin low to pull back the diaphram
// delayMicroseconds(delayValue); // wait again or the calculated delay value
// }
//}
| [
"bitlinker@gmail.com"
] | bitlinker@gmail.com |
904f48b40e4e89e8ab843c168c60f324ef8c87ba | 4930e3d42790a674bebe62762e6f4ce1c34f8cca | /gpucast_volume/include/gpucast/volume/isosurface/octree/draw_traversal.hpp | 0504d8c89f3ac63c9d5d5666578c94336f451941 | [
"MIT",
"BSD-3-Clause"
] | permissive | scholli/gpucast | b776c042641501c031b27bf5334eef4a32d81734 | 165ae5d29a9483189af2c5ceace3dd111c446444 | refs/heads/master | 2020-04-05T18:57:44.398649 | 2018-03-12T09:14:18 | 2018-03-12T09:14:18 | 15,339,846 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,030 | hpp | /********************************************************************************
*
* Copyright (C) 2007-2011 Bauhaus-Universitaet Weimar
*
*********************************************************************************
*
* module : draw_traversal.hpp
* project : gpucast
* description:
*
********************************************************************************/
#ifndef GPUCAST_DRAW_TRAVERSAL_HPP
#define GPUCAST_DRAW_TRAVERSAL_HPP
// header, system
#include <gpucast/math/matrix4x4.hpp>
// header, project
#include <gpucast/volume/isosurface/octree/nodevisitor.hpp>
namespace gpucast {
///////////////////////////////////////////////////////////////////////////////
class draw_traversal : public nodevisitor
{
public :
draw_traversal ( gpucast::math::matrix4x4<float> const& mvp );
/* virtual */ void visit ( ocnode& ) const;
private :
gpucast::math::matrix4x4<float> _mvp;
};
} // namespace gpucast
#endif // GPUCAST_DRAW_TRAVERSAL_HPP
| [
"mail@ansm.de"
] | mail@ansm.de |
6440c4e92335cc2653bd1db939af7f43c50d52ac | 6c45e044af0f6ef907d9a1ed872e5d1b3abcdfd3 | /GL001/ModelRender.cpp | e95286d64ea322e0a70653c2e97e81b25e7469b8 | [] | no_license | shawnstudio/OpenGL | fa68be0b5e337904dd34386fe2537e3caee76e99 | 65dcec58c2d1e917945ab087dda2d531c5286812 | refs/heads/master | 2020-09-01T13:49:58.825210 | 2019-12-23T01:58:24 | 2019-12-23T01:58:24 | 218,971,860 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25 | cpp | #include "ModelRender.h"
| [
"vwolf1993@hotmail.com"
] | vwolf1993@hotmail.com |
2ca4063b70671defaa9dabe59e224d6637f377fe | 5ee245f619ab0a8eda1bf7033340879c619808c4 | /ALL/Model.cpp | 543171a174fe8fa7e9a9804f7fa55f96c6ab1f86 | [] | no_license | Tekh-ops/opengl-3d-engine | a55a9debd556cb469cf13b57d5dd342a9d48e4a0 | 9d3d3125630300c12da9dc3b5ec6500b473e715f | refs/heads/master | 2021-12-06T06:02:55.241551 | 2015-10-04T20:42:39 | 2015-10-04T20:42:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,614 | cpp | #include "Model.h"
#include "ModelLoader.h"
/*
Constructors and Destructors
*/
Model::Model(GLuint vaoID, GLuint verticesVboID, GLuint uvVboID, GLuint normalsVboID, GLuint colorsVboID, int vertexCount, float scaleX, float scaleY, float scaleZ,
glm::vec3 position) {
this->vaoID = vaoID;
this->verticesVboID = verticesVboID;
this->vertexCount = vertexCount;
this->uvVboID = uvVboID;
this->scaleX = scaleX;
this->scaleY = scaleY;
this->scaleZ = scaleZ;
this->position = position;
this->textured = false;
this->colored = true;
this->colorsVboID = colorsVboID;
this->normalsVboID = normalsVboID;
if (normalsVboID != 0) {
this->normals = true;
}
this->material = Material();
}
Model::Model(GLuint vaoID, GLuint verticesVboID, GLuint uvVboID, GLuint colorsVboID, int vertexCount, float scaleX, float scaleY, float scaleZ,
glm::vec3 position) {
this->vaoID = vaoID;
this->verticesVboID = verticesVboID;
this->vertexCount = vertexCount;
this->uvVboID = uvVboID;
this->scaleX = scaleX;
this->scaleY = scaleY;
this->scaleZ = scaleZ;
this->position = position;
this->textured = false;
this->colored = true;
this->colorsVboID = colorsVboID;
this->normals = true;
this->material = Material();
}
Model::Model(GLuint vaoID, GLuint verticesVboID, GLuint colorsVboID, int vertexCount, float scaleX, float scaleY, float scaleZ,
glm::vec3 position) {
this->vaoID = vaoID;
this->verticesVboID = verticesVboID;
this->vertexCount = vertexCount;
this->scaleX = scaleX;
this->scaleY = scaleY;
this->scaleZ = scaleZ;
this->position = position;
this->textured = false;
this->colored = true;
this->colorsVboID = colorsVboID;
this->normals = true;
this->material = Material();
}
Model::Model(GLuint vaoID, GLuint verticesVboID, GLuint colorsVboID, int vertexCount, float scale, glm::vec3 position) {
this->vaoID = vaoID;
this->verticesVboID = verticesVboID;
this->vertexCount = vertexCount;
this->scaleX = scale;
this->scaleY = scale;
this->scaleZ = scale;
this->position = position;
this->textured = false;
this->colored = true;
this->colorsVboID = colorsVboID;
this->normals = true;
this->material = Material();
}
Model::Model() {
ModelLoader loader = ModelLoader();
Model model = loader.loadToVao(ModelLoader::MODEL_CUBE);
this->vaoID = model.getVaoID();
this->verticesVboID = model.getVerticesVboID();
this->vertexCount = model.getVertexCount();
this->scaleX = model.getScaleX();
this->scaleY = model.getScaleY();
this->scaleZ = model.getScaleZ();
this->position = model.getPosition();
this->textured = model.isTextured();
this->colored = model.hasColor();
this->colorsVboID = model.getColorsVboID();
this->normals = model.hasNormals();
this->material = Material();
}
Model::~Model() {
}
/*
Util functions
*/
//APPLYING A TEXTURE
//This will apply a texture to the model
void Model::texture(std::vector<glm::vec2> uvs, GLuint textureID) {
ModelLoader modelLoader = ModelLoader();
//Make sure that the function has the uvs
if (uvs.size() > 0) {
GLfloat *uvsTemp = &uvs[0].x;
int uvsSize = uvs.size() * 2 * sizeof(GLfloat);
this->uvVboID = modelLoader.storeData(2, uvsTemp, uvsSize);
this->textureID = textureID;
setIsTextured(true);
}
else {
fprintf(stderr, "Model does not currently have UV coordinates");
}
}
//Set the models texture to a texture which has already been generated
void Model::texture(GLuint textureID) {
//Make sure that the model already has a uv vbo id
if (this->uvVboID != 0) {
setIsTextured(true);
this->textureID = textureID;
}
else {
fprintf(stderr, "Model does not currently have UV coordinates");
}
}
//This will remove the texture from the model
void Model::removeTexture() {
setTextureID(0);
setIsTextured(false);
}
//Translation functions
//Translate via a vector
void Model::translate(glm::vec3 translation) {
position += translation;
}
//Translate x axis
void Model::translateX(float xTranslation) {
translate(glm::vec3(xTranslation, 0, 0));
}
//Translate y axis
void Model::translateY(float yTranslation) {
translate(glm::vec3(0, yTranslation, 0));
}
//Translate z axis
void Model::translateZ(float zTranslation) {
translate(glm::vec3(0, 0, zTranslation));
}
//Create the modelMatrix
glm::mat4 Model::createModelMatrix() {
glm::mat4 modelMatrix = glm::mat4(1.0f);
//Apply the transformations to the matrix
modelMatrix = glm::scale(modelMatrix, glm::vec3(scaleX, scaleY, scaleZ));
modelMatrix = glm::translate(modelMatrix, position);
return modelMatrix;
}
/*
Getters and Setters
*/
//GETTERS
//Return the vaoID
GLuint Model::getVaoID() {
return this->vaoID;
}
//Return the positions vboID
GLuint Model::getVerticesVboID() {
return this->verticesVboID;
}
//Return the colors vboID
GLuint Model::getColorsVboID() {
return this->colorsVboID;
}
//Return the uvs vboID
GLuint Model::getUVsVboID() {
return this->uvVboID;
}
//Return the texture ID
GLuint Model::getTextureID() {
return this->textureID;
}
//Returns the normals vbo ID
GLuint Model::getNormalsVboID() {
return this->normalsVboID;
}
//Return the number of verticies
int Model::getVertexCount() {
return this->vertexCount;
}
//Return the scale of the object
float Model::getScale() {
return this->scaleX;
}
//Return the scale of the object
float Model::getScaleX() {
return this->scaleX;
}
//Return the scale of the object
float Model::getScaleY() {
return this->scaleY;
}
//Return the scale of the object
float Model::getScaleZ() {
return this->scaleZ;
}
//Return the postion of the model
glm::vec3 Model::getPosition() {
return this->position;
}
//Return the material of the model
Material Model::getMaterial() {
return this->material;
}
//Return the reflectivity of the model
float Model::getReflectivity() {
return this->material.getReflectivity();
}
//Return the dampening
float Model::getDampening() {
return this->material.getDampening();
}
//SETTERS
//Set the vaoID
void Model::setVaoID(GLuint vaoID) {
this->vaoID = vaoID;
}
//Set the positions vboID
void Model::setVerticesVboID(GLuint verticesVboID) {
this->verticesVboID = verticesVboID;
}
//Set the colors vboID
void Model::setColorsVboID(GLuint colorsVboID) {
this->colorsVboID = colorsVboID;
}
//Set the UV Vbo ID
void Model::setUVsVboID(GLuint uvVboID) {
this->uvVboID = uvVboID;
}
//Set the texture ID
void Model::setTextureID(GLuint textureID) {
this->textureID = textureID;
}
//Set the normals Vbo ID
void Model::setNormalsVboID(GLuint normalsVboID) {
this->normalsVboID = normalsVboID;
}
//Set the number of verticies
void Model::setVertexCount(int vertexCount) {
this->vertexCount = vertexCount;
}
//Set the scale of the object
void Model::setScale(float scale) {
this->scaleX = scale;
this->scaleY = scale;
this->scaleZ = scale;
}
//Set the scale of the object
void Model::setScaleX(float scale) {
this->scaleX = scale;
}
//Set the scale of the object
void Model::setScaleY(float scale) {
this->scaleY = scale;
}
//Set the scale of the object
void Model::setScaleZ(float scale) {
this->scaleZ = scale;
}
//Set the postion of the model
void Model::setPosition(glm::vec3 position) {
this->position = position;
}
//Set the color of the model
void Model::setColor(glm::vec3 color) {
std::vector<glm::vec3> colors = std::vector<glm::vec3>();
for (int i = 0; i < getVertexCount(); i++) {
colors.insert(colors.end(), color);
}
GLfloat *colorsTemp = &colors[0].x;
int colorsSize = colors.size() * 3 * sizeof(GLfloat);
ModelLoader loader = ModelLoader();
GLuint colorsID = loader.storeData(1, colorsTemp, colorsSize);
this->colorsVboID = colorsID;
setHasColor(true);
}
//Set the Material of the model
void Model::setMaterial(Material material) {
this->material = material;
}
//Set the reflectivity of the model
void Model::setReflectivity(float reflectivity) {
this->material.setReflectivity(reflectivity);
}
//Set the dampening
void Model::setDampening(float dampening) {
this->material.setDampening(dampening);
}
/*
OTHER UTIL FUNCTIONS
*/
//Set whether the model is colored
void Model::setHasColor(bool colored) {
this->colored = colored;
}
//Set whether the model is textured
void Model::setIsTextured(bool textured) {
this->textured = textured;
}
//Sets whether the model has normals
void Model::setHasNormals(bool normals) {
this->normals = normals;
}
//Returns whether the model is colored
GLint Model::hasColor() {
return this->colored;
}
//Returns whether the model is textured
GLint Model::isTextured() {
return this->textured;
}
//Returns whether the models has normals
GLint Model::hasNormals() {
return this->normals;
} | [
"markhillman94@googlemail.com"
] | markhillman94@googlemail.com |
52202716021811f25f9331224a36a4ccec5a6a13 | 659a4b37f9780aba530ad8245756e61dba8039e7 | /gtsdb/websocket/websocket_session.h | 5ab2f730939df5701d1d458847a31dcd1a1dd466 | [] | no_license | blockspacer/eurostar | 6850d0584ede4107b43a42e09cc8a2d8d01e3a8c | 08675c2e677ab95ef6abebc6b9246b3bcc5e49a2 | refs/heads/master | 2020-09-25T16:38:37.387625 | 2019-11-07T01:48:31 | 2019-11-07T01:48:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,615 | h | #pragma once
#include <boost/beast/core.hpp>
#include <boost/beast/websocket.hpp>
#include <boost/asio/coroutine.hpp>
#include <boost/asio/strand.hpp>
#include <boost/optional.hpp>
#include <boost/smart_ptr.hpp>
#include <algorithm>
#include <cstdlib>
#include <functional>
#include <iostream>
#include <memory>
#include <string>
#include <thread>
#include <vector>
namespace beast = boost::beast; // from <boost/beast.hpp>
namespace http = beast::http; // from <boost/beast/http.hpp>
namespace websocket = beast::websocket; // from <boost/beast/websocket.hpp>
namespace net = boost::asio; // from <boost/asio.hpp>
using tcp = boost::asio::ip::tcp; // from <boost/asio/ip/tcp.hpp>
#include "websocket_shared_state.h"
#include <cstdlib>
#include <memory>
#include <string>
#include <vector>
// Forward declaration
class websocket_shared_state;
/** Represents an active WebSocket connection to the server
*/
class websocket_session : public boost::enable_shared_from_this<websocket_session>
{
beast::flat_buffer buffer_;
websocket::stream<beast::tcp_stream> ws_;
boost::shared_ptr<websocket_shared_state> state_;
std::vector<boost::shared_ptr<std::string const>> queue_;
bool destroying_ = false;
void fail(beast::error_code ec, char const* what);
void on_accept(beast::error_code ec);
void on_read(beast::error_code ec, std::size_t bytes_transferred);
void on_write(beast::error_code ec, std::size_t bytes_transferred);
void on_close(beast::error_code ec);
public:
websocket_session(
tcp::socket&& socket,
boost::shared_ptr<websocket_shared_state> const& state);
~websocket_session();
template<class Body, class Allocator>
void
run(http::request<Body, http::basic_fields<Allocator>> req);
// Send a message
void send(boost::shared_ptr<std::string const> const& ss);
void disconnect();
private:
void on_send(boost::shared_ptr<std::string const> const& ss);
};
template<class Body, class Allocator>
void
websocket_session::
run(http::request<Body, http::basic_fields<Allocator>> req)
{
// Set suggested timeout settings for the websocket
ws_.set_option(
websocket::stream_base::timeout::suggested(
beast::role_type::server));
// Set a decorator to change the Server of the handshake
ws_.set_option(websocket::stream_base::decorator(
[](websocket::response_type& res)
{
res.set(http::field::server,
std::string(BOOST_BEAST_VERSION_STRING) +
" websocket-chat-multi");
}));
// Accept the websocket handshake
ws_.async_accept(
req,
beast::bind_front_handler(
&websocket_session::on_accept,
shared_from_this()));
}
| [
"lordkeios@lilysnc.com"
] | lordkeios@lilysnc.com |
06aa6e0032b6cda24a45382523aa08c0921a8bbe | 58a0ba5ee99ec7a0bba36748ba96a557eb798023 | /CodeForces/Complete/700-799/768B-CodeFor1.cpp | 39b0d4665064a0f58b872e426e4baab765bfe9f0 | [
"MIT"
] | permissive | adityanjr/code-DS-ALGO | 5bdd503fb5f70d459c8e9b8e58690f9da159dd53 | 1c104c33d2f56fe671d586b702528a559925f875 | refs/heads/master | 2022-10-22T21:22:09.640237 | 2022-10-18T15:38:46 | 2022-10-18T15:38:46 | 217,567,198 | 40 | 54 | MIT | 2022-10-18T15:38:47 | 2019-10-25T15:50:28 | C++ | UTF-8 | C++ | false | false | 503 | cpp | #include<cstdio>
typedef long long ll;
ll count(ll n, ll x, ll y, ll lower, ll upper){
if((y < lower) || (x > upper) || (n == 0)){return 0;}
if(n == 1){return 1;}
ll mid = (lower + upper) / 2;
return count(n / 2, x , y , lower, mid - 1) + count(n % 2, x , y , mid , mid) + count(n / 2, x, y, mid + 1, upper);
}
int main(){
ll n, l, r; scanf("%lld %lld %lld", &n, &l, &r);
ll maxn=1; while(maxn <= n){maxn *= 2;}
printf("%lld\n", count(n, l, r, 1, maxn));
return 0;
}
| [
"samant04aditya@gmail.com"
] | samant04aditya@gmail.com |
14fc0ba55971a0320cad4f67092a422ede5f159d | 452be58b4c62e6522724740cac332ed0fe446bb8 | /src/cobalt/dom/parser.h | eaf17ae4cddaee0c05d81be7c3ba15dfbc992de5 | [
"Apache-2.0"
] | permissive | blockspacer/cobalt-clone-cab7770533804d582eaa66c713a1582f361182d3 | b6e802f4182adbf6a7451a5d48dc4e158b395107 | 0b72f93b07285f3af3c8452ae2ceaf5860ca7c72 | refs/heads/master | 2020-08-18T11:32:21.458963 | 2019-10-17T13:09:35 | 2019-10-17T13:09:35 | 215,783,613 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,697 | h | // Copyright 2015 The Cobalt 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 COBALT_DOM_PARSER_H_
#define COBALT_DOM_PARSER_H_
#include <memory>
#include <string>
#include "base/memory/ref_counted.h"
#include "cobalt/base/source_location.h"
#include "cobalt/loader/decoder.h"
#include "url/gurl.h"
namespace cobalt {
namespace dom {
class Document;
class HTMLElementContext;
class Node;
class XMLDocument;
// An abstraction of the DOM parser.The implementation of this interface should
// be able to parse a piece of HTML or XML input. If the input is a full
// document then a corresponding Document or XMLDocument should be created, and
// new nodes are inserted under the document. Otherwise the new nodes are
// inserted in the given document under parent_node, before referece_node, using
// the Web API insertBefore().
//
// This class is not a part of any specification.
class Parser {
public:
virtual ~Parser() {}
// Synchronous parsing interfaces.
//
// Parses an HTML document and returns the created Document. No
// script elements within the HTML document will be executed.
virtual scoped_refptr<Document> ParseDocument(
const std::string& input, HTMLElementContext* html_element_context,
const base::SourceLocation& input_location) = 0;
// Parses an XML document and returns the created XMLDocument.
virtual scoped_refptr<XMLDocument> ParseXMLDocument(
const std::string& input, HTMLElementContext* html_element_context,
const base::SourceLocation& input_location) = 0;
// Parses an HTML input and inserts new nodes in document under parent_node
// before reference_node. No script elements within the HTML document will
// be executed.
virtual void ParseDocumentFragment(
const std::string& input, const scoped_refptr<Document>& document,
const scoped_refptr<Node>& parent_node,
const scoped_refptr<Node>& reference_node,
const base::SourceLocation& input_location) = 0;
// Parses an XML input and inserts new nodes in document under parent_node
// before reference_node.
virtual void ParseXMLDocumentFragment(
const std::string& input, const scoped_refptr<XMLDocument>& xml_document,
const scoped_refptr<Node>& parent_node,
const scoped_refptr<Node>& reference_node,
const base::SourceLocation& input_location) = 0;
// Asynchronous parsing interfaces.
//
// Parses an HTML document asynchronously, returns the decoder that can be
// used in the parsing. Script elements in the HTML document will be
// executed.
virtual std::unique_ptr<loader::Decoder> ParseDocumentAsync(
const scoped_refptr<Document>& document,
const base::SourceLocation& input_location,
const loader::Decoder::OnCompleteFunction& load_complete_callback) = 0;
// Parses an XML document asynchronously, returns the decoder that can be
// used in the parsing.
virtual std::unique_ptr<loader::Decoder> ParseXMLDocumentAsync(
const scoped_refptr<XMLDocument>& xml_document,
const base::SourceLocation& input_location) = 0;
};
} // namespace dom
} // namespace cobalt
#endif // COBALT_DOM_PARSER_H_
| [
"trofimov_d_a@magnit.ru"
] | trofimov_d_a@magnit.ru |
be236cf4f7d855da99a143d9ae9fd788ba886933 | 101dc4de81150267ce2730c3e7cafc040230cdd9 | /pointer.cpp | df7352cdf5cac26d8b61a3b8896d8f950cd5a049 | [] | no_license | espSiyam/test | 4581c119bebe38cef2fe83d6c3476584e668babb | 3bb8547c5920c3c38fff63e23e8999329588fca3 | refs/heads/main | 2023-05-23T18:20:27.588782 | 2021-06-26T16:30:52 | 2021-06-26T16:30:52 | 372,717,564 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 305 | cpp | #include<iostream>
using namespace std;
int main()
{
string food = "Pizza";
string* ptr = &food;
cout <<food<<endl;
cout <<"Memory address: "<<&food<<endl;
cout <<"Address by pointer: " <<ptr;
cout << "------------------------------"<<endl;
cout << "Let's check the changes"
}
| [
"42336409+espSiyam@users.noreply.github.com"
] | 42336409+espSiyam@users.noreply.github.com |
091cd4241c7089e52cc2ee6987bb37faa1519f63 | 12b81849a80a142a1f8eefbe073cfe57496f14d2 | /arduinoIDE/I2CScanner/I2CScanner.ino | 952d2d457f1055ab50ddb3c5bb9aadbc2c12600d | [] | no_license | LizChai/Stress_Detection_FYP | ea2776df25cf1ae8e8054e6ed822cb90568ed59f | 5bc9ad4279c2611de7fcd0e036c6737b03a9f5b3 | refs/heads/main | 2023-09-01T09:20:52.428164 | 2021-10-26T00:45:03 | 2021-10-26T00:45:03 | 342,101,473 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 933 | ino | #include <Wire.h>
//#define I2C_SDA 23
//#define I2C_SCL 22
void setup() {
//Wire.begin(I2C_SDA, I2C_SCL);
Wire.begin();
Serial.begin(115200);
Serial.println("\nI2C Scanner");
}
void loop() {
byte error, address;
int nDevices;
Serial.println("Scanning...");
nDevices = 0;
for(address = 1; address < 127; address++ ) {
Wire.beginTransmission(address);
error = Wire.endTransmission();
if (error == 0) {
Serial.print("I2C device found at address 0x");
if (address<16) {
Serial.print("0");
}
Serial.println(address,HEX);
nDevices++;
}
else if (error==4) {
Serial.print("Unknow error at address 0x");
if (address<16) {
Serial.print("0");
}
Serial.println(address,HEX);
}
}
if (nDevices == 0) {
Serial.println("No I2C devices found\n");
}
else {
Serial.println("done\n");
}
delay(5000);
}
| [
"echa0018@student.monash.edu"
] | echa0018@student.monash.edu |
449790c4c6de161516dc3a493190bc8c7a03e3b5 | 6f3313b4ba45a180466248125f1ab1f0532a3bcf | /gdal/ogr/ogrsf_frmts/arcobjects/aoutils.cpp | 31f922c63adc36b9b5ddd443f3c076f086041cd5 | [
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"MIT",
"SunPro",
"LicenseRef-scancode-info-zip-2005-02",
"BSD-3-Clause"
] | permissive | zflamig/gdal | 6390f22e37a123175e7bb3c9cf41c815d8dc845e | b33bba07332e132ec07a1a6899d4f3219c9ae238 | refs/heads/trunk | 2020-05-29T09:19:39.403787 | 2018-03-15T08:06:45 | 2018-03-15T08:06:45 | 70,201,068 | 2 | 1 | null | 2018-03-15T08:06:46 | 2016-10-06T23:31:28 | C++ | UTF-8 | C++ | false | false | 13,821 | cpp | /******************************************************************************
*
* Project: OpenGIS Simple Features Reference Implementation
* Purpose: Different utility functions used in ArcObjects OGR driver.
* Author: Ragi Yaser Burhum, ragi@burhum.com
*
******************************************************************************
* Copyright (c) 2009, Ragi Yaser Burhum
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "aoutils.h"
CPL_CVSID("$Id$");
bool AOErr(HRESULT hr, std::string desc)
{
IErrorInfoPtr ipErrorInfo = NULL;
::GetErrorInfo(NULL, &ipErrorInfo);
if (ipErrorInfo)
{
CComBSTR comErrDesc;
ipErrorInfo->GetDescription(&comErrDesc);
CW2A errMsg(comErrDesc);
CPLError( CE_Failure, CPLE_AppDefined, "AO Error: %s HRESULT:%d COM_ERROR:%s", desc.c_str(), hr, errMsg );
::SetErrorInfo(NULL, NULL);
}
else
{
CPLError( CE_Failure, CPLE_AppDefined, "AO Error: %s HRESULT:%d", desc.c_str(), hr);
}
return false;
}
bool AOToOGRGeometry(IGeometryDef* pGeoDef, OGRwkbGeometryType* pOut)
{
esriGeometry::esriGeometryType geo;
VARIANT_BOOL hasZ;
pGeoDef->get_GeometryType(&geo);
pGeoDef->get_HasZ(&hasZ);
switch (geo)
{
case esriGeometry::esriGeometryPoint: *pOut = hasZ == VARIANT_TRUE? wkbPoint25D : wkbPoint; break;
case esriGeometry::esriGeometryMultipoint: *pOut = hasZ == VARIANT_TRUE? wkbMultiPoint25D : wkbMultiPoint; break;
case esriGeometry::esriGeometryLine: *pOut = hasZ == VARIANT_TRUE? wkbLineString25D : wkbLineString; break;
case esriGeometry::esriGeometryPolyline: *pOut = hasZ == VARIANT_TRUE? wkbMultiLineString25D : wkbMultiLineString; break;
case esriGeometry::esriGeometryPolygon: *pOut = hasZ == VARIANT_TRUE? wkbMultiPolygon25D : wkbMultiPolygon; break;// no mapping to single polygon
default:
{
CPLError( CE_Failure, CPLE_AppDefined, "Cannot map esriGeometryType(%d) to OGRwkbGeometryType", geo);
return false;
}
}
return true;
}
bool AOToOGRFields(IFields* pFields, OGRFeatureDefn* pOGRFeatureDef, std::vector<long> & ogrToESRIFieldMapping)
{
HRESULT hr;
long fieldCount;
if (FAILED(hr = pFields->get_FieldCount(&fieldCount)))
return false;
ogrToESRIFieldMapping.clear();
for (long i = 0; i < fieldCount; ++i)
{
IFieldPtr ipField;
if (FAILED(hr = pFields->get_Field(i, &ipField)))
return AOErr(hr, "Error getting field");
CComBSTR name;
if (FAILED(hr = ipField->get_Name(&name)))
return AOErr(hr, "Could not get field name");
esriFieldType fieldType;
if (FAILED(hr = ipField->get_Type(&fieldType)))
return AOErr(hr, "Error getting field type");
//skip these
if (fieldType == esriFieldTypeOID || fieldType == esriFieldTypeGeometry)
continue;
OGRFieldType ogrType;
if (!AOToOGRFieldType(fieldType, &ogrType))
{
// field cannot be mapped, skipping it
CPLError( CE_Warning, CPLE_AppDefined, "Skipping field %s", CW2A(name) );
continue;
}
OGRFieldDefn fieldTemplate( CW2A(name), ogrType);
pOGRFeatureDef->AddFieldDefn( &fieldTemplate );
ogrToESRIFieldMapping.push_back(i);
}
CPLAssert(ogrToESRIFieldMapping.size() == pOGRFeatureDef->GetFieldCount());
return true;
}
// We could make this function far more robust by doing automatic coercion of
// types, and/or skipping fields we do not know. But, for our purposes, this
// works fine.
bool AOToOGRFieldType(esriFieldType aoType, OGRFieldType* pOut)
{
/*
ESRI types
esriFieldTypeSmallInteger = 0,
esriFieldTypeInteger = 1,
esriFieldTypeSingle = 2,
esriFieldTypeDouble = 3,
esriFieldTypeString = 4,
esriFieldTypeDate = 5,
esriFieldTypeOID = 6,
esriFieldTypeGeometry = 7,
esriFieldTypeBlob = 8,
esriFieldTypeRaster = 9,
esriFieldTypeGUID = 10,
esriFieldTypeGlobalID = 11,
esriFieldTypeXML = 12
*/
//OGR Types
// Desc Name AO->OGR Mapped By Us?
/** Simple 32bit integer */// OFTInteger = 0, YES
/** List of 32bit integers */// OFTIntegerList = 1, NO
/** Double Precision floating point */// OFTReal = 2, YES
/** List of doubles */// OFTRealList = 3, NO
/** String of ASCII chars */// OFTString = 4, YES
/** Array of strings */// OFTStringList = 5, NO
/** deprecated */// OFTWideString = 6, NO
/** deprecated */// OFTWideStringList = 7, NO
/** Raw Binary data */// OFTBinary = 8, YES
/** Date */// OFTDate = 9, NO
/** Time */// OFTTime = 10, NO
/** Date and Time */// OFTDateTime = 11 YES
switch (aoType)
{
case esriFieldTypeSmallInteger:
case esriFieldTypeInteger:
{
*pOut = OFTInteger;
return true;
}
case esriFieldTypeSingle:
case esriFieldTypeDouble:
{
*pOut = OFTReal;
return true;
}
case esriFieldTypeGUID:
case esriFieldTypeGlobalID:
case esriFieldTypeXML:
case esriFieldTypeString:
{
*pOut = OFTString;
return true;
}
case esriFieldTypeDate:
{
*pOut = OFTDateTime;
return true;
}
case esriFieldTypeBlob:
{
*pOut = OFTBinary;
return true;
}
default:
{
/* Intentionally fail at these
esriFieldTypeOID
esriFieldTypeGeometry
esriFieldTypeRaster
*/
return false;
}
}
}
bool AOGeometryToOGRGeometry(bool forceMulti, esriGeometry::IGeometry* pInAOGeo, OGRSpatialReference* pOGRSR, unsigned char* & pInOutWorkingBuffer, long & inOutBufferSize, OGRGeometry** ppOutGeometry)
{
HRESULT hr;
esriGeometry::IWkbPtr ipWkb = pInAOGeo;
long reqSize = 0;
if (FAILED(hr = ipWkb->get_WkbSize(&reqSize)))
{
AOErr(hr, "Error getting Wkb buffer size");
return false;
}
if (reqSize > inOutBufferSize)
{
// resize working buffer
delete [] pInOutWorkingBuffer;
pInOutWorkingBuffer = new unsigned char[reqSize];
inOutBufferSize = reqSize;
}
if (FAILED(hr = ipWkb->ExportToWkb(&reqSize, pInOutWorkingBuffer)))
{
AOErr(hr, "Error exporting to WKB buffer");
return false;
}
OGRGeometry* pOGRGeometry = NULL;
OGRErr eErr = OGRGeometryFactory::createFromWkb(pInOutWorkingBuffer, pOGRSR, &pOGRGeometry, reqSize);
if (eErr != OGRERR_NONE)
{
CPLError( CE_Failure, CPLE_AppDefined, "Failed attempting to import ArcGIS WKB Geometry. OGRGeometryFactory err:%d", eErr);
return false;
}
// force geometries to multi if requested
// If it is a polygon, force to MultiPolygon since we always produce multipolygons
if (wkbFlatten(pOGRGeometry->getGeometryType()) == wkbPolygon)
{
pOGRGeometry = OGRGeometryFactory::forceToMultiPolygon(pOGRGeometry);
}
else if (forceMulti)
{
if (wkbFlatten(pOGRGeometry->getGeometryType()) == wkbLineString)
{
pOGRGeometry = OGRGeometryFactory::forceToMultiLineString(pOGRGeometry);
}
else if (wkbFlatten(pOGRGeometry->getGeometryType()) == wkbPoint)
{
pOGRGeometry = OGRGeometryFactory::forceToMultiPoint(pOGRGeometry);
}
}
*ppOutGeometry = pOGRGeometry;
return true;
}
bool AOToOGRSpatialReference(esriGeometry::ISpatialReference* pSR, OGRSpatialReference** ppSR)
{
HRESULT hr;
if (pSR == NULL)
{
CPLError( CE_Warning, CPLE_AppDefined, "ESRI Spatial Reference is NULL");
return false;
}
esriGeometry::IESRISpatialReferenceGEN2Ptr ipSRGen = pSR;
if (ipSRGen == NULL)
{
CPLError( CE_Warning, CPLE_AppDefined, "ESRI Spatial Reference is Unknown");
return false;
}
long bufferSize = 0;
if (FAILED(hr = ipSRGen->get_ESRISpatialReferenceSize(&bufferSize)) || bufferSize == 0)
return false; //should never happen
BSTR buffer = ::SysAllocStringLen(NULL,bufferSize);
if (FAILED(hr = ipSRGen->ExportToESRISpatialReference2(&buffer, &bufferSize)))
{
::SysFreeString(buffer);
return AOErr(hr, "Failed to export ESRI string");
}
CW2A strESRIWKT(buffer);
::SysFreeString(buffer);
if (strlen(strESRIWKT) <= 0)
{
CPLError( CE_Warning, CPLE_AppDefined, "ESRI Spatial Reference is NULL");
return false;
}
*ppSR = new OGRSpatialReference(strESRIWKT);
OGRErr result = (*ppSR)->morphFromESRI();
if (result == OGRERR_NONE)
{
return true;
}
else
{
delete *ppSR;
*ppSR = NULL;
CPLError( CE_Failure, CPLE_AppDefined,
"Failed morphing from ESRI Geometry: %s", strESRIWKT);
return false;
}
}
bool OGRGeometryToAOGeometry(OGRGeometry* pOGRGeom, esriGeometry::IGeometry** ppGeometry)
{
HRESULT hr;
*ppGeometry = NULL;
GByte* pWKB = NULL;
long wkbSize = pOGRGeom->WkbSize();
pWKB = (GByte *) CPLMalloc(wkbSize);
if( pOGRGeom->exportToWkb( wkbNDR, pWKB ) != OGRERR_NONE )
{
CPLFree (pWKB);
CPLError( CE_Failure, CPLE_AppDefined, "Could not export OGR geometry to WKB");
return false;
}
long bytesRead;
esriGeometry::IGeometryFactoryPtr ipGeomFact(esriGeometry::CLSID_GeometryEnvironment);
hr = ipGeomFact->CreateGeometryFromWkb(&bytesRead, pWKB, ppGeometry);
CPLFree (pWKB);
if (FAILED(hr))
{
return AOErr(hr, "Failed translating OGR geometry to ESRI Geometry");
}
return true;
}
// Attempt to checkout a license from the top down
bool InitializeDriver(esriLicenseExtensionCode license)
{
IAoInitializePtr ipInit(CLSID_AoInitialize);
if (license == 0)
{
// Try to init as engine, then engineGeoDB, then ArcView,
// then ArcEditor, then ArcInfo
if (!InitAttemptWithoutExtension(esriLicenseProductCodeEngine))
if (!InitAttemptWithoutExtension(esriLicenseProductCodeArcView))
if (!InitAttemptWithoutExtension(esriLicenseProductCodeArcEditor))
if (!InitAttemptWithoutExtension(esriLicenseProductCodeArcInfo))
{
// No appropriate license is available
CPLError( CE_Failure, CPLE_AppDefined, "ArcGIS License checkout failed.");
return false;
}
return true;
}
// Try to init as engine, then engineGeoDB, then ArcView,
// then ArcEditor, then ArcInfo
if (!InitAttemptWithExtension(esriLicenseProductCodeEngine,license))
if (!InitAttemptWithExtension(esriLicenseProductCodeArcView, license))
if (!InitAttemptWithExtension(esriLicenseProductCodeArcEditor, license))
if (!InitAttemptWithExtension(esriLicenseProductCodeArcInfo, license))
{
// No appropriate license is available
CPLError( CE_Failure, CPLE_AppDefined, "ArcGIS License checkout failed.");
return false;
}
return true;
}
// Attempt to initialize without an extension
bool InitAttemptWithoutExtension(esriLicenseProductCode product)
{
IAoInitializePtr ipInit(CLSID_AoInitialize);
esriLicenseStatus status = esriLicenseFailure;
ipInit->Initialize(product, &status);
return (status == esriLicenseCheckedOut);
}
// Attempt to initialize with an extension
bool InitAttemptWithExtension(esriLicenseProductCode product,
esriLicenseExtensionCode extension)
{
IAoInitializePtr ipInit(CLSID_AoInitialize);
esriLicenseStatus licenseStatus = esriLicenseFailure;
ipInit->IsExtensionCodeAvailable(product, extension, &licenseStatus);
if (licenseStatus == esriLicenseAvailable)
{
ipInit->Initialize(product, &licenseStatus);
if (licenseStatus == esriLicenseCheckedOut)
ipInit->CheckOutExtension(extension, &licenseStatus);
}
return (licenseStatus == esriLicenseCheckedOut);
}
// Shutdown the driver and check-in the license if needed.
HRESULT ShutdownDriver(esriLicenseExtensionCode license)
{
HRESULT hr;
// Scope ipInit so released before AoUninitialize call
{
IAoInitializePtr ipInit(CLSID_AoInitialize);
esriLicenseStatus status;
if (license != NULL)
{
hr = ipInit->CheckInExtension(license, &status);
if (FAILED(hr) || status != esriLicenseCheckedIn)
CPLError( CE_Failure, CPLE_AppDefined, "License checkin failed.");
}
hr = ipInit->Shutdown();
}
return hr;
}
int GetInitedProductCode()
{
HRESULT hr;
IAoInitializePtr ipAO(CLSID_AoInitialize);
esriLicenseProductCode code;
if (FAILED(hr = ipAO->InitializedProduct(&code)))
return -1;
return static_cast<int>(code);
}
| [
"schwehr@gmail.com"
] | schwehr@gmail.com |
1241cdd8c824739ec04e3ce6a8b3c6c80d4b0efb | 0d30aff4fc1a8675e325ca19285b63316d35b91e | /ArduinoScratch/GeoLocation/GeoLocation.ino | 950726febbfe46295ea3bffd21518c0eeee75289 | [
"MIT"
] | permissive | sebleedelisle/st4i-workshop | 84afd26c6319352e621b66a378b61025f9e81ef8 | 239e4aec9bc238b7c69e66767be8781655456d33 | refs/heads/master | 2021-01-01T19:51:46.380186 | 2015-06-15T08:10:10 | 2015-06-15T08:10:10 | 27,706,095 | 6 | 4 | null | 2015-06-16T09:47:15 | 2014-12-08T08:54:12 | C | UTF-8 | C++ | false | false | 10,871 | ino | /***************************************************
This is an example for the Adafruit CC3000 Wifi Breakout & Shield
Designed specifically to work with the Adafruit WiFi products:
----> https://www.adafruit.com/products/1469
Adafruit invests time and resources providing this open source code,
please support Adafruit and open-source hardware by purchasing
products from Adafruit!
Written by Limor Fried, Kevin Townsend and Phil Burgess for
Adafruit Industries. BSD license, all text above must be included
in any redistribution
****************************************************/
/*
This example queries the freegeoip.net service to get the local
approximate geographic location based on IP address. Combined with
code in the InternetTime sketch, this can give absolute position and
time, extremely useful for seasonal calculations like sun position,
insolation, day length, etc. Sure, could always add a GPS module or
just plug in values from one's GPS or phone, but this has the dual
luxuries of coming 'free' with the existing WiFi hardware, and being
automatic (albeit a bit less accurate...but totally sufficient for
the applications mentioned).
Positional accuracy depends on the freegeoip.net database, in turn
based on data collected by maxmind.com. No guarantees this will work
for every location.
Position should be polled only once, at startup, or very infrequently
if making a mobile network-hopping thing, so as not to overwhelm the
kindly-provided free geolocation service.
*/
#include <Adafruit_CC3000.h>
#include <ccspi.h>
#include <SPI.h>
#include <string.h>
#include "utility/debug.h"
// These are the interrupt and control pins
#define ADAFRUIT_CC3000_IRQ 3 // MUST be an interrupt pin!
// These can be any two pins
#define ADAFRUIT_CC3000_VBAT 5
#define ADAFRUIT_CC3000_CS 10
// Use hardware SPI for the remaining pins
// On an UNO, SCK = 13, MISO = 12, and MOSI = 11
Adafruit_CC3000 cc3000 = Adafruit_CC3000(ADAFRUIT_CC3000_CS,
ADAFRUIT_CC3000_IRQ, ADAFRUIT_CC3000_VBAT,
SPI_CLOCK_DIVIDER); // you can change this clock speed
#define WLAN_SSID "SebsAirport" // cannot be longer than 32 characters!
#define WLAN_PASS "Internet"
// Security can be WLAN_SEC_UNSEC, WLAN_SEC_WEP, WLAN_SEC_WPA or WLAN_SEC_WPA2
#define WLAN_SECURITY WLAN_SEC_WPA2
Adafruit_CC3000_Client client;
const unsigned long
dhcpTimeout = 60L * 1000L, // Max time to wait for address from DHCP
connectTimeout = 15L * 1000L, // Max time to wait for server connection
responseTimeout = 15L * 1000L; // Max time to wait for data from server
// This program prints a few tidbits of information about the current location
// (Country, region (state), city, longitude and latitude). Additional info is
// available but just isn't recorded by this code -- can look at jsonParse()
// function to see how it's done and add what you need (or remove what you don't).
// The total list of available attributes includes: ip, country_code,
// country_name, region_code, region_name, city, zipcode, latitude, longitude,
// metro_code and areacode.
char
country[20],
region[20],
city[20],
name[13], // Temp space for name:value parsing
value[64]; // Temp space for name:value parsing
float
longitude, latitude;
void setup(void) {
uint32_t ip = 0L, t;
Serial.begin(115200);
Serial.println(F("Hello, CC3000!"));
Serial.print("Free RAM: "); Serial.println(getFreeRam(), DEC);
Serial.print(F("Initializing..."));
if(!cc3000.begin()) {
Serial.println(F("failed. Check your wiring?"));
return;
}
Serial.print(F("OK.\r\nConnecting to network..."));
if(!cc3000.connectToAP(WLAN_SSID, WLAN_PASS, WLAN_SECURITY)) {
Serial.println(F("Failed!"));
return;
}
Serial.println(F("connected!"));
Serial.print(F("Requesting address from DHCP server..."));
for(t=millis(); !cc3000.checkDHCP() && ((millis() - t) < dhcpTimeout); delay(1000));
if(cc3000.checkDHCP()) {
Serial.println(F("OK"));
} else {
Serial.println(F("failed"));
return;
}
while(!displayConnectionDetails()) delay(1000);
// Look up server's IP address
Serial.print(F("\r\nGetting server IP address..."));
t = millis();
while((0L == ip) && ((millis() - t) < connectTimeout)) {
if(cc3000.getHostByName("freegeoip.net", &ip)) break;
delay(1000);
}
if(0L == ip) {
Serial.println(F("failed"));
return;
}
cc3000.printIPdotsRev(ip);
Serial.println();
// Request JSON-formatted data from server (port 80)
Serial.print(F("Connecting to geo server..."));
client = cc3000.connectTCP(ip, 80);
if(client.connected()) {
Serial.print(F("connected.\r\nRequesting data..."));
client.print(F("GET /json/ HTTP/1.0\r\nConnection: close\r\n\r\n"));
} else {
Serial.println(F("failed"));
return;
}
Serial.print("\r\nReading response...");
country[0] = region[0] = city[0] = 0; // Clear data
jsonParse(0, 0);
client.close();
Serial.println(F("OK"));
/* You need to make sure to clean up after yourself or the CC3000 can freak out */
/* the next time your try to connect ... */
Serial.println(F("\nDisconnecting"));
cc3000.disconnect();
Serial.print(F("\r\nRESULTS:\r\n Country: "));
Serial.println(country);
Serial.print(F(" Region: "));
Serial.println(region);
Serial.print(F(" City: "));
Serial.println(city);
Serial.print(F(" Longitude: "));
Serial.println(longitude);
Serial.print(F(" Latitude: "));
Serial.println(latitude);
}
void loop(void) { } // Not used by this code
bool displayConnectionDetails(void) {
uint32_t ipAddress, netmask, gateway, dhcpserv, dnsserv;
if(!cc3000.getIPAddress(&ipAddress, &netmask, &gateway, &dhcpserv, &dnsserv)) {
Serial.println(F("Unable to retrieve the IP Address!\r\n"));
return false;
} else {
Serial.print(F("\nIP Addr: ")); cc3000.printIPdotsRev(ipAddress);
Serial.print(F("\nNetmask: ")); cc3000.printIPdotsRev(netmask);
Serial.print(F("\nGateway: ")); cc3000.printIPdotsRev(gateway);
Serial.print(F("\nDHCPsrv: ")); cc3000.printIPdotsRev(dhcpserv);
Serial.print(F("\nDNSserv: ")); cc3000.printIPdotsRev(dnsserv);
Serial.println();
return true;
}
}
// Helper functions swiped from Adafruit 'Gutenbird' code (with changes)
boolean jsonParse(int depth, byte endChar) {
int c, i;
boolean readName = true;
for(;;) {
while(isspace(c = timedRead())); // Scan past whitespace
if(c < 0) return false; // Timeout
if(c == endChar) return true; // EOD
if(c == '{') { // Object follows
if(!jsonParse(depth + 1, '}')) return false;
if(!depth) return true; // End of file
} else if(c == '[') { // Array follows
if(!jsonParse(depth + 1,']')) return false;
} else if((c == '"') || (c == '\'')) { // String follows
if(readName) { // Name-reading mode
if(!readString(name, sizeof(name)-1, c)) return false;
} else { // Value-reading mode
if(!readString(value, sizeof(value)-1, c)) return false;
// Process name and value strings:
if (!strcasecmp(name, "country_name")) {
strncpy(country, value, sizeof(country)-1);
} else if(!strcasecmp(name, "region_name")) {
strncpy(region, value, sizeof(region)-1);
} else if(!strcasecmp(name, "city")) {
strncpy(city, value, sizeof(city)-1);
}
}
} else if(c == ':') { // Separator between name:value
readName = false; // Now in value-reading mode
value[0] = 0; // Clear existing value data
} else if(c == ',') { // Separator between name/value pairs
readName = true; // Now in name-reading mode
name[0] = 0; // Clear existing name data
} else {
// Else true/false/null or a number follows.
value[0] = c;
if(!strcasecmp(name, "longitude")) {
if(!readString(value+1, sizeof(value)-1, ',')) return false;
longitude = atof(value);
} else if(!strcasecmp(name, "latitude")) {
if(!readString(value+1, sizeof(value)-1, ',')) return false;
latitude = atof(value);
}
readName = true; // Now in name-reading mode
name[0] = 0; // Clear existing name data
}
}
}
// Read string from client stream into destination buffer, up to a maximum
// requested length. Buffer should be at least 1 byte larger than this to
// accommodate NUL terminator. Opening quote is assumed already read,
// closing quote will be discarded, and stream will be positioned
// immediately following the closing quote (regardless whether max length
// is reached -- excess chars are discarded). Returns true on success
// (including zero-length string), false on timeout/read error.
boolean readString(char *dest, int maxLen, char quote) {
int c, len = 0;
while((c = timedRead()) != quote) { // Read until closing quote
if(c == '\\') { // Escaped char follows
c = timedRead(); // Read it
// Certain escaped values are for cursor control --
// there might be more suitable printer codes for each.
if (c == 'b') c = '\b'; // Backspace
else if(c == 'f') c = '\f'; // Form feed
else if(c == 'n') c = '\n'; // Newline
else if(c == 'r') c = '\r'; // Carriage return
else if(c == 't') c = '\t'; // Tab
else if(c == 'u') c = unidecode(4);
else if(c == 'U') c = unidecode(8);
// else c is unaltered -- an escaped char such as \ or "
} // else c is a normal unescaped char
if(c < 0) return false; // Timeout
// In order to properly position the client stream at the end of
// the string, characters are read to the end quote, even if the max
// string length is reached...the extra chars are simply discarded.
if(len < maxLen) dest[len++] = c;
}
dest[len] = 0;
return true; // Success (even if empty string)
}
// Read a given number of hexadecimal characters from client stream,
// representing a Unicode symbol. Return -1 on error, else return nearest
// equivalent glyph in printer's charset. (See notes below -- for now,
// always returns '-' or -1.)
int unidecode(byte len) {
int c, v, result = 0;
while(len--) {
if((c = timedRead()) < 0) return -1; // Stream timeout
if ((c >= '0') && (c <= '9')) v = c - '0';
else if((c >= 'A') && (c <= 'F')) v = 10 + c - 'A';
else if((c >= 'a') && (c <= 'f')) v = 10 + c - 'a';
else return '-'; // garbage
result = (result << 4) | v;
}
return '?';
}
// Read from client stream with a 5 second timeout. Although an
// essentially identical method already exists in the Stream() class,
// it's declared private there...so this is a local copy.
int timedRead(void) {
unsigned long start = millis();
while((!client.available()) && ((millis() - start) < 5000L));
return client.read(); // -1 on timeout
}
| [
"sebleedelisle@gmail.com"
] | sebleedelisle@gmail.com |
8a16627dd6de112d3a3f2d872c26546e93d6ef3a | 105af4eaec3f935c85c346fe2243897d5816118c | /Project1/Project1/hook.cpp | 23992b9c2c943c4630c6d3d3ece2676cb87a9a94 | [] | no_license | nlsysis/d3d9Learing | e9caafa899a402ee27faa3778fb54a3fe14fa3d8 | 923f10cf506a5585764934885c98c34f915a32fc | refs/heads/master | 2022-04-09T15:31:18.274292 | 2020-04-04T12:32:10 | 2020-04-04T12:32:10 | 227,982,639 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,136 | cpp | #include "hook.h"
//
//Hook::Hook()
//{
//}
//Hook::~Hook()
//{
//}
//void Hook::InitHook(Vertex2d center, float radius, int pointCount)
//{
// Vertex2d *m_Circle;
// Vertex2d *m_Circle2;
// m_center = center.position;
// m_radius = radius;
// m_pointCount = pointCount;
// m_Circle = new Vertex2d[m_pointCount/2];
// //m_Circle[0] = center;
// for (int i = 0; i < m_pointCount/2; i++)
// {
// m_Circle[i].position.x = m_radius * cos(2 * D3DX_PI / pointCount * (i) + D3DX_PI / 2);
// m_Circle[i].position.y = m_radius * sin(2 * D3DX_PI / pointCount * (i) + D3DX_PI / 2);
// m_Circle[i].position.z = 0;
// m_Circle[i].color = center.color;
// /*if (m_Circle[i].position.x < 0)
// {
// m_Circle[i].color = center.color * 0.5;
// }*/
// m_Circle[i].position += m_center;
//
// }
// m_Circle2 = new Vertex2d[m_pointCount/2];
// for (int i = 0; i < m_pointCount/2; i++)
// {
// m_Circle2[i].position.x = (m_radius + 6) * cos(2 * D3DX_PI / pointCount * (i)+D3DX_PI / 2);
// m_Circle2[i].position.y = (m_radius + 6) * sin(2 * D3DX_PI / pointCount * (i)+D3DX_PI / 2);
// m_Circle2[i].position.z = 0;
// m_Circle2[i].color = center.color;
// m_Circle2[i].position += m_center;
// }
// g_Circle = new Vertex2d[pointCount];
//
//}
//D3DXVECTOR4 Hook::GetCenter()
//{
// return g_Circle[0].position;
//}
//void Hook::TranslationHook(D3DXVECTOR4 trans)
//{
// for (int i = 0; i < m_pointCount; i++)
// {
// g_Circle[i].position += trans;
// }
//}
//void Hook::RotationHook(float degree)
//{
// for (int i = 0; i < m_pointCount; i++)
// {
// D3DXVECTOR4 temp = m_Circle[i].position - m_center;
// g_Circle[i].position.x = temp.x * cos(D3DXToRadian(degree)) - temp.y * sin(D3DXToRadian(degree));
// g_Circle[i].position.y = temp.y * cos(D3DXToRadian(degree)) + temp.x * sin(D3DXToRadian(degree));
// g_Circle[i].position += m_center;
// }
//}
////void ScaleCircle(D3DXVECTOR3 sizePresent);
//void Hook::DrawHook(LPDIRECT3DDEVICE9 device)
//{
// //device->DrawPrimitiveUP(D3DPT_TRIANGLEFAN, m_pointCount, m_Circle, sizeof(Vertex2d));
// //device->DrawPrimitiveUP(D3DPT_TRIANGLEFAN, m_pointCount , m_Circle2, sizeof(Vertex2d));
//} | [
"nlsysis@126.com"
] | nlsysis@126.com |
f9d66228b45103c5fafce30b7ce406ed9245069e | b397b058573489bd05b0e2cdcbdfc40d5155a550 | /printer.hpp | 0d43eb0c36d7f869133e61fec59349f78cfee35e | [
"MIT"
] | permissive | ElesiqArt/websocket | 0b821d65fbf0a979d8abbdf87061f1ae2f8da4be | ca9d0dec90f0edd243ba0aed34aa3f4accc0970f | refs/heads/master | 2020-04-18T11:32:07.496394 | 2019-03-29T09:17:34 | 2019-03-29T09:17:34 | 167,503,110 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 813 | hpp | #ifndef WEBSOCKET_PRINTER_HPP
#define WEBSOCKET_PRINTER_HPP
#include <ostream>
#include <websocket/frame.hpp>
namespace websocket
{
std::ostream & print_control(std::ostream & os, uint8_t value);
std::ostream & print_info(std::ostream & os, uint8_t value);
std::ostream & print_size(std::ostream & os, uint64_t size, size_t width);
std::ostream & print_mask(std::ostream & os, const frame_t & frame, size_t width);
std::ostream & print_header(std::ostream & os, const frame_t & frame);
uint64_t print_payload(std::ostream & os, const frame_t & frame, const char * payload, bool encoded, size_t width, uint64_t length = 0);
std::ostream & print(std::ostream & os, const frame_t & frame, const char * payload, bool encoded);
};
#include <websocket/printer.hcp>
#endif/*WEBSOCKET_PRINTER_HPP*/
| [
"gregoire.scano@malloc.fr"
] | gregoire.scano@malloc.fr |
b1e9d2efd192572f9e79d8aca9ff87951f5f3f91 | 0c006a603df3a7b258c5da89f7b9c794932ff31a | /soalnomor3.cpp | 03649d3171f77e7fa1ac74a4e04cb1ea1ccdcf84 | [] | no_license | mramadhanifebriadi/tpraktikum03 | b5fee28dd104460581f7bbd2a5d5e016d1d61093 | 862cd2fa5d7d4cef9fb299a66327d27e0e7da115 | refs/heads/master | 2021-05-07T15:16:32.088333 | 2017-11-08T04:33:12 | 2017-11-08T04:33:12 | 109,927,945 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 610 | cpp | #include <iostream>
using namespace std;
int main(){
int jk;
int gp;
int lembur;
int jamlembur;
int jamkerjatotal;
int gatot;
int gaber;
cout<<"masukan jam kerja anda:"; cin >> jk;
cout<<"masukan gajih anda perjam:"; cin >> gp;
lembur=jk-40;
jamlembur=lembur*1.5;
jamkerjatotal=40+jamlembur;
gatot=jamkerjatotal*gp;
gaber=gatot-(0.15*gatot);
cout <<"jam lembur anda:"<<lembur<<endl;
cout <<"bonus dari lembur anda:"<<jamlembur<<endl;
cout <<"jam kerja total anda:"<<jamkerjatotal<<endl;
cout <<"gajih total anda:"<<gatot<<endl;
cout <<"gajih bersih anda di potong pajak:"<<gaber<<endl;
}
| [
"32356499+mramadhanifebriadi@users.noreply.github.com"
] | 32356499+mramadhanifebriadi@users.noreply.github.com |
a3f370ffaeed2c09ec759a1cbbb06aff2747ee23 | ff7352ce3d77498fbc8dbebcb03149ee9753d30d | /psbfile/src/pcc/psb_cc.cpp | 8aa8d93db71658f1368ff7e20b9ac8325af39258 | [
"MIT"
] | permissive | number201724/GalGameTools | c519f76dc6282b94c0f1e18ffc1c6fa6f79972ee | 2619af12c8b391fa7b7d288d76f82deb6f1e8014 | refs/heads/master | 2022-07-07T23:03:17.788827 | 2017-07-04T16:38:13 | 2017-07-04T16:38:13 | 67,941,925 | 38 | 12 | null | null | null | null | UTF-8 | C++ | false | false | 2,847 | cpp | #include "def.h"
#include "psb_cc.h"
#include "psb_cc_null.h"
#include "psb_cc_array.h"
#include "psb_cc_integer.h"
#include "psb_cc_string.h"
#include "psb_cc_decimal.h"
#include "psb_cc_resource.h"
#include "psb_cc_collection.h"
#include "psb_cc_object.h"
#include "psb_cc_boolean.h"
#include <algorithm>
psb_cc::psb_cc() :_entries(NULL)
{
}
psb_cc::~psb_cc()
{
}
bool psb_cc::cc(Json::Value &src)
{
precache_name_all(src);
sort(_name_table.begin(),_name_table.end());
_entries = pack(src);
_entries->compile();
return true;
}
psb_cc_base* psb_cc::get_entries()
{
return _entries;
}
uint32_t psb_cc::add_string(string value)
{
for (uint32_t i = 0; i < _string_table.size(); i++)
{
if (value == _string_table[i]) {
return i;
}
}
_string_table.push_back(value);
return _string_table.size() - 1;
}
uint32_t psb_cc::add_names(string value)
{
for (uint32_t i = 0; i < _name_table.size(); i++)
{
if (value == _name_table[i]) {
return i;
}
}
_name_table.push_back(value);
return _name_table.size() - 1;
}
string psb_cc::get_names(uint32_t index)
{
return _name_table[index];
}
void psb_cc::precache_name_all(Json::Value &source_code)
{
if(source_code.type() == Json::objectValue)
{
std::vector<std::string>& member_names = source_code.getMemberNames();
for(size_t i=0;i<member_names.size();i++) {
add_names(member_names[i]);
precache_name_all(source_code[member_names[i]]);
}
}
if(source_code.type() == Json::arrayValue)
{
for(Json::Value::iterator i = source_code.begin();i!=source_code.end();i++)
{
precache_name_all(*i);
}
}
}
psb_cc_base* psb_cc::pack(Json::Value& source_code)
{
psb_cc_base *base = NULL;
if (source_code.type() == Json::nullValue) {
return new psb_cc_null();
}
if (source_code.type() == Json::stringValue) {
std::string str = source_code.asString();
if (str.find("#resource#") != -1) {
uint32_t resource_index = 0;
sscanf_s(str.c_str(), "#resource#%u", &resource_index);
//cout << str <<endl;
return new psb_cc_resource(resource_index);
}
else {
return new psb_cc_string(this, str);
}
}
if (source_code.type() == Json::intValue) {
return new psb_cc_integer(source_code.asInt64());
}
if (source_code.type() == Json::realValue) {
//check is double value
long double s = source_code.asDouble();
s = fabs(s);
s *= 100000;
s -= (int64_t)s;
if (s == 0.0) {
return new psb_cc_decimal(source_code.asFloat());
}
else {
return new psb_cc_decimal(source_code.asDouble());
}
}
if (source_code.type() == Json::arrayValue) {
return new psb_cc_collection(this, source_code);
}
if (source_code.type() == Json::objectValue) {
return new psb_cc_object(this, source_code);
}
if (source_code.type() == Json::booleanValue) {
return new psb_cc_boolean(source_code.asBool());
}
return base;
}
| [
"number201724@me.com"
] | number201724@me.com |
a1a9d7c3d126204b6736cbaf240a7b11b56d7b51 | 8947812c9c0be1f0bb6c30d1bb225d4d6aafb488 | /01_Develop/libXMIrrlicht/Source/scene/loaders/CColladaFileLoader.h | 28d6a8f8cb251ea7d1c4a7d4f83fbef49d6b7d0c | [
"MIT"
] | permissive | alissastanderwick/OpenKODE-Framework | cbb298974e7464d736a21b760c22721281b9c7ec | d4382d781da7f488a0e7667362a89e8e389468dd | refs/heads/master | 2021-10-25T01:33:37.821493 | 2016-07-12T01:29:35 | 2016-07-12T01:29:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,884 | h | // Copyright (C) 2002-2011 Nikolaus Gebhardt
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h
#ifndef __C_COLLADA_MESH_FILE_LOADER_H_INCLUDED__
#define __C_COLLADA_MESH_FILE_LOADER_H_INCLUDED__
#include "IMeshLoader.h"
#include "IFileSystem.h"
#include "IVideoDriver.h"
#include "irrString.h"
#include "SMesh.h"
#include "SMeshBuffer.h"
#include "ISceneManager.h"
#include "irrMap.h"
#include "../../io/CAttributes.h"
namespace irr
{
namespace scene
{
#ifdef _DEBUG
//#define COLLADA_READER_DEBUG
#endif
class IColladaPrefab;
enum ECOLLADA_PARAM_NAME
{
ECPN_COLOR = 0,
ECPN_AMBIENT,
ECPN_DIFFUSE,
ECPN_SPECULAR,
ECPN_SHININESS,
ECPN_TRANSPARENCY,
ECPN_YFOV,
ECPN_ZNEAR,
ECPN_ZFAR,
ECPN_COUNT
};
enum ECOLLADA_PARAM_TYPE
{
ECPT_FLOAT = 0,
ECPT_FLOAT2,
ECPT_FLOAT3,
ECPT_FLOAT4,
ECPT_COUNT
};
//! Collada Parameter
struct SColladaParam
{
SColladaParam()
: Name(ECPN_COUNT), Type(ECPT_COUNT)
{
for (int i=0; i<4; ++i) Floats[i] = 0;
}
ECOLLADA_PARAM_NAME Name;
ECOLLADA_PARAM_TYPE Type;
f32 Floats[4];
};
enum ECOLLADA_INPUT_SEMANTIC
{
ECIS_POSITION = 0,
ECIS_VERTEX,
ECIS_NORMAL,
ECIS_TEXCOORD,
ECIS_UV,
ECIS_TANGENT,
ECIS_IMAGE,
ECIS_TEXTURE,
ECIS_COUNT
};
//! Collada Input
struct SColladaInput
{
SColladaInput()
: Semantic(ECIS_COUNT), Data(0), Offset(0), Set(0), Stride(1)
{
}
ECOLLADA_INPUT_SEMANTIC Semantic;
core::stringc Source;
f32* Data;
u32 Offset;
u32 Set;
u32 Stride;
};
//! Collada images
struct SColladaImage
{
core::stringc Id;
core::stringc Source;
core::dimension2du Dimension;
bool SourceIsFilename;
};
//! Collada texture
struct SColladaTexture
{
video::ITexture* Texture;
core::stringc Id;
};
//! Collada material
struct SColladaMaterial
{
video::SMaterial Mat;
core::stringc Id;
core::stringc InstanceEffectId;
f32 Transparency;
inline bool operator< (const SColladaMaterial & other) const
{
return Id < other.Id;
}
};
//! Collada effect (materials, shaders, and programs)
struct SColladaEffect
{
core::stringc Id;
f32 Transparency;
core::array<core::stringc> Textures;
video::SMaterial Mat;
// TODO: Parameters looks somewhat lazy workaround, I think we should really read all parameters correct.
io::IAttributes * Parameters;
inline bool operator< (const SColladaEffect & other) const
{
return Id < other.Id;
}
};
struct SNumberArray // for storing float and int arrays
{
core::stringc Name;
core::array<f32> Data;
};
struct SAccessor
{
SAccessor()
: Count(0), Offset(0), Stride(1) {}
// I don't store the source of the accessor here because I assume
// it to use the array of the source this accessor is located in.
int Count;
int Offset;
int Stride;
core::array<SColladaParam> Parameters; // parameters defining the accessor
};
struct SSource
{
core::stringc Id;
SNumberArray Array;
core::array<SAccessor> Accessors;
};
class CScenePrefab;
//! Meshloader capable of loading COLLADA meshes and scene descriptions into Irrlicht.
class CColladaFileLoader : public IMeshLoader
{
public:
//! Constructor
CColladaFileLoader(scene::ISceneManager* smgr, io::IFileSystem* fs);
//! destructor
virtual ~CColladaFileLoader();
//! returns true if the file maybe is able to be loaded by this class
//! based on the file extension (e.g. ".cob")
virtual bool isALoadableFileExtension(const io::path& filename) const;
//! creates/loads an animated mesh from the file.
//! \return Pointer to the created mesh. Returns 0 if loading failed.
//! If you no longer need the mesh, you should call IAnimatedMesh::drop().
//! See IReferenceCounted::drop() for more information.
virtual IAnimatedMesh* createMesh(io::IReadFile* file);
private:
//! skips an (unknown) section in the collada document
void skipSection(io::IXMLReaderUTF8* reader, bool reportSkipping);
//! reads the <COLLADA> section and its content
void readColladaSection(io::IXMLReaderUTF8* reader);
//! reads a <library> section and its content
void readLibrarySection(io::IXMLReaderUTF8* reader);
//! reads a <visual_scene> element and stores it as a prefab
void readVisualScene(io::IXMLReaderUTF8* reader);
//! reads a <scene> section and its content
void readSceneSection(io::IXMLReaderUTF8* reader);
//! reads a <asset> section and its content
void readAssetSection(io::IXMLReaderUTF8* reader);
//! reads a <node> section and its content
//! if a prefab pointer is passed the nodes are created as scene prefabs children of that prefab
void readNodeSection(io::IXMLReaderUTF8* reader, scene::ISceneNode* parent, CScenePrefab* p=0);
//! reads a <lookat> element and its content and creates a matrix from it
core::matrix4 readLookAtNode(io::IXMLReaderUTF8* reader);
//! reads a <matrix> element and its content and creates a matrix from it
core::matrix4 readMatrixNode(io::IXMLReaderUTF8* reader);
//! reads a <perspective> element and its content and creates a matrix from it
core::matrix4 readPerspectiveNode(io::IXMLReaderUTF8* reader);
//! reads a <rotate> element and its content and creates a matrix from it
core::matrix4 readRotateNode(io::IXMLReaderUTF8* reader);
//! reads a <skew> element and its content and creates a matrix from it
core::matrix4 readSkewNode(io::IXMLReaderUTF8* reader);
//! reads a <boundingbox> element and its content and stores it in bbox
void readBboxNode(io::IXMLReaderUTF8* reader, core::aabbox3df& bbox);
//! reads a <scale> element and its content and creates a matrix from it
core::matrix4 readScaleNode(io::IXMLReaderUTF8* reader);
//! reads a <translate> element and its content and creates a matrix from it
core::matrix4 readTranslateNode(io::IXMLReaderUTF8* reader);
//! reads a <color> element
video::SColorf readColorNode(io::IXMLReaderUTF8* reader);
//! reads a <float> element
f32 readFloatNode(io::IXMLReaderUTF8* reader);
//! reads a <instance> node
void readInstanceNode(io::IXMLReaderUTF8* reader,
scene::ISceneNode* parent, scene::ISceneNode** outNode,
CScenePrefab* p=0, const core::stringc& type=core::stringc());
//! creates a scene node from Prefabs (with name given in 'url')
void instantiateNode(scene::ISceneNode* parent, scene::ISceneNode** outNode=0,
CScenePrefab* p=0, const core::stringc& url="",
const core::stringc& type=core::stringc());
//! reads a <light> element and stores it as prefab
void readLightPrefab(io::IXMLReaderUTF8* reader);
//! reads a <camera> element and stores it as prefab
void readCameraPrefab(io::IXMLReaderUTF8* reader);
//! reads a <image> element and stores it in the image section
void readImage(io::IXMLReaderUTF8* reader);
//! reads a <texture> element and stores it in the texture section
void readTexture(io::IXMLReaderUTF8* reader);
//! reads a <material> element and stores it in the material section
void readMaterial(io::IXMLReaderUTF8* reader);
//! reads a <effect> element and stores it in the effects section
void readEffect(io::IXMLReaderUTF8* reader, SColladaEffect * effect = 0);
//! reads a <geometry> element and stores it as mesh if possible
void readGeometry(io::IXMLReaderUTF8* reader);
//! parses a float from a char pointer and moves the pointer to
//! the end of the parsed float
inline f32 readFloat(const c8** p);
//! parses an int from a char pointer and moves the pointer to
//! the end of the parsed float
inline s32 readInt(const c8** p);
//! places pointer to next begin of a token
void findNextNoneWhiteSpace(const c8** p);
//! reads floats from inside of xml element until end of xml element
void readFloatsInsideElement(io::IXMLReaderUTF8* reader, f32* floats, u32 count);
//! reads ints from inside of xml element until end of xml element
void readIntsInsideElement(io::IXMLReaderUTF8* reader, s32* ints, u32 count);
//! clears all loaded data
void clearData();
//! parses all collada parameters inside an element and stores them in ColladaParameters
void readColladaParameters(io::IXMLReaderUTF8* reader, const core::stringc& parentName);
//! returns a collada parameter or none if not found
SColladaParam* getColladaParameter(ECOLLADA_PARAM_NAME name);
//! parses all collada inputs inside an element and stores them in Inputs. Reads
//! until first tag which is not an input tag or the end of the parent is reached
void readColladaInputs(io::IXMLReaderUTF8* reader, const core::stringc& parentName);
//! reads a collada input tag and adds it to the input parameter
void readColladaInput(io::IXMLReaderUTF8* reader, core::array<SColladaInput>& inputs);
//! returns a collada input or none if not found
SColladaInput* getColladaInput(ECOLLADA_INPUT_SEMANTIC input);
//! read Collada Id, uses id or name if id is missing
core::stringc readId(io::IXMLReaderUTF8* reader);
//! changes the XML URI into an internal id
void uriToId(core::stringc& str);
//! reads a polygons section and creates a mesh from it
void readPolygonSection(io::IXMLReaderUTF8* reader,
core::array<SSource>& sources, scene::SMesh* mesh,
const core::stringc& geometryId);
//! finds a material, possible instancing it
const SColladaMaterial * findMaterial(const core::stringc & materialName);
//! reads and bind materials as given by the symbol->target bind mapping
void readBindMaterialSection(io::IXMLReaderUTF8* reader, const core::stringc & id);
//! create an Irrlicht texture from the SColladaImage
video::ITexture* getTextureFromImage(core::stringc uri, SColladaEffect * effect);
//! read a parameter and value
void readParameter(io::IXMLReaderUTF8* reader, io::IAttributes* parameters);
scene::ISceneManager* SceneManager;
io::IFileSystem* FileSystem;
scene::IAnimatedMesh* DummyMesh;
core::stringc CurrentlyLoadingMesh;
scene::IAnimatedMesh* FirstLoadedMesh;
io::path FirstLoadedMeshName;
s32 LoadedMeshCount;
u32 Version;
bool FlipAxis;
core::array<IColladaPrefab*> Prefabs;
core::array<SColladaParam> ColladaParameters;
core::array<SColladaImage> Images;
core::array<SColladaTexture> Textures;
core::array<SColladaMaterial> Materials;
core::array<SColladaInput> Inputs;
core::array<SColladaEffect> Effects;
//! meshbuffer reference ("geomid/matname") -> index into MeshesToBind
core::map<core::stringc,u32> MaterialsToBind;
//! Array of buffers for each material binding
core::array< core::array<irr::scene::IMeshBuffer*> > MeshesToBind;
bool CreateInstances;
};
//! following class is for holding and createing instances of library objects,
//! named prefabs in this loader.
class IColladaPrefab : public virtual IReferenceCounted
{
public:
//! creates an instance of this prefab
virtual scene::ISceneNode* addInstance(scene::ISceneNode* parent,
scene::ISceneManager* mgr) = 0;
//! returns id of this prefab
virtual const core::stringc& getId() = 0;
};
} // end namespace scene
} // end namespace irr
#endif
| [
"mcodegeeks@gmail.com"
] | mcodegeeks@gmail.com |
a28c2e117bd528283d1badcf76518ee646256862 | cb80a8562d90eb969272a7ff2cf52c1fa7aeb084 | /inletTest10/0.02/phi | 0b900b3289a6a8472d619d6151723a4ed978cca7 | [] | no_license | mahoep/inletCFD | eb516145fad17408f018f51e32aa0604871eaa95 | 0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2 | refs/heads/main | 2023-08-30T22:07:41.314690 | 2021-10-14T19:23:51 | 2021-10-14T19:23:51 | 314,657,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 266,579 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "0.02";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 0 -1 0 0 0 0];
oriented oriented;
internalField nonuniform List<scalar>
21908
(
-3.05336e-05
-0.00194673
0.00192297
5.42572e-05
-0.00182472
0.00179415
6.62858e-06
0.000108858
-2.85741e-05
0.00207396
3.8327e-05
0.00226281
-7.63897e-05
0.00228262
-1.17539e-05
0.0023245
-3.49859e-05
0.0022847
-1.94218e-06
0.00227525
-5.25845e-06
0.00225204
1.1387e-06
0.00224296
-9.29426e-07
0.00223405
-6.91424e-07
0.00222883
-1.21342e-06
0.00222396
-1.35838e-06
0.00221928
-1.5709e-06
0.00221493
-1.86023e-06
0.00221052
-2.01559e-06
0.00220583
-2.15462e-06
0.00220113
-2.28123e-06
0.0021963
-2.39722e-06
0.0021913
-2.50342e-06
0.00218613
-2.60043e-06
0.00218081
-2.68887e-06
0.00217532
-2.76937e-06
0.0021697
-2.84246e-06
0.00216394
-2.90856e-06
0.00215806
-2.96793e-06
0.00215206
-3.02062e-06
0.00214597
-3.06663e-06
0.00213977
-3.10587e-06
0.0021335
-3.1382e-06
0.00212716
-3.16354e-06
0.00212075
-3.18175e-06
0.00211431
-3.19264e-06
0.00210783
-3.19621e-06
0.00210133
-3.19262e-06
0.00209482
-3.18045e-06
0.00208833
-3.15981e-06
0.00208186
-3.13061e-06
0.00207543
-3.09327e-06
0.00206905
-3.04744e-06
0.00206274
-2.99276e-06
0.0020565
-2.9288e-06
0.00205037
-2.8552e-06
0.00204434
-2.77155e-06
0.00203844
-2.67766e-06
0.00203268
-2.57338e-06
0.00202708
-2.45841e-06
0.00202164
-2.33143e-06
0.00201637
-2.08822e-06
0.00201116
-1.01945e-06
0.00200534
-1.81635e-06
0.00200029
-1.55692e-06
0.00199136
-5.21767e-06
0.00197956
-7.84238e-06
0.00196028
-2.93521e-05
0.00192724
-4.50107e-05
0.00188793
-0.000126197
0.00182529
-0.000206504
0.00178315
-0.000482227
0.00178377
-0.00108434
0.00208283
-0.000324417
0.000512683
4.75454e-05
0.00090467
-3.38415e-05
0.00113655
-2.20371e-05
0.00107321
-7.06174e-05
0.000897438
-1.07172e-05
0.000818413
-7.18107e-06
0.000297139
-4.74477e-06
0.000246911
0.000199982
8.57369e-06
0.000191408
1.77898e-05
0.000237695
0.000288583
2.63459e-05
-9.25636e-06
0.000283749
1.40901e-05
-5.03512e-06
0.000233474
0.000186372
2.35968e-06
0.000184013
1.77748e-06
0.000234056
0.000282873
2.65298e-06
-1.69217e-06
0.000284748
-1.8323e-07
-2.09644e-06
0.000234459
0.000181916
1.08076e-06
0.000180835
2.69754e-06
0.000232842
0.000284568
2.87774e-06
-2.50878e-06
0.000284261
2.81481e-06
-2.73706e-06
0.00023307
0.000178097
1.69182e-06
0.000176405
2.41504e-06
0.000232346
0.000283906
2.76885e-06
-2.31407e-06
0.000282505
3.71507e-06
-1.56188e-06
0.000231594
0.000174843
1.4522e-06
0.00017339
2.2181e-06
0.000230827
0.00028204
2.68255e-06
-3.10283e-06
0.000282512
2.62962e-06
-1.36515e-06
0.000229089
0.000172024
1.28026e-06
0.000170743
1.10107e-06
0.000229267
0.000281008
2.60396e-06
-2.95717e-06
0.000281414
2.55083e-06
-1.22141e-06
0.000227531
0.000169521
1.1548e-06
0.000168366
9.83007e-07
0.000227702
0.000279863
2.53343e-06
-2.84057e-06
0.000280219
2.48321e-06
-1.1115e-06
0.000225972
0.000167254
1.06039e-06
0.000166193
8.92859e-07
0.000226139
0.000278635
2.47631e-06
-2.75183e-06
0.00027895
2.43645e-06
-1.02907e-06
0.000224416
0.000165164
9.85618e-07
0.000164178
8.23834e-07
0.000224578
0.000277338
2.43626e-06
-2.68225e-06
0.000277621
2.39864e-06
-9.67078e-07
0.000222863
0.000163211
9.29936e-07
0.000162281
7.73191e-07
0.000223019
0.000275988
2.40668e-06
-2.62745e-06
0.000276241
2.37394e-06
-9.18392e-07
0.000221311
0.000161363
8.86739e-07
0.000160477
7.36907e-07
0.000221461
0.000274589
2.38948e-06
-2.58659e-06
0.000274814
2.36221e-06
-8.81402e-07
0.000219756
0.000159596
8.54113e-07
0.000158742
7.13741e-07
0.000219897
0.000273144
2.38472e-06
-2.55744e-06
0.00027334
2.36226e-06
-8.5374e-07
0.000218194
0.000157889
8.29704e-07
0.00015706
7.01272e-07
0.000218323
0.000271651
2.39069e-06
-2.53789e-06
0.000271817
2.37251e-06
-8.33336e-07
0.000216619
0.000156227
8.11817e-07
0.000155415
6.97768e-07
0.000216733
0.000270109
2.40606e-06
-2.52641e-06
0.000270244
2.39176e-06
-8.18778e-07
0.000215026
0.000154597
7.993e-07
0.000153797
7.0203e-07
0.000215124
0.000268517
2.42993e-06
-2.52202e-06
0.00026862
2.41937e-06
-8.09128e-07
0.000213411
0.000152989
7.91415e-07
0.000152198
7.134e-07
0.00021349
0.000266872
2.46206e-06
-2.52435e-06
0.000266942
2.4554e-06
-8.03875e-07
0.00021177
0.000151394
7.87805e-07
0.000150607
7.31781e-07
0.000211827
0.000265172
2.50283e-06
-2.53343e-06
0.000265206
2.50042e-06
-8.0278e-07
0.000210097
0.000149805
7.8833e-07
0.000149018
7.57315e-07
0.000210129
0.000263412
2.5529e-06
-2.54929e-06
0.000263408
2.55495e-06
-8.05683e-07
0.000208387
0.000148213
7.92704e-07
0.000147422
7.89841e-07
0.000208392
0.000261588
2.61239e-06
-2.57166e-06
0.000261543
2.61896e-06
-8.12276e-07
0.000206634
0.000146612
8.00653e-07
0.000145813
8.2917e-07
0.000206608
0.000259693
2.68132e-06
-2.60034e-06
0.000259604
2.69252e-06
-8.22325e-07
0.000204832
0.000144993
8.12049e-07
0.000144183
8.75352e-07
0.000204772
0.000257722
2.76004e-06
-2.63537e-06
0.000257585
2.77594e-06
-8.35731e-07
0.000202975
0.00014335
8.26795e-07
0.000142525
9.28428e-07
0.000202876
0.000255668
2.84883e-06
-2.67665e-06
0.000255479
2.86934e-06
-8.52369e-07
0.000201055
0.000141676
8.44699e-07
0.000140834
9.88197e-07
0.000200915
0.000253524
2.94746e-06
-2.72397e-06
0.000253279
2.97259e-06
-8.72088e-07
0.000199067
0.000139965
8.65739e-07
0.000139102
1.05476e-06
0.000198881
0.000251282
3.05619e-06
-2.77764e-06
0.000250978
3.0863e-06
-8.94989e-07
0.000197002
0.00013821
8.90127e-07
0.000137323
1.1287e-06
0.000196768
0.000248936
3.176e-06
-2.83827e-06
0.000248567
3.21158e-06
-9.2134e-07
0.000194855
0.000136405
9.18139e-07
0.000135491
1.21071e-06
0.000194567
0.000246475
3.30802e-06
-2.90649e-06
0.000246038
3.34955e-06
-9.51411e-07
0.000192616
0.000134543
9.50032e-07
0.000133597
1.30145e-06
0.000192269
0.000243891
3.45338e-06
-2.9829e-06
0.000243379
3.50137e-06
-9.85463e-07
0.000190277
0.000132616
9.86094e-07
0.000131634
1.40169e-06
0.000189867
0.000241173
3.61331e-06
-3.06823e-06
0.00024058
3.66834e-06
-1.0238e-06
0.000187827
0.000130615
1.02662e-06
0.000129593
1.51218e-06
0.000187348
0.000238309
3.78908e-06
-3.16303e-06
0.000237628
3.85154e-06
-1.06667e-06
0.000185257
0.000128531
1.07174e-06
0.000127465
1.63336e-06
0.000184702
0.000235287
3.98142e-06
-3.26731e-06
0.000234511
4.05115e-06
-1.11403e-06
0.000182555
0.000126356
1.12121e-06
0.000125241
1.76487e-06
0.000181918
0.000232094
4.18985e-06
-3.38027e-06
0.000231216
4.26608e-06
-1.16549e-06
0.00017971
0.000124081
1.17459e-06
0.000122913
1.90589e-06
0.000178986
0.000228717
4.41306e-06
-3.50138e-06
0.000227732
4.49562e-06
-1.22078e-06
0.000176712
0.000121698
1.23189e-06
0.000120472
2.05653e-06
0.000175895
0.000225146
4.65113e-06
-3.63093e-06
0.000224045
4.74032e-06
-1.28006e-06
0.000173552
0.000119198
1.29328e-06
0.000117911
2.21721e-06
0.000172636
0.000221367
4.90471e-06
-3.76901e-06
0.000220145
5.0005e-06
-1.34333e-06
0.000170218
0.000116575
1.35857e-06
0.000115223
2.38776e-06
0.000169197
0.000217369
5.17367e-06
-3.91523e-06
0.000216019
5.27568e-06
-1.41038e-06
0.000166701
0.00011382
1.42765e-06
0.000112399
2.56793e-06
0.000165569
0.00021314
5.45752e-06
-4.06933e-06
0.000211654
5.56546e-06
-1.48116e-06
0.00016299
0.000110926
1.50039e-06
0.000109433
2.75744e-06
0.000161742
0.000208667
5.75567e-06
-4.23037e-06
0.00020704
5.86849e-06
-1.55523e-06
0.000159076
0.000107886
1.57579e-06
0.000106319
2.95435e-06
0.000157708
0.000203941
6.06519e-06
-4.39509e-06
0.000202169
6.17988e-06
-1.63096e-06
0.000154955
0.000104697
1.65185e-06
0.000103055
3.15454e-06
0.000153463
0.000198957
6.37972e-06
-4.55893e-06
0.000197037
6.49249e-06
-1.70624e-06
0.000150622
0.000101358
1.72662e-06
9.96406e-05
3.35371e-06
0.000149006
0.000193711
6.69233e-06
-4.7179e-06
0.000191643
6.79981e-06
-1.77936e-06
0.000146078
9.78705e-05
1.79835e-06
9.60817e-05
3.54784e-06
0.00014434
0.000188207
6.99656e-06
-4.86586e-06
0.000185995
7.09209e-06
-1.84747e-06
0.000141334
9.42442e-05
1.86211e-06
9.23928e-05
3.72663e-06
0.000139482
0.000182461
7.27638e-06
-4.98939e-06
0.000180118
7.34824e-06
-1.90405e-06
0.00013641
9.05001e-05
1.90916e-06
8.86022e-05
3.87135e-06
0.000134461
0.000176504
7.50182e-06
-5.07482e-06
0.000174048
7.54648e-06
-1.94283e-06
0.000131342
8.66699e-05
1.93736e-06
8.47422e-05
3.97613e-06
0.000129315
0.000170374
7.66387e-06
-5.11054e-06
0.000167831
7.66698e-06
-1.95893e-06
0.000126175
8.27922e-05
1.93894e-06
8.08621e-05
4.02353e-06
0.000124101
0.000164133
7.73435e-06
-5.0802e-06
0.000161544
7.68312e-06
-1.9446e-06
0.000120977
7.89269e-05
1.90566e-06
7.70315e-05
3.99546e-06
0.000118899
0.00015787
7.6848e-06
-4.96404e-06
0.000155287
7.56314e-06
-1.89073e-06
0.000115839
7.51514e-05
1.8278e-06
7.33343e-05
3.8701e-06
0.00011381
0.000151691
7.48146e-06
-4.74236e-06
0.000149174
7.27465e-06
-1.78833e-06
0.000110869
7.15565e-05
1.69786e-06
6.98684e-05
3.62969e-06
0.000108949
0.000145723
7.09567e-06
-4.40276e-06
0.000143344
6.79539e-06
-1.63187e-06
0.000106189
6.82458e-05
1.51385e-06
6.67413e-05
3.26762e-06
0.000104447
0.000140111
6.51488e-06
-3.94554e-06
0.000137948
6.12253e-06
-1.42228e-06
0.000101935
6.53283e-05
1.27884e-06
6.40591e-05
2.78886e-06
0.000100437
0.000135006
5.74573e-06
-3.3827e-06
0.000133131
5.27098e-06
-1.16674e-06
9.82323e-05
6.29017e-05
1.00339e-06
6.19074e-05
2.21528e-06
9.70313e-05
0.000130538
4.82129e-06
-2.74381e-06
0.000129013
4.28261e-06
-8.77557e-07
9.51768e-05
6.10397e-05
7.02753e-07
6.03472e-05
1.57159e-06
9.43201e-05
0.000126825
3.77436e-06
-2.0736e-06
0.000125687
3.2254e-06
-5.7731e-07
9.28351e-05
5.97794e-05
4.04769e-07
5.93845e-05
9.18642e-07
9.2333e-05
0.000123918
2.7011e-06
-1.42639e-06
0.000123178
2.18261e-06
-2.92214e-07
9.12123e-05
5.91037e-05
1.30736e-07
5.8984e-05
3.01097e-07
9.10549e-05
0.000121822
1.67264e-06
-8.27419e-07
0.000121451
1.21103e-06
-2.77196e-08
9.02662e-05
5.89655e-05
-1.23302e-07
5.90968e-05
-2.50537e-07
9.04028e-05
0.000120461
7.50844e-07
-3.21615e-07
0.000120422
3.72719e-07
1.95172e-07
8.98958e-05
5.93002e-05
-3.04331e-07
5.96148e-05
-6.88404e-07
9.02919e-05
0.000119761
-1.36995e-08
5.50575e-08
0.000120034
-3.13172e-07
3.38076e-07
9.00216e-05
5.99636e-05
-4.21039e-07
6.03942e-05
-1.0207e-06
9.06326e-05
0.000119657
-6.3024e-07
3.32737e-07
0.000120171
-8.32709e-07
4.34046e-07
9.05428e-05
6.08377e-05
-4.91867e-07
6.13383e-05
-1.24383e-06
9.13054e-05
0.00011999
-1.04988e-06
5.02314e-07
0.000120667
-1.1729e-06
4.86434e-07
9.13263e-05
6.18288e-05
-5.21443e-07
6.23539e-05
-1.36609e-06
9.21756e-05
0.000120606
-1.29918e-06
5.7547e-07
0.000121397
-1.35371e-06
4.98625e-07
9.22631e-05
6.28614e-05
-5.18655e-07
6.33897e-05
-1.40951e-06
9.31654e-05
0.000121419
-1.41819e-06
5.90445e-07
0.000122273
-1.43414e-06
4.89017e-07
9.32762e-05
6.38867e-05
-4.9975e-07
6.43948e-05
-1.412e-06
9.41984e-05
0.000122339
-1.46549e-06
5.73009e-07
0.000123234
-1.45434e-06
4.68138e-07
9.43148e-05
6.48726e-05
-4.73192e-07
6.53508e-05
-1.38789e-06
9.52356e-05
0.000123313
-1.45984e-06
5.26824e-07
0.000124212
-1.42312e-06
4.35415e-07
9.53289e-05
6.57878e-05
-4.36999e-07
6.62291e-05
-1.33802e-06
9.62352e-05
0.000124289
-1.40898e-06
4.60587e-07
0.000125189
-1.35383e-06
3.96494e-07
9.6304e-05
6.66293e-05
-3.97812e-07
6.70304e-05
-1.27593e-06
9.71863e-05
0.000125249
-1.33118e-06
3.84598e-07
0.000126137
-1.26371e-06
3.55659e-07
9.72225e-05
6.73922e-05
-3.58091e-07
6.77593e-05
-1.20971e-06
9.80852e-05
0.000126182
-1.2406e-06
3.16636e-07
0.000127053
-1.17848e-06
3.20895e-07
9.80882e-05
6.80859e-05
-3.26017e-07
6.84084e-05
-1.15242e-06
9.8911e-05
0.000127056
-1.15908e-06
2.49107e-07
0.000127902
-1.09083e-06
2.86635e-07
9.88764e-05
6.86973e-05
-2.91358e-07
6.89931e-05
-1.08959e-06
9.968e-05
0.000127888
-1.06854e-06
1.85981e-07
0.000128709
-1.00682e-06
2.56118e-07
9.96096e-05
6.92491e-05
-2.6244e-07
6.95114e-05
-1.0352e-06
0.000100382
0.000128662
-9.87762e-07
1.24287e-07
0.000129467
-9.2254e-07
2.25808e-07
0.000100287
6.9743e-05
-2.31561e-07
6.99825e-05
-9.74093e-07
0.000101039
0.000129398
-8.95959e-07
6.80006e-08
0.000130176
-8.43139e-07
2.00148e-07
0.000100909
7.0185e-05
-2.10814e-07
7.03986e-05
-9.36799e-07
0.000101639
0.000130083
-8.37958e-07
2.57819e-08
0.000130833
-7.84558e-07
1.81086e-07
0.000101475
7.05725e-05
-1.83904e-07
7.07461e-05
-8.81234e-07
0.000102159
0.000130687
-7.51488e-07
-4.77271e-08
0.000131414
-6.7614e-07
1.46557e-07
0.00010197
7.08981e-05
-1.53139e-07
7.10838e-05
-8.20908e-07
0.000102675
0.000131282
-6.46806e-07
-9.4923e-08
0.000131535
-1.39954e-07
1.33798e-07
0.000102461
7.12299e-05
-1.52799e-07
7.1358e-05
-3.76438e-07
0.000102657
0.000131776
-6.47368e-07
-1.11435e-07
0.000131985
-1.30487e-07
1.24078e-07
0.000102389
7.14549e-05
-1.70883e-07
7.16263e-05
-8.39763e-07
0.000103058
0.000132774
-1.62793e-06
3.54266e-06
0.000135165
-5.9194e-06
1.43105e-06
0.000105185
7.30711e-05
-3.087e-06
7.61725e-05
-6.70183e-06
0.000108813
0.000140005
-1.1533e-05
4.0507e-06
-6.82332e-06
1.46789e-06
-3.13125e-05
-0.00040445
-7.25072e-06
-0.000452097
-1.59669e-05
-0.000517331
6.30352e-06
-0.000529907
-2.77371e-06
-0.000554225
3.33422e-06
-0.000558231
-1.81974e-06
-0.000564324
-1.19191e-06
-0.000566729
-1.84601e-06
-0.000570543
-1.77313e-06
-0.000573767
-1.8287e-06
-0.000577227
-1.74289e-06
-0.000581032
-5.9042e-07
-0.000582672
7.0701e-07
-0.000583373
3.6992e-06
-0.000579684
9.19972e-06
-0.000575403
2.18034e-05
-0.000562066
3.99167e-05
-0.00055249
9.44108e-05
-0.000545257
0.000178552
-0.00055165
0.000106912
-0.000323521
5.15111e-05
-0.000317412
4.22981e-05
-0.000280277
1.39655e-05
-0.000244578
8.08341e-06
-8.27408e-05
3.43191e-06
-6.34413e-05
-4.0505e-05
-4.24318e-06
-3.58911e-05
-1.1538e-05
-5.66279e-05
-7.50848e-05
-1.9099e-05
9.51464e-06
-6.78864e-05
-1.58034e-05
3.36201e-06
-5.20107e-05
-3.17638e-05
-3.43913e-06
-2.90861e-05
-6.31392e-06
-4.79406e-05
-6.36375e-05
-1.10379e-05
1.17511e-06
-6.29515e-05
-2.13207e-06
8.88336e-07
-4.72425e-05
-2.83723e-05
-4.01602e-07
-2.77976e-05
-2.28246e-06
-4.56472e-05
-6.17016e-05
-3.39851e-06
-1.00513e-06
-6.17659e-05
1.10964e-06
-6.59481e-08
-4.66374e-05
-2.78448e-05
-5.21773e-07
-2.74588e-05
-1.3422e-06
-4.5587e-05
-6.11796e-05
-2.04581e-06
-1.0059e-06
-6.18418e-05
1.79473e-06
-6.31113e-07
-4.6204e-05
-2.79679e-05
-2.45063e-07
-2.76125e-05
-9.19346e-07
-4.57244e-05
-6.1287e-05
-1.3809e-06
-1.27423e-06
-6.19798e-05
1.82803e-06
-3.89902e-07
-4.63593e-05
-2.81349e-05
-4.56291e-07
-2.77901e-05
-7.45707e-07
-4.58798e-05
-6.14432e-05
-1.37922e-06
-1.05147e-06
-6.21292e-05
1.89987e-06
-6.59387e-07
-4.65429e-05
-2.83136e-05
-4.376e-07
-2.7975e-05
-7.47523e-07
-4.60565e-05
-6.15968e-05
-1.36277e-06
-1.0887e-06
-6.2291e-05
1.91227e-06
-6.55946e-07
-4.67189e-05
-2.85081e-05
-2.49319e-07
-2.81655e-05
-8.66475e-07
-4.62568e-05
-6.17532e-05
-1.31983e-06
-1.34183e-06
-6.24658e-05
1.88664e-06
-4.02431e-07
-4.6905e-05
-2.87106e-05
-2.2898e-07
-2.837e-05
-8.73457e-07
-4.64484e-05
-6.19281e-05
-1.31511e-06
-1.33316e-06
-6.26431e-05
1.9095e-06
-4.22352e-07
-4.71099e-05
-2.89203e-05
-4.26941e-07
-2.85879e-05
-7.37421e-07
-4.6649e-05
-6.21184e-05
-1.33347e-06
-1.23181e-06
-6.28349e-05
1.92624e-06
-5.82236e-07
-4.7321e-05
-2.91426e-05
-1.80675e-07
-2.88086e-05
-8.94548e-07
-4.68679e-05
-6.23065e-05
-1.3031e-06
-1.33664e-06
-6.30298e-05
1.93727e-06
-4.49246e-07
-4.754e-05
-2.9373e-05
-4.28556e-07
-2.90452e-05
-7.23018e-07
-4.70798e-05
-6.25104e-05
-1.32091e-06
-1.21827e-06
-6.32243e-05
1.97033e-06
-5.98993e-07
-4.77628e-05
-2.96079e-05
-3.90007e-07
-2.92786e-05
-7.50917e-07
-4.73072e-05
-6.27007e-05
-1.29492e-06
-1.40712e-06
-6.34291e-05
1.96231e-06
-4.23098e-07
-4.7981e-05
-2.98499e-05
-2.21416e-07
-2.95171e-05
-8.44836e-07
-4.7535e-05
-6.29019e-05
-1.27403e-06
-1.40413e-06
-6.36306e-05
1.98305e-06
-4.38262e-07
-4.82138e-05
-3.00976e-05
-4.25731e-07
-2.97755e-05
-6.96404e-07
-4.7757e-05
-6.31225e-05
-1.29591e-06
-1.14471e-06
-6.38475e-05
2.04664e-06
-7.29076e-07
-4.84677e-05
-3.03575e-05
-4.12605e-07
-3.00407e-05
-7.07827e-07
-4.80058e-05
-6.3346e-05
-1.29396e-06
-1.1664e-06
-6.408e-05
2.04646e-06
-7.31523e-07
-4.87159e-05
-3.06331e-05
-2.29699e-07
-3.03153e-05
-8.2917e-07
-4.82768e-05
-6.35758e-05
-1.25677e-06
-1.43036e-06
-6.43276e-05
2.03224e-06
-4.66283e-07
-4.89812e-05
-3.09193e-05
-3.9633e-07
-3.06033e-05
-7.13185e-07
-4.85428e-05
-6.38263e-05
-1.26304e-06
-1.41904e-06
-6.4579e-05
2.05789e-06
-4.94137e-07
-4.92529e-05
-3.12137e-05
-1.98411e-07
-3.08944e-05
-8.1979e-07
-4.88252e-05
-6.40752e-05
-1.2261e-06
-1.49074e-06
-6.48401e-05
2.07925e-06
-4.7068e-07
-4.95352e-05
-3.15154e-05
-2.12327e-07
-3.12019e-05
-8.05271e-07
-4.91101e-05
-6.43432e-05
-1.21254e-06
-1.48574e-06
-6.51119e-05
2.11385e-06
-4.91635e-07
-4.98371e-05
-3.18311e-05
-4.15395e-07
-3.15295e-05
-6.44263e-07
-4.94095e-05
-6.46393e-05
-1.21517e-06
-1.26375e-06
-6.54137e-05
2.18951e-06
-7.76739e-07
-5.01671e-05
-3.21661e-05
-2.2843e-07
-3.18694e-05
-7.51295e-07
-4.97503e-05
-6.4947e-05
-1.16755e-06
-1.42003e-06
-6.57348e-05
2.20951e-06
-6.15413e-07
-5.05114e-05
-3.25227e-05
-3.82388e-07
-3.22382e-05
-6.24831e-07
-5.00997e-05
-6.52847e-05
-1.15427e-06
-1.32358e-06
-6.60856e-05
2.28071e-06
-8.08605e-07
-5.08892e-05
-3.29037e-05
-2.27135e-07
-3.26304e-05
-6.8613e-07
-5.04945e-05
-6.5647e-05
-1.09617e-06
-1.43171e-06
-6.64732e-05
2.32785e-06
-8.24285e-07
-5.1298e-05
-3.33184e-05
-1.54838e-07
-3.30623e-05
-6.87313e-07
-5.09376e-05
-6.60489e-05
-1.0181e-06
-1.71721e-06
-6.69104e-05
2.38234e-06
-5.57486e-07
-5.17579e-05
-3.37885e-05
-1.58179e-07
-3.35594e-05
-6.13539e-07
-5.14322e-05
-6.65098e-05
-9.41594e-07
-1.80912e-06
-6.74013e-05
2.50547e-06
-5.87794e-07
-5.2296e-05
-3.43312e-05
-2.43541e-07
-3.41577e-05
-4.13888e-07
-5.19957e-05
-6.70512e-05
-8.35333e-07
-1.60281e-06
-6.7976e-05
2.73891e-06
-1.02749e-06
-5.29406e-05
-3.49967e-05
-7.77033e-08
-3.49109e-05
-3.25059e-07
-5.26874e-05
-6.76762e-05
-6.3621e-07
-1.79835e-06
-6.86785e-05
3.02201e-06
-1.15065e-06
-5.37228e-05
-3.58625e-05
8.91552e-08
-3.59495e-05
-3.35125e-08
-5.35952e-05
-6.78881e-05
-8.22589e-07
-2.13919e-06
-6.95293e-05
3.80841e-06
-1.07692e-06
-5.46972e-05
-3.70051e-05
1.84576e-07
-3.7188e-05
9.92707e-08
-5.46113e-05
-6.87551e-05
-6.72062e-07
-2.67657e-06
-6.9728e-05
3.64011e-06
-1.03382e-06
-5.62292e-05
-3.82345e-05
9.226e-08
-3.83083e-05
-2.0865e-07
-5.59453e-05
-6.99861e-05
5.28753e-08
-2.00368e-06
-7.18318e-05
3.84954e-06
-1.27518e-06
-5.66676e-05
-3.95848e-05
2.69167e-07
-3.98521e-05
3.1024e-07
-5.67069e-05
-7.11871e-05
-3.31992e-07
-3.15004e-06
-7.23451e-05
4.31421e-06
-1.31567e-06
-5.85462e-05
-4.11617e-05
8.34575e-08
-4.12433e-05
-5.73586e-09
-5.84538e-05
-7.33329e-05
9.84828e-07
-2.72837e-06
-7.45181e-05
3.92356e-06
-1.47455e-06
-5.97171e-05
-4.271e-05
3.27489e-07
-4.30323e-05
9.14409e-07
-6.02846e-05
-7.4925e-05
1.29256e-06
-2.9649e-06
-7.63827e-05
4.71489e-06
-2.02974e-06
-6.18523e-05
-4.46778e-05
7.05436e-07
-4.54284e-05
1.22621e-06
-6.231e-05
-7.72442e-05
2.07687e-06
-3.22157e-06
-7.88642e-05
4.8382e-06
-1.50087e-06
-6.40264e-05
-4.69278e-05
1.35662e-06
-4.82833e-05
1.73774e-06
-6.4406e-05
-7.96252e-05
2.50065e-06
-3.35049e-06
-8.09835e-05
4.71063e-06
-1.26722e-06
-6.64876e-05
-4.95492e-05
1.49316e-06
-5.10406e-05
1.84766e-06
-6.68404e-05
-8.22989e-05
3.16538e-06
-4.37988e-06
-0.000157879
7.99632e-05
-2.16844e-06
-6.90499e-05
-5.32074e-05
2.16638e-06
-5.5372e-05
6.18668e-05
-0.000128747
-0.000121502
2.54934e-05
-3.34402e-05
-0.000119808
3.175e-05
-5.12829e-05
-0.000110901
-0.000106652
6.94896e-06
-0.000113598
2.12621e-05
-0.00012521
-0.000154142
5.56019e-05
2.7279e-05
-9.66476e-05
-8.477e-05
7.58377e-06
-0.000105511
-0.00010601
6.08519e-06
-0.000112091
1.16238e-05
-0.000111046
-0.000121023
3.60022e-05
-2.37166e-05
-0.000127662
3.03615e-05
-1.31948e-05
-0.000121563
-0.00012528
1.11526e-05
-0.000136425
1.7781e-05
-0.000128184
-0.000132643
2.27688e-05
-1.32536e-05
-0.000135638
1.62564e-05
-8.83934e-06
-0.00013259
-0.000145256
8.10828e-06
-0.000153356
1.10266e-05
-0.0001355
-0.000138123
1.35193e-05
-8.91193e-06
-0.000138755
9.55177e-06
-7.22352e-06
-0.000137181
-0.000160571
4.96512e-06
-0.000165528
7.41091e-06
-0.000139618
-0.000139325
7.98836e-06
7.23561e-06
-0.000148052
1.4999e-06
1.79759e-06
-0.000134173
-0.000163723
-1.04028e-05
-0.000153314
-3.21274e-05
-0.000112443
-9.21165e-05
-8.80586e-05
2.94239e-06
-0.000113222
1.8166e-05
1.87031e-06
-0.000111367
-0.000151438
1.39874e-06
-0.000152832
1.77664e-07
-0.000110142
-0.000115577
2.53616e-06
1.09074e-05
-0.000105977
-2.05036e-05
4.00772e-06
-0.000103239
-0.000148819
-1.26679e-05
-0.00013615
-2.9706e-05
-8.61973e-05
-8.45752e-05
-5.11031e-05
3.95602e-05
-5.03856e-05
-7.37481e-05
1.7891e-05
-6.45278e-05
-0.000118254
-1.33797e-05
-0.000104865
-2.12144e-05
-5.66919e-05
-5.98261e-05
-1.1774e-05
1.95955e-05
-3.8089e-05
-4.13322e-05
9.73432e-06
-4.68281e-05
-9.51384e-05
-5.785e-06
-8.93501e-05
-6.87752e-06
-4.57367e-05
-4.70763e-05
2.1106e-06
6.35286e-06
-4.58296e-05
-7.59905e-06
4.11228e-06
-4.34967e-05
-8.52342e-05
-7.27022e-06
-7.79641e-05
-1.08638e-05
-3.99031e-05
-4.14677e-05
-1.52255e-05
1.96969e-05
-3.21777e-05
-2.8987e-05
1.22837e-05
-3.24902e-05
-6.56797e-05
-1.62766e-05
-4.9403e-05
-2.49548e-05
-2.38123e-05
-1.97758e-05
-3.73568e-05
1.93528e-05
-2.66639e-05
-1.24647e-05
1.76004e-05
-2.20604e-05
-3.18028e-05
-2.39172e-05
-7.88558e-06
-2.82263e-05
-1.77517e-05
-2.37209e-05
-3.11694e-05
4.50598e-05
-2.43137e-06
-6.63498e-05
3.46999e-05
-7.39212e-06
2.68133e-05
-4.41531e-05
7.09663e-05
-5.04488e-05
-1.09669e-06
-3.15983e-06
-4.97204e-05
5.36723e-05
-1.38109e-05
-4.30213e-05
5.34775e-05
-9.01974e-07
0.000124443
-6.98759e-05
0.000194319
-7.95575e-05
8.77954e-06
1.41133e-05
-0.000107482
8.18283e-05
4.31479e-06
-7.20298e-05
8.10446e-05
9.56332e-06
0.000275363
-9.39978e-05
0.00036936
-9.00027e-05
5.56831e-06
-1.48339e-05
-7.08539e-05
0.000144742
1.9862e-05
-0.000179438
0.00012152
2.87909e-05
0.00049088
-0.000132992
0.000623874
-0.000162658
5.84573e-05
6.6468e-05
-0.000209264
0.0001239
7.16108e-05
-0.000129043
0.000115908
6.64499e-05
0.000739784
-9.07927e-05
0.00083058
-9.91347e-05
7.47926e-05
8.02929e-05
-0.000107816
7.91363e-05
9.58232e-05
-9.46657e-05
5.96189e-05
9.43108e-05
0.000890204
-1.91832e-05
0.000909394
-4.21063e-05
0.000117235
0.000139588
-8.58686e-05
-2.66281e-05
9.70158e-05
6.92017e-05
-2.47192e-05
0.000115328
0.000884683
4.20221e-05
0.000842669
2.11765e-05
0.000136176
0.000158678
-4.0483e-05
-5.3739e-05
0.000117071
9.53484e-05
-5.9022e-05
0.000141461
0.000783656
6.24363e-05
0.000721228
3.86908e-05
0.000165209
0.000194954
-3.91885e-05
-9.14566e-05
0.000148053
0.000138364
-7.9627e-05
0.000153383
0.000641611
7.00173e-05
0.000571604
7.31047e-05
0.000150299
0.000127565
9.35949e-05
-3.7375e-05
0.000213973
-4.90297e-05
-5.75094e-05
0.000170436
0.000514103
6.22353e-05
0.000451877
7.50149e-05
0.00015766
0.000153793
0.0001352
-5.14692e-05
0.00013161
7.36551e-05
-4.76564e-05
0.00015385
0.000404229
3.44076e-05
0.000369829
1.09094e-05
0.000177351
0.000224405
-8.18827e-05
-4.40969e-05
0.000178878
8.96269e-05
-3.60618e-05
0.000169318
0.000333772
2.89098e-05
0.000304866
3.30631e-05
0.000165166
0.000146165
6.57784e-05
2.31901e-06
0.000243211
-9.93642e-05
-1.86159e-05
0.000186102
0.000286252
2.04017e-05
0.00026585
2.79002e-05
0.000178604
0.000185645
8.54675e-05
-8.85287e-06
0.000155807
3.86907e-05
-1.17269e-05
0.000181478
0.000254122
3.62009e-07
0.000253756
-3.45282e-05
0.000216367
0.000272677
-0.000151398
1.48272e-05
0.000210594
4.72543e-05
1.21011e-06
0.000229982
0.000254959
-6.83115e-07
0.000255634
-3.78046e-05
0.000267098
0.000346021
-0.000173237
-2.57526e-05
0.000284822
8.6941e-05
-1.44769e-05
0.000255816
0.000241149
2.48197e-05
0.000216323
5.3024e-05
0.000227604
0.000246023
9.18151e-05
-3.1097e-05
0.000195108
8.20062e-05
-1.75476e-05
0.00021405
0.000198767
-5.60577e-07
0.000199214
-2.79542e-05
0.000241551
0.000313032
-0.000145886
-2.51475e-05
0.000253626
8.45415e-05
-1.00063e-05
0.000226381
0.000189222
1.06741e-05
0.00017855
2.78116e-05
0.000209238
0.000196097
8.53354e-05
3.25067e-05
0.000307299
-0.000143711
4.50427e-06
0.00023724
0.000183053
1.10747e-05
0.00017198
3.15627e-05
0.000216757
0.000243742
9.51239e-05
-5.7006e-05
0.000214128
8.66269e-05
-2.42237e-05
0.000183982
0.000147762
1.43964e-05
0.000133377
3.16993e-05
0.00016669
0.00016687
7.89656e-05
2.67979e-05
0.000274441
-0.000134351
3.28888e-06
0.000190219
0.000136684
1.83685e-05
0.000118333
5.91735e-05
0.000149435
0.000206319
0.000127327
-5.42396e-05
0.000165862
9.47088e-05
-7.47105e-05
0.000169923
4.3631e-05
-3.98832e-05
8.35307e-05
1.88874e-05
0.000111159
0.00031487
-0.000130121
-2.95206e-05
0.00012965
0.000214885
-1.30087e-05
9.45394e-05
7.05212e-05
1.55642e-05
5.48289e-05
3.80508e-05
7.33754e-05
9.95238e-05
6.69466e-05
-4.19035e-05
7.01224e-05
6.47904e-05
-5.99737e-06
5.34446e-05
3.85459e-05
-3.62174e-05
7.82552e-05
-9.41128e-05
0.000106165
0.000135546
-0.000157711
-3.63396e-05
0.000108396
6.39421e-05
-1.59934e-05
8.49295e-05
6.25064e-05
1.92849e-05
4.48361e-05
4.08821e-05
6.09845e-05
7.77947e-05
7.24105e-05
0.000101299
0.000149316
-0.000172938
4.36015e-05
0.000118783
8.84108e-05
1.3072e-05
7.5341e-05
3.05983e-05
0.000101229
0.000127981
5.19457e-05
-3.90677e-05
9.96744e-05
6.72235e-05
-1.63814e-05
7.86598e-05
5.89901e-05
1.59811e-05
4.20326e-05
4.00414e-05
5.60283e-05
7.10574e-05
6.80575e-05
9.26076e-05
0.000136836
-0.000159281
4.20482e-05
0.000109557
8.19667e-05
1.69122e-05
6.51142e-05
3.97977e-05
8.67183e-05
0.000108882
6.77e-05
-4.51393e-05
7.67991e-05
7.73109e-05
-1.89609e-05
6.08315e-05
4.5734e-05
-4.32435e-05
8.72528e-05
-9.54856e-05
0.000115402
0.000143785
-0.000163098
-4.43912e-05
0.000112319
7.55796e-05
-1.85796e-05
9.01262e-05
6.84901e-05
1.96085e-05
4.82862e-05
4.7123e-05
6.34312e-05
7.99672e-05
7.9228e-05
0.000100033
0.000148769
-0.000168736
4.3509e-05
0.000119806
9.18872e-05
1.91953e-05
7.26685e-05
4.45981e-05
9.44735e-05
0.0001175
7.58461e-05
-4.82064e-05
8.44613e-05
8.12695e-05
-2.11968e-05
6.74392e-05
5.1493e-05
-4.62688e-05
9.77863e-05
-0.000106167
0.000127331
0.000158257
-0.000179937
-3.47298e-05
0.000134035
5.90323e-05
-1.48817e-05
0.000107331
8.29339e-05
1.84562e-05
6.42171e-05
4.49813e-05
8.28237e-05
0.000103202
7.38117e-05
-5.01168e-05
7.29474e-05
7.33495e-05
-7.34441e-06
5.91046e-05
4.4226e-05
-3.83471e-05
8.53968e-05
-9.58299e-05
0.000111941
0.000138212
-0.000159143
-4.09159e-05
0.000109332
7.00172e-05
-1.81324e-05
8.85227e-05
6.7495e-05
2.24844e-05
4.69636e-05
4.63775e-05
6.18474e-05
7.70109e-05
7.97103e-05
9.6763e-05
0.000142935
-0.000161509
3.93731e-05
0.000115278
8.91482e-05
2.0751e-05
6.85214e-05
4.58827e-05
8.96713e-05
0.000111256
7.77609e-05
-4.82844e-05
7.74767e-05
8.12775e-05
-2.07152e-05
6.27727e-05
4.78961e-05
-3.81239e-05
9.04249e-05
-9.76066e-05
0.00011615
0.000143079
-0.000161372
-4.44129e-05
0.000112144
7.60156e-05
-2.05806e-05
9.07198e-05
7.05161e-05
2.2153e-05
4.88005e-05
4.93022e-05
6.32419e-05
7.89459e-05
8.23932e-05
9.78372e-05
0.000145226
-0.000163173
4.02688e-05
0.00011803
9.09507e-05
2.02533e-05
7.03525e-05
4.74548e-05
9.12256e-05
0.00011259
7.98198e-05
-4.94583e-05
7.84299e-05
8.37859e-05
-2.29248e-05
6.3265e-05
4.88084e-05
-3.76446e-05
9.09093e-05
-9.74529e-05
0.000116812
0.000143519
-0.000160603
-4.7536e-05
0.000111163
8.05456e-05
-2.25129e-05
8.98268e-05
6.94266e-05
2.22264e-05
4.66087e-05
5.28184e-05
6.0671e-05
7.56671e-05
8.73937e-05
8.58289e-05
0.000133686
-0.000144403
3.84832e-05
0.000108928
8.46927e-05
2.67805e-05
5.95775e-05
5.57933e-05
7.71793e-05
9.47802e-05
9.58778e-05
0.000107489
0.00016817
-0.000180971
4.76187e-05
0.000137154
0.000107183
2.57626e-05
8.16059e-05
5.75069e-05
0.000105039
0.000128875
9.70185e-05
-5.67581e-05
9.01163e-05
9.58873e-05
-2.58389e-05
7.30929e-05
5.64998e-05
-4.74788e-05
0.000104425
-0.000108081
0.00013311
0.000163914
-0.000181706
-5.38311e-05
0.000127088
9.07876e-05
-2.40283e-05
0.00010304
8.04924e-05
2.50813e-05
5.58446e-05
5.54733e-05
7.20282e-05
8.86293e-05
9.41658e-05
0.000108112
0.000162417
-0.000181678
4.74161e-05
0.000131981
0.000103775
2.38236e-05
8.00236e-05
5.29825e-05
0.00010272
0.000126283
8.91274e-05
-5.66831e-05
8.7759e-05
9.50631e-05
-2.42505e-05
7.06729e-05
5.55016e-05
-4.68986e-05
0.000101905
-0.000105276
0.000129749
0.000159285
-0.000177044
-5.56517e-05
0.000121661
9.31782e-05
-2.42646e-05
9.86392e-05
7.74728e-05
2.59737e-05
5.18162e-05
5.76655e-05
6.63788e-05
8.1601e-05
9.80148e-05
9.16291e-05
0.000144325
-0.000154208
4.0676e-05
0.000117377
9.23333e-05
2.68111e-05
6.44743e-05
6.3697e-05
8.21547e-05
0.000101737
0.000105555
0.000112777
0.000177534
-0.000188566
4.96064e-05
0.000145362
0.000114046
2.83564e-05
8.56608e-05
6.48474e-05
0.000108988
0.000133867
0.00010843
-6.0679e-05
9.21501e-05
0.000102341
-2.63001e-05
7.50967e-05
5.88878e-05
-4.92023e-05
0.000106509
-0.000107809
0.000135913
0.000165695
-0.000182055
-5.7942e-05
0.000126716
9.6746e-05
-2.5042e-05
0.000103547
8.12054e-05
2.71278e-05
5.41433e-05
6.05307e-05
6.98278e-05
8.56107e-05
0.000101914
9.53943e-05
0.000150656
-0.000160274
4.2424e-05
0.000122846
9.64108e-05
2.76392e-05
6.78162e-05
6.58e-05
8.6264e-05
0.000106245
0.000109512
0.000118194
0.000186255
-0.000198167
5.20257e-05
0.000152473
0.000119827
2.9145e-05
9.05939e-05
6.63513e-05
0.000115417
0.000141215
0.000111332
-6.41483e-05
9.71493e-05
0.000108232
-2.80404e-05
7.9402e-05
6.24477e-05
-5.05032e-05
0.000112478
-0.000113711
0.000143289
0.000174678
-0.000191451
-6.24576e-05
0.0001326
0.000104653
-2.76628e-05
0.000108408
8.48517e-05
2.85834e-05
5.65139e-05
6.4265e-05
7.23597e-05
8.91129e-05
0.000107891
9.90579e-05
0.000155674
-0.000165468
4.38315e-05
0.000127176
0.000100628
3.01986e-05
7.00993e-05
6.89922e-05
8.89042e-05
0.000108945
0.000115493
0.000120295
0.000190391
-0.000201728
5.28675e-05
0.000156292
0.000122995
3.14892e-05
9.144e-05
7.18878e-05
0.000115976
0.000142194
0.000120054
-6.93504e-05
9.50477e-05
0.000116663
-3.10293e-05
7.73101e-05
6.06086e-05
-4.62699e-05
0.000106718
-0.000103592
0.000134859
0.000163914
-0.000172536
-7.29135e-05
0.000115624
0.000121215
-3.23697e-05
9.4297e-05
7.43411e-05
-5.64472e-05
0.000130687
-0.000126761
0.000164732
0.000200597
-0.000211772
-7.42097e-05
0.00015131
0.00012349
-3.30205e-05
0.000123508
9.76862e-05
3.08689e-05
6.68156e-05
6.93459e-05
8.50287e-05
0.000103759
0.000116886
0.000121334
0.000186351
-0.000203946
5.41932e-05
0.000152202
0.00012098
2.97547e-05
9.12233e-05
6.59173e-05
0.000116038
0.000141757
0.000110504
-6.91502e-05
9.49063e-05
0.000115989
-2.99175e-05
7.68384e-05
6.12795e-05
-4.53516e-05
0.000106614
-0.000103538
0.000135048
0.000164143
-0.000172777
-7.44064e-05
0.000114123
0.000124419
-3.27636e-05
9.34266e-05
7.38423e-05
-5.43469e-05
0.000128176
-0.000122781
0.000161883
0.000197882
-0.000206543
-7.53349e-05
0.000146502
0.000126724
-3.34795e-05
0.000120029
9.47046e-05
3.20118e-05
6.26929e-05
7.21973e-05
7.98518e-05
9.8018e-05
0.000120682
0.000106569
0.000169792
-0.000178341
4.68339e-05
0.0001396
0.000109523
3.30331e-05
7.64849e-05
7.53254e-05
9.73235e-05
0.00011866
0.000126456
0.000129795
0.000205458
-0.000216589
5.74706e-05
0.00016965
0.000133959
3.45488e-05
9.94112e-05
7.86275e-05
0.000125577
0.000153468
0.000130619
-7.54014e-05
0.00010192
0.000126946
-3.37256e-05
8.39176e-05
6.56753e-05
-4.89732e-05
0.000114641
-0.000108872
0.000143826
0.000175385
-0.000182338
-7.92289e-05
0.000121451
0.00013316
-3.56412e-05
0.000100244
7.89956e-05
-5.72856e-05
0.00013628
-0.000130273
0.000173232
0.000209652
-0.000218475
-8.09088e-05
0.000155753
0.000134804
-3.52151e-05
0.000127536
0.000101062
3.35871e-05
6.74769e-05
7.63209e-05
8.47957e-05
0.000103724
0.000128351
0.00011237
0.000179029
-0.000187677
4.92939e-05
0.000147865
0.000116771
3.54311e-05
8.13421e-05
8.02047e-05
0.00010308
0.000125371
0.000133864
0.000136056
0.00021734
-0.000228029
6.07395e-05
0.000178396
0.000142077
3.69601e-05
0.000105116
8.30486e-05
0.000132309
0.000161164
0.000139214
-8.00031e-05
0.000107387
0.000133735
-3.55009e-05
8.79135e-05
6.95428e-05
-5.05981e-05
0.000120139
-0.00011474
0.000152047
0.000184282
-0.000191631
-8.40259e-05
0.000128581
0.000139711
-3.70886e-05
0.000105139
8.30324e-05
-6.09352e-05
0.000143982
-0.000137279
0.000181462
0.000220134
-0.000228828
-8.50304e-05
0.00016269
0.000142474
-3.7508e-05
0.000133945
0.000106469
3.57345e-05
7.07383e-05
8.08724e-05
8.88024e-05
0.000109103
0.000134463
0.000117121
0.000187838
-0.000195854
5.14461e-05
0.000154474
0.000122189
3.64982e-05
8.56932e-05
8.32266e-05
0.000107744
0.000130985
0.000140082
0.00014184
0.000227591
-0.000238447
6.266e-05
0.000186924
0.000148354
3.81729e-05
0.000110182
8.73428e-05
0.000137756
0.000169564
0.000145371
-8.32232e-05
0.000112149
0.000140638
-3.73917e-05
9.19261e-05
7.27907e-05
-5.2915e-05
0.000125708
-0.000119734
0.000158742
0.000192238
-0.000199822
-8.75389e-05
0.000133367
0.00014641
-3.83267e-05
0.00010953
8.73815e-05
-6.28582e-05
0.00015024
-0.000142623
0.000189294
0.000230152
-0.000239408
-8.88577e-05
0.000170195
0.000148813
-3.91947e-05
0.000139631
0.000111045
3.78917e-05
7.31499e-05
8.43701e-05
9.3156e-05
0.000113783
0.00014078
0.000122428
0.000195585
-0.000204232
5.47485e-05
0.000160838
0.000127895
3.90412e-05
8.88529e-05
8.76791e-05
0.000112199
0.000136465
0.000146798
0.00014825
0.000236839
-0.000248624
6.64693e-05
0.000193979
0.000155321
4.10521e-05
0.000114267
9.06728e-05
0.000144357
0.000175657
0.000151851
-8.72283e-05
0.000116729
0.000146154
-3.8416e-05
9.55477e-05
7.58463e-05
-5.4976e-05
0.00013082
-0.000124451
0.000165023
0.000199865
-0.000207589
-9.16154e-05
0.00013859
0.000152889
-4.06216e-05
0.000114029
9.01965e-05
-6.60051e-05
0.000156201
-0.000147969
0.000195991
0.000239081
-0.000248461
-9.23889e-05
0.000176916
0.000154552
-4.07095e-05
0.00014431
0.00011549
3.88214e-05
7.66693e-05
8.71421e-05
9.59877e-05
0.00011802
0.000146038
0.000126803
0.000203036
-0.000211819
5.56116e-05
0.000167177
0.000132282
4.00156e-05
9.22671e-05
9.13682e-05
0.000115822
0.000141607
0.000152797
0.000154484
0.000244953
-0.000257831
6.81543e-05
0.000202151
0.000160422
4.17261e-05
0.000118696
9.46111e-05
0.000149265
0.000181699
0.000157868
-9.0697e-05
0.000121067
0.00015133
-4.00022e-05
9.85687e-05
7.86964e-05
-5.6717e-05
0.000135415
-0.000129126
0.000170977
0.00020758
-0.000215639
-9.43971e-05
0.000144003
0.000157975
-4.17243e-05
0.000118303
9.36921e-05
-6.87535e-05
0.000162446
-0.000154013
0.000203562
0.000247429
-0.00025744
-9.59939e-05
0.000183256
0.000160165
-4.28579e-05
0.00015043
0.000119588
3.98432e-05
7.97134e-05
9.05639e-05
9.97598e-05
0.000121905
0.000151894
0.000131487
0.000210374
-0.00021996
5.8216e-05
0.000173058
0.000137906
4.19705e-05
9.591e-05
9.47461e-05
0.000120326
0.00014723
0.00015787
0.000160115
0.000254858
-0.000267739
7.06693e-05
0.000209767
0.000166581
4.29238e-05
0.000123653
9.81418e-05
0.000154552
0.000189222
0.000163774
-9.3613e-05
0.000125236
0.000157598
-4.24113e-05
0.000103353
8.12398e-05
-6.0457e-05
0.000141696
-0.00013401
0.000176905
0.000216115
-0.000224889
-9.82732e-05
0.000148919
0.000165468
-4.46778e-05
0.000123309
9.70175e-05
-7.12166e-05
0.000168234
-0.000159709
0.000211801
0.000256775
-0.000267566
-9.967e-05
0.0001901
0.000166343
-4.45565e-05
0.000156686
0.000123676
4.12911e-05
8.23827e-05
9.39676e-05
0.00010401
0.000127043
0.000157022
0.000137977
0.000218287
-0.000229222
6.0922e-05
0.000181065
0.000143302
4.3233e-05
0.000100068
9.88282e-05
0.000125469
0.000153436
0.000163678
0.000167565
0.000264725
-0.000278854
7.4362e-05
0.00021867
0.000174429
4.50868e-05
0.000129341
0.000102352
0.000161404
0.000196791
0.000170283
-9.79088e-05
0.00013075
0.000163949
-4.36089e-05
0.000107103
8.57313e-05
-6.18321e-05
0.000147562
-0.000140704
0.000185975
0.000225038
-0.000234994
-0.000103238
0.000155972
0.000172304
-4.53742e-05
0.00012811
0.000102187
-7.38396e-05
0.000176027
-0.000167559
0.000221828
0.000269409
-0.000280996
-0.000104132
0.000199948
0.000173592
-4.54697e-05
0.000163165
0.000130556
4.42193e-05
8.63378e-05
9.82328e-05
0.00010915
0.000133057
0.000165124
0.000145089
0.000228957
-0.000240989
6.42756e-05
0.000189961
0.000150615
4.54044e-05
0.00010521
0.000103564
0.000131801
0.000161213
0.000171308
0.000176264
0.000278075
-0.000293127
7.83128e-05
0.000229752
0.000183523
4.78874e-05
0.000135635
0.00010769
0.000169949
0.000207861
0.000177903
-0.000103341
0.000138696
0.000172507
-4.62749e-05
0.000112882
8.93615e-05
-6.58406e-05
0.000155203
-0.000148621
0.000195661
0.000236674
-0.0002466
-0.000107944
0.000165221
0.000179398
-4.73839e-05
0.000135099
0.00010782
-7.79371e-05
0.000185757
-0.000177621
0.000234783
0.000284049
-0.000296451
-0.000109653
0.000210987
0.000182715
-4.80311e-05
0.000173161
0.000137725
4.54666e-05
9.22578e-05
0.000103269
0.000115358
0.000141636
0.00017262
0.000153302
0.00024319
-0.000254857
6.74647e-05
0.000201196
0.000159721
4.80532e-05
0.000111667
0.000107661
0.000141588
0.000170509
0.000180341
0.000188502
0.000297944
-0.000315938
8.50575e-05
0.000245032
0.000196724
4.91108e-05
0.000147612
0.000108008
0.000186134
0.000225879
0.000180071
-0.000104892
0.000155099
0.000175672
-4.65458e-05
0.000127787
0.000101065
-8.03915e-05
0.000181455
-0.000180957
0.000228353
0.000277371
-0.000303231
-0.000100007
0.000209873
0.000167502
-4.47724e-05
0.000173119
0.000136681
4.52848e-05
9.1399e-05
0.00010284
0.000115557
0.000140407
0.000172308
0.00015544
0.000245531
-0.000260565
6.92499e-05
0.000201744
0.00016065
4.85554e-05
0.000112096
0.000109602
0.000140693
0.000170939
0.000184194
0.000189679
0.000296687
-0.000315428
8.40237e-05
0.000246348
0.000196118
4.99909e-05
0.000146128
0.000113813
0.000182524
0.000222558
0.000187941
-0.00011022
0.00014825
0.000184519
-5.0114e-05
0.000122433
9.60033e-05
-7.29407e-05
0.000168939
-0.000162195
0.000211692
0.000257322
-0.000271269
-0.000114533
0.000180628
0.000191208
-5.07119e-05
0.000147904
0.000118212
-8.85353e-05
0.000206763
-0.000198921
0.000258267
0.000313389
-0.000331679
-0.000115559
0.000236116
0.000192827
-5.14211e-05
0.000194141
0.000155332
4.8534e-05
0.000106788
0.000108992
0.000133693
0.000162492
0.000182615
0.000192025
0.000292165
-0.000321678
8.45621e-05
0.000241055
0.000191428
4.51783e-05
0.000146319
0.000104085
0.00018216
0.000222853
0.000173354
-0.000109747
0.00014882
0.00018321
-4.86296e-05
0.000122467
9.67013e-05
-7.40923e-05
0.000170202
-0.000165883
0.000214772
0.000259373
-0.000276187
-0.000117521
0.000181691
0.000194441
-5.09388e-05
0.000149272
0.000118766
-8.95968e-05
0.000208366
-0.000200305
0.00025991
0.000316119
-0.000334677
-0.000113808
0.000239869
0.000189934
-5.16025e-05
0.000197803
0.000156749
4.81452e-05
0.000108568
0.000109742
0.000136181
0.000165866
0.000183821
0.00019734
0.000299157
-0.00033062
8.73849e-05
0.000246059
0.000196021
4.55039e-05
0.000150578
0.000103594
0.000188039
0.000229383
0.00017332
-0.000112011
0.000153514
0.00018759
-4.91174e-05
0.000126131
0.00010065
-7.78013e-05
0.000177194
-0.000172307
0.000222063
0.000271418
-0.000290434
-0.000119367
0.000190699
0.000199989
-5.33067e-05
0.000156464
0.000123667
-9.47375e-05
0.000218345
-0.000213064
0.000274811
0.000333007
-0.000355338
-0.000122038
0.000252886
0.000202117
-5.38238e-05
0.000206567
0.000164626
5.05526e-05
0.000113922
0.000114159
0.000143078
0.000174096
0.000192944
0.00020804
0.000313353
-0.000347269
9.23401e-05
0.000258752
0.000206283
4.95656e-05
0.000156645
0.000110392
0.000197984
0.00024049
0.000183213
-0.000117337
0.000160591
0.000197269
-5.08643e-05
0.000131485
0.000105805
-7.93195e-05
0.000185127
-0.000180611
0.000232771
0.00028167
-0.000301686
-0.000124753
0.000199295
0.000207127
-5.56139e-05
0.00016363
0.000129516
-9.83887e-05
0.000227904
-0.00022137
0.000286612
0.000347425
-0.000369501
-0.00012244
0.000265431
0.000204438
-5.45345e-05
0.000218696
0.000173375
5.23903e-05
0.000120967
0.000119254
0.000151864
0.000185709
0.000198964
0.000222418
0.000334841
-0.000371548
9.88001e-05
0.000275455
0.000219785
4.97526e-05
0.000170019
0.000110892
0.000214331
0.000261543
0.000184187
-0.000116469
0.000181561
0.000196444
-5.15465e-05
0.00014942
0.000118465
-9.85861e-05
0.00021705
-0.000220584
0.000271417
0.000330001
-0.000369024
-0.000105193
0.000260487
0.000174707
-4.7271e-05
0.000213494
0.000169779
5.05943e-05
0.000119188
0.000114724
0.00014936
0.000182578
0.000192635
0.000224244
0.000332284
-0.000373951
9.9576e-05
0.000274039
0.000218758
4.8997e-05
0.000169728
0.000110335
0.000212694
0.000261237
0.000181394
-0.000115042
0.000181622
0.000194674
-5.21818e-05
0.000149695
0.000117705
-0.000100383
0.000218705
-0.000224206
0.000272767
0.000330763
-0.000373196
-0.000105743
0.000260926
0.000175467
-4.66889e-05
0.000213912
0.000171858
5.29678e-05
0.000118854
0.000117412
0.000149505
0.000183332
0.000195011
0.000228159
0.000336887
-0.000381717
0.000101395
0.000276358
0.000220159
4.85963e-05
0.00017161
0.00010844
0.000216476
0.000262999
0.000182321
-0.000116914
0.000184653
0.000195255
-5.136e-05
0.000150982
0.000120194
-0.00010162
0.000221834
-0.000229271
0.000278618
0.000338334
-0.000382958
-0.000106681
0.000268408
0.000176626
-4.81203e-05
0.000220058
0.000173702
5.09493e-05
0.000122767
0.000117744
0.00015325
0.000185931
0.000200214
0.00023527
0.00034569
-0.000395034
0.000103195
0.000285334
0.000225957
4.88978e-05
0.000177068
0.000109869
0.000224356
0.000272687
0.000182871
-0.000120579
0.000192913
0.000200332
-5.27965e-05
0.000156618
0.00012424
-0.000106135
0.000230378
-0.000240357
0.000290829
0.000354181
-0.000401619
-0.000108534
0.000280477
0.000182233
-4.82367e-05
0.000230532
0.000182144
5.29639e-05
0.000129182
0.000121431
0.000162056
0.000198217
0.000203698
0.000251763
0.000362925
-0.000416468
0.000113185
0.000300619
0.000242382
5.33697e-05
0.000189004
0.000116245
0.000237748
0.000289778
0.000189391
-0.00012478
0.000206449
0.000208109
-5.58408e-05
0.000168807
0.000133165
-0.000116042
0.000249204
-0.000259905
0.000312674
0.000379565
-0.000433021
-0.000110501
0.000307561
0.000182504
-4.93736e-05
0.000251553
0.000199828
5.41686e-05
0.000145675
0.000123941
0.000181757
0.000221231
0.000210282
0.000289738
0.000411532
-0.000480057
0.000130868
0.000340728
0.000276449
3.90877e-05
0.000237405
8.32126e-05
0.000296567
0.000360647
0.000134111
-0.000112167
0.000287134
0.000185679
-5.15435e-05
0.000235935
0.000185869
5.10443e-05
0.00013484
0.000116406
0.000170557
0.000208431
0.000195112
0.000278174
0.000393237
-0.000462983
0.00012321
0.000325522
0.000258052
3.21863e-05
0.000225865
7.18701e-05
0.000285823
0.000349655
0.000115465
-9.45228e-05
0.000282158
0.000161989
-4.06355e-05
0.000231992
0.00018522
5.23378e-05
0.000132894
0.000114314
0.000169968
0.000207576
0.000188925
0.000288046
0.000401405
-0.000481874
0.000128153
0.000329864
0.000261047
3.17608e-05
0.000229287
6.99275e-05
0.000291699
0.00035603
0.000115306
-0.000101789
0.000286668
0.000171148
-4.55968e-05
0.000235507
0.000183692
4.88999e-05
0.000134799
0.0001139
0.000170497
0.000206812
0.000193764
0.000284005
0.000401245
-0.000478437
0.000124764
0.000329739
0.000259564
2.86441e-05
0.000230921
6.22796e-05
0.000296104
0.000362643
0.000100884
-8.63124e-05
0.00030236
0.000146597
-3.76635e-05
0.000247457
0.000193259
4.66514e-05
0.000146609
0.000108786
0.000185321
0.00022622
0.000184928
0.000327099
0.000441832
-0.00054271
0.000146669
0.000365752
0.000293279
2.43408e-05
0.000268939
4.56752e-05
0.00034442
0.000421285
6.62247e-05
-5.33096e-05
0.000385553
8.90425e-05
-2.44821e-05
0.000315594
0.000244459
2.21685e-05
0.000222291
5.29684e-05
0.000284795
0.000346569
9.19545e-05
-7.92132e-05
0.000295171
0.000130613
-3.59845e-05
0.000241567
0.000186308
4.69739e-05
0.000139335
0.000107188
0.000181354
0.000224522
0.000177838
0.000322554
0.000439131
-0.000537161
0.000144236
0.000359674
0.000283571
2.17303e-05
0.000261843
4.76888e-05
0.000333717
0.00040801
7.88123e-05
-4.52572e-05
0.000385215
6.80546e-05
-2.45856e-05
0.000313047
0.000237258
7.55619e-06
0.000229704
2.00537e-05
0.000300551
0.000368406
3.68643e-05
-2.82441e-05
0.000357518
3.91339e-05
-1.59343e-05
0.000288243
0.000213771
6.5556e-06
0.000207217
1.23889e-05
0.000282411
0.000350153
1.97559e-05
-2.0445e-05
0.000343379
2.72209e-05
-1.17833e-05
0.000273751
0.000195435
7.72845e-06
0.000187708
1.21979e-05
0.000269284
0.000340157
1.54219e-05
-1.68897e-05
0.000332507
2.45425e-05
-8.81047e-06
0.000261206
0.000178899
6.00332e-06
0.000172897
1.01651e-05
0.000257046
0.000329414
1.32598e-05
-1.5056e-05
0.000322429
2.2043e-05
-7.62314e-06
0.000249615
0.000165275
4.47647e-06
0.0001608
7.80619e-06
0.000246287
0.000319898
1.03394e-05
-1.30059e-05
0.000313581
1.93251e-05
-6.22011e-06
0.000239503
0.000154581
3.36632e-06
0.000151216
6.27417e-06
0.000236597
0.000311825
8.03271e-06
-1.11619e-05
0.000305727
1.72614e-05
-5.22452e-06
0.000230661
0.000145993
2.59441e-06
0.0001434
4.79933e-06
0.000228458
0.000304085
6.44363e-06
-1.00899e-05
0.000298507
1.56698e-05
-4.47992e-06
0.00022285
0.000138922
1.97398e-06
0.000136949
3.95841e-06
0.000220867
0.000297333
5.13507e-06
-8.78791e-06
0.00029184
1.4283e-05
-3.85524e-06
0.000215936
0.000133095
1.44634e-06
0.00013165
2.83886e-06
0.000214545
0.00029068
4.00041e-06
-7.99804e-06
0.000285653
1.30269e-05
-3.33124e-06
0.00020988
0.000128321
9.99193e-07
0.000127323
2.19915e-06
0.000208682
0.000284928
2.92651e-06
-6.94019e-06
0.000279984
1.18865e-05
-2.88074e-06
0.000204624
0.000124443
6.17813e-07
0.000123827
1.28962e-06
0.000203953
0.000279271
2.00451e-06
-6.37289e-06
0.000274761
1.08849e-05
-2.50449e-06
0.000200087
0.000121324
2.99112e-07
0.000121026
8.45858e-07
0.000199541
0.000274456
1.15261e-06
-5.53893e-06
0.000270006
9.99028e-06
-2.18233e-06
0.000196186
0.000118845
2.63161e-08
0.00011882
1.2148e-07
0.000196093
0.000269718
4.12167e-07
-5.13743e-06
0.000265674
9.18325e-06
-1.88036e-06
0.000192837
0.000116941
-2.36011e-07
0.000117178
-1.81045e-07
0.000192784
0.000265764
-2.69014e-07
-4.46219e-06
0.00026177
8.45744e-06
-1.63749e-06
0.000189961
0.000115542
-4.47899e-07
0.000115991
-7.75352e-07
0.00019029
0.000261843
-8.461e-07
-4.22864e-06
0.000258262
7.81168e-06
-1.44349e-06
0.000187506
0.000114549
-6.04323e-07
0.000115154
-9.24183e-07
0.000187827
0.000258709
-1.36955e-06
-3.71107e-06
0.000255161
7.26037e-06
-1.2956e-06
0.000185413
0.00011386
-7.34879e-07
0.000114596
-1.38914e-06
0.000186069
0.000255596
-1.82162e-06
-3.59895e-06
0.000252428
6.76807e-06
-1.1784e-06
0.00018365
0.000113419
-8.24225e-07
0.000114244
-1.43573e-06
0.000184263
0.000253223
-2.22839e-06
-3.1783e-06
0.000250095
6.30818e-06
-1.08841e-06
0.000182175
0.000113157
-8.99349e-07
0.000114058
-1.80875e-06
0.000183086
0.000251051
-2.76298e-06
-3.13495e-06
0.00024808
6.10698e-06
-1.01242e-06
0.000180965
0.000113047
-9.39923e-07
0.000113988
-1.7694e-06
0.000181796
0.000249147
-2.83454e-06
-2.80104e-06
0.000246347
5.60342e-06
-9.64438e-07
0.000179961
0.000113025
-9.88641e-07
0.000114015
-2.0884e-06
0.000181062
0.000247361
-3.10096e-06
-2.80543e-06
0.00024489
5.27872e-06
-9.12914e-07
0.000179171
0.000113103
-1.00854e-06
0.000114113
-2.00888e-06
0.000180173
0.000246188
-3.30529e-06
-2.52897e-06
0.000243662
5.0571e-06
-8.89511e-07
0.000178535
0.000113225
-1.03643e-06
0.000114262
-2.28231e-06
0.000179783
0.000244888
-3.5067e-06
-2.57028e-06
0.000242646
4.81372e-06
-8.53683e-07
0.000178068
0.00011341
-1.04075e-06
0.000114452
-2.16711e-06
0.000179195
0.000244141
-3.66042e-06
-2.32691e-06
0.000241808
4.66176e-06
-8.41618e-07
0.000177712
0.000113612
-1.05865e-06
0.000114672
-2.41293e-06
0.000179067
0.000243221
-3.82336e-06
-2.39596e-06
0.000241149
4.46964e-06
-8.15237e-07
0.000177488
0.000113858
-1.05736e-06
0.000114916
-2.27827e-06
0.00017871
0.000242802
-3.92978e-06
-2.18592e-06
0.000240618
4.37197e-06
-8.09512e-07
0.000177335
0.000114108
-1.06864e-06
0.000115178
-2.51155e-06
0.000178779
0.000242168
-4.05987e-06
-2.27631e-06
0.000240228
4.218e-06
-7.86536e-07
0.000177291
0.000114392
-1.06212e-06
0.000115456
-2.36386e-06
0.000178594
0.000241996
-4.13002e-06
-2.08877e-06
0.000239925
4.16072e-06
-7.85902e-07
0.000177292
0.000114671
-1.07105e-06
0.000115743
-2.58679e-06
0.000178809
0.000241576
-4.23563e-06
-2.19344e-06
0.000239734
4.03677e-06
-7.6729e-07
0.000177384
0.000114977
-1.0638e-06
0.000116042
-2.42612e-06
0.000178747
0.000241585
-4.27565e-06
-2.02607e-06
0.000239599
4.01422e-06
-7.77209e-07
0.0001775
0.000115266
-1.07715e-06
0.000116344
-2.64027e-06
0.000179064
0.000241316
-4.35566e-06
-2.14267e-06
0.000239544
3.91574e-06
-7.61157e-07
0.000177684
0.000115584
-1.07043e-06
0.000116655
-2.47467e-06
0.000179089
0.000241455
-4.38411e-06
-1.97848e-06
0.000239532
3.90274e-06
-7.69872e-07
0.000177882
0.000115886
-1.08142e-06
0.000116969
-2.67863e-06
0.00017948
0.000241297
-4.44138e-06
-2.11104e-06
0.000239576
3.8331e-06
-7.58936e-07
0.000178129
0.000116211
-1.07361e-06
0.000117285
-2.50721e-06
0.000179564
0.000241529
-4.45908e-06
-1.95191e-06
0.00023965
3.83275e-06
-7.68164e-07
0.000178381
0.000116518
-1.0819e-06
0.000117601
-2.70106e-06
0.000180001
0.000241446
-4.49599e-06
-2.09688e-06
0.000239759
3.78553e-06
-7.61228e-07
0.000178667
0.000116841
-1.07556e-06
0.000117917
-2.52952e-06
0.000180122
0.000241744
-4.51307e-06
-1.94054e-06
0.000239892
3.79404e-06
-7.7021e-07
0.000178953
0.000117148
-1.08229e-06
0.000118231
-2.71686e-06
0.000180588
0.000241714
-4.53836e-06
-2.09451e-06
0.000240048
3.76231e-06
-7.65727e-07
0.000179261
0.000117466
-1.0748e-06
0.000118542
-2.53833e-06
0.000180725
0.000242054
-4.54342e-06
-1.94518e-06
0.000240218
3.78338e-06
-7.76413e-07
0.000179558
0.000117766
-1.07907e-06
0.000118846
-2.71838e-06
0.000181198
0.000242056
-4.55576e-06
-2.10587e-06
0.000240401
3.76251e-06
-7.74015e-07
0.000179867
0.000118073
-1.0693e-06
0.000119144
-2.53444e-06
0.000181333
0.000242419
-4.5514e-06
-1.95968e-06
0.00024059
3.78981e-06
-7.8637e-07
0.000180161
0.000118358
-1.07165e-06
0.000119431
-2.71064e-06
0.000181801
0.000242438
-4.557e-06
-2.12499e-06
0.00024079
3.77457e-06
-7.85915e-07
0.000180463
0.000118646
-1.06043e-06
0.000119707
-2.52302e-06
0.000181927
0.000242815
-4.54715e-06
-1.98206e-06
0.000240993
3.80555e-06
-7.99423e-07
0.000180745
0.000118908
-1.0615e-06
0.000119971
-2.69578e-06
0.00018238
0.000242845
-4.54701e-06
-2.15174e-06
0.000241204
3.79448e-06
-7.99935e-07
0.00018103
0.000119172
-1.05126e-06
0.000120224
-2.50803e-06
0.000182488
0.000243225
-4.52819e-06
-2.01085e-06
0.000241406
3.83102e-06
-8.14335e-07
0.000181292
0.00011941
-1.05117e-06
0.000120462
-2.6801e-06
0.000182922
0.000243252
-4.52438e-06
-2.18105e-06
0.000241612
3.8217e-06
-8.1587e-07
0.000181558
0.000119647
-1.04042e-06
0.000120688
-2.49218e-06
0.000183011
0.000243627
-4.50595e-06
-2.0379e-06
0.000241808
3.85823e-06
-8.30569e-07
0.000181804
0.000119859
-1.04048e-06
0.0001209
-2.66196e-06
0.000183427
0.000243646
-4.49905e-06
-2.20856e-06
0.000242006
3.8506e-06
-8.3265e-07
0.000182052
0.000120068
-1.03179e-06
0.000121101
-2.47274e-06
0.000183494
0.000244014
-4.48043e-06
-2.06367e-06
0.000242193
3.88664e-06
-8.45943e-07
0.000182277
0.000120256
-1.0322e-06
0.000121288
-2.64331e-06
0.000183889
0.000244024
-4.47319e-06
-2.23363e-06
0.000242379
3.87904e-06
-8.46492e-07
0.000182503
0.000120443
-1.02234e-06
0.000121466
-2.45379e-06
0.000183936
0.000244382
-4.45494e-06
-2.08766e-06
0.000242556
3.91474e-06
-8.58862e-07
0.000182708
0.000120608
-1.02117e-06
0.00012163
-2.62334e-06
0.000184311
0.00024438
-4.4462e-06
-2.25805e-06
0.00024273
3.90838e-06
-8.59201e-07
0.000182914
0.000120771
-1.01212e-06
0.000121784
-2.43463e-06
0.000184337
0.000244726
-4.42867e-06
-2.11011e-06
0.000242895
3.94216e-06
-8.70443e-07
0.000183098
0.000120915
-1.01163e-06
0.000121927
-2.60533e-06
0.000184693
0.000244711
-4.42086e-06
-2.27989e-06
0.000243057
3.93534e-06
-8.70125e-07
0.000183285
0.000121058
-1.00332e-06
0.000122062
-2.41738e-06
0.0001847
0.000245045
-4.4044e-06
-2.13048e-06
0.000243209
3.96807e-06
-8.80592e-07
0.000183451
0.000121182
-1.00323e-06
0.000122186
-2.58882e-06
0.000185038
0.000245018
-4.39678e-06
-2.29965e-06
0.000243358
3.96054e-06
-8.7967e-07
0.000183619
0.000121307
-9.95734e-07
0.000122304
-2.40202e-06
0.000185026
0.000245339
-4.3822e-06
-2.1485e-06
0.000243498
3.9916e-06
-8.89258e-07
0.000183768
0.000121415
-9.96126e-07
0.000122412
-2.57441e-06
0.000185348
0.000245299
-4.37523e-06
-2.31674e-06
0.000243635
3.98272e-06
-8.87655e-07
0.00018392
0.000121525
-9.89509e-07
0.000122516
-2.38904e-06
0.000185321
0.00024561
-4.36303e-06
-2.1637e-06
0.000243763
4.01184e-06
-8.96338e-07
0.000184054
0.00012162
-9.90249e-07
0.000122611
-2.56212e-06
0.000185628
0.000245558
-4.35635e-06
-2.33172e-06
0.000243889
4.00241e-06
-8.94465e-07
0.000184191
0.000121718
-9.84177e-07
0.000122703
-2.37761e-06
0.000185586
0.000245858
-4.34577e-06
-2.17755e-06
0.000244006
4.03054e-06
-9.02646e-07
0.000184312
0.000121801
-9.85057e-07
0.000122787
-2.55108e-06
0.00018588
0.000245796
-4.33908e-06
-2.34501e-06
0.000244121
4.02044e-06
-9.00349e-07
0.000184436
0.000121887
-9.79516e-07
0.000122868
-2.36736e-06
0.000185825
0.000246085
-4.32998e-06
-2.18962e-06
0.000244229
4.04726e-06
-9.07979e-07
0.000184545
0.000121961
-9.80583e-07
0.000122942
-2.54127e-06
0.000186107
0.000246012
-4.32343e-06
-2.35705e-06
0.000244334
4.03677e-06
-9.05586e-07
0.000184657
0.000122038
-9.75376e-07
0.000123014
-2.35812e-06
0.000186041
0.000246292
-4.31552e-06
-2.20086e-06
0.000244431
4.0629e-06
-9.12887e-07
0.000184754
0.000122102
-9.76518e-07
0.000123079
-2.53228e-06
0.000186311
0.000246209
-4.30896e-06
-2.36783e-06
0.000244527
4.05185e-06
-9.10184e-07
0.000184855
0.00012217
-9.71697e-07
0.000123143
-2.34973e-06
0.000186234
0.00024648
-4.30225e-06
-2.2108e-06
0.000244616
4.07697e-06
-9.17152e-07
0.000184942
0.000122226
-9.72964e-07
0.0001232
-2.52429e-06
0.000186495
0.000246388
-4.29593e-06
-2.37746e-06
0.000244702
4.06535e-06
-9.14242e-07
0.000185033
0.000122287
-9.68471e-07
0.000123256
-2.3423e-06
0.000186408
0.000246651
-4.29035e-06
-2.21964e-06
0.000244782
4.08964e-06
-9.20903e-07
0.000185111
0.000122336
-9.69819e-07
0.000123307
-2.51716e-06
0.000186659
0.000246551
-4.28414e-06
-2.38608e-06
0.000244861
4.07757e-06
-9.1783e-07
0.000185192
0.00012239
-9.65605e-07
0.000123357
-2.33564e-06
0.000186564
0.000246806
-4.27954e-06
-2.22758e-06
0.000244934
4.10114e-06
-9.24227e-07
0.000185262
0.000122434
-9.6701e-07
0.000123402
-2.51073e-06
0.000186807
0.000246698
-4.27339e-06
-2.39386e-06
0.000245004
4.08872e-06
-9.21032e-07
0.000185336
0.000122482
-9.63015e-07
0.000123446
-2.32957e-06
0.000186704
0.000246946
-4.26959e-06
-2.23481e-06
0.00024507
4.11175e-06
-9.27228e-07
0.000185397
0.000122519
-9.64429e-07
0.000123485
-2.50479e-06
0.000186939
0.00024683
-4.26335e-06
-2.40105e-06
0.000245133
4.09919e-06
-9.23977e-07
0.000185463
0.000122562
-9.60569e-07
0.000123524
-2.32383e-06
0.000186828
0.000247071
-4.26009e-06
-2.2416e-06
0.000245192
4.12186e-06
-9.30039e-07
0.000185518
0.000122595
-9.61967e-07
0.000123558
-2.49911e-06
0.000187056
0.000246948
-4.25371e-06
-2.40781e-06
0.000245248
4.10916e-06
-9.26739e-07
0.000185577
0.000122632
-9.58267e-07
0.000123591
-2.31842e-06
0.000186938
0.000247183
-4.25108e-06
-2.24749e-06
0.000245301
4.13077e-06
-9.32433e-07
0.000185624
0.00012266
-9.60004e-07
0.000123621
-2.49447e-06
0.00018716
0.000247053
-4.24572e-06
-2.41323e-06
0.000245351
4.11702e-06
-9.28885e-07
0.000185677
0.000122693
-9.56596e-07
0.000123651
-2.31435e-06
0.000187036
0.000247282
-4.24416e-06
-2.25208e-06
0.000245398
4.13766e-06
-9.34234e-07
0.00018572
0.000122718
-9.58631e-07
0.000123677
-2.49111e-06
0.000187253
0.000247149
-4.23976e-06
-2.41724e-06
0.000245444
4.12291e-06
-9.30388e-07
0.000185768
0.000122748
-9.55486e-07
0.000123705
-2.31148e-06
0.000187125
0.000247373
-4.23911e-06
-2.25554e-06
0.000245488
4.14274e-06
-9.35525e-07
0.000185806
0.00012277
-9.57803e-07
0.000123729
-2.48895e-06
0.000187338
0.000247236
-4.23578e-06
-2.41981e-06
0.00024553
4.12674e-06
-9.31227e-07
0.000185851
0.000122799
-9.5503e-07
0.000123755
-2.31e-06
0.000187207
0.000247458
-4.2363e-06
-2.25741e-06
0.000245571
4.14544e-06
-9.36081e-07
0.000185887
0.000122819
-9.57642e-07
0.000123778
-2.48822e-06
0.000187418
0.000247319
-4.23409e-06
-2.42108e-06
0.000245613
4.12837e-06
-9.31498e-07
0.00018593
0.000122847
-9.55171e-07
0.000123804
-2.3099e-06
0.000187285
0.00024754
-4.23578e-06
-2.25785e-06
0.000245653
4.14595e-06
-9.36015e-07
0.000185965
0.000122868
-9.58032e-07
0.000123827
-2.48874e-06
0.000187496
0.0002474
-4.23447e-06
-2.42135e-06
0.000245694
4.12827e-06
-9.31373e-07
0.000186007
0.000122897
-9.55682e-07
0.000123853
-2.31072e-06
0.000187363
0.000247622
-4.23681e-06
-2.25773e-06
0.000245735
4.14545e-06
-9.3577e-07
0.000186042
0.000122918
-9.58625e-07
0.000123878
-2.48986e-06
0.000187574
0.000247482
-4.23594e-06
-2.42114e-06
0.000245777
4.12749e-06
-9.31083e-07
0.000186085
0.000122947
-9.56303e-07
0.000123904
-2.31188e-06
0.000187441
0.000247705
-4.23846e-06
-2.25751e-06
0.000245818
4.14475e-06
-9.35535e-07
0.00018612
0.000122969
-9.59134e-07
0.000123929
-2.4909e-06
0.000187653
0.000247566
-4.23737e-06
-2.4213e-06
0.000245861
4.12727e-06
-9.31022e-07
0.000186163
0.000122999
-9.5661e-07
0.000123956
-2.31248e-06
0.000187519
0.000247788
-4.2393e-06
-2.25806e-06
0.000245902
4.14523e-06
-9.3571e-07
0.000186198
0.000123021
-9.59241e-07
0.000123981
-2.49119e-06
0.00018773
0.000247649
-4.23771e-06
-2.42218e-06
0.000245944
4.12813e-06
-9.31339e-07
0.00018624
0.00012305
-9.56643e-07
0.000124007
-2.31257e-06
0.000187596
0.000247872
-4.23943e-06
-2.25897e-06
0.000245985
4.14611e-06
-9.3608e-07
0.000186274
0.000123071
-9.59399e-07
0.000124031
-2.49166e-06
0.000187807
0.000247733
-4.23845e-06
-2.42239e-06
0.000246028
4.12803e-06
-9.31347e-07
0.000186316
0.0001231
-9.57154e-07
0.000124058
-2.31369e-06
0.000187673
0.000247956
-4.24128e-06
-2.25829e-06
0.00024607
4.14471e-06
-9.35688e-07
0.000186351
0.000123122
-9.60563e-07
0.000124083
-2.49425e-06
0.000187885
0.000247819
-4.24243e-06
-2.42012e-06
0.000246116
4.12371e-06
-9.30193e-07
0.000186395
0.000123153
-9.59337e-07
0.000124113
-2.31849e-06
0.000187754
0.000248047
-4.24926e-06
-2.25333e-06
0.000246164
4.13647e-06
-9.33303e-07
0.000186435
0.00012318
-9.65102e-07
0.000124145
-2.50448e-06
0.000187974
0.000247919
-4.25923e-06
-2.40478e-06
0.000246222
4.10252e-06
-9.26372e-07
0.000186496
0.000123219
-9.69195e-07
0.000124188
-2.51159e-06
0.000188039
0.000247986
-4.27533e-06
-2.22725e-06
0.000246298
3.91472e-06
-9.08609e-07
0.00018672
0.00012328
-1.1311e-06
0.000124411
-2.35432e-06
0.000187943
0.000248258
-4.31366e-06
-2.19346e-06
0.000246597
3.85402e-06
-9.06159e-07
0.000186656
0.000123505
-9.95528e-07
0.000124501
-2.57336e-06
0.000188234
0.000248404
-4.38029e-06
-1.96407e-06
0.000246983
3.38536e-06
-8.7401e-07
0.000187144
0.000123627
-1.34025e-06
0.000124967
-3.21043e-06
0.000189014
0.000249304
-5.53112e-06
-8.77767e-07
0.000248936
1.24576e-06
-3.28819e-07
0.000188465
0.000124638
-2.63779e-06
0.000127276
-6.28067e-06
0.000192107
0.000254039
-1.13835e-05
6.31983e-06
0.00025906
-1.13418e-05
2.57622e-06
0.000195851
0.000129852
-8.42293e-06
0.000138275
-2.06822e-05
0.00020811
0.000275676
-3.72978e-05
3.04595e-05
0.000299573
-5.43563e-05
1.2323e-05
0.000226246
0.000150598
-1.46476e-05
0.000165245
-3.56098e-05
0.000247208
0.000326904
-6.29417e-05
2.33009e-05
-4.03847e-05
9.71891e-06
-0.000157122
-0.000989407
-0.000162667
-0.00113207
-0.000434381
-0.00130984
-0.000876921
-0.00140725
-0.00035473
-0.00240145
-6.47858e-06
-0.00249421
-0.000756819
-0.00194995
-0.00243974
-0.00108233
-0.00117469
-0.00464438
-0.00050209
-0.00416041
-0.000317045
-0.00424398
-0.00010692
-0.00439057
-7.26734e-05
-0.00457335
-1.39859e-05
-0.00468656
-8.47434e-06
-0.00477109
3.70468e-08
-0.00481477
1.29695e-07
-0.00483893
2.61987e-07
-0.00485105
4.27362e-07
-0.00485753
-1.08139e-06
-0.00486303
2.78133e-06
-0.00486967
-1.15801e-05
-0.00488636
-4.52041e-06
-0.00490589
-7.65381e-05
-0.00495755
-2.58897e-05
-0.00497933
-0.000166722
-0.00506695
8.34387e-05
-0.00497635
-6.23569e-05
-0.00493367
0.000237493
-0.00452234
1.47462e-05
-0.0042451
-0.00397866
-0.0039122
-6.64524e-05
-0.00391361
1.39224e-06
-0.00395289
3.92732e-05
-0.00398062
2.77237e-05
-0.00399002
9.38169e-06
-0.00399218
2.14056e-06
-0.00399165
-5.46435e-07
-0.00399141
-2.63705e-07
-0.00399118
-2.50528e-07
-0.00399125
5.05148e-08
-0.00399143
1.4936e-07
-0.00399165
1.87229e-07
-0.00399185
1.58269e-07
-0.003992
1.03599e-07
-0.00399205
1.38328e-08
-0.00399197
-1.21943e-07
-0.00399167
-3.18329e-07
-0.0039911
-5.96366e-07
-0.00399023
-8.92201e-07
-0.00398912
-1.1359e-06
-0.00398783
-1.31268e-06
-0.00398642
-1.44665e-06
-0.00398488
-1.57396e-06
-0.0039832
-1.71829e-06
-0.00398135
-1.88907e-06
-0.0039793
-2.08218e-06
-0.00397704
-2.30343e-06
-0.00397453
-2.54554e-06
-0.00397175
-2.82288e-06
-0.00396866
-3.13078e-06
-0.00396521
-3.48733e-06
-0.00396137
-3.88437e-06
-0.00395706
-4.34063e-06
-0.00395225
-4.84379e-06
-0.00394687
-5.41552e-06
-0.00394086
-6.04047e-06
-0.00393415
-6.74563e-06
-0.00392664
-7.53589e-06
-0.00391832
-8.34823e-06
-0.00390904
-9.29972e-06
-0.00389873
-1.03286e-05
-0.0038873
-1.14443e-05
-0.00387466
-1.26521e-05
-0.00386069
-1.3982e-05
-0.00384539
-1.53076e-05
-0.00382857
-1.68148e-05
-0.00381023
-1.83398e-05
-0.00379027
-1.99606e-05
-0.00376867
-2.15901e-05
-0.00374537
-2.32897e-05
-0.0037204
-2.49546e-05
-0.00369373
-2.66593e-05
-0.00366541
-2.82941e-05
-0.0036355
-2.98898e-05
-0.00360406
-3.14149e-05
-0.00357118
-3.28512e-05
-0.00353697
-3.4183e-05
-0.00350156
-3.53789e-05
-0.00346503
-3.65008e-05
-0.00342757
-3.74187e-05
-0.00338925
-3.829e-05
-0.00335031
-3.89053e-05
-0.00331083
-3.94394e-05
-0.00327092
-3.98751e-05
-0.00323078
-4.01007e-05
-0.00319047
-4.02822e-05
-0.00315013
-4.03005e-05
-0.00310993
-4.01708e-05
-0.00306987
-4.00217e-05
-0.00303017
-3.96761e-05
-0.00299077
-3.93636e-05
-0.00295185
-3.88988e-05
-0.00291345
-3.83694e-05
-0.00287558
-3.78503e-05
-0.00283838
-3.71723e-05
-0.00280186
-3.65073e-05
-0.002766
-3.5836e-05
-0.00273092
-3.50644e-05
-0.00269657
-3.43379e-05
-0.00266304
-3.35212e-05
-0.00263028
-3.27571e-05
-0.00259834
-3.19328e-05
-0.00256724
-3.11018e-05
-0.00253692
-3.03128e-05
-0.00250747
-2.94606e-05
-0.0024788
-2.86726e-05
-0.00245098
-2.783e-05
-0.00242394
-2.70618e-05
-0.00239774
-2.62196e-05
-0.00237233
-2.54275e-05
-0.00234769
-2.46722e-05
-0.00232385
-2.38773e-05
-0.00230075
-2.31435e-05
-0.00227842
-2.23754e-05
-0.0022568
-2.16661e-05
-0.00223592
-2.09375e-05
-0.00221575
-2.02334e-05
-0.00219628
-1.95435e-05
-0.00217749
-1.88632e-05
-0.00215936
-1.82067e-05
-0.00214189
-1.75597e-05
-0.00212505
-1.69267e-05
-0.00210883
-1.63205e-05
-0.00209323
-1.5702e-05
-0.00207825
-1.50974e-05
-0.00206383
-1.45314e-05
-0.00204998
-1.39656e-05
-0.0020367
-1.34124e-05
-0.00202394
-1.28841e-05
-0.00201174
-1.2331e-05
-0.00200005
-1.18269e-05
-0.00198887
-1.13224e-05
-0.00197818
-1.08295e-05
-0.00196797
-1.03483e-05
-0.00195824
-9.87863e-06
-0.00194896
-9.42051e-06
-0.00194013
-8.97397e-06
-0.00193173
-8.5391e-06
-0.00192374
-8.12778e-06
-0.00191617
-7.70488e-06
-0.00190899
-7.30551e-06
-0.00190221
-6.9075e-06
-0.00189578
-6.54498e-06
-0.00188971
-6.1824e-06
-0.00188398
-5.83226e-06
-0.00187858
-5.4939e-06
-0.0018735
-5.16683e-06
-0.00186873
-4.85042e-06
-0.00186425
-4.55527e-06
-0.00186006
-4.2463e-06
-0.00185617
-3.94537e-06
-0.00185254
-3.67393e-06
-0.00184917
-3.40774e-06
-0.00184608
-3.11188e-06
-0.00184325
-2.85156e-06
-0.00184068
-2.57854e-06
-0.00183838
-2.30121e-06
-0.00183637
-1.99337e-06
-0.0018347
-1.65302e-06
-0.00183346
-1.21565e-06
-0.00183251
-9.12651e-07
-0.00183196
-5.04605e-07
-0.00183041
-1.50521e-06
-0.00182574
-4.62866e-06
-0.00181281
-1.29061e-05
-0.00179473
-1.80694e-05
-6.10629e-07
-1.95261e-06
0.00192428
-1.24759e-05
0.00212308
-0.00211259
-2.05705e-05
0.00228377
-0.00227572
-2.97611e-05
0.00233213
-0.00232297
-2.56721e-05
0.00231039
-0.00231449
-1.87657e-05
0.00227542
-0.00228233
-1.07263e-05
0.0022532
-0.00226122
-6.04069e-06
0.00224233
-0.00224698
-3.86622e-06
0.00223714
-0.00223929
-3.57864e-06
0.00223342
-0.00223367
-4.12917e-06
0.00222981
-0.00222923
-5.1765e-06
0.00222576
-0.00222469
-6.29226e-06
0.0022211
-0.00221995
-7.21773e-06
0.00221648
-0.00221552
-7.95065e-06
0.00221181
-0.00221105
-8.83213e-06
0.0022071
-0.00220619
-9.32136e-06
0.0022023
-0.00220178
-1.01955e-05
0.00219737
-0.00219647
-1.06893e-05
0.00219229
-0.00219177
-1.12438e-05
0.00218704
-0.00218646
-1.18599e-05
0.00218163
-0.00218099
-1.22127e-05
0.00217607
-0.0021757
-1.27391e-05
0.00217038
-0.00216983
-1.28991e-05
0.00216455
-0.00216438
-1.34516e-05
0.00215861
-0.00215804
-1.36422e-05
0.00215255
-0.00215235
-1.39035e-05
0.00214639
-0.00214612
-1.41284e-05
0.00214014
-0.00213991
-1.43174e-05
0.00213381
-0.00213361
-1.44707e-05
0.00212741
-0.00212725
-1.45881e-05
0.00212095
-0.00212083
-1.46687e-05
0.00211444
-0.00211436
-1.4712e-05
0.0021079
-0.00210786
-1.47184e-05
0.00210134
-0.00210134
-1.46866e-05
0.00209478
-0.00209481
-1.47209e-05
0.00208823
-0.00208819
-1.45072e-05
0.00208169
-0.00208191
-1.43566e-05
0.00207519
-0.00207535
-1.41634e-05
0.00206875
-0.00206895
-1.40287e-05
0.00206237
-0.00206251
-1.36417e-05
0.00205606
-0.00205645
-1.33091e-05
0.00204985
-0.00205019
-1.30276e-05
0.00204374
-0.00204403
-1.23872e-05
0.00203776
-0.00203841
-1.19969e-05
0.00203191
-0.00203231
-1.14473e-05
0.00202632
-0.00202688
-1.0837e-05
0.00202059
-0.00202121
-1.01606e-05
0.00201532
-0.002016
-9.40783e-06
0.00201008
-0.00201084
-8.56236e-06
0.00200491
-0.00200576
-8.60417e-06
0.00199876
-0.00199872
-9.51899e-06
0.0019936
-0.00199269
-1.23394e-05
0.00198561
-0.00198279
-1.81812e-05
0.00197529
-0.00196945
-3.51471e-05
0.0019644
-0.00194744
-6.33225e-05
0.0019484
-0.00192024
-0.000111588
0.00193679
-0.00188853
-0.000177883
0.00194356
-0.00187727
-0.000246303
0.00199797
-0.00192956
-0.000237566
0.00212579
-0.00213454
0.000297827
0.00217333
-0.000297045
-0.00241169
2.75817e-05
0.00097158
-0.000701336
1.39332e-06
0.000819504
-0.000793317
0.000761088
-0.000756819
0.000757196
6.70533e-06
0.000758116
1.84734e-06
0.000755902
5.92716e-06
0.000757535
1.04755e-06
0.000754087
6.0751e-06
0.000756494
1.94945e-07
0.000752859
6.18377e-06
0.000755087
3.03874e-07
0.000751299
6.26967e-06
0.000753367
4.06584e-07
0.000749451
6.35094e-06
0.000751391
4.96118e-07
0.00074736
6.42909e-06
0.000749179
5.87292e-07
0.000745049
6.50374e-06
0.000746757
6.82501e-07
0.000742535
6.5847e-06
0.000744135
7.86271e-07
0.000739826
6.67296e-06
0.00074132
8.98655e-07
0.000736925
6.76832e-06
0.000738314
1.01943e-06
0.000733836
6.87077e-06
0.000735119
1.14883e-06
0.00073056
6.98075e-06
0.000731737
1.28795e-06
0.000727095
7.09966e-06
0.000728163
1.43865e-06
0.000723437
7.22963e-06
0.000724391
1.60331e-06
0.000719578
7.37275e-06
0.000720412
1.78302e-06
0.000715507
7.52985e-06
0.000716216
1.97874e-06
0.000711214
7.70175e-06
0.00071179
2.19223e-06
0.000706685
7.88965e-06
0.000707118
2.42458e-06
0.000701903
8.09412e-06
0.000702185
2.67547e-06
0.000696853
8.31518e-06
0.000696975
2.94583e-06
0.00069152
8.55418e-06
0.00069147
3.23786e-06
0.000685882
8.81335e-06
0.00068565
3.554e-06
0.000679919
9.09503e-06
0.000679491
3.89681e-06
0.000673606
9.40165e-06
0.000672967
4.26905e-06
0.000666916
9.73582e-06
0.000666049
4.6735e-06
0.000659819
1.00998e-05
0.000658706
5.1121e-06
0.000652283
1.04941e-05
0.000650909
5.58429e-06
0.000644279
1.09166e-05
0.000642626
6.0874e-06
0.000635778
1.13658e-05
0.00063383
6.62176e-06
0.000626751
1.18427e-05
0.00062449
7.1891e-06
0.000617168
1.23481e-05
0.000614578
7.78963e-06
0.000607
1.28813e-05
0.000604063
8.42225e-06
0.000596216
1.34408e-05
0.000592914
9.08573e-06
0.000584788
1.40243e-05
0.000581108
9.77533e-06
0.000572698
1.46232e-05
0.000568631
1.04801e-05
0.000559934
1.52244e-05
0.000555474
1.11869e-05
0.000546494
1.58151e-05
0.000541641
1.18839e-05
0.000532394
1.63761e-05
0.000527169
1.25399e-05
0.000517688
1.68706e-05
0.000512139
1.30932e-05
0.000502459
1.72674e-05
0.000496623
1.35381e-05
0.000486807
1.75192e-05
0.000480761
1.38169e-05
0.000470903
1.75787e-05
0.000464751
1.38771e-05
0.000454966
1.73898e-05
0.000448832
1.36568e-05
0.000439254
1.68936e-05
0.000433289
1.30995e-05
0.000424074
1.60476e-05
0.000418452
1.21761e-05
0.000409773
1.48407e-05
0.000404667
1.08912e-05
0.000396684
1.32931e-05
0.000392251
9.28976e-06
0.000385111
1.14587e-05
0.000381517
7.40783e-06
0.000375309
9.469e-06
0.000372623
5.42447e-06
0.000367388
7.45797e-06
0.000365629
3.47028e-06
0.000361322
5.55089e-06
0.000360438
1.66408e-06
0.000356978
3.86408e-06
0.000356928
7.43909e-08
0.000354228
2.42385e-06
0.000354797
-1.16457e-06
0.000352733
1.26842e-06
0.000353837
-2.12039e-06
0.000352249
4.35888e-07
0.000353753
-2.78561e-06
0.000352535
-1.01964e-07
0.00035436
-3.2106e-06
0.000353386
-4.33555e-07
0.000355436
-3.48549e-06
0.000354632
-6.1649e-07
0.00035682
-3.62701e-06
0.000356094
-6.89859e-07
0.000358366
-3.66149e-06
0.000357707
-6.73422e-07
0.00036002
-3.62831e-06
0.000359373
-5.94077e-07
0.00036172
-3.55175e-06
0.000361075
-5.04905e-07
0.000363387
-3.47347e-06
0.000362711
-4.00268e-07
0.000365032
-3.37093e-06
0.000364322
-2.96926e-07
0.000366614
-3.27481e-06
0.000365895
-1.82616e-07
0.000368168
-3.15612e-06
0.000367391
-6.22668e-08
0.000369651
-3.07293e-06
0.000368833
2.328e-08
0.000371006
-2.96867e-06
0.000370131
1.88554e-07
0.000372375
-2.80834e-06
0.000371502
7.86078e-07
0.000373602
-2.79882e-06
0.000374121
-6.91265e-07
0.000381773
-9.26898e-06
0.000391692
-1.58355e-05
-2.43145e-05
-0.000453971
-2.24864e-05
-3.20427e-05
-0.000437809
0.000519086
-3.97014e-05
-0.000511556
-2.08587e-05
-0.000545266
-5.52882e-06
-0.000574223
-1.07754e-05
0.000177715
-0.000143967
-0.0011133
-4.93715e-05
0.000554843
3.62993e-05
-0.00037017
-0.000410787
7.7582e-06
-0.000419206
-0.000506279
1.78237e-05
-0.000365265
-0.00015879
-0.000404177
1.38489e-05
-0.000417208
0.000154515
-0.000505938
-0.00109638
-2.13212e-05
0.00015922
-0.000153567
-0.00109211
-9.89805e-06
1.73476e-05
-0.000364108
-0.000402656
1.36974e-05
-0.0004162
-0.000504037
1.80008e-05
-0.000363503
-0.000158549
-0.000401194
1.35084e-05
-0.000414643
0.000153747
-0.000503687
-0.00109014
-6.70616e-06
0.000158387
-0.000153373
-0.00108883
-6.28182e-06
1.75641e-05
-0.000362839
-0.000400119
1.33742e-05
-0.000413567
-0.000502858
1.76346e-05
-0.000362238
-0.000158253
-0.000399078
1.32301e-05
-0.000412455
0.000153026
-0.000502007
-0.00108756
-6.41338e-06
0.000158103
-0.000152676
-0.00108636
-6.55926e-06
1.77224e-05
-0.000361605
-0.000397989
1.30752e-05
-0.000411359
-0.000501204
1.7795e-05
-0.000361028
-0.000157966
-0.000396929
1.29488e-05
-0.000410279
0.000152368
-0.000500447
-0.00108526
-6.62516e-06
0.000157797
-0.00015213
-0.00108429
-6.55409e-06
1.78516e-05
-0.000360492
-0.000395902
1.28529e-05
-0.000409236
-0.000499746
1.78738e-05
-0.000359985
-0.000157605
-0.000394884
1.27783e-05
-0.000408234
0.000151952
-0.000499137
-0.00108354
-6.31195e-06
0.000157408
-0.000151865
-0.00108305
-5.88418e-06
1.78785e-05
-0.000359584
-0.000393966
1.27456e-05
-0.000407356
-0.00049867
1.78257e-05
-0.000359295
-0.00015717
-0.000393168
1.27893e-05
-0.000406636
0.000151924
-0.000498411
-0.00108301
-5.14997e-06
0.000156878
-0.000152221
-0.00108362
-3.93639e-06
1.76746e-05
-0.000359185
-0.000392564
1.29835e-05
-0.000406134
-0.000498397
1.73712e-05
-0.000359301
-0.00015644
-0.00039222
1.33548e-05
-0.000405984
0.000152883
-0.000498806
-0.00108491
-2.14043e-06
0.000155888
-0.000153994
-0.0010871
4.52706e-07
1.68732e-05
-0.000359768
-0.00039229
1.39595e-05
-0.000406322
-0.000499769
1.61521e-05
-0.000360681
-0.000155208
-0.000392933
1.48473e-05
-0.000407314
0.000155622
-0.00050142
-0.00109076
4.25298e-06
0.000154292
-0.000157965
-0.00109632
9.41855e-06
1.51248e-05
-0.000362214
-0.000394273
1.61551e-05
-0.000409122
-0.000503988
1.37334e-05
-0.000364553
-0.000153137
-0.00039652
1.79286e-05
-0.000411988
0.000161182
-0.000507771
-0.00110427
1.61803e-05
0.000151851
-0.000165394
-0.00111525
2.46799e-05
1.19214e-05
-0.000367807
-0.000399956
2.01325e-05
-0.00041619
-0.000513034
9.72827e-06
-0.000372233
-0.000150495
-0.000404766
2.2779e-05
-0.00042196
0.000170633
-0.000520054
-0.00112976
3.48501e-05
0.000149239
-0.00017684
-0.00114831
4.63674e-05
7.22872e-06
-0.00037801
-0.000411225
2.57692e-05
-0.000429495
-0.000529041
4.56917e-06
-0.000385238
-0.000148331
-0.000419461
2.894e-05
-0.000438893
0.000183837
-0.000540094
-0.00117118
5.85694e-05
0.000148052
-0.000191358
-0.00119831
7.06235e-05
1.92606e-06
-0.000393927
-0.000429518
3.21048e-05
-0.000450126
-0.000553143
-4.92793e-07
-0.00040398
-0.000148633
-0.000441291
3.51037e-05
-0.000463058
0.000199108
-0.000567938
-0.00122925
8.16312e-05
0.00015028
-0.000206792
-0.00126338
9.08848e-05
-2.34043e-06
-0.000415269
-0.000454462
3.77423e-05
-0.00047732
-0.000584274
-3.67916e-06
-0.000427485
-0.000153066
-0.000468782
3.98981e-05
-0.000492593
0.000214173
-0.00060172
-0.00129981
9.77486e-05
0.000156844
-0.000221112
-0.00133768
0.000102337
-4.4646e-06
-0.000440373
-0.00048392
4.1549e-05
-0.000508535
-0.000619896
-4.70525e-06
-0.000453651
-0.000161498
-0.000499542
4.27067e-05
-0.000524816
0.00022753
-0.000638429
-0.00137623
0.000104813
0.000166853
-0.0002334
-0.00141482
0.00010539
-4.45711e-06
-0.000467071
-0.000515351
4.34231e-05
-0.000541154
-0.000657002
-3.80777e-06
-0.000480428
-0.00017272
-0.000531103
4.37723e-05
-0.000557315
0.000238745
-0.000675356
-0.00145292
0.000104375
0.000178911
-0.000243601
-0.00149012
0.000102107
-2.85325e-06
-0.000493548
-0.000546589
4.38283e-05
-0.000573108
-0.000693279
-1.68e-06
-0.000506289
-0.000185269
-0.000561653
4.36491e-05
-0.000588391
0.000248009
-0.00071061
-0.00152611
9.89331e-05
0.000191633
-0.000252041
-0.00156063
9.51316e-05
-3.93988e-07
-0.000518543
-0.000576206
4.33453e-05
-0.000603138
-0.000727201
1.10034e-06
-0.000530305
-0.000197957
-0.000590117
4.29586e-05
-0.000617223
0.000255733
-0.00074304
-0.00159359
9.09523e-05
0.000204123
-0.000259128
-0.00162492
8.6539e-05
2.63469e-06
-0.000541513
-0.000603365
4.25007e-05
-0.000630605
-0.000758103
4.14724e-06
-0.000552146
-0.00021007
-0.000615942
4.19963e-05
-0.000643282
0.000262261
-0.000772377
-0.00165462
8.20627e-05
0.000215768
-0.000265161
-0.00168267
7.76116e-05
5.62724e-06
-0.000562204
-0.000627848
4.14696e-05
-0.000655262
-0.000785865
7.0571e-06
-0.000571697
-0.000221194
-0.000639089
4.09417e-05
-0.000666561
0.000267856
-0.000798581
-0.00170911
7.32684e-05
0.000226336
-0.000270367
-0.00173398
6.90632e-05
8.42377e-06
-0.000580639
-0.000649685
4.04255e-05
-0.000677201
-0.000810551
9.72233e-06
-0.000589052
-0.000231194
-0.000659661
3.99268e-05
-0.000687214
0.000272711
-0.00082181
-0.00175737
6.50448e-05
0.000235775
-0.000274903
-0.00177933
6.12196e-05
1.09516e-05
-0.000596961
-0.000669048
3.94492e-05
-0.00069663
-0.00083239
1.21111e-05
-0.00060439
-0.000240086
-0.000677874
3.89953e-05
-0.00070548
0.000276953
-0.000842325
-0.00179993
5.76017e-05
0.00024414
-0.000278869
-0.00181926
5.41716e-05
1.32028e-05
-0.000611365
-0.000686168
3.85642e-05
-0.000713793
-0.000851648
1.42314e-05
-0.000617907
-0.000247951
-0.000693956
3.8155e-05
-0.000721597
0.000280656
-0.000860388
-0.00183737
5.09272e-05
0.00025153
-0.000282327
-0.0018543
4.78364e-05
1.51984e-05
-0.000624037
-0.000701266
3.7771e-05
-0.000728919
-0.000868574
1.60997e-05
-0.000629779
-0.000254876
-0.000708127
3.74173e-05
-0.000735791
0.000283897
-0.000876241
-0.00187014
4.49523e-05
0.000258001
-0.000285377
-0.00188495
4.22802e-05
1.69355e-05
-0.000635158
-0.000714569
3.7094e-05
-0.000742245
-0.000883424
1.77103e-05
-0.000640199
-0.000260918
-0.000720622
3.67987e-05
-0.00074831
0.000286771
-0.000890156
-0.00189881
3.97968e-05
0.000263645
-0.000288085
-0.00191176
3.74773e-05
1.84292e-05
-0.000644926
-0.000726312
3.65283e-05
-0.000754013
-0.000896467
1.90974e-05
-0.000649357
-0.000266194
-0.000731665
3.62798e-05
-0.000759378
0.00028932
-0.000902383
-0.00192388
3.53171e-05
0.00026858
-0.000290479
-0.00193521
3.32932e-05
1.97196e-05
-0.000653511
-0.0007367
3.60502e-05
-0.000764424
-0.000907928
2.03003e-05
-0.000657404
-0.000270813
-0.000741437
3.58367e-05
-0.000769169
0.000291565
-0.000913122
-0.00194579
3.13921e-05
0.000272907
-0.000292578
-0.00195566
2.95885e-05
2.08438e-05
-0.000661049
-0.000745891
3.56371e-05
-0.00077363
-0.000917981
2.13525e-05
-0.000664458
-0.000274867
-0.000750077
3.54517e-05
-0.00077782
0.00029352
-0.000922519
-0.00196484
2.78775e-05
0.000276694
-0.000294397
-0.00197337
2.62607e-05
2.18251e-05
-0.000667643
-0.000754009
3.52804e-05
-0.000781754
-0.000926753
2.22638e-05
-0.000670616
-0.000278395
-0.000757701
3.51218e-05
-0.000785445
0.000295213
-0.000930701
-0.00198126
2.47414e-05
0.000279986
-0.000295972
-0.00198856
2.33092e-05
2.26731e-05
-0.000673384
-0.000761164
3.49749e-05
-0.000788906
-0.000934377
2.30557e-05
-0.000675957
-0.000281471
-0.000764408
3.4838e-05
-0.000792143
0.000296672
-0.000937787
-0.00199529
2.1949e-05
0.000282856
-0.000297309
-0.00200146
2.06435e-05
2.34132e-05
-0.000678341
-0.000767438
3.47074e-05
-0.000795162
-0.00094094
2.37498e-05
-0.000680542
-0.000284145
-0.000770261
3.45794e-05
-0.000797968
0.000297879
-0.000943839
-0.00200709
1.9374e-05
0.000285345
-0.000298377
-0.00201217
1.81233e-05
2.4069e-05
-0.000682561
-0.000772877
3.44513e-05
-0.000800558
-0.000946485
2.43733e-05
-0.000684396
-0.000286461
-0.000775285
3.43216e-05
-0.000802932
0.000298803
-0.000948876
-0.00201671
1.6882e-05
0.000287493
-0.000299153
-0.00202069
1.56489e-05
2.46637e-05
-0.000686046
-0.000777481
3.41898e-05
-0.000805086
-0.000951009
2.49403e-05
-0.000687508
-0.000288441
-0.000779463
3.40554e-05
-0.000807015
0.000299428
-0.000952881
-0.00202412
1.44154e-05
0.000289304
-0.000299622
-0.00202698
1.31735e-05
2.52041e-05
-0.000688781
-0.000781224
3.39161e-05
-0.000808711
-0.000954488
2.54601e-05
-0.00068986
-0.000290089
-0.000782756
3.37598e-05
-0.000810166
0.000299726
-0.000955827
-0.00202925
1.18985e-05
0.000290824
-0.000299716
-0.00203195
1.159e-05
2.5724e-05
-0.000690729
-0.000784037
3.35742e-05
-0.000811344
-0.000956872
2.6e-05
-0.000691382
-0.000291492
-0.000785042
3.4352e-05
-0.000813212
0.000299569
-0.000956601
-0.00203712
1.32293e-05
0.000291093
-0.000301277
-0.00204867
2.1724e-05
2.62923e-05
-0.000691802
-0.000786727
3.31e-05
-0.000813754
-0.000959981
2.56381e-05
-0.000693954
-0.000291667
-0.00078707
3.5731e-05
-0.000816876
0.000304783
-0.000963009
-0.00208348
4.79193e-05
0.000290273
-0.000310016
0.000109578
2.507e-05
-0.000697808
-0.000789961
3.62467e-05
0.00210417
0.000131196
0.00209213
5.99424e-05
0.00208664
2.72106e-05
0.00208367
1.61841e-05
0.00208121
1.40444e-05
0.00207923
1.38727e-05
0.00207675
1.56588e-05
0.00207374
1.74248e-05
0.00207021
1.91826e-05
0.00206615
2.09453e-05
0.00206156
2.27193e-05
0.00205645
2.45032e-05
0.00205079
2.63116e-05
0.00204459
2.81714e-05
0.00203782
3.01081e-05
0.00203044
3.2144e-05
0.00202244
3.42991e-05
0.00201377
3.65867e-05
0.00200441
3.90005e-05
0.00199433
4.15234e-05
0.0019835
4.41881e-05
0.00197186
4.70214e-05
0.00195937
5.00424e-05
0.00194598
5.3269e-05
0.00193163
5.67202e-05
0.00191626
6.04197e-05
0.0018998
6.43949e-05
0.00188218
6.86449e-05
0.00186334
7.31337e-05
0.00184318
7.78839e-05
0.00182161
8.29169e-05
0.00179855
8.82356e-05
0.00177393
9.38241e-05
0.0017477
9.96607e-05
0.00171976
0.000105705
0.00169009
0.000111899
0.00165866
0.000118155
0.00162547
0.000124336
0.00159054
0.000130259
0.00155398
0.000135696
0.00151594
0.000140352
0.00147669
0.000143846
0.00143664
0.000145659
0.00139638
0.000145294
0.00135667
0.000142272
0.00131846
0.000136181
0.00128294
0.00012663
0.00125114
0.000113628
0.00122385
9.81099e-05
0.00120164
8.09578e-05
0.00118461
6.35946e-05
0.00117229
4.73669e-05
0.00116392
3.32204e-05
0.0011586
2.1654e-05
0.00115559
1.25868e-05
0.00115401
5.99172e-06
0.00115334
1.28467e-06
0.00115336
-2.02895e-06
0.0011538
-4.23671e-06
0.00115444
-5.64823e-06
0.00115516
-6.52098e-06
0.00115592
-7.02115e-06
0.00115674
-7.26116e-06
0.00115757
-7.32325e-06
0.00115837
-7.27594e-06
0.00115913
-7.1533e-06
0.00115987
-6.99679e-06
0.00116062
-7.40233e-06
0.00116081
-1.00729e-05
0.00115603
-1.65567e-05
0.000570998
0.000560066
-2.43855e-05
1.14456e-05
0.000562276
-2.70578e-06
0.00055554
-4.18902e-06
-1.28813e-07
-0.000562377
-2.07996e-06
-5.02146e-06
0.000567564
-2.24051e-06
-0.000570355
-1.25422e-06
-0.000569142
-2.66071e-06
-0.000568053
-3.33798e-06
-1.18333e-05
-0.00115099
0.000576217
0.000576564
-6.17571e-06
-0.00115847
0.000574592
-1.71707e-06
-1.8389e-06
-0.000577588
-1.48141e-06
-2.7472e-06
0.000581278
-1.13558e-06
-0.000582888
-1.23621e-06
-0.000583095
-8.08145e-07
-0.000582751
-1.4714e-06
4.32948e-07
-0.00117221
0.000586971
0.000587681
1.62016e-05
-0.00119034
0.000585407
1.0459e-07
1.23297e-06
-0.000583721
5.27378e-06
4.07708e-06
0.000581067
6.86842e-06
-0.00058386
1.09342e-05
-0.000574579
2.34428e-05
-0.000590667
2.29491e-05
6.76146e-05
-0.00122595
0.000580659
0.000634201
0.000234897
-0.000144867
-0.00123736
0.000572539
3.10591e-05
4.34848e-05
-0.000584228
8.24337e-05
8.09954e-05
0.000629092
6.57717e-05
-0.000613928
0.000179671
-1.98394e-05
-0.000226886
8.30329e-05
-0.000284775
3.8047e-05
0.000300379
0.000107129
-7.6179e-05
-0.000550341
0.000289342
4.90833e-05
5.49633e-05
-0.000265855
4.05358e-05
3.71553e-05
-0.000253915
0.000223097
-0.000201895
-3.14286e-05
-0.000181456
-0.000178209
-3.83832e-06
-0.000250546
-0.000187368
-1.55771e-05
-0.000175203
-9.24573e-05
-0.000173657
-6.61986e-05
-0.000490836
-8.57672e-05
-0.000445246
3.05528e-06
-0.000593109
8.93811e-05
-8.83153e-05
-0.000488832
0.000248339
1.30552e-05
-0.000172017
-1.10859e-05
-0.000185189
-0.000174164
1.23839e-05
-0.000184778
-0.000247953
-8.87702e-05
-0.000170997
1.18108e-05
-2.18484e-05
-0.00046726
-8.84782e-05
-0.000182876
-0.000432019
-2.0377e-05
-0.00122514
-0.000174613
-7.56386e-06
-0.00123878
2.34951e-06
-0.00120027
6.62283e-06
-0.00117646
1.06257e-05
-0.00116244
-0.00115691
-8.07995e-06
-0.00115884
-6.97083e-06
-0.00116349
-5.07342e-06
-0.00117835
-0.00120364
-1.7176e-06
6.56655e-06
-0.00120456
-5.56715e-06
7.25798e-06
-0.00117903
7.7298e-06
-0.00116394
-0.00115845
-7.3947e-06
-0.00115803
-0.00116373
-7.54128e-06
7.60563e-06
-0.00116343
-7.81041e-06
-0.00115755
-7.76594e-06
-0.00115698
-8.0641e-06
-0.00116307
0.00117896
-8.12282e-06
-0.00117884
0.00117903
-7.7658e-06
-7.44936e-06
-0.00120486
-7.06671e-06
-0.00120511
-7.44099e-06
-0.00120529
-7.87169e-06
8.47723e-06
-0.00120539
-8.30849e-06
8.29193e-06
-0.00117862
7.87756e-06
-0.00116259
-0.0011563
-7.918e-06
-0.00115553
-0.00116195
-8.47401e-06
7.82377e-06
-0.00116109
-8.57538e-06
-0.00115467
-7.46645e-06
-0.00115366
-8.50053e-06
-0.00115995
0.00117755
-9.39536e-06
-0.00117651
0.00117822
-9.10719e-06
-8.79647e-06
-0.00120535
-8.75695e-06
-0.00120505
-9.26972e-06
-0.00120438
-9.93456e-06
9.60724e-06
-0.00120311
-1.07736e-05
8.15093e-06
-0.00117496
6.73148e-06
-0.00115841
-0.00115245
-5.46177e-06
-0.00115107
-0.00115637
-7.38354e-06
3.37212e-06
-0.00115371
-5.89659e-06
-0.00114958
-2.13154e-08
-0.00114813
-3.13478e-06
-0.00115046
0.0011692
-7.17502e-06
-0.00116499
0.00117264
-9.20666e-06
-9.62793e-06
-0.00120086
-1.17894e-05
-0.00119763
-1.23111e-05
-1.30209e-05
-0.00119161
0.00124087
-1.8858e-05
-0.00123492
0.001244
-1.53394e-05
0.00124568
-1.33149e-05
0.00124627
-1.12107e-05
0.00124625
-9.80682e-06
0.00124589
-8.85941e-06
0.00124538
-8.15437e-06
0.0012448
-7.59824e-06
0.00124417
-7.14004e-06
0.00124344
-6.69759e-06
0.00124212
-5.70193e-06
0.0012414
-4.74638e-06
9.70359e-07
0.000175711
-0.000178021
-0.00122173
0.00059026
1.5653e-05
-0.000430206
-1.63361e-05
-0.000482545
-8.86152e-05
8.75941e-05
-0.000466358
-8.81583e-05
8.76476e-05
1.77491e-05
-0.000482342
-8.88761e-05
8.71056e-05
-0.000590514
-0.000174586
-0.000430878
1.49225e-05
-0.00122251
-0.000178475
-0.00122333
-0.000178931
0.00017401
-0.00122479
-0.00017937
0.000174125
0.000174267
-0.000179818
-0.00122617
0.000592722
1.45637e-05
-0.00043301
0.000432273
-1.8913e-05
0.00059174
1.46576e-05
0.000431547
-1.87254e-05
0.000590792
1.48037e-05
-1.85112e-05
0.000466792
8.72811e-05
-8.91406e-05
-0.000483446
8.77769e-05
-8.84234e-05
0.000247785
1.23171e-05
-0.000172322
0.000172109
-1.31969e-05
0.000247488
1.17341e-05
0.000171917
-1.25791e-05
0.000247241
1.23296e-05
0.000171739
-1.31066e-05
0.000246991
1.23434e-05
-1.24855e-05
0.000174373
-0.000185015
-0.000174034
-0.000185263
-0.000174273
-0.000184948
-0.000174542
-0.000185818
-0.00017483
1.26546e-05
-0.000185555
-0.000248093
-0.000172552
1.17379e-05
-1.326e-05
-0.000248439
0.000175146
-0.000186479
-1.23323e-05
-0.000175479
-8.79733e-05
-0.0001728
-0.000467907
-8.86982e-05
8.74748e-05
-8.94416e-05
-0.000484649
0.000248781
1.1741e-05
-0.000173048
-1.27193e-05
-0.00018625
-0.000175819
1.33411e-05
-0.000187188
-0.000249139
-8.81545e-05
-0.000173292
1.23215e-05
-0.000469086
-8.90097e-05
-0.000485852
-8.97502e-05
8.76535e-05
-0.000470315
-8.93137e-05
8.83547e-05
1.90659e-05
-0.000487214
-9.0068e-05
8.78882e-05
-0.000593739
-0.000174333
-0.000433811
1.44404e-05
-0.00122759
-0.000180351
-0.00122905
-0.000180975
0.000174356
-0.00123049
-0.000181704
0.000174322
0.000174188
-0.000182636
-0.00123179
0.000597203
1.35549e-05
-0.00043653
0.000435568
-2.00486e-05
0.00059598
1.39225e-05
0.000434659
-1.96486e-05
0.000594829
1.42036e-05
-1.93135e-05
0.000471721
8.81198e-05
-9.04559e-05
-0.000488678
8.86018e-05
-8.966e-05
0.000250663
1.23413e-05
-0.000174409
0.000174094
-1.35052e-05
0.00025023
1.17467e-05
0.000173803
-1.28849e-05
0.000249842
1.23224e-05
0.000173536
-1.34321e-05
0.000249476
1.17326e-05
-1.28095e-05
0.000176151
-0.000186952
-0.000176494
-0.000187908
-0.000176856
-0.000187722
-0.000177256
-0.000188742
-0.000177682
1.29709e-05
-0.000188606
-0.000251103
-0.000174728
1.17466e-05
-1.362e-05
-0.000251557
0.000178119
-0.000189657
-1.23237e-05
-0.000178566
-8.88153e-05
-0.000175053
-0.000473171
-9.00762e-05
8.83383e-05
-9.08969e-05
-0.000490249
0.000252023
1.17223e-05
-0.000175398
-1.30984e-05
-0.000189544
-0.000179044
1.37593e-05
-0.000190665
-0.000252532
-8.90533e-05
-0.000175771
1.22949e-05
-0.000474806
-9.05487e-05
-0.000492003
-9.14134e-05
8.85867e-05
-0.000476599
-9.11098e-05
8.92999e-05
2.06141e-05
-0.000493981
-9.20369e-05
8.88294e-05
-0.000598535
-0.000173814
-0.00043764
1.29346e-05
-0.00123264
-0.000183954
-0.00123258
-0.000186107
0.000172921
-0.0012312
-0.000188681
0.000172027
0.000169101
-0.000190948
-0.00122812
0.000602624
7.4114e-06
-0.000440912
0.000439259
-2.52928e-05
0.000601518
9.79493e-06
0.000438846
-2.34071e-05
0.000600013
1.17801e-05
-2.15581e-05
0.000478717
8.90145e-05
-9.29156e-05
-0.000496359
8.95194e-05
-9.18346e-05
0.000254916
1.21475e-05
-0.000177539
0.00017704
-1.4156e-05
0.000254262
1.16139e-05
0.00017659
-1.34303e-05
0.000253648
1.22476e-05
0.000176166
-1.39248e-05
0.000253074
1.16831e-05
-1.3241e-05
0.000179564
-0.000190633
-0.00018012
-0.000191834
-0.000180718
-0.000191884
-0.000181362
-0.000193189
-0.000182078
1.37144e-05
-0.000193374
-0.000255659
-0.000178093
1.14532e-05
-1.453e-05
-0.000256477
0.000182877
-0.000194871
-1.18967e-05
-0.000183791
-8.9643e-05
-0.000178729
-0.000481272
-9.2928e-05
8.90042e-05
-9.43784e-05
-0.000499273
0.000257435
1.10471e-05
-0.000179474
-1.42171e-05
-0.000195297
-0.000184873
1.52957e-05
-0.000197174
-0.00025855
-8.99277e-05
-0.000179756
1.11397e-05
-0.000484216
-9.51567e-05
-0.000502925
-9.61572e-05
8.96012e-05
-0.000488884
-9.58748e-05
8.92705e-05
2.84476e-05
-0.000508963
-9.70865e-05
8.87597e-05
-0.000603374
-0.000164191
-0.000442647
3.50721e-06
2.06036e-05
-0.00122194
-0.000190784
1.19644e-05
-0.00122612
4.26249e-06
-0.00118374
-1.68259e-06
-0.00115888
-5.17057e-06
-0.00114684
-0.00114718
1.27626e-05
-0.00114721
-0.00114332
9.39808e-06
-2.31804e-05
-0.00114093
2.09702e-05
-0.00114857
3.78741e-05
-0.00115304
3.74147e-05
-0.00114028
0.00114468
3.09874e-05
-0.00113808
0.00115186
1.39642e-05
2.52576e-06
-0.00117306
-8.01174e-06
-0.00116082
1.88024e-06
-0.00114698
1.73204e-05
-5.72265e-05
-0.0011347
4.51211e-05
-5.98811e-05
-0.00113524
-5.62528e-05
-0.00114372
-0.00116174
7.78773e-05
-0.00117584
-0.00115339
8.77381e-05
-0.000100843
-0.00117138
0.000119036
-0.00119554
0.000124748
-0.00122197
0.000150145
-0.00119655
0.00115111
0.000176922
-0.00117769
0.00113869
0.000131639
9.13616e-05
-0.00112912
8.59545e-05
-0.00113609
0.000138754
-0.0011588
0.000199775
-0.000217331
-0.00120055
0.000259258
-0.000180088
-0.0012147
-0.000145939
-0.00123048
-0.00125409
0.00016335
-0.00129061
-0.00127095
0.000204003
-0.000176053
-0.00131444
0.000219724
-0.00133027
0.000183818
-0.00137158
0.000228366
-0.00135877
0.00130774
0.000276782
-0.00135596
0.0012598
0.000267856
0.000249314
-0.00125084
0.000299819
-0.00130556
0.000322778
-0.00135922
0.000330634
-0.00027771
-0.00140958
0.000328293
-0.000230884
-0.00140257
-0.00018707
-0.00140238
-0.00141315
0.000186659
-0.00145396
-0.00144452
0.000228991
-0.000183483
-0.00148473
0.00022388
-0.0014934
0.000178341
-0.00153118
0.000216541
-0.00152273
0.00148804
0.000255198
-0.00152651
0.0014467
0.000265392
0.00027333
-0.00145683
0.000320796
-0.00149951
0.000308262
0.00029442
-0.00153858
0.00151383
0.000333953
-0.0015532
0.00146997
0.000352321
0.00142096
0.000370024
0.00136615
0.000383298
0.00130605
0.000390904
0.00124316
0.000385874
0.00118139
0.000361781
0.00113227
0.000308533
0.00111365
0.000218554
0.00112356
0.000129057
0.00114373
6.59909e-05
0.00116982
1.9207e-05
0.00119399
-6.70927e-06
0.00121333
-1.73061e-05
-2.06185e-05
-0.00121088
-0.00018926
0.000157844
-0.00118387
-0.000192197
0.000148077
0.000136037
-0.000188476
-0.001138
0.000588518
-2.92644e-05
-0.000423196
0.000442881
-4.65332e-05
0.000598471
-7.47791e-06
0.000443389
-3.41399e-05
0.000601891
-6.19806e-07
-3.15019e-05
0.00049712
8.58522e-05
-9.67994e-05
-0.000517637
8.82246e-05
-9.65134e-05
0.000264005
8.20033e-06
-0.000183972
0.000183155
-1.62275e-05
0.000262012
9.91065e-06
0.000182337
-1.61932e-05
0.000260823
1.07901e-05
0.000180664
-1.59921e-05
0.000259851
1.04207e-05
-1.50559e-05
0.00018685
-0.000198095
-0.000188342
-0.000200687
-0.000189839
-0.000202176
-0.000192591
-0.000204497
-0.000195303
1.63028e-05
-0.000207676
-0.000264173
-0.000185711
7.39571e-06
-1.70148e-05
-0.000265489
0.000198971
-0.000211303
-6.25701e-06
-0.00020297
-8.48858e-05
-0.000186856
-0.000507859
-9.52531e-05
8.1502e-05
-9.3374e-05
-0.000530095
0.000265642
4.77881e-06
-0.000188913
-1.64617e-05
-0.000214589
-0.000207304
1.69938e-05
-0.000219582
-0.000265288
-7.91073e-05
-0.000189959
3.78451e-06
-0.00052435
-9.22961e-05
-0.000536508
-0.00010374
6.9393e-05
-0.000490718
-0.000125577
5.0548e-05
5.45208e-05
-0.000487019
-0.000107123
4.89329e-05
-0.00055713
-0.000141065
-0.000401338
-1.47032e-05
-0.00109646
-0.000163221
-0.00105682
-0.000123949
0.000150533
-0.00104043
-6.09471e-05
0.000173874
0.000262532
-0.00108417
0.000451754
0.000465699
0.000254239
6.91049e-05
-0.000978028
0.000344915
4.59327e-05
0.000483881
3.49533e-05
0.000374557
-1.45857e-05
0.000528093
-2.9679e-06
-3.64337e-05
0.000469238
5.65234e-05
-8.87914e-05
-0.00047336
5.93672e-05
-9.18129e-05
0.000178565
-4.00292e-06
-0.000115188
0.000114245
-4.27965e-05
0.000184264
-2.10811e-05
0.000131172
-7.24801e-05
0.000273339
-9.16126e-05
0.000194337
-2.47322e-05
0.000264636
-9.00115e-07
-1.7613e-05
0.000212626
-0.000150271
-0.000125674
-0.000118653
-0.000154658
-0.000143762
-8.33705e-05
-0.000133742
-3.10957e-05
-2.84573e-05
-0.000148075
0.000132863
-0.000138545
0.000132134
1.57982e-05
-0.000138079
-0.000136273
2.95514e-05
-0.000148946
-1.68706e-05
-0.000177443
-0.000121111
1.99448e-07
-1.4798e-05
-0.000195097
0.000140046
-7.47173e-06
-0.000147364
-8.69334e-06
0.000141422
-0.000140556
-0.000140032
1.23087e-05
-0.000150831
9.38537e-06
-0.000144433
-5.11118e-05
-0.000134592
-0.000442102
-8.52949e-05
5.00007e-05
-6.88876e-05
-0.000437756
0.000190412
-7.02135e-06
-0.000133383
-2.94672e-05
-0.000143957
-2.99365e-05
-0.000143384
-7.58823e-06
6.50485e-06
-0.000168481
1.85979e-05
-0.000195759
-2.82555e-05
-0.000402984
-6.38489e-05
0.0001309
-0.000431011
8.06662e-05
7.54673e-05
-1.66949e-05
-0.000381043
0.000141396
3.46629e-05
-0.000100586
7.74017e-05
1.51728e-07
0.000143467
6.48406e-05
0.000132506
2.95646e-05
0.000128353
-3.42898e-06
-5.24086e-05
-0.000122297
-0.000123185
-0.000114119
-0.000100377
-0.000102829
-2.23633e-05
2.49731e-05
-0.000101521
-2.84558e-06
3.62042e-05
-5.70895e-05
-0.000100032
9.35935e-06
4.62431e-05
-0.000174365
-0.0001147
-0.000124843
6.51817e-05
-0.000275899
3.44231e-05
0.000151932
7.02946e-05
-0.000428991
0.00017468
0.000112091
-0.000134835
8.42629e-05
0.000115248
7.55688e-05
3.8549e-05
-0.000145101
5.90174e-05
2.13817e-05
5.69442e-05
3.79246e-05
-3.58513e-05
4.34232e-05
2.28804e-05
6.74003e-05
2.22665e-05
4.4957e-05
1.95982e-05
6.82653e-05
1.28968e-05
6.05474e-05
-1.46446e-05
-5.38658e-05
-4.85675e-05
-4.41945e-05
-5.09146e-05
1.43314e-05
-4.23657e-05
-3.54902e-05
-3.41733e-05
-3.24864e-05
-3.86145e-05
-4.43056e-05
-4.61616e-05
5.18525e-05
-5.87752e-05
-4.23943e-05
5.9188e-05
6.13149e-05
-6.51603e-05
4.76476e-05
7.06167e-05
-5.69496e-05
6.06739e-05
4.69839e-05
-4.39977e-05
5.76874e-05
8.19675e-05
-5.53487e-05
3.50544e-05
-6.0569e-05
-9.19264e-05
-6.18812e-05
9.32383e-05
-8.02157e-05
-6.70596e-05
-7.06264e-05
-6.6539e-05
-8.3538e-05
-5.22487e-05
-0.000167262
5.07142e-05
-9.62063e-05
-0.000234227
0.000163172
-0.000160743
-0.000285664
-0.000453424
0.0001165
0.000227635
-0.000358971
-0.000355653
-0.000379598
-0.00108301
0.000125837
-0.00115503
-0.00123121
0.00043816
-0.0013082
0.00046306
0.00046007
-0.00137722
0.00131825
0.000539624
-0.00139763
0.00121221
0.000569319
0.000567542
0.000453788
0.00058862
-0.00122386
0.000749178
0.000224006
0.00035922
0.000182678
0.000284296
0.000303513
-0.000411265
0.000157721
0.000141457
0.000192887
0.000192467
6.09967e-05
9.85938e-05
0.000121974
7.44943e-05
5.94623e-05
9.1517e-05
0.000103115
-7.86575e-05
-8.05137e-05
0.000121747
-0.000104525
-9.43409e-05
0.000118352
-6.1209e-05
-6.63587e-05
7.96438e-05
0.000124475
7.94754e-05
0.000140701
-0.000218545
0.000109777
0.000121914
0.000109334
-0.000121471
0.000107336
0.000132931
4.96454e-05
-0.000153721
7.73876e-05
8.66701e-05
-0.000131057
0.000129305
8.2858e-05
-0.000125492
7.76498e-05
-0.000114412
8.42465e-05
8.8513e-05
-0.000120067
0.000103789
9.75479e-05
-0.000112823
9.33704e-05
-0.000104469
0.000111973
0.000109487
-0.000116407
0.000112373
0.000115808
-0.000118692
0.000108631
0.000115717
0.000137353
0.000110814
0.000132553
-0.000106009
0.000166978
0.000136827
0.00014785
-0.000117692
0.000132662
0.000142534
0.000177232
0.000163896
0.000153493
-0.000140152
0.000134652
0.000164451
0.000126427
0.000198871
0.00010201
-0.00017445
0.000173043
0.000115459
0.00013946
4.09541e-05
-0.000154728
0.000253236
-0.000188612
-0.000292093
0.000215441
0.00030623
-0.000227877
4.67449e-05
-0.000172606
-0.000198331
-0.000284145
0.000237148
-0.000161489
-0.000209442
-0.000171481
-0.000154494
0.000136512
-0.000144843
-0.000153706
0.000144061
-0.000142454
-0.000134168
0.00013957
-0.000134862
-0.000141341
0.00014204
-0.000119997
-0.000124133
-0.000117551
0.000121691
-0.000114422
0.000127879
-0.000126491
-9.93869e-05
0.000109717
0.000223394
0.000280752
-0.000300655
-0.000103121
-0.00019975
0.000222653
0.00011046
-9.0814e-05
0.000122594
0.000233455
0.000307152
-0.00034971
0.000142599
0.00012204
0.000128468
6.45353e-05
-0.00012429
0.000188228
-0.000231209
0.00033537
0.000318245
-0.000357845
-6.99678e-05
-0.000189403
0.00031062
-0.000142892
0.000459435
-0.000439005
0.000290209
0.000402457
0.0005909
0.000543753
-0.000873274
-0.000204352
-0.00019545
0.00036062
0.000237288
0.000343017
-0.00032302
-0.00019926
0.000318484
0.000223792
-4.40517e-05
-0.000181947
0.000332971
-0.000156759
0.000206985
0.000338083
0.000187379
0.00028772
0.000137292
0.000253861
0.000125665
0.000189974
0.000305777
0.000136776
-0.000252591
0.000256669
0.000133638
0.00019829
0.000287033
0.000174879
-0.000263626
0.000261474
0.000120688
0.00024003
0.00010808
0.000184658
0.000286956
0.000168907
-0.000271182
0.000246219
0.000168103
0.000210826
0.000298605
0.000193321
-0.000281076
0.000367338
0.000146175
0.000298486
0.000136159
0.00020606
0.000402346
0.00015617
-0.000352516
0.000324723
0.000141564
0.000224128
0.000450897
0.000171638
-0.000398417
0.000361967
0.000140812
0.000299225
0.000129954
0.000208005
0.000407986
0.000167316
-0.000367338
0.000317694
0.000157925
0.000231857
0.000420778
0.000197786
-0.000386707
0.000327622
0.000168763
0.000238147
0.000443431
-0.000394422
0.000189165
0.000345398
0.000173943
0.000246752
0.000465561
0.000198985
-0.000417757
0.000368424
0.000156224
0.000297615
0.000145099
0.000212146
0.000388703
0.000165346
-0.000341965
0.000308704
0.000150051
0.000226871
0.000402778
0.000192542
-0.000368465
0.000309023
0.000171528
0.000229054
0.000399865
0.000181146
-0.000352097
0.000315561
0.000160315
0.00023484
0.000409567
0.000198636
-0.000373418
0.000311577
0.00017786
0.000234752
0.000397424
0.000190483
-0.0003532
0.000305952
0.000172132
0.000249208
0.000382632
0.0002303
-0.000363727
0.000297429
0.00048328
0.000234188
-0.000419955
0.000366879
0.000213445
0.000280999
0.000473914
0.000242837
-0.0004357
0.000359315
0.000205378
0.000271764
0.000468952
0.000225367
-0.000422545
0.000353892
0.000204201
0.000271956
0.000446448
0.000244354
-0.000418876
0.000330796
0.0002088
0.000274473
0.00040685
0.000256241
-0.000388613
0.000323926
0.000490881
0.000267282
-0.000434273
0.000366153
0.000233167
0.000286459
0.000457307
0.000236302
-0.000407153
0.000345676
0.00020834
0.000287196
0.000424779
0.0002681
-0.000405634
0.000336211
0.000523966
0.000269355
-0.000457091
0.000392739
0.000242609
0.000309539
0.000490151
0.000276747
-0.000457342
0.000359641
0.000235139
0.000302046
0.000436862
0.000283731
-0.00041853
0.000350659
0.000524946
0.000289003
-0.000463297
0.000386509
0.000258476
0.000330569
0.000473044
0.000316347
-0.00045883
0.000382444
0.000560593
0.000322437
-0.000500624
0.000416465
0.000267584
0.000329392
0.000525957
0.000281915
-0.000478505
0.000382703
0.000253744
0.000325915
0.000451699
-0.000446013
0.000320241
0.000369589
0.00052198
0.000300712
-0.000453081
0.00039116
0.000257562
0.000333515
0.00047113
0.000311648
-0.000449245
0.000381012
0.000566604
0.000312389
-0.000497972
0.000412348
0.000284877
0.000356958
0.000485507
0.000348053
-0.000476608
0.000400186
0.000559239
0.00032366
-0.000482724
0.000416201
0.000277827
0.000356865
0.00050141
-0.000479878
0.000335315
0.00040723
0.000600842
0.00033526
-0.000528888
0.000436124
0.00030392
0.000378231
0.000511997
0.000370308
-0.000504087
0.000422878
0.000587215
0.000343273
-0.00050761
0.000436427
0.000293267
0.000375037
0.000524664
0.000351315
-0.000500933
0.000426304
0.000627566
0.000350122
-0.000551376
0.000454172
0.000318771
0.00039499
0.000534131
0.000385835
-0.000524975
0.000441133
0.000611708
0.000357193
-0.000527773
0.000454235
0.000306281
0.000390779
0.000546175
0.000366329
-0.000521736
0.000444342
0.000651711
0.000366016
-0.000573397
0.000471835
0.000331716
0.000410394
0.000553161
-0.000544706
0.000401927
0.000457581
0.000631936
0.000372496
-0.000546859
0.00046951
0.000316972
0.000403727
0.000563427
0.000378209
-0.000537911
0.000458393
0.000672364
0.000377118
-0.000591086
0.000487951
0.000342285
0.000423644
0.000571951
0.000414551
-0.000562852
0.000472489
0.000654576
0.000383938
-0.000566022
0.000487177
0.000327566
0.000419115
0.000584972
-0.00055943
0.00039357
0.000475102
0.000698133
0.00039188
-0.000614915
0.000506471
0.000355432
0.000439177
0.000592766
0.000431514
-0.000585109
0.000490663
0.000679679
0.000399308
-0.000588332
0.000506018
0.000339997
0.000433814
0.00060801
0.000406695
-0.000580901
0.000492828
0.000726018
0.000406239
-0.000639438
0.000529045
0.00036725
0.000457997
0.000619693
0.000447876
-0.000609577
0.000510997
0.000712813
0.000414425
-0.000616245
0.000531595
0.000354808
0.000455729
0.000641379
0.000426456
-0.000612107
0.000519559
0.000768077
0.000426719
-0.000675238
0.00055875
0.000387229
0.000484657
0.000658821
-0.000645139
0.000470974
0.000541767
0.000756317
0.000437604
-0.000652157
0.000565608
0.000373421
0.000483368
0.00068638
0.000448156
-0.000651172
0.00055078
0.000837192
0.000438297
-0.000724714
0.00062212
0.000395137
0.000494557
0.000770093
0.000442948
-0.00071849
0.00056329
0.000374299
0.00047503
0.000679141
0.000445445
-0.000649562
0.000547903
0.000814027
0.000450914
-0.000717044
0.000600207
0.000401757
0.000513457
0.000732707
0.000490248
-0.000709502
0.00059224
0.000867446
0.000497553
-0.000772766
0.000647866
0.000412407
0.000508803
0.000817232
0.00043269
-0.000741121
0.000600322
0.000390283
0.000507319
0.000717433
-0.000701785
0.000491643
0.000577441
0.000848897
0.000451517
-0.000723132
0.00065468
0.000384192
0.000507841
0.000836928
0.000429824
-0.000758888
0.000623021
0.000387235
0.000520182
0.000765272
0.000496879
-0.000741965
0.000609849
0.000913568
0.000510524
-0.000814263
0.000691999
0.000423691
0.000537664
0.000882125
0.000451098
-0.000795555
0.000652742
0.000412608
0.000548315
0.000790102
0.000525621
-0.000767407
0.000627725
0.000943243
0.000481677
-0.000797201
0.00073331
0.000414365
0.00056073
0.000944722
0.000465236
-0.000849237
0.000713795
0.000415111
0.000541214
0.00091563
0.000423137
-0.000797555
0.000717911
0.000372425
0.000536593
0.000927601
0.000448874
-0.000839881
0.000708012
0.000400982
0.000529509
0.000905513
0.000414815
-0.000790829
0.000718012
0.000363001
0.000531286
0.000926942
0.000440255
-0.000835915
0.000715947
0.000393312
0.000528243
0.00092306
0.000406729
-0.00080155
0.000738219
0.000361463
0.0005434
0.000962487
0.000448903
-0.000867989
0.000745697
0.000399663
0.000544416
0.00096813
0.000413822
-0.000837536
0.000779536
0.000370828
0.000566765
0.00102541
0.000457364
-0.000916013
0.000801965
0.000412841
0.000577054
0.00106268
0.000418446
-0.000904066
0.000869785
0.000375395
0.000600009
0.00119839
0.000436299
-0.00103468
0.000971699
0.000360803
0.000818663
0.000338719
0.000550795
0.00105488
0.0004511
-0.000955182
0.0009267
0.000243649
0.000820744
0.00026795
0.000527793
0.00113682
-0.000981672
0.000372652
0.000946375
0.000305752
0.000819943
0.000297586
0.00053527
0.00107446
0.000420141
-0.000959329
0.000974734
0.000200617
0.000889042
0.000232292
0.000531263
0.00128334
0.000319981
-0.00107206
0.0011213
0.000228279
0.00103797
0.000172369
0.000946846
0.000183087
0.000859143
0.00021832
0.000499823
0.00113952
0.000354848
-0.000994535
0.00107711
0.000141221
0.000997352
0.000147822
0.00100273
3.14957e-05
0.000941418
0.000100447
0.000965175
-3.99654e-06
0.000910186
8.22151e-05
0.000940013
-1.43998e-05
0.000888675
7.58861e-05
0.000918736
-1.67962e-05
0.000869873
7.09117e-05
0.000901374
-2.11558e-05
0.0008545
6.62046e-05
0.000886439
-2.39016e-05
0.000841574
6.21322e-05
0.000874229
-2.62057e-05
0.000830443
5.94609e-05
0.000863107
-2.7523e-05
0.000820612
5.6783e-05
0.00085375
-2.91319e-05
0.000811932
5.48501e-05
0.000844968
-3.01045e-05
0.000804165
5.26947e-05
0.000837541
-3.1366e-05
0.000797171
5.12596e-05
0.000830354
-3.2025e-05
0.000790755
4.95941e-05
0.000824194
-3.3022e-05
0.000784847
4.8536e-05
0.000818027
-3.34443e-05
0.000779283
4.7206e-05
0.000812677
-3.42349e-05
0.000774073
4.64212e-05
0.000807174
-3.44662e-05
0.000769106
4.53339e-05
0.000802418
-3.51288e-05
0.000764434
4.47564e-05
0.000797436
-3.52256e-05
0.000759891
4.38583e-05
0.000793161
-3.6028e-05
0.00075566
4.3612e-05
0.000788644
-3.58137e-05
0.00075162
4.26326e-05
0.000784861
-3.63375e-05
0.000747897
4.22478e-05
0.000780837
-3.62409e-05
0.000744291
4.16075e-05
0.000777508
-3.6719e-05
0.000741019
4.13074e-05
0.00077393
-3.65664e-05
0.000737841
4.07552e-05
0.000771033
-3.70104e-05
0.000734988
4.05193e-05
0.000767877
-3.68138e-05
0.000732213
4.00411e-05
0.00076539
-3.7233e-05
0.000729754
3.9859e-05
0.000762632
-3.70037e-05
0.000727356
3.94416e-05
0.000760528
-3.74034e-05
0.000725263
3.93064e-05
0.000758138
-3.71462e-05
0.000723212
3.89446e-05
0.000756374
-3.75133e-05
0.000721428
3.88657e-05
0.000754316
-3.72683e-05
0.000719707
3.85167e-05
0.000752864
-3.75945e-05
0.000718203
3.84979e-05
0.000751104
-3.73558e-05
0.000716772
3.81692e-05
0.000749955
-3.76756e-05
0.000715568
3.81763e-05
0.000748472
-3.74134e-05
0.000714385
3.78853e-05
0.000747562
-3.77116e-05
0.000713402
3.79257e-05
0.000746299
-3.74368e-05
0.000712423
3.76635e-05
0.000745593
-3.77218e-05
0.00071163
3.77288e-05
0.000744522
-3.74404e-05
0.00071083
3.74855e-05
0.000743994
-3.77177e-05
0.000710201
3.75713e-05
0.000743089
-3.74314e-05
0.000709552
3.73458e-05
0.000742711
-3.77028e-05
0.000709063
3.7446e-05
0.000741953
-3.74143e-05
0.000708548
3.72385e-05
0.000741705
-3.76773e-05
0.000708177
3.73527e-05
0.000741064
-3.73904e-05
0.000707769
3.71567e-05
0.000740919
-3.7646e-05
0.000707491
3.72825e-05
0.000740375
-3.73617e-05
0.00070717
3.7095e-05
0.000740313
-3.76129e-05
0.000706965
3.72301e-05
0.000739844
-3.7331e-05
0.000706712
3.70491e-05
0.000739845
-3.7576e-05
0.000706563
3.71932e-05
0.000739435
-3.72972e-05
0.000706365
3.70153e-05
0.000739488
-3.75409e-05
0.000706261
3.71652e-05
0.000739124
-3.72642e-05
0.000706103
3.69917e-05
0.000739215
-3.75059e-05
0.000706034
3.71452e-05
0.000738887
-3.72331e-05
0.000705908
3.69742e-05
0.000739009
-3.74738e-05
0.000705866
3.71291e-05
0.000738712
-3.72056e-05
0.000705767
3.69595e-05
0.000738859
-3.74454e-05
0.000705748
3.71167e-05
0.000738585
-3.71802e-05
0.00070567
3.69494e-05
0.000738751
-3.74177e-05
0.000705667
3.71077e-05
0.000738497
-3.71565e-05
0.000705606
3.69417e-05
0.000738678
-3.73932e-05
0.000705617
3.71017e-05
0.000738438
-3.71341e-05
0.000705567
3.69374e-05
0.00073863
-3.73691e-05
0.000705587
3.70979e-05
0.000738402
-3.71133e-05
0.000705547
3.69346e-05
0.000738602
-3.73476e-05
0.000705575
3.70956e-05
0.000738382
-3.70942e-05
0.000705542
3.69332e-05
0.000738589
-3.73277e-05
0.000705575
3.70947e-05
0.000738375
-3.70765e-05
0.000705547
3.69329e-05
0.000738586
-3.73094e-05
0.000705584
3.70948e-05
0.000738377
-3.706e-05
0.000705559
3.69338e-05
0.000738591
-3.72919e-05
0.000705597
3.70964e-05
0.000738385
-3.70438e-05
0.000705574
3.69361e-05
0.000738599
-3.72749e-05
0.000705612
3.70994e-05
0.000738393
-3.70279e-05
0.000705589
3.69382e-05
0.000738608
-3.7261e-05
0.000705628
3.71005e-05
0.000738403
-3.70153e-05
0.000705606
3.69386e-05
0.00073862
-3.72502e-05
0.000705647
3.70997e-05
0.000738418
-3.70061e-05
0.000705627
3.69372e-05
0.000738638
-3.72427e-05
0.000705672
3.70966e-05
0.00073844
-3.70011e-05
0.000705657
3.69329e-05
0.000738666
-3.72398e-05
0.000705707
3.70911e-05
0.000738475
-3.70006e-05
0.000705698
3.69262e-05
0.000738708
-3.72414e-05
0.000705756
3.7084e-05
0.000738525
-3.70032e-05
0.000705755
3.6919e-05
0.000738767
-3.72452e-05
0.000705821
3.70769e-05
0.000738593
-3.70078e-05
0.000705828
3.69126e-05
0.000738843
-3.72498e-05
0.000705901
3.70717e-05
0.000738676
-3.70117e-05
0.000705914
3.69092e-05
0.000738932
-3.72531e-05
0.000705992
3.70694e-05
0.00073877
-3.7015e-05
0.000706011
3.69073e-05
0.000739031
-3.72575e-05
0.000706095
3.7066e-05
0.000738877
-3.70218e-05
0.000706121
3.69026e-05
0.000739149
-3.72695e-05
0.000706218
3.70562e-05
0.000739011
-3.70414e-05
0.000706265
3.6884e-05
0.000739522
-3.75156e-05
0.000706401
3.72242e-05
0.000739229
-3.71027e-05
0.000706726
3.64186e-05
0.000740251
-3.78376e-05
0.000707408
3.66968e-05
0.000740958
-3.79296e-05
0.000709151
3.51926e-05
0.000744571
-4.09515e-05
0.000715165
3.06524e-05
0.000755283
-5.15019e-05
0.000743059
8.81769e-07
0.000824752
-0.000118991
0.000906457
-0.000136062
-0.000145891
-0.00108538
-0.000192583
-0.00019488
-0.00102656
0.00117375
-0.00015464
-0.00121399
-0.000328672
-0.000836245
-0.000899675
-5.22972e-05
-0.00270924
-0.000476149
-0.00110661
0.000429911
-0.000265285
-0.00213545
-0.000349779
-0.00071564
-0.000980044
-0.000343741
-0.000687805
-0.000309053
-0.00202058
-0.000149555
-0.000966205
-0.000327434
-0.000679722
-0.000313226
-0.00189717
-0.000137619
-0.000957755
-0.000318805
-0.000676879
-0.000316133
-0.00192427
2.443e-05
-0.000956314
-0.000318577
-0.000675574
-0.000314439
-0.00185616
-7.22363e-05
-0.000953593
-0.000315601
-0.000675094
-0.000316647
-0.00190455
4.94385e-05
-0.000954515
-0.000316822
-0.000675208
-0.000314499
-0.00184563
-6.12319e-05
-0.000952821
-0.000314836
-0.000675025
-0.000316271
-0.00189852
5.43337e-05
-0.000954238
-0.000316537
-0.000674969
-0.000314531
-0.00184279
-5.77311e-05
-0.000952596
-0.000314594
-0.000675022
-0.000316086
-0.00189726
5.597e-05
-0.00095404
-0.000316311
-0.000674984
-0.000314346
-0.00184223
-5.69858e-05
-0.00095242
-0.000314384
-0.000675049
-0.000316115
-0.00189717
5.66866e-05
-0.000954092
-0.00031632
-0.000675022
-0.000314378
-0.00184238
-5.67149e-05
-0.000952488
-0.0003144
-0.000675098
-0.000316151
-0.00189713
5.65196e-05
-0.000954174
-0.000316339
-0.000675082
-0.000314421
-0.00184259
-5.64488e-05
-0.000952587
-0.000314423
-0.000675168
-0.000316202
-0.00189738
5.65851e-05
-0.00095429
-0.000316366
-0.000675165
-0.000314479
-0.00184286
-5.63902e-05
-0.000952722
-0.000314456
-0.000675265
-0.000316267
-0.0018977
5.66695e-05
-0.000954444
-0.000316406
-0.000675276
-0.000314549
-0.00184321
-5.63278e-05
-0.000952895
-0.000314502
-0.00067539
-0.000316344
-0.0018981
5.6755e-05
-0.000954638
-0.00031646
-0.000675415
-0.000314629
-0.00184342
-5.6494e-05
-0.000953107
-0.000314563
-0.000675541
-0.000316429
-0.00189858
5.70516e-05
-0.00095487
-0.000316529
-0.000675579
-0.000314719
-0.00184392
-5.64529e-05
-0.000953357
-0.00031464
-0.000675718
-0.000316523
-0.00189914
5.71217e-05
-0.000955137
-0.000316614
-0.000675769
-0.000314817
-0.00184472
-5.61994e-05
-0.000953644
-0.000314734
-0.000675921
-0.000316625
-0.00189978
5.69677e-05
-0.000955442
-0.000316715
-0.000675985
-0.000314923
-0.00184538
-5.61741e-05
-0.000953966
-0.000314841
-0.000676149
-0.000316737
-0.00190049
5.70266e-05
-0.000955783
-0.000316829
-0.000676225
-0.000315038
-0.00184611
-5.61565e-05
-0.000954323
-0.000314963
-0.000676401
-0.000316857
-0.00190129
5.70856e-05
-0.000956158
-0.000316958
-0.000676489
-0.000315163
-0.00184693
-5.61364e-05
-0.000954715
-0.000315093
-0.000676678
-0.000316993
-0.00190216
5.71489e-05
-0.000956573
-0.000317098
-0.000676781
-0.000315305
-0.00184783
-5.6108e-05
-0.00095515
-0.000315236
-0.000676988
-0.000317146
-0.00190313
5.72231e-05
-0.000957036
-0.000317253
-0.000677108
-0.000315464
-0.00184883
-5.60722e-05
-0.000955635
-0.000315394
-0.000677333
-0.000317318
-0.0019042
5.73079e-05
-0.000957552
-0.000317424
-0.000677472
-0.000315642
-0.00184994
-5.60298e-05
-0.000956177
-0.000315568
-0.000677719
-0.00031751
-0.00190539
5.74036e-05
-0.000958128
-0.000317615
-0.00067788
-0.000315842
-0.00185117
-5.59806e-05
-0.000956781
-0.000315762
-0.00067815
-0.000317725
-0.0019067
5.75112e-05
-0.00095877
-0.000317826
-0.000678335
-0.000316066
-0.00185252
-5.59232e-05
-0.000957455
-0.000315977
-0.000678632
-0.000317967
-0.00190815
5.76308e-05
-0.000959488
-0.000318059
-0.000678844
-0.000316316
-0.0018538
-5.60796e-05
-0.000958208
-0.000316214
-0.00067917
-0.000318238
-0.00190974
5.79857e-05
-0.000960289
-0.000318318
-0.000679413
-0.000316599
-0.00185567
-5.57818e-05
-0.000959049
-0.000316478
-0.000679774
-0.000318544
-0.0019115
5.7919e-05
-0.000961185
-0.000318604
-0.000680052
-0.000316915
-0.00185748
-5.56915e-05
-0.00095999
-0.00031677
-0.000680449
-0.000318884
-0.00191345
5.80951e-05
-0.000962185
-0.000318924
-0.000680764
-0.000317268
-0.00185951
-5.55828e-05
-0.000961037
-0.000317096
-0.000681202
-0.000319262
-0.00191563
5.82994e-05
-0.000963295
-0.000319277
-0.000681555
-0.000317663
-0.00186177
-5.54572e-05
-0.0009622
-0.000317457
-0.000682037
-0.000319684
-0.00191804
5.85206e-05
-0.000964525
-0.000319664
-0.000682434
-0.00031811
-0.00186402
-5.55567e-05
-0.000963491
-0.000317853
-0.000682966
-0.000320154
-0.0019207
5.89895e-05
-0.000965887
-0.000320089
-0.000683407
-0.000318611
-0.00186673
-5.54224e-05
-0.00096492
-0.000318282
-0.000683997
-0.000320687
-0.0019236
5.92874e-05
-0.000967398
-0.00032055
-0.000684491
-0.000319176
-0.00186994
-5.50185e-05
-0.000966507
-0.000318752
-0.000685141
-0.000321292
-0.00192679
5.94144e-05
-0.000969077
-0.000321055
-0.000685695
-0.000319812
-0.00187322
-5.48011e-05
-0.000968264
-0.000319262
-0.000686413
-0.000321977
-0.00193029
5.98112e-05
-0.00097094
-0.000321604
-0.000687035
-0.000320531
-0.0018768
-5.45516e-05
-0.000970216
-0.000319817
-0.000687827
-0.000322749
-0.00193412
6.02718e-05
-0.000973001
-0.000322191
-0.000688524
-0.000321346
-0.00188067
-5.42693e-05
-0.00097238
-0.000320423
-0.000689394
-0.000323616
-0.00193828
6.08244e-05
-0.000975277
-0.000322823
-0.000690172
-0.000322265
-0.0018849
-5.3922e-05
-0.000974769
-0.000321072
-0.00069113
-0.000324584
-0.00194284
6.14703e-05
-0.000977784
-0.000323497
-0.000691995
-0.000323293
-0.00188952
-5.34984e-05
-0.000977398
-0.000321762
-0.000693045
-0.00032568
-0.00194781
6.22314e-05
-0.000980545
-0.00032421
-0.000694005
-0.00032446
-0.00189457
-5.29748e-05
-0.000980291
-0.000322482
-0.000695161
-0.000326931
-0.00195326
6.31627e-05
-0.000983589
-0.000324958
-0.000696221
-0.000325779
-0.00189988
-5.25281e-05
-0.000983479
-0.000323251
-0.000697492
-0.000328335
-0.00195922
6.44496e-05
-0.000986956
-0.00032572
-0.000698745
-0.000327252
-0.00190619
-5.14783e-05
-0.000987048
-0.000324114
-0.000700075
-0.000329914
-0.0019658
6.54369e-05
-0.000990677
-0.000326527
-0.000701549
-0.000328917
-0.0019129
-5.04872e-05
-0.000991019
-0.000324984
-0.000703034
-0.000331685
-0.00197305
6.68779e-05
-0.000994856
-0.000327406
-0.000704677
-0.000330798
-0.00192034
-4.93012e-05
-0.000995429
-0.000325904
-0.000706334
-0.000333693
-0.00198111
6.85903e-05
-0.000999502
-0.000328342
-0.000708166
-0.000332936
-0.00192863
-4.78608e-05
-0.00100034
-0.000326883
-0.00071002
-0.000335985
-0.00199015
7.06453e-05
-0.00100469
-0.000329333
-0.000712073
-0.000335385
-0.00193798
-4.60963e-05
-0.00100585
-0.00032792
-0.000714161
-0.00033862
-0.00200062
7.33668e-05
-0.00101053
-0.000330382
-0.000716479
-0.000338431
-0.0019484
-4.41478e-05
-0.00101227
-0.000329003
-0.000719077
-0.000341684
-0.00201213
7.64319e-05
-0.00101714
-0.000331508
-0.000721658
-0.000341546
-0.00196067
-4.13945e-05
-0.00101934
-0.000330427
-0.000724134
-0.000345302
-0.00202575
7.99841e-05
-0.00102467
-0.000332765
-0.000727033
-0.000345511
-0.00197529
-3.76898e-05
-0.0010272
-0.000331527
-0.000730139
-0.000349672
-0.00204188
8.47547e-05
-0.00103339
-0.000334096
-0.000733518
-0.000350318
-0.00199247
-3.31646e-05
-0.00103663
-0.000332899
-0.000737165
-0.000355019
-0.00206131
9.09913e-05
-0.00104364
-0.000335459
-0.000741201
-0.000356289
-0.00201346
-2.69987e-05
-0.00104789
-0.000334302
-0.000745607
-0.000361753
-0.00208547
9.94915e-05
-0.0010561
-0.000336881
-0.000750575
-0.000363896
-0.00204013
-1.82992e-05
-0.00106177
-0.000335799
-0.000756071
-0.00037044
-0.00211669
0.000111226
-0.00107165
-0.000338399
-0.000762382
-0.000373875
-0.00207484
-6.34992e-06
-0.00107947
-0.000337564
-0.000769421
-0.000381929
-0.00215808
0.000127636
-0.00109188
-0.000340594
-0.00077749
-0.000386954
-0.00212219
1.04925e-05
-0.00110231
-0.000339584
-0.000786619
-0.0003977
-0.00221339
0.00014934
-0.00111811
-0.000341536
-0.000797723
-0.00040665
-0.00218124
3.29968e-05
-0.00113345
-0.000338948
-0.000811298
-0.000419915
-0.00228167
0.000181421
-0.00115532
-0.000344811
-0.000824905
-0.000428941
-0.00226727
6.97515e-05
-0.00117163
-0.000331398
-0.000844219
-0.000454607
-0.00241596
0.000271928
-0.00119837
-0.000284459
-0.000882413
-0.000526953
-0.00241186
0.000238415
-0.00126154
-0.000177164
-0.000943148
-0.000670583
-0.00241799
0.000499569
-0.00125888
-0.000234776
-0.000900972
-0.000123124
-0.00101099
0.000279502
-0.0011074
0.000641346
-0.00126281
-0.00234059
0.000440844
0.000109697
-0.000639597
-0.00243927
0.0006286
-0.000206127
-0.000946984
-0.00114115
0.000305734
-0.0012186
-0.00128084
-0.000274014
-3.42361e-05
-0.000972588
-0.00117263
-0.000299688
-0.00114639
0.000273457
-0.00113945
-5.0363e-05
-0.000888463
-0.000724884
-0.00244481
0.000569634
0.00140332
-0.0011932
-0.000337493
-0.000865006
9.29953e-06
-0.000999233
0.000403345
-0.00109682
0.000714505
-0.00117616
1.5179e-05
-0.00173617
0.00233684
0.00285916
0.00132909
-0.00502102
-0.00148881
0.00234162
0.000564863
-0.000704198
0.00057233
-7.4645e-05
-0.00195396
0.00260095
-0.00147007
0.00532293
0.00119639
-0.00512382
0.000275309
0.00536032
0.00095519
-0.00126781
0.00267793
-0.00196176
0.00116433
0.00201318
0.000425758
0.00537018
0.000728815
0.00267737
0.00099114
0.00195818
0.000568109
0.00527366
0.000519648
0.00259606
0.000877205
0.0019003
0.000616854
0.00518278
0.000351336
0.00255018
0.000835083
0.00186446
0.000625776
0.00512418
0.000268014
0.00250075
0.000797304
0.0018311
0.000639592
0.0050641
0.000217908
0.00246437
0.000767586
0.00180803
0.00064761
0.00501109
0.000173093
0.00243737
0.000746099
0.00179078
0.000653439
0.00496617
0.000137701
0.00241725
0.000730767
0.00177749
0.000656699
0.00492883
0.000111513
0.00240105
0.000719237
0.00176659
0.000658545
0.00489789
9.17474e-05
0.00238747
0.000710113
0.00175736
0.000659658
0.00487195
7.65082e-05
0.00237565
0.000702656
0.00174945
0.000660363
0.00485006
6.42914e-05
0.00236569
0.000696444
0.00174263
0.000660717
0.00483153
5.43647e-05
0.00235728
0.000691236
0.00173671
0.000660892
0.00481577
4.62208e-05
0.00234976
0.00068684
0.00173154
0.000660951
0.00480228
3.94883e-05
0.00234321
0.000683105
0.00172701
0.000660929
0.00479066
3.39046e-05
0.00233747
0.000679912
0.00172302
0.000660851
0.00478064
2.91911e-05
0.00233241
0.000677166
0.00171972
0.00066071
0.00477192
2.52777e-05
0.00232792
0.000674828
0.00171628
0.00066057
0.00476431
2.19704e-05
0.0023239
0.000672834
0.00171332
0.000660446
0.00475762
1.91752e-05
0.00232029
0.000671096
0.00171068
0.000660275
0.00475173
1.68136e-05
0.00231705
0.000669585
0.00170831
0.000660085
0.0047465
1.48165e-05
0.00231415
0.000668262
0.00170618
0.000659885
0.00474185
1.31227e-05
0.00231153
0.000667097
0.00170426
0.00065968
0.00473768
1.16794e-05
0.00230916
0.000666061
0.00170253
0.000659475
0.00473391
1.04393e-05
0.002307
0.000665133
0.00170117
0.000659269
0.00473049
9.36623e-06
0.00230504
0.000664295
0.00169975
0.000659092
0.00472734
8.42888e-06
0.0023033
0.000663538
0.0016983
0.000658886
0.00472446
7.61626e-06
0.00230174
0.000662849
0.00169721
0.00065867
0.0047218
6.91355e-06
0.00230031
0.00066222
0.0016962
0.000658457
0.00471934
6.30278e-06
0.00229898
0.000661649
0.00169526
0.000658246
0.00471705
5.77232e-06
0.00229774
0.000661129
0.00169461
0.00065804
0.00471491
5.29802e-06
0.00229659
0.000660656
0.00169357
0.000657844
0.00471291
4.8859e-06
0.00229551
0.000660222
0.00169281
0.000657655
0.00471103
4.51632e-06
0.0022945
0.000659821
0.0016921
0.000657474
0.00470927
4.18356e-06
0.00229355
0.000659449
0.00169143
0.0006573
0.00470761
3.88126e-06
0.00229267
0.000659106
0.0016908
0.000657134
0.00470606
3.60455e-06
0.00229184
0.00065879
0.00169021
0.00065697
0.00470461
3.34555e-06
0.00229106
0.000658505
0.00168965
0.000656794
0.00470331
3.09682e-06
0.0022903
0.000658233
0.00168911
0.000656638
0.00470213
2.85699e-06
0.00228959
0.00065797
0.0016886
0.000656503
0.00470107
2.61866e-06
0.00228893
0.000657711
0.00168835
0.000656391
0.00470007
2.4064e-06
0.00228831
0.000657456
0.00168792
0.00065631
0.00469906
2.2517e-06
0.00228776
0.000657204
0.00168733
0.00065627
0.00469799
2.08918e-06
0.00228729
0.000656958
0.00168702
0.00065626
0.00469714
1.64151e-06
0.00228691
0.00065673
0.00168678
0.000656269
0.00469658
1.09045e-06
0.00228662
0.000656341
0.00168681
0.000656249
0.00469822
-1.47831e-06
0.00228636
0.000655956
0.0016871
0.000657201
0.00470644
-9.40552e-06
0.00228733
0.00065557
0.00168774
0.000660521
0.00473606
-3.45198e-05
0.00229054
0.000652269
0.00169261
0.000669752
0.0048241
-0.000105488
0.00230114
0.000646399
0.00170419
0.000691521
0.00506313
-0.000284125
0.00232348
0.000615346
0.00173257
0.000760321
0.00559154
-0.000673355
0.00235527
0.000349534
0.00185619
0.00120283
0.00295479
0.00304785
-0.00126438
-1.55723e-05
-0.00494735
-0.000961396
-0.000641374
-0.00497931
0.00454399
-0.000450938
-0.00473441
-0.000577808
-0.00448443
-0.000337351
-0.000276456
-0.00465889
0.00455427
-0.000151374
-0.00467934
-0.000173633
-0.00465686
-9.0119e-05
-7.67338e-05
-0.00473147
0.00473803
-3.50478e-05
-0.00477969
-3.86441e-05
-0.00479351
-1.62031e-05
-0.0048138
-1.47388e-05
2.10823e-05
-0.00482616
-8.69144e-06
4.72103e-05
-0.00480579
9.44371e-05
-0.00477866
0.000168274
-0.00475314
0.00026001
-0.00475059
0.000328946
-0.0048033
-0.00493446
-0.00490548
-0.00013442
-0.00489308
-4.68728e-05
-1.39433e-05
-0.00488848
0.00482643
-1.31977e-05
-0.00482712
0.00482214
-4.25405e-05
-0.000115538
-0.00478702
-7.90678e-05
-0.00479927
-3.02399e-05
-0.00480262
-9.79446e-06
2.67398e-06
-0.00480349
-1.73828e-06
2.65074e-06
-0.00482703
-0.00488725
-0.004887
9.16193e-07
-0.00488704
1.76463e-06
2.28792e-06
-0.00488716
0.0048268
2.29176e-06
-0.00482673
0.00482692
1.72666e-06
8.71144e-07
-0.00480336
8.05281e-07
-0.00480345
1.88678e-06
2.23081e-06
-0.00480331
0.00480399
2.12953e-06
-0.00480381
0.00480416
1.78002e-06
0.00480407
9.55567e-07
0.00480298
-5.82928e-07
0.00479894
-5.70045e-06
0.0047867
-1.79555e-05
-4.54615e-05
-0.00480143
-2.26573e-05
-0.00481051
-8.83116e-06
-2.85839e-06
-0.0048133
0.00482337
-7.91853e-07
-0.00482539
0.00481844
-3.8488e-06
-9.96875e-06
-0.00483227
-3.82503e-06
-0.00483475
-1.32398e-06
-0.00483552
2.47655e-08
-3.93504e-07
-0.00483553
4.59023e-07
-4.88933e-08
-0.00482568
-0.00481387
-0.00481416
1.31016e-06
-0.00481371
1.39338e-06
1.98149e-06
-0.0048135
0.00482545
1.78384e-06
-0.00482519
0.00482546
1.44597e-06
1.14254e-06
-0.00483528
9.39482e-07
-0.004835
1.22009e-06
1.54152e-06
-0.0048347
0.00484269
1.26855e-06
-0.00484237
0.00484299
9.68145e-07
0.00484327
7.12922e-07
0.00484327
5.00956e-07
0.00484325
9.01077e-08
0.00484224
-2.76018e-07
0.00483978
-1.32503e-06
0.00483442
-3.30275e-06
0.00482544
-5.7408e-06
-5.51893e-06
-0.00484288
-1.56249e-06
-2.03116e-06
-0.00484657
0.00485188
-4.67955e-07
-0.00485343
-7.14116e-07
-0.00485792
-3.16084e-07
-5.72128e-07
-0.0048578
0.00486223
-1.37706e-06
-0.00486142
-1.10469e-06
-0.00486744
-3.32914e-06
-3.85924e-06
-0.00486495
0.00487734
-9.96876e-06
-0.00487122
-1.23454e-05
-0.00489422
-2.40254e-05
-0.00488301
-2.11696e-05
6.13185e-06
-0.00487593
-1.32056e-05
2.4419e-06
-0.00486753
1.16004e-06
-0.00486366
5.81703e-07
-0.00486082
7.05403e-07
-0.00485791
1.28816e-06
-0.00485399
-0.00484856
-0.00484933
-5.20317e-07
-0.00484937
-2.04316e-07
1.46347e-07
-0.00484938
0.0048541
-3.5671e-08
-0.00485388
0.00485405
-1.25692e-07
-4.30392e-07
-0.00485775
-5.63003e-07
-0.00485758
-2.73819e-07
-0.00485738
-2.04074e-07
-8.47688e-08
-0.00485716
-1.09531e-07
-2.914e-07
-0.00485364
-0.00484913
-0.00484886
4.7595e-07
-0.00484855
7.02834e-07
9.7588e-07
-0.00484821
0.00485307
6.7857e-07
-0.00485274
0.00485337
4.36414e-07
2.40424e-07
-0.00485691
1.59188e-08
-0.00485663
1.79032e-07
3.87245e-07
-0.00485631
0.00485946
1.1144e-07
-0.00485917
0.00485972
-6.08788e-08
0.00485994
-1.89947e-07
0.00486014
-2.8455e-07
0.00486031
-3.52435e-07
0.00486045
-4.00457e-07
-9.14725e-07
-0.00486308
-1.48423e-06
-0.00486272
-7.45593e-07
-7.19588e-07
-0.00486234
0.00486495
-8.16031e-07
-0.00486485
0.004866
-1.79384e-06
-3.00097e-06
-0.00487176
-7.16853e-06
-0.00487001
-3.54387e-06
-0.00486897
-1.85564e-06
7.99895e-07
-0.00486889
-8.88813e-07
4.35029e-07
-0.00486448
-0.00486218
-0.00486199
-3.71054e-07
-0.00486176
-2.76141e-07
-1.40491e-07
-0.0048615
0.00486414
-3.60721e-07
-0.00486392
0.00486432
-4.60199e-07
-5.22021e-07
-0.00486853
-8.81006e-07
-0.00486839
-6.06627e-07
-5.41343e-07
-0.00486822
0.00488141
-6.7413e-07
-0.00488129
0.0048815
-7.08774e-07
0.00488156
-9.56285e-07
0.00488234
-1.67119e-06
0.00488407
-3.59248e-06
0.00488846
-7.94243e-06
0.00489601
-1.47181e-05
0.00490841
-2.56126e-05
0.0049269
-3.96559e-05
-5.4675e-05
-0.00497376
-6.02488e-05
-5.49641e-05
-0.00495845
0.00504509
-6.42196e-05
-0.00503584
-8.21174e-05
-0.00506427
5.79443e-06
-4.43889e-05
-0.0050841
0.00496192
-2.69766e-05
-0.00497934
3.40312e-05
-0.00460678
0.000118464
-4.37138e-06
-0.0046294
0.00419307
-0.00419606
6.49378e-05
-0.00422174
7.42146e-05
-0.00463868
6.83612e-05
-0.00497349
5.82053e-05
-0.00507396
4.14076e-05
-0.00501905
-0.00494266
-0.00492979
-2.75975e-05
-0.00492226
-1.54752e-05
-6.99833e-06
-0.00491887
0.00499353
-1.14136e-05
-0.00498913
0.00500324
-2.51923e-05
-4.34213e-05
-0.00506014
-5.72477e-05
-0.00505301
-3.23446e-05
-0.0050505
-1.39382e-05
4.20669e-06
-0.00504992
-4.80813e-06
2.65702e-06
-0.0049876
-0.00491789
-0.00491764
-1.22911e-06
-0.0049176
-7.59619e-07
-7.50415e-07
-0.00491754
0.00498725
-7.36725e-07
-0.00498729
0.00498732
-8.49077e-07
-1.52365e-06
-0.00504997
-1.49412e-06
-0.00505014
-7.03806e-07
-6.25844e-07
-0.00505028
0.00497625
-4.22017e-07
-0.00497648
0.00497575
-2.29983e-07
0.00497487
-6.33527e-07
0.00497316
-3.1255e-06
0.00497059
-1.13863e-05
0.00496925
-3.10187e-05
-6.15066e-05
-0.00464943
-5.0777e-05
-0.00465912
-2.13465e-05
-5.86551e-06
-0.00466465
0.00425679
-0.00426053
0.00424481
6.60353e-07
-0.00426176
-0.00466714
-0.00466815
3.57445e-07
-0.0046686
1.85897e-07
-1.47645e-07
-0.0046689
0.00426177
-0.0042619
0.00426168
3.19446e-07
-0.0042621
5.17649e-07
-0.00466913
6.8836e-07
-0.00497668
7.34395e-07
-0.00505035
7.00548e-07
-0.00498728
5.95093e-07
-0.00491746
4.28551e-07
-0.00488114
2.11134e-07
-0.00486801
-4.71534e-08
-0.00486367
-3.36994e-07
-0.00486121
-6.49082e-07
-0.00485885
-9.73757e-07
-0.00485597
-1.30013e-06
-0.00485239
-1.61475e-06
-0.00484786
-1.90527e-06
-0.00484203
-2.15333e-06
-0.0048344
-2.34872e-06
-0.00482493
-2.48468e-06
-0.00481329
-2.56395e-06
-0.00480366
-2.5916e-06
-0.00480321
-2.53571e-06
-0.00482671
-0.00488736
-0.00488764
2.7731e-06
-0.00488794
2.99772e-06
3.26598e-06
-0.00488827
0.00482682
3.462e-06
-0.00482694
0.00482674
3.15674e-06
2.88724e-06
-0.00480315
2.90254e-06
-0.00480317
3.25085e-06
-0.00480322
3.58431e-06
-3.81182e-06
-0.00480332
3.98433e-06
-3.56726e-06
-0.00482711
-0.00488866
-0.00488911
3.8756e-06
-0.00488963
4.19664e-06
4.54731e-06
-0.00489023
0.00482768
5.02782e-06
-0.00482809
0.00482736
4.59226e-06
4.19468e-06
-0.00480349
4.44047e-06
-0.00480376
4.92856e-06
5.4521e-06
-0.00480412
0.00480385
5.81509e-06
-0.00480415
0.00480365
5.19562e-06
0.00480354
4.61315e-06
0.00480349
4.10298e-06
0.00480348
3.67044e-06
0.00480355
3.25291e-06
2.85836e-06
-0.00481312
2.74655e-06
-0.00481297
3.17591e-06
3.6452e-06
-0.00481288
0.00482447
3.51784e-06
-0.00482428
0.00482469
3.01614e-06
2.56492e-06
-0.00483409
2.31535e-06
-0.0048338
2.77774e-06
-0.00483353
3.2988e-06
-4.0736e-06
-0.00483329
3.88574e-06
-4.15735e-06
-0.00482414
-0.00481287
-0.0048129
4.70871e-06
-0.00481299
5.33941e-06
6.06135e-06
-0.00481317
0.00482407
6.15042e-06
-0.0048241
0.00482408
5.38773e-06
4.70106e-06
-0.00483309
4.54609e-06
-0.00483294
5.29155e-06
-0.00483287
6.12329e-06
-7.03072e-06
-0.00483285
7.05788e-06
-6.85767e-06
-0.00482422
-6.50761e-06
-0.00481346
-6.03794e-06
-0.00480455
-5.5066e-06
-0.00480458
-4.93324e-06
-0.0048286
-0.00489091
-0.00489168
5.36123e-06
-0.00489257
5.83982e-06
6.37814e-06
-0.00489358
0.00482995
7.32085e-06
-0.00483082
0.00482921
6.6403e-06
6.04756e-06
-0.00480516
6.69028e-06
-0.00480586
7.40877e-06
-0.0048067
8.23044e-06
-8.07542e-06
-0.0048077
9.13973e-06
-6.98807e-06
-0.00483184
-0.00489472
-0.00489603
7.68272e-06
-0.00489752
8.47825e-06
9.3938e-06
-0.00489922
0.00483442
1.10692e-05
-0.00483602
0.00483303
9.93471e-06
8.94971e-06
-0.00480887
1.01881e-05
-0.00481022
1.13593e-05
1.27199e-05
-0.00481181
0.00480986
1.42937e-05
-0.00481136
0.00480856
1.27237e-05
0.00480744
1.13652e-05
0.0048065
1.01495e-05
0.00480571
9.07614e-06
0.00480507
8.1173e-06
7.26856e-06
-0.00481386
7.72563e-06
-0.00481438
8.69498e-06
9.78817e-06
-0.00481504
0.0048248
1.02994e-05
-0.00482526
0.00482446
9.08767e-06
8.01586e-06
-0.00483289
8.10422e-06
-0.00483303
9.26692e-06
-0.00483327
1.05848e-05
-1.16549e-05
-0.00483362
1.20554e-05
-1.10099e-05
-0.00482585
-0.00481584
-0.0048168
1.23892e-05
-0.00481794
1.39251e-05
1.56927e-05
-0.00481928
0.00482749
1.68146e-05
-0.00482856
0.00482659
1.48772e-05
1.31815e-05
-0.00483411
1.37077e-05
-0.00483472
1.55375e-05
-0.00483549
1.76265e-05
-1.90023e-05
-0.00483642
1.99831e-05
-1.76685e-05
-0.00482984
-1.60555e-05
-0.00482084
-1.4253e-05
-0.0048131
-1.23751e-05
-0.00481361
-1.04508e-05
-0.00483787
-0.00490116
-0.00490339
1.16716e-05
-0.00490595
1.30833e-05
1.47239e-05
-0.00490891
0.00484247
1.76508e-05
-0.00484532
0.00484001
1.56251e-05
1.38812e-05
-0.00481571
1.60458e-05
-0.00481809
1.80825e-05
-0.00482085
2.04811e-05
-2.00152e-05
-0.004824
2.32414e-05
-1.66405e-05
-0.00484861
-0.00491235
-0.00491633
1.88896e-05
-0.00492097
2.15369e-05
2.46592e-05
-0.00492636
0.00485684
2.98474e-05
-0.00486194
0.00485243
2.60306e-05
2.27828e-05
-0.00482762
2.64745e-05
-0.00483176
3.02556e-05
3.4666e-05
-0.00483651
0.00483017
3.91177e-05
-0.00483456
0.00482632
3.41759e-05
0.00482294
2.9924e-05
0.00481998
2.62765e-05
0.00481737
2.31519e-05
0.0048151
2.0428e-05
1.81065e-05
-0.00482263
1.9959e-05
-0.00482468
2.25405e-05
2.55579e-05
-0.00482702
0.00483305
2.75925e-05
-0.00483503
0.00483132
2.43258e-05
2.14884e-05
-0.00483755
2.26579e-05
-0.00483887
2.56983e-05
-0.00484043
2.91946e-05
-3.13255e-05
-0.00484224
3.31808e-05
-2.90059e-05
-0.00483729
-0.00482969
-0.00483272
3.30194e-05
-0.00483617
3.76838e-05
4.30864e-05
-0.00484008
0.00484284
4.64965e-05
-0.00484619
0.00483986
4.07111e-05
3.5643e-05
-0.00484433
3.77792e-05
-0.00484675
4.31801e-05
-0.00484953
4.9319e-05
-5.32933e-05
-0.00485266
5.64699e-05
-4.94419e-05
-0.00484999
-4.49293e-05
-0.00484453
-3.98719e-05
-0.00483954
-3.4319e-05
-0.00484198
-2.83451e-05
-0.00486783
-0.00493264
-0.00493997
3.27016e-05
-0.00494855
3.78642e-05
4.39992e-05
-0.00495854
0.0048826
5.32478e-05
-0.00489177
0.00487467
4.58885e-05
3.9623e-05
-0.00484827
4.59856e-05
-0.0048554
5.30967e-05
-0.00486365
6.15804e-05
-6.19735e-05
-0.00487306
7.14602e-05
-5.13165e-05
-0.00490233
-0.00497027
-0.004984
6.00432e-05
-0.00500015
7.06119e-05
8.33643e-05
-0.00501912
0.00492877
9.98409e-05
-0.00494516
0.00491466
8.4817e-05
7.24529e-05
-0.00488382
8.32885e-05
-0.00489606
9.71367e-05
0.000113776
-0.00490992
0.0048869
0.000125413
-0.00489847
0.00487651
0.000107595
0.00486721
9.26567e-05
0.00485896
7.97807e-05
0.00485166
6.89558e-05
0.00484522
5.96065e-05
5.17317e-05
-0.0048495
5.67711e-05
-0.00485514
6.53019e-05
7.53347e-05
-0.00486145
0.004859
8.06089e-05
-0.00486423
0.00485422
7.01416e-05
6.10524e-05
-0.00485617
6.46048e-05
-0.00485989
7.39126e-05
-0.00486377
8.4529e-05
-9.26411e-05
-0.00486785
9.67611e-05
-8.68665e-05
-0.00486995
-0.00486848
-0.00487623
0.000100464
-0.00488477
0.000116198
0.000134593
-0.00489389
0.00488238
0.000141187
-0.00488892
0.004876
0.000122626
0.000106567
-0.0048719
0.000110662
-0.00487573
0.000126498
0.000144491
-0.00487899
0.00486552
0.000144975
-0.00486597
0.00486448
0.000127571
0.00486282
0.000112349
0.00486075
9.88663e-05
0.00485839
8.69233e-05
0.00485595
7.63885e-05
0.00485357
6.70223e-05
0.00485127
5.88053e-05
0.00484915
5.14758e-05
0.00484726
4.51072e-05
0.00484564
3.94297e-05
0.00484425
3.46098e-05
0.00484313
3.03537e-05
0.00484217
2.6694e-05
0.00484142
2.3451e-05
0.00484082
2.06211e-05
0.00484035
1.8128e-05
0.00484001
1.59147e-05
0.00483979
1.397e-05
0.00483966
1.22222e-05
0.00483961
1.06702e-05
0.00483963
9.28092e-06
0.00483973
8.03719e-06
0.0048399
6.92612e-06
0.00484012
5.94356e-06
0.00484038
5.06875e-06
0.00484068
4.28752e-06
0.004841
3.60499e-06
0.00484134
3.00325e-06
0.00484169
2.47745e-06
2.01614e-06
-0.00484749
1.68211e-06
-0.0048471
2.12969e-06
2.65128e-06
-0.00484672
0.00485161
2.26397e-06
-0.00485119
0.004852
1.75781e-06
1.33014e-06
-0.00485559
9.74309e-07
-0.00485519
1.37449e-06
-0.00485477
1.85904e-06
-2.85965e-06
-0.00485434
2.44132e-06
-3.25557e-06
-0.00485077
-0.00484633
-0.00484597
3.95162e-06
-0.00484562
4.74845e-06
5.65491e-06
-0.0048453
0.00484996
5.28787e-06
-0.00484957
0.00485036
4.36519e-06
3.56006e-06
-0.0048539
3.13183e-06
-0.00485346
3.94099e-06
4.87544e-06
-0.00485304
0.00485637
4.44076e-06
-0.00485594
0.00485682
3.49879e-06
0.00485726
2.6924e-06
0.00485769
2.01417e-06
0.0048581
1.45248e-06
0.00485849
9.95015e-07
6.27141e-07
-0.00486088
2.99737e-07
-0.00486052
6.32106e-07
1.05866e-06
-0.00486013
0.00486305
6.91911e-07
-0.00486269
0.00486338
2.97732e-07
2.74393e-09
-0.00486777
-2.52553e-07
-0.00486749
5.33612e-09
-0.00486718
3.6542e-07
-1.20168e-06
-0.00486685
8.48111e-07
-1.59507e-06
-0.00486231
-0.00485971
-0.00485929
2.25945e-06
-0.00485885
3.05944e-06
4.00746e-06
-0.00485843
0.00486151
3.59762e-06
-0.00486112
0.00486191
2.64268e-06
1.84834e-06
-0.0048665
1.47639e-06
-0.00486614
2.26483e-06
-0.00486579
3.22688e-06
-4.72882e-06
-0.00486545
4.37653e-06
-5.11736e-06
-0.00486074
-5.53658e-06
-0.00485802
-5.95444e-06
-0.00485552
-6.34658e-06
-0.00485264
-6.67997e-06
-0.00484922
-0.00484503
-0.0048448
7.8348e-06
-0.00484462
9.13119e-06
1.05824e-05
-0.0048445
0.00484862
1.03744e-05
-0.0048484
0.0048489
8.87298e-06
7.53027e-06
-0.00485227
7.16759e-06
-0.00485194
8.54668e-06
-0.00485165
1.0092e-05
-1.20619e-05
-0.0048514
1.18247e-05
-1.22124e-05
-0.00484823
-0.00484447
-0.0048445
1.40269e-05
-0.00484462
1.60639e-05
1.83754e-05
-0.00484484
0.0048481
1.8455e-05
-0.00484816
0.00484813
1.60506e-05
1.3941e-05
-0.00485123
1.37754e-05
-0.00485111
1.5945e-05
1.84249e-05
-0.00485107
0.00485385
1.83381e-05
-0.00485376
0.004854
1.57997e-05
0.00485421
1.35634e-05
0.00485447
1.15689e-05
0.00485478
9.77942e-06
0.00485513
8.19075e-06
6.77666e-06
-0.00485764
6.39135e-06
-0.0048573
7.83904e-06
9.47654e-06
-0.004857
0.00486008
9.18897e-06
-0.0048598
0.00486039
7.5099e-06
6.02994e-06
-0.00486514
5.70462e-06
-0.00486486
7.21256e-06
-0.00486459
8.90503e-06
-1.10464e-05
-0.00486433
1.07781e-05
-1.12985e-05
-0.00485956
-0.00485674
-0.00485654
1.33587e-05
-0.00485636
1.56238e-05
1.81772e-05
-0.00485621
0.0048591
1.78448e-05
-0.00485877
0.00485933
1.53786e-05
1.31277e-05
-0.00486403
1.28149e-05
-0.00486361
1.49479e-05
1.71666e-05
-0.00486295
0.00487646
1.59098e-05
-0.00487523
0.00487728
1.41103e-05
0.0048778
1.22749e-05
0.00487816
1.04025e-05
0.00487845
8.60167e-06
0.00487872
6.92783e-06
0.00487901
5.40272e-06
0.0048793
4.06182e-06
0.00487961
2.90048e-06
0.00487991
1.93543e-06
0.00488021
1.15573e-06
0.00488049
5.47724e-07
0.00488074
9.32116e-08
0.00488095
-2.32828e-07
-4.54985e-07
-0.00491735
-5.92504e-07
-0.0049172
-4.04892e-07
-1.12965e-07
-0.00491702
0.00498718
-2.44054e-07
-0.00498708
0.00498725
-4.99438e-07
-6.54359e-07
-0.00505043
-6.07354e-07
-0.00505045
-5.08842e-07
-0.00505044
-2.95598e-07
-1.4033e-07
-0.00505037
3.65661e-08
-3.10242e-07
-0.00498694
-0.00491681
-0.00491657
8.92106e-07
-0.00491632
1.65416e-06
2.61037e-06
-0.00491605
0.00498655
2.33664e-06
-0.0049863
0.00498677
1.40947e-06
6.82758e-07
-0.00505024
5.17203e-07
-0.00505004
1.17669e-06
2.03885e-06
-0.00504977
0.00497666
1.65934e-06
-0.00497631
0.00497688
9.22015e-07
0.00497699
3.75993e-07
0.00497699
-1.18633e-08
0.00497693
-2.73888e-07
0.00497682
-4.38292e-07
-5.04287e-07
-0.0046693
-3.69684e-07
-0.00466949
-2.86283e-07
-2.00815e-07
-0.00466961
0.00426248
-0.00426262
0.00426231
2.20711e-08
-0.00426267
-0.00466964
-0.00466955
2.46297e-07
-0.00466929
6.31035e-07
1.16695e-06
-0.00466883
0.0042623
-0.00426175
0.00426259
-1.75467e-06
-0.00426091
-2.50943e-06
-0.00466809
-3.07597e-06
-0.00497576
-3.46222e-06
-0.0050494
-3.76573e-06
-0.00498602
-0.00491578
-0.0049155
5.10624e-06
-0.00491518
6.59573e-06
8.17326e-06
-0.00491477
0.00498519
7.41944e-06
-0.00498447
0.00498567
6.09391e-06
4.74247e-06
-0.00504887
4.18693e-06
-0.00504806
5.25793e-06
-0.00504688
6.20405e-06
-8.62608e-06
-0.00504529
6.99901e-06
-9.75298e-06
-0.00498337
-0.00491414
-0.00491317
1.12777e-05
-0.00491176
1.2671e-05
1.40127e-05
-0.00490989
0.00497987
1.16884e-05
-0.00497758
0.00498183
1.06797e-05
9.70373e-06
-0.00504332
7.69839e-06
-0.00504108
8.40327e-06
9.18405e-06
-0.00503862
0.00496604
6.67654e-06
-0.00496357
0.00496831
6.08494e-06
0.0049704
5.57238e-06
0.00497225
5.10887e-06
0.00497378
4.63244e-06
0.00497495
4.06139e-06
3.34395e-06
-0.00466706
2.27674e-06
-0.00466571
2.68097e-06
2.98837e-06
-0.0046641
0.00425846
-0.00425696
0.0042598
-3.26195e-06
-0.00425531
-0.00466229
-0.00466032
3.55566e-06
-0.00465817
3.89646e-06
4.26644e-06
-0.0046558
0.00425154
-0.00424939
0.00425351
-4.7382e-06
-0.004247
-7.35753e-06
-0.00465323
-1.00837e-05
-0.00496089
-1.2779e-05
-0.00503597
-1.53534e-05
-0.00497505
-1.76393e-05
-0.00490764
-1.93704e-05
-0.00487352
-2.04191e-05
-0.00486191
-2.09348e-05
-0.00485826
-2.11411e-05
-0.004856
-2.11879e-05
-0.00485371
-2.1138e-05
-0.00485111
-2.09824e-05
-0.00484829
-0.00484517
-0.00484564
2.39454e-05
-0.00484626
2.73415e-05
3.11796e-05
-0.00484705
0.00484891
3.17193e-05
-0.00484943
0.00484855
2.77211e-05
2.42198e-05
-0.00485124
2.43547e-05
-0.00485139
2.78913e-05
-0.00485151
3.18488e-05
-3.61862e-05
-0.00485153
3.62084e-05
-3.56342e-05
-0.00484996
-0.00484805
-0.00484924
4.06423e-05
-0.00485047
4.63691e-05
5.27247e-05
-0.00485169
0.00485092
5.30903e-05
-0.00485127
0.00485048
4.68299e-05
4.1174e-05
-0.00485136
4.10124e-05
-0.00485096
4.6442e-05
5.24104e-05
-0.00485027
0.00485039
5.0706e-05
-0.00484868
0.00485167
4.51637e-05
0.00485257
4.01076e-05
0.00485316
3.56272e-05
0.00485349
3.15108e-05
0.00485364
2.7745e-05
2.42904e-05
-0.00485567
2.39531e-05
-0.00485506
2.71327e-05
3.05927e-05
-0.00485415
0.00485623
2.89179e-05
-0.00485457
0.00485745
2.5905e-05
2.3126e-05
-0.00486043
2.16252e-05
-0.00485849
2.39426e-05
-0.00485612
2.65311e-05
-3.21744e-05
-0.00485339
2.94185e-05
-3.4291e-05
-0.00485247
-0.00485282
-0.00485108
3.83654e-05
-0.00484887
4.29473e-05
4.8087e-05
-0.00484626
0.00484701
4.47336e-05
-0.00484367
0.00484994
3.99991e-05
3.58253e-05
-0.00485031
3.27238e-05
-0.00484687
3.65392e-05
-0.00484303
4.08773e-05
-5.00124e-05
-0.00483875
4.5708e-05
-5.3786e-05
-0.00483991
-5.68728e-05
-0.00484318
-5.90357e-05
-0.00484652
-6.00918e-05
-0.00484921
-6.00141e-05
-0.00485133
-0.00485288
-0.00485402
6.81903e-05
-0.00485491
7.73046e-05
8.75565e-05
-0.00485552
0.0048505
8.64781e-05
-0.0048494
0.00485111
7.67032e-05
6.79932e-05
-0.00484767
6.64619e-05
-0.00484572
7.4765e-05
-0.00484323
8.39979e-05
-9.74009e-05
-0.0048402
9.43808e-05
-9.89756e-05
-0.00484781
-0.0048556
-0.0048552
0.00011197
-0.00485423
0.000126623
0.00014323
-0.00485246
0.00484283
0.000139636
-0.00483923
0.00484565
0.000123821
0.000109826
-0.00483656
0.000106188
-0.00483218
0.000119451
0.00013437
-0.00482691
0.00482222
0.000127621
-0.00481547
0.00482797
0.000113707
0.00483288
0.000101273
0.00483711
9.0154e-05
0.00484075
8.03524e-05
0.00484391
7.16039e-05
6.38583e-05
-0.00483964
6.03104e-05
-0.00483561
6.75632e-05
7.57525e-05
-0.00483101
0.00483091
7.02995e-05
-0.00482547
0.00483565
6.28074e-05
5.6034e-05
-0.00483394
5.12023e-05
-0.00482851
5.73605e-05
-0.00482238
6.41474e-05
-7.87858e-05
-0.00481542
7.18087e-05
-8.49025e-05
-0.00481936
-0.00482577
-0.00481975
9.52414e-05
-0.00481279
0.000106746
0.000119553
-0.00480473
0.00480431
0.000110317
-0.00479509
0.00481235
9.86994e-05
8.82139e-05
-0.00480751
8.02889e-05
-0.00479851
8.96854e-05
0.000100055
-0.00478826
0.00480217
8.88841e-05
-0.00479102
0.00481203
7.98049e-05
0.00482075
7.15501e-05
0.00482849
6.40467e-05
0.00483525
5.73632e-05
0.00484135
5.12411e-05
0.00484668
4.58429e-05
0.00485144
4.09216e-05
0.00485569
3.66003e-05
0.00485952
3.26886e-05
0.00486294
2.92792e-05
0.00486605
2.62783e-05
0.00486887
2.3684e-05
0.00487138
2.14071e-05
1.94537e-05
-0.00490507
1.68538e-05
-0.00490227
1.8571e-05
2.05756e-05
-0.0048992
0.00496929
1.72453e-05
-0.00496599
0.00497229
1.5532e-05
1.4056e-05
-0.00503308
1.11236e-05
-0.0050299
1.23118e-05
-0.00502638
1.36823e-05
-1.9181e-05
-0.00502248
1.52355e-05
-2.28594e-05
-0.00496235
-0.00489581
-0.00489207
2.55107e-05
-0.00488793
2.85078e-05
3.19e-05
-0.00488326
0.00495374
2.67588e-05
-0.00494864
0.0049583
2.39121e-05
2.14235e-05
-0.00501809
1.69957e-05
-0.0050132
1.89822e-05
2.1223e-05
-0.00500771
0.00493744
1.54959e-05
-0.00493176
0.0049425
1.38778e-05
0.00494703
1.24289e-05
0.00495107
1.11451e-05
0.0049547
1.00119e-05
0.00495795
9.01359e-06
8.1375e-06
-0.00465037
5.23843e-06
-0.00464724
5.83164e-06
6.4486e-06
-0.00464372
0.00424138
-0.00423811
0.00424435
-7.15248e-06
-0.00423448
-0.00463977
-0.00463541
8.02632e-06
-0.00463051
8.93845e-06
9.97494e-06
-0.00462503
0.00422582
-0.00422073
0.00423038
-1.11535e-05
-0.00421503
-1.733e-05
-0.00461889
-2.37072e-05
-0.00492542
-2.98887e-05
-0.00500156
-3.56506e-05
-0.00494291
-0.00487801
-0.00487211
3.99119e-05
-0.00486548
4.45772e-05
4.98571e-05
-0.004858
0.00492927
4.16918e-05
-0.00492113
0.00493646
3.73612e-05
3.34239e-05
-0.00499465
2.64724e-05
-0.00498689
2.95726e-05
-0.00497824
3.30121e-05
-4.64826e-05
-0.00496855
3.67609e-05
-5.5609e-05
-0.00491204
-0.00484958
-0.00484011
6.20511e-05
-0.00482944
6.91194e-05
7.68711e-05
-0.00481745
0.00489038
6.40392e-05
-0.00487757
0.00490182
5.76529e-05
5.18154e-05
-0.00495771
4.09451e-05
-0.00494559
4.55159e-05
5.05066e-05
-0.00493208
0.00486815
3.67629e-05
-0.00485443
0.00488049
3.31549e-05
0.00489157
2.98458e-05
0.00490147
2.68249e-05
0.00491038
2.40669e-05
0.00491832
2.16028e-05
1.9336e-05
-0.00461204
1.24419e-05
-0.00460436
1.38966e-05
1.54773e-05
-0.0045958
0.00420154
-0.00419363
0.00420866
-1.72537e-05
-0.00418475
-0.00458626
-0.00457562
1.91798e-05
-0.00456378
2.12967e-05
2.3603e-05
-0.00455064
0.00416394
-0.0041518
0.00417489
-2.61011e-05
-0.00413837
-4.06746e-05
-0.00453608
-5.59259e-05
-0.00483919
-7.09878e-05
-0.00491703
-8.5327e-05
-0.00486324
-9.88191e-05
-0.00480397
-0.000111444
-0.0047784
-0.000123132
-0.00477659
-0.000133751
-0.00478448
-0.000143137
-0.00479535
-0.000151111
-0.0048075
-0.000157563
-0.00482045
-0.000162129
-0.00483465
-0.000164604
-0.00484996
-0.000164495
-0.00486604
-0.000162426
-0.00488102
-0.000156176
-0.00489512
-0.000146446
-0.00490357
-0.000133677
-0.00491117
-0.000117875
-0.00492564
-9.89836e-05
-0.00496397
-0.0050415
-0.00506784
0.000118188
-0.00509902
0.000142793
0.000173589
-0.00513481
0.00501013
0.000200498
-0.00503696
0.00498571
0.000167294
0.000140018
-0.00494323
0.000157682
-0.00496234
0.000186479
-0.00498206
0.000220287
-0.000239527
-0.00500166
0.000259206
-0.000211105
-0.0050653
-0.00517273
-0.00521051
0.000255783
-0.00525703
0.000314616
0.00041866
-0.00532426
0.00513317
0.000453272
-0.00516771
0.00509332
0.000354542
0.000283886
-0.00502588
0.000308172
-0.00505088
0.000379607
0.000466208
-0.00506375
0.00499491
0.000463003
-0.00499165
0.0049825
0.000392084
0.00496559
0.000325138
0.00495319
0.000271664
0.00493902
0.00023452
0.00492483
0.000200734
0.000171407
-0.00491335
0.000181247
-0.00492251
0.000209956
0.000240626
-0.00492856
0.0049029
0.000246418
-0.00490864
0.00490022
0.000212682
0.000186398
-0.00488219
0.000187609
-0.00488461
0.000215142
-0.00488496
0.000246807
-0.000286631
-0.00488126
0.000282973
-0.000282226
-0.004913
-0.00493907
-0.00494786
0.000333979
-0.00494549
0.000389763
0.00045236
-0.00493479
0.00490169
0.000436663
-0.00488595
0.00491017
0.000381328
0.000331192
-0.00487369
0.000323661
-0.00486099
0.000368655
-0.00484195
0.000417669
-0.000495258
-0.00481556
0.000468897
-0.000520248
-0.00486091
-0.000541437
-0.00491355
-0.000557608
-0.00497542
-0.00056548
-0.00505582
-0.000558364
-0.00517475
-0.0053629
-0.00534695
0.000712944
-0.0052717
0.000880015
0.00103109
-0.00510634
0.00508358
0.000929496
-0.00498192
0.0051493
0.000814356
0.000687554
-0.00502568
0.00065747
-0.00496971
0.000758446
-0.00489341
0.00085325
-0.00102338
-0.00480445
0.000934465
-0.0011351
-0.00487016
-0.00128365
-0.00495774
-0.00507833
-0.00145674
-0.00495911
0.00133757
-6.36379e-05
-0.00145946
-0.00495461
-0.000633476
0.00239681
-0.00182696
-2.99064e-05
0.00104346
0.00133256
-0.000751969
-0.00222761
0.00106618
-0.000852437
0.000352463
0.0010731
0.000322831
0.000348928
7.3746e-05
-0.000900977
-0.000754412
-0.0011533
-0.000396432
-0.000856199
9.93301e-05
-0.00101289
0.000464291
-0.00111638
0.000774378
-0.00116628
0.000890904
-0.00224479
-0.00239551
-0.000818489
-0.0017825
0.000205487
-0.000135494
-0.0021336
-0.000794176
-0.000412429
-0.000889347
-0.00109251
-0.000429517
-0.0010268
0.000363809
-0.0010888
0.000140232
-0.000810584
-0.000800644
-0.00221682
0.000811191
0.00131971
-0.000509786
-0.00110144
-0.00100101
-0.000982824
0.000439178
-0.000447387
-0.000915038
0.000379601
-0.000992573
0.000177224
-0.000755975
-0.000795723
-0.00207525
0.00121828
0.000914885
-0.000505684
-0.00104601
-0.000943556
-0.000937832
0.000443181
-0.000445027
-0.000883168
0.000390365
-0.000951554
0.000179944
-0.000724769
-0.000769786
-0.00201964
0.000874037
0.00121217
-0.00049432
-0.00100024
-0.000902561
-0.000897007
0.000434698
-0.000446086
-0.000831924
0.000381002
-0.000919004
0.000202378
-0.000706564
-0.000774257
-0.0019345
0.0011368
0.000942405
-0.000504471
-0.000976352
-0.000894319
-0.000894765
0.000449319
-0.000450646
-0.000833989
0.000389871
-0.000918103
0.000205841
-0.000700808
-0.000765983
-0.00191128
0.000897488
0.00115161
-0.000509945
-0.000956847
-0.000892392
-0.000882644
0.000455486
-0.000474119
-0.000797906
0.00038938
-0.000908993
0.000259264
-0.000686584
-0.000810831
-0.00180511
0.00097949
0.0010978
-0.000571787
-0.000925631
-0.000843371
-0.000492539
-0.000843883
0.000493047
-0.000847338
-0.000878356
0.000482113
-0.000453464
-0.00066994
0.00024504
-0.000825335
0.0005354
-0.000850224
0.000760902
-0.00089545
0.000767852
0.00108027
0.000909292
-0.00175148
0.000406077
0.000785198
0.000701143
-0.000268557
-0.00168186
0.000930499
-0.00156155
0.000788983
-0.000489841
-0.00147556
-0.00371455
0.00187434
0.00224401
-0.000246548
-0.000733017
-0.00126177
-0.000473829
-0.000668171
-0.000505362
-0.000818693
-0.000822744
-0.000454488
-0.000847012
0.00047876
-0.000809219
-0.000799251
0.000419849
-0.000449004
-0.000731394
0.000381145
-0.000823711
0.000252953
-0.000625138
0.00105769
0.000920865
-0.00169397
-0.000763035
0.000766562
0.000672269
-0.0002451
0.000729262
0.00101185
0.000954002
-0.00168348
0.000389332
-0.00178334
-0.000879816
-0.00134934
0.000445807
-0.00164244
-0.000951989
-0.00145361
0.000763153
-0.000266114
-0.000746712
-0.00163314
-0.00046886
-0.000646699
0.000849442
-0.000466952
-0.00077213
0.000770217
-0.00077846
-0.000808569
0.000462798
-0.000443157
-0.000621762
0.000256352
-0.000771875
0.000524683
-0.000799005
0.000738363
-0.000835443
0.000697232
0.00100551
-0.00154931
0.000841282
0.0003879
-0.000270512
-0.000744786
-0.00154053
0.00100652
-0.000472032
-0.000633923
-0.000497195
-0.000773844
-0.000779715
-0.000457753
0.000473655
-0.00079562
-0.000765501
-0.000743561
0.000428969
-0.000467774
-0.000657074
0.000381282
-0.00073938
-0.000426055
-0.000574889
0.000261558
-0.000701324
0.000492467
-0.000750849
0.000705938
-0.000788365
0.000982176
0.000879621
-0.0015514
0.000741516
0.000621938
0.000687529
0.000991371
-0.000255285
-0.00157973
0.000897622
0.000387339
-0.00158766
0.000887537
-0.000840599
0.000473371
-0.00122045
-0.000257887
-0.000701476
-0.00143266
-0.000441857
-0.000604401
-0.000447976
-0.000744737
-0.000771336
-0.000776532
0.000443486
-0.000420921
-0.000596215
0.0002406
-0.000697484
-0.000441902
-0.000621746
0.00036616
-0.000719657
0.000270756
-0.000552812
0.000935424
0.000846849
-0.00141626
-0.00071702
0.000705364
0.000667792
0.000939348
-0.00152839
0.000867179
0.000366534
0.000479046
-0.00116061
-0.00133937
-0.0031996
0.00178172
0.00193336
0.00130282
-0.000978521
-0.00152147
-0.000277416
-0.000707806
-0.00140957
-0.000454246
-0.000577293
0.000754121
-0.000453817
-0.000697326
0.000696896
-0.000711727
0.000440775
-0.000725783
-0.000625208
0.000368658
0.000916441
-0.000251379
-0.001455
0.000865051
-0.000700308
-0.000409459
-0.000567703
-0.000658241
-0.000424712
-0.000593048
0.000359518
-0.000682011
0.000257736
-0.000525323
-0.000678521
-0.0014197
0.000854422
0.000908492
-0.000489412
-0.000714435
-0.000657784
-0.000431438
-0.000658475
0.000432124
-0.000673771
-0.000689282
0.000421743
-0.00038952
0.000236159
-0.000535929
-0.00062227
-0.000406888
-0.000557015
0.000341623
-0.000647802
0.000253554
-0.000502056
-0.000657904
-0.00128964
0.00079502
0.000849003
-0.000473917
-0.000686051
-0.000630743
-0.000416734
-0.000632804
0.000418787
-0.000646417
0.00040789
-0.000662432
-0.000568326
0.000343404
0.000840534
0.000808658
-0.00133215
-0.000236222
-0.000649189
0.000656176
0.000527754
-0.000260479
0.000915094
-0.00128814
0.00125052
0.00105768
-0.00139316
-0.000467802
0.001177
0.0017774
0.001694
-0.00293011
0.00138486
-0.000654689
0.000589904
0.000858028
0.000827741
0.000353167
0.000666134
0.000545058
-0.000262744
-0.0013029
0.000812076
0.000701834
0.00136473
0.00111451
0.00123441
-0.000472878
0.00184685
0.00175905
-0.00300273
-0.000853146
0.00138377
0.000703797
-0.00145372
0.000839244
0.000469249
-0.00115149
-0.00139915
0.00178377
-0.00311506
0.00327131
0.0016889
-0.0031765
0.00328342
0.00176956
-0.00145021
0.00136101
0.00200752
0.00183842
-0.000737315
0.00151296
0.000735578
0.000870044
0.000464014
-0.00125951
0.00166554
-0.00148358
0.00351787
0.00184358
-0.00341389
-0.000471035
-0.00140916
0.00211848
0.00182591
-0.0012629
0.00153228
-0.00361308
0.00187656
0.00180418
-0.00359139
0.00368991
0.00169795
-0.00358373
0.00381196
0.00175449
0.00385663
0.00182965
-0.00044077
0.00399286
0.00189748
-0.00159296
0.00192974
-0.00144002
0.00153088
0.00137835
-0.000452886
0.00171374
0.00238924
0.00187361
-0.000224652
-0.000761167
-0.000726015
0.00182591
0.000785321
-0.000223095
-0.000791359
0.00090587
-0.000750129
0.000391818
-0.00154845
0.0020625
-0.00162611
0.0042747
0.00186968
-0.00412646
-0.000391483
-0.00154604
0.00185463
0.00253089
0.0018267
-0.000189732
-0.000762531
-0.00145887
-0.000755271
0.00195699
0.000771674
-0.000194696
-0.000805002
0.000881434
-0.00079753
0.000319498
-0.00165975
0.00222169
-0.00164281
0.00458985
0.00178957
-0.00441711
-0.000300251
-0.00155513
0.00204585
0.00268135
0.00171805
-0.000161396
-0.000774218
-0.00158145
-0.000823659
0.000723441
0.0016223
-0.00473743
0.00161064
0.00162904
-0.00464839
0.0047604
0.0014526
-0.00458394
0.00141197
0.00483026
0.00127162
-0.00468987
0.00121013
0.00109784
-0.00475782
-0.00470841
0.00100185
-0.00115623
-0.0046093
0.00105716
-0.0046424
-0.00131344
-0.00452783
0.0011989
-0.00455067
-0.0014635
-0.00442531
0.00133816
-0.00161002
-0.00443739
-0.00446881
-0.00175664
-0.00431124
0.00159907
-0.00434704
-0.00418834
0.00171097
-0.00181747
-0.00404702
0.00167614
-0.00407034
-0.00392655
0.00175367
-0.00380255
0.00170563
-0.00370267
0.00165459
0.00160658
-0.00361133
0.00373252
0.00152287
-0.00364884
0.00382541
0.00156168
0.00393053
0.00160049
0.00163716
0.00405969
0.00153136
-0.0039539
0.00417924
0.00155659
0.00157898
0.00430545
0.001461
-0.00418746
0.00146714
-0.00430823
0.00135008
-0.00420116
0.00135394
-0.00144888
-0.00410164
0.00134938
-0.00407974
-0.00398212
0.00143374
-0.00150312
-0.00389103
0.00141202
-0.00385654
-0.00376974
0.00147487
-0.00368924
0.00144235
-0.00148513
-0.00361436
0.00141023
-0.00156158
-0.0035724
-0.00164279
-0.00353015
-0.00173094
-0.00349562
-0.00347879
-0.00177576
-0.0033753
0.00167223
-0.00335127
-0.00326762
0.00168587
0.00161776
-0.00319653
0.00329915
0.00155324
-0.00323467
0.00160968
0.0034135
0.00153999
-0.00334384
0.00159007
-0.00345656
0.00151644
-0.00339024
0.00147364
-0.00149064
-0.00332924
0.00142962
-0.00328127
-0.00150053
-0.00322509
0.00144432
-0.00155934
-0.0031759
-0.00162532
-0.00313059
-0.00171024
-0.00309164
-0.00306632
-0.00169071
-0.00299752
0.00162186
-0.00299947
-0.00169033
-0.00291956
0.00161039
-0.000451912
-0.00130638
-0.00286225
-0.000788274
-0.00105685
-0.0012678
-0.000800949
-0.00112728
0.00066039
-0.00079762
-0.0013355
-0.000241991
0.000542131
0.000834147
-0.000627983
-0.00130391
0.000624782
-0.000482833
0.000392921
0.000601403
0.000333648
0.000380055
-0.000518603
-0.000454028
-0.000656783
-0.000605493
-0.000400917
-0.000606502
0.000401934
-0.000621479
-0.000637386
0.000393032
-0.000363356
-0.000494891
0.000220867
-0.00057623
-0.000378892
-0.000514316
0.000316979
-0.000599834
0.000237439
-0.000464782
0.000785511
-0.00061092
-0.00119204
0.000740571
0.000607604
0.00054185
0.000791474
0.000772394
-0.00127718
0.000328388
0.000617788
0.000502083
-0.000247241
-0.00119837
0.000759525
-0.00108085
0.000654905
0.00164095
0.00158519
-0.00270497
-0.00116163
-0.000440278
0.00127068
0.00102519
-0.00044922
0.00170287
0.00165509
-0.00276546
0.00161749
-0.00282472
-0.00284944
0.00154733
-0.00153286
-0.00280013
0.00148351
-0.00158921
-0.00276845
-0.00276953
-0.00157941
-0.00270234
0.00151218
-0.000422629
-0.00121271
-0.00264902
-0.000732857
0.00128761
-0.000977397
-0.000750741
0.00119166
-0.00117384
0.000526602
0.000777257
-0.000219589
-0.00123383
-0.000601288
-0.000380051
0.000588482
0.000318157
0.000601137
-0.000615187
0.000388133
0.000585808
0.000390795
0.000440866
-0.000634845
0.000243791
-0.000487851
-0.00060755
0.00085091
0.000976872
-0.000353596
-0.000481194
-0.000560677
-0.000365464
-0.000504359
0.000309132
-0.000580929
0.00022495
-0.000448694
-0.000582577
-0.00120928
0.000738989
0.000773366
-0.000422076
-0.000609202
-0.000564016
-0.000372611
-0.000564161
0.000372756
-0.000578809
-0.000592265
0.000363585
-0.000335929
0.000203014
-0.000459342
-0.000535981
-0.000349367
-0.000478934
0.000292331
-0.000557023
0.000217331
-0.000431074
-0.000563913
-0.00110708
0.000681656
0.000727836
-0.00040581
-0.000589169
-0.00054311
-0.000357044
-0.000545147
0.00035908
-0.000557221
0.000347647
-0.000569615
-0.000489726
0.000292228
0.000720037
0.000687119
-0.00114575
-0.000198366
-0.000552763
0.000559525
0.000452747
-0.000222669
0.000782899
-0.00110769
0.00107352
0.000907672
-0.00119819
-0.000402739
0.00100476
0.00152126
0.0014659
-0.00251569
0.00118666
-0.000560837
0.000504167
0.000733422
0.000712969
0.000303594
0.00057145
0.000465565
-0.000229113
-0.00111229
0.00070353
0.000605423
0.00117564
0.000950998
0.0010428
-0.000416641
0.00157835
-0.00256662
0.00153756
-0.000742873
0.000611778
-0.00123782
-0.00257588
0.00147506
-0.00145836
-0.00251975
0.00140217
-0.000384542
-0.00111961
-0.00246982
-0.000672612
-0.000910045
-0.00109313
-0.000679468
-0.000975053
0.000561413
-0.000672888
-0.00115238
-0.000201085
0.00046656
0.000715251
-0.0005325
-0.00112123
0.000534625
-0.000412068
0.000332557
0.000516848
0.000282252
0.00032326
-0.00044473
-0.000382145
-0.000562441
-0.00051683
-0.000335345
-0.000518083
0.000336584
-0.000527081
-0.000542171
0.000327473
-0.000300605
-0.000421341
0.000179769
-0.000486922
-0.000312322
-0.000437892
0.000263301
-0.000503988
0.000188593
-0.00039185
0.000667715
0.000610248
-0.00102201
-0.000505192
0.000509673
0.000465833
0.000677526
0.000646825
-0.00110087
0.000275207
0.00052239
0.000430322
-0.000204442
-0.00103523
0.000640705
-0.000940241
0.000551721
-0.000354352
-0.000981713
-0.0023588
0.00133729
0.00141701
-0.000845001
-0.000704385
-0.00112228
-0.000191132
-0.000505236
-0.00102993
-0.000314057
-0.00041688
0.000539824
-0.000307261
-0.000496812
0.000490025
-0.00049953
0.000305562
-0.000523183
-0.00045164
0.000260397
0.000661703
-0.000169695
-0.000481901
-0.00106641
0.000604739
-0.000290201
-0.000402682
-0.000501143
0.00034044
-0.000519165
-0.000544152
-0.000306085
-0.00041254
0.000174467
-0.000322062
-0.000503202
-0.000506365
-0.000295263
0.00030524
-0.000516357
-0.000495634
-0.000481396
0.000274759
-0.000299782
-0.000425729
0.000244115
-0.000479342
-0.000267793
-0.000374397
0.000162857
-0.000451173
0.00030945
-0.000483865
0.000450313
-0.00051525
0.0006274
0.000575394
-0.00101542
0.000469573
0.000401937
0.000447179
0.000637644
0.000532052
-0.000987003
-0.000160335
0.00024921
0.000474308
0.000619029
-0.00103663
0.00103119
0.000510998
-0.000923076
0.000606091
0.000338981
-0.000855103
-0.00102938
-0.00232048
0.00133012
-0.00137343
-0.000325935
-0.000986653
-0.00226388
0.00128031
-0.000830476
-0.000490394
-0.00132677
-0.00090206
-0.000318608
-0.00089674
-0.002221
0.00120721
-0.000151171
-0.000436017
-0.000746874
-0.000274296
-0.000392119
-0.000277702
-0.000480443
-0.000492419
-0.000499415
0.000276379
-0.000258176
-0.000389339
0.000148118
-0.000447154
-0.000260409
-0.000415245
0.000228514
-0.000457693
0.000137827
-0.000359213
0.000617636
0.000546562
-0.00101289
-0.000428668
0.000456825
0.000432132
0.000600053
0.000576308
-0.00100354
0.00022808
-0.00106731
-0.000532355
-0.00081502
0.000280063
-0.000989301
-0.000560764
-0.000886123
0.00045764
-0.00014486
-0.000436231
-0.000992525
-0.000261477
0.000500826
-0.0003842
0.000461036
-0.000455227
0.000287045
-0.000271608
-0.000406234
0.000222623
-0.000449648
-0.000239725
-0.000352533
0.000142608
-0.000419552
0.000278897
-0.000454106
0.000418928
-0.000492571
0.000597805
-0.000928795
0.000486297
-0.000135232
-0.000421233
-0.000948448
0.000576127
-0.000246864
-0.000380943
-0.000243093
-0.00045788
-0.000457768
0.000241545
-0.000473952
-0.000425252
0.000208909
0.000593275
-0.000116496
-0.000399297
-0.000987014
0.000484268
-0.000225559
-0.000364893
-0.000442726
0.000267606
-0.000467499
-0.000496584
-0.000237981
-0.000379984
0.000121384
-0.000242757
-0.000462715
-0.000464991
-0.00046693
0.000236148
-0.000219492
0.000111346
-0.000358777
-0.000409103
-0.000221869
-0.000383642
0.000196424
-0.000413448
0.000100248
-0.000323211
-0.000362951
0.000456597
0.000558794
-0.000935799
-0.000230509
-0.000455663
-0.000405848
-0.000409243
0.00020202
-0.00020218
-0.000384708
0.000177633
-0.000415298
8.85893e-05
-0.000322755
-0.000353458
-0.000921736
0.000531569
0.000447469
-0.000222453
-0.000453782
-0.000403046
-0.000407443
0.000196922
-0.00019286
-0.000389036
0.000174451
-0.000411265
7.3148e-05
-0.000319041
-0.000337605
-0.000924267
0.000404071
0.000541877
-0.000202609
-0.000454019
-0.000399499
-0.00042735
0.000184094
0.000220008
-0.000448324
0.000340933
0.000346417
-0.000467304
-7.65327e-05
0.000175615
-0.000682413
0.000861518
0.00120325
0.000913693
-0.00206389
-0.000738698
0.00089094
0.000374667
-9.38447e-05
-0.000365595
0.000428632
-0.000350721
0.000191535
-0.000769622
0.00100678
-0.00080835
0.00210451
0.000995207
-0.00209958
0.000864471
0.00122218
0.000991999
-0.000213104
-0.000760959
0.00092096
0.000400112
-0.000396445
0.000424422
0.000580075
0.000424271
0.000197866
0.000397963
-0.000967664
0.00049995
0.000231561
-0.000775006
-0.000847252
0.000878677
0.00125843
0.00106616
-0.00212472
0.00095711
0.00042148
0.000492919
0.000249973
-0.000791063
0.00103404
-0.000888824
0.00218462
0.00111487
-0.00216054
-0.000264323
-0.000839708
0.00129151
0.00111132
-0.000770497
0.000934167
-0.00220251
0.00119551
0.00113967
-0.00223086
0.00225233
0.00111596
-0.00222858
0.00228337
0.00116436
0.00122666
0.00231016
0.00120054
-0.00228404
0.00127008
0.00236916
0.00123181
-0.0023309
0.00241409
0.00128518
0.00239839
0.00135294
-0.000374351
-0.00108255
0.00146818
0.0014121
-0.000886102
0.00139213
-0.00244986
-0.00247221
0.00134454
-0.001317
-0.00244232
0.00128711
-0.00241394
0.00125823
-0.00238701
0.00123612
-0.00242021
0.00248158
0.00121594
-0.0024614
0.00250694
0.00126174
0.00253936
0.00131209
0.00257513
0.00136635
0.00262086
0.00142929
0.00150938
-0.00264434
0.00145134
0.00139027
-0.00260535
0.00268108
0.0013562
-0.00264704
0.00272292
0.00140947
0.0014666
-0.00276022
0.00142665
-0.00272458
0.00137379
-0.00269441
0.00132601
-0.00130757
-0.00266576
0.00127889
-0.00133585
-0.00261878
-0.00257488
-0.00254818
0.00128536
-0.00252633
0.00123988
0.00119524
-0.00250563
0.00257099
0.00117423
-0.00254999
0.00259397
0.00121688
0.00126053
-0.00264035
0.00123511
-0.0026157
0.00119222
-0.00259237
0.0011509
-0.00113349
-0.00257011
0.00111123
-0.00115395
-0.00252953
-0.00117189
-0.00248769
-0.00118908
-0.0024442
-0.00120785
-0.00240144
-0.00236308
-0.00117899
-0.00234621
0.00116211
-0.00230936
-0.00114594
-0.00229596
0.00113256
-0.00226562
0.00110191
-0.0022515
0.00109027
-0.00228427
0.00233278
0.00107987
-0.00232234
0.00111915
0.00238637
0.00110604
-0.00237324
0.00114704
0.00113128
-0.00242843
-0.00247014
0.00111374
-0.00109183
-0.0024535
0.0010752
-0.0024142
-0.00106846
-0.00240025
0.00105453
-0.0023618
-0.0010435
-0.00235047
0.00103219
-0.00105303
-0.00231279
-0.00106151
-0.00227575
-0.00107184
-0.00224113
-0.00108605
-0.00221426
-0.0022019
-0.00106919
-0.00217712
0.00104448
-0.00216357
-0.00102535
-0.00215157
0.00101335
-0.00215815
0.000979246
-0.00214205
0.00097365
-0.00214587
0.00216819
0.00096975
-0.00216422
0.00100447
0.00220251
0.000997933
-0.00219592
0.00103278
0.00102497
-0.0022333
-0.00226821
0.00101745
-0.00099221
-0.00226125
0.000985279
-0.00222755
-0.000965877
-0.00222262
0.000960989
-0.002192
-0.000941402
-0.00218851
0.000937954
-0.000943417
-0.00216214
-0.000947145
-0.00214204
-0.000955973
-0.00213312
-0.00214176
-0.0009087
-0.00215389
0.000920809
-0.000142947
-0.000715103
-0.00211461
-0.000364021
-0.000748744
0.000969829
-7.79105e-05
-0.000351629
-0.000904527
0.000417278
0.00055282
-0.000183733
-0.000345449
0.00045128
-0.000409377
0.000222102
-0.000433708
-0.000474979
-0.000193333
-0.000364739
8.30829e-05
-0.000191248
-0.000435813
-0.000420052
0.000184121
-0.000436893
-0.000417793
0.000166077
0.00055722
0.000375548
-0.000969135
-5.60647e-05
-0.000325433
0.000358545
0.000458287
-0.000921192
-0.00100555
-0.000392946
-0.000770312
0.000157721
-0.000938578
-0.000401486
-0.00088728
0.000350229
-6.42013e-05
-0.000963804
-0.00034264
-0.000170769
0.000475429
-0.000368879
0.000439685
-0.00043884
0.00039126
0.000189188
0.000153828
-0.00033916
-0.000175024
-0.000418488
0.000154674
-0.000431884
5.58584e-05
-0.000331562
-0.000336925
-0.000915068
0.000332531
0.000556855
-0.000195504
-0.000472966
-0.000411874
-0.000442309
0.000176633
0.000215563
-0.000464502
0.000346433
0.000363038
-0.000493872
-6.675e-05
0.000442166
-0.000943994
0.0007089
0.00075903
-0.00102573
-0.000127763
0.00120343
0.000873584
-0.00212728
0.000783401
-0.00210266
0.000929268
0.000913614
-0.00214253
0.00213392
0.000898538
-0.00211872
0.000909382
0.00213351
0.000903512
-0.00212757
0.000921267
-0.00214049
0.000919793
-0.0021367
0.000899774
-0.000890059
-0.00213071
0.00088413
-0.00211905
-0.000888342
-0.00210845
0.000877814
-0.000901288
-0.0021057
-0.000924813
-0.00211892
-0.000160265
-0.000794453
-0.0020973
-0.000405897
-0.000780066
-7.67317e-05
-0.000360498
-0.000912619
-0.000191332
-0.000379248
-0.000193655
-0.000462141
-0.000306596
-0.000328768
0.000191101
-0.000123777
-0.000260599
5.56167e-05
-0.000286868
0.000105647
-0.000271822
0.000344099
-0.000499048
0.000439125
0.000571626
-0.000994456
0.000383435
0.000168106
-6.93576e-05
-0.000730705
0.000166323
-0.000360744
-0.000187645
-0.000380765
-0.000284588
-0.000192108
-0.000265793
0.000173311
-0.000322105
5.03924e-05
-0.000235731
-0.000262338
-0.000974493
0.000453183
0.000568206
-0.000170424
-0.000327652
-0.000297359
-0.00031984
0.000159761
0.000177957
-0.000310428
0.000417522
0.000275993
-0.00051557
-0.000108092
-0.000925491
0.000476579
-0.000143031
-0.000443562
0.000569066
-0.000907951
-0.00027398
-0.000384627
0.000787857
0.00076012
-0.000978875
-0.000189492
0.0020737
0.000958584
-0.00205473
0.00104721
0.00076966
0.00089104
0.00121265
0.000905764
0.000361853
-0.00211694
0.000925396
-0.00208385
0.000925673
-0.00101024
-0.00200364
0.000930204
-0.000255714
-0.000851256
-0.00195777
-0.000508738
-0.000725778
-0.00087287
-0.000556629
-0.000752394
0.000436236
-0.0001947
-0.000424437
-0.000810683
-0.000315443
-0.000247242
-0.000492628
-0.00029792
-0.000200256
-0.000392842
-0.000704766
0.00050735
-0.000269207
-0.000224487
-0.000437561
-0.000272554
-0.00025259
0.000106635
0.000198182
-0.000191601
-0.000385772
-0.000133129
0.000121936
0.000117829
-8.49946e-05
0.000128403
-0.000176537
-0.000108268
0.000117765
-9.44909e-05
-7.16382e-05
0.000128628
-0.000165258
-0.000103664
0.000119359
-8.73337e-05
-8.4622e-05
0.000124186
-0.000143229
7.83784e-05
-8.35255e-05
9.76076e-05
9.07363e-05
8.46032e-05
9.31641e-05
9.81061e-05
0.000110103
0.000113348
-0.000116262
-0.000207205
-0.000185724
0.000166171
0.00033529
0.000478564
-0.000696081
0.000248864
-0.000213768
-0.000490333
0.000369344
0.000851489
0.0010328
-0.001441
-0.000933577
0.000530668
-0.000606066
0.000431966
0.00102025
0.0010275
-0.00162103
0.000822617
0.000629595
0.00114073
-0.000326307
-0.00179645
0.00105232
-0.00173782
0.000968844
-0.000877556
-0.00171397
0.000853831
-0.000875907
-0.00162258
-0.000809904
-0.00150689
-0.000692665
-0.00140864
0.00129163
-0.00134697
-0.00143167
0.00062456
-0.000506825
-0.00149385
0.000569142
-0.000443625
-0.00146071
-0.0014374
-0.00148853
0.000421347
-0.00153297
0.000396977
0.000373251
-0.0015721
0.00155652
0.000411362
-0.00159445
0.00151264
0.000441048
0.000473436
-0.00154385
0.000523564
-0.00158532
0.000482685
0.000446901
-0.00162069
0.00161956
0.000478335
-0.00165083
0.00158302
0.000519363
0.00153973
0.000566972
0.00148416
0.000624873
0.000700318
0.000749545
-0.00155592
0.000765654
-0.00163853
-0.00171219
0.000764036
-0.000684752
-0.00171988
0.000692588
-0.000664955
-0.00165815
-0.00159582
-0.00162942
0.000600701
-0.00165857
0.00054864
0.000504196
-0.00168429
0.00170036
0.000523943
-0.00171997
0.00167948
0.000569646
0.000622155
-0.00173059
0.000632991
-0.00174308
0.000582258
0.00053766
-0.00175668
0.00178555
0.000545781
-0.00179356
0.00177861
0.000589314
0.00177419
0.000637523
0.00177572
0.00069119
0.00178782
0.000752123
0.00181905
0.000822711
0.00188521
0.000902683
0.000979807
-0.00192718
0.000903409
-0.00187656
0.000852119
-0.0018468
0.000793106
0.000736766
-0.00183128
0.00189567
0.000720541
-0.00187932
0.00192176
0.000767158
0.00196078
0.000813195
0.00201084
0.000853433
0.00206014
0.000881017
0.00209207
0.000893869
0.000898608
-0.00208742
0.000880403
-0.00206039
0.00086695
0.000846097
-0.00202538
0.00207094
0.000819685
-0.00204444
0.0020928
0.000845176
0.000864831
0.00212133
0.000849349
-0.00210576
0.000868509
0.0021489
0.000857662
-0.00213797
0.00215574
0.000877362
0.00215966
0.00089592
0.000917372
-0.00218459
0.000913511
-0.00217925
0.00089065
-0.00217036
0.000868553
-0.00215816
0.000845546
-0.000834862
-0.00214344
0.000820214
-0.00212339
-0.000825979
-0.00210625
0.000808921
-0.00208648
0.000799217
-0.00206592
0.000781291
-0.00208825
0.00212753
0.000765237
-0.0021114
0.000793084
0.00216503
0.000778175
-0.00215006
0.00217956
0.00080575
0.00219265
0.000832531
0.00220328
0.000857992
0.00221156
0.000882429
0.00221792
0.000907214
0.000933311
0.00225471
0.000925838
-0.00224718
0.000954509
0.00229528
0.000945237
-0.00228595
0.00230427
0.000976328
0.00100895
-0.00233923
0.000997741
-0.00232797
0.000965112
0.000933899
-0.00231658
0.00236005
0.000920516
-0.00234662
0.00237335
0.000951842
0.00238662
0.000984512
0.00101858
0.00243736
0.00100308
-0.00242184
0.00103841
0.00249151
0.00102039
-0.00247346
0.00251011
0.0010566
0.00109433
-0.0025487
0.00107293
-0.00252816
0.00103608
-0.00250788
0.00100012
-0.000985614
-0.00248922
0.000966978
-0.00245597
-0.000968745
-0.00243892
0.000951717
-0.00240604
-0.00239138
0.000937215
0.000905012
-0.00237584
0.00242216
0.000888955
-0.00240607
0.000920485
0.00247061
0.000902335
-0.00245243
0.000933136
0.00252161
0.000913174
-0.00250163
0.00254226
0.00094635
0.00256363
0.000978773
0.00258531
0.00101441
0.00260843
0.00104982
0.00263314
0.00108653
0.00265832
0.00112572
0.00268488
0.00116566
0.00271264
0.00120733
0.00274144
0.00125007
0.00277269
0.00129474
0.0028062
0.00134025
0.00284371
0.00138911
0.00288775
0.00143943
0.00294053
0.00149451
0.00155336
0.00303
0.00150224
-0.00297892
0.00156017
0.00150409
-0.00307455
-0.00312445
0.0014526
-0.00145372
-0.00307576
0.00140499
-0.00302607
-0.00144836
-0.00298232
0.00140458
-0.00293281
-0.00289297
0.00139956
-0.00285514
0.00135124
-0.00282111
0.0013062
0.00126186
-0.00278825
0.0028672
0.00122714
-0.0028325
0.00290357
0.00126981
0.00294145
0.00131334
0.00135865
0.0030316
0.0013162
-0.00298918
0.00136039
0.00312426
0.00131398
-0.00307788
0.00317279
0.00135643
0.00140028
0.00327316
0.00134669
-0.0032196
0.00138821
0.00337517
0.00133018
-0.00331715
0.003436
0.00136876
0.0035019
0.00140772
0.00144591
-0.00354478
0.00137631
-0.00347861
0.00134152
-0.00341646
0.0013066
-0.00335769
0.00127139
-0.00129197
-0.00330191
0.00123618
-0.00326245
-0.00130587
-0.00321066
0.00125406
-0.00316906
0.00126593
-0.00312102
0.00121667
-0.00316143
0.00324845
0.0011671
-0.00319889
0.00120059
0.00333799
0.00114713
-0.00328453
0.00339434
0.00117982
0.00345379
0.00121193
0.00351656
0.00124381
0.00358276
0.00127531
0.00365299
0.00130606
0.00372759
0.00133562
0.00380591
0.00136403
0.00138974
0.00392163
0.00130653
-0.00383841
0.00400804
0.00132561
0.00134015
0.00412004
0.0012504
-0.00403028
0.00421377
0.00125566
0.00431315
0.00125458
0.00441787
0.00124539
0.00122823
0.00450927
0.0011294
-0.0044104
0.00109891
0.00458076
0.00100914
-0.00449096
0.00466856
0.000969408
0.00475126
0.000919191
0.00482738
0.000858399
0.00489311
0.000787567
0.00494288
0.000708721
0.00062498
-0.0048795
0.000590975
-0.00483279
0.000662052
0.00072921
-0.00477439
0.0047821
0.000675589
-0.00472844
0.00482677
0.000617422
0.000556874
-0.00478104
0.000522391
-0.00473838
0.000574797
-0.00468809
0.000625337
-0.000729231
-0.00463115
0.000672323
-0.000790922
-0.00466671
-0.00470687
-0.00463229
0.000844655
-0.00455315
0.00089031
0.000927489
-0.00447146
0.00452688
0.000852458
-0.00445181
0.00459903
0.000818192
0.00077702
-0.00456876
0.000714664
-0.00450182
0.000751291
-0.00443233
0.000782998
-0.000879477
-0.00436147
0.000808643
-0.000956524
-0.00437473
-0.00103934
-0.00438861
-0.00440087
-0.00114972
-0.00431186
0.00106074
-0.0043147
-0.00422168
0.00116159
-0.00413218
0.00116619
-0.0040465
0.00116474
-0.00124051
-0.00396372
0.00115775
-0.00394517
-0.00386494
0.0012263
-0.00128569
-0.00378775
0.0012085
-0.00376008
-0.0036863
0.00126185
-0.00361635
0.0012361
-0.0035501
0.00120905
0.00118042
-0.00348671
0.00357992
0.00111792
-0.00351743
0.00364568
0.00114329
0.00371429
0.0011675
0.00118839
0.00381055
0.00111738
-0.00373953
0.00388583
0.00113323
0.00114842
0.00397905
0.00107196
-0.00390257
0.00405743
0.00107939
0.00413992
0.00108227
0.00422468
0.00108146
0.00107443
0.00430586
0.000992702
-0.0042241
0.000978015
0.000901367
-0.00429805
-0.00428883
0.000828764
-0.000915508
-0.004217
0.000843706
-0.00422083
-0.00100087
-0.00414557
0.000925634
-0.00414348
-0.00406599
0.0010048
-0.0039903
0.00100373
-0.00391711
0.000998792
-0.0010612
-0.00384649
0.000990603
-0.00383052
-0.00376059
0.00104746
-0.00109933
-0.0036937
0.00103247
-0.00367136
-0.00360636
0.00107831
-0.00354438
0.00105595
-0.00109281
-0.00348518
0.00103362
-0.00115233
-0.00345791
-0.00342711
-0.00337048
0.00112319
-0.0033172
0.00109383
-0.00111569
-0.00326591
0.0010644
-0.00323313
-0.00113169
-0.00318535
0.00108391
-0.00117932
-0.00315127
-0.00122664
-0.00311412
-0.00127205
-0.00307563
-0.00303376
-0.0012732
-0.00299203
0.00123145
-0.00294906
-0.00291081
0.00123154
-0.0028746
0.00119092
-0.00118608
-0.00284001
0.00115148
-0.00121895
-0.00279964
-0.00275714
-0.0027274
0.00117759
-0.00269921
0.00113746
0.0010987
-0.00267219
0.00273773
0.00107068
-0.0027097
0.00276822
0.00110697
0.00114616
-0.00280707
0.00111322
-0.00277568
0.00107559
0.00104069
-0.0027457
0.00281146
0.00100896
-0.00277972
0.00284415
0.0010429
0.00287844
0.00107893
0.00291443
0.00111549
0.00295225
0.00115309
0.00119174
0.00303179
0.00115123
-0.00299129
0.00118761
0.00114438
-0.00307091
-0.0031054
0.00109851
-0.00110844
-0.00306227
0.00106531
-0.00302812
-0.00111344
-0.00298796
0.00107327
-0.00295165
-0.00291497
0.00107881
-0.00287948
0.00104345
-0.00284564
0.00100906
0.000976608
-0.00281328
0.00287823
0.000943267
-0.00284488
0.00291261
0.000974686
0.00294913
0.00100693
0.00103998
0.00302171
0.00100076
-0.00298249
0.00103271
0.00309539
0.000990822
-0.00305351
0.0031393
0.0010214
0.00105246
0.00321703
0.00100583
-0.00317041
0.00103503
0.00329562
0.000985806
-0.0032464
0.00334719
0.00101284
0.00340123
0.00103979
0.0010665
-0.00342864
0.00100997
-0.00337461
0.000985765
0.000961183
-0.00332294
0.00339958
0.000909554
-0.00334793
0.00345346
0.000931898
0.00350969
0.00095375
0.0035684
0.000974922
0.00362967
0.000994684
0.00101429
0.00371306
0.000950904
-0.00364966
0.00377863
0.000966924
0.000979621
0.00386031
0.000913087
-0.00379375
0.00392823
0.000922706
0.00399875
0.000928302
0.00407127
0.000931237
0.000930532
0.00414522
0.000859744
-0.0040744
0.000853881
0.00421168
0.000785712
-0.00414349
0.00428
0.00077542
0.00434787
0.000760923
0.00441462
0.000741927
0.00447942
0.000718219
0.00454102
0.000689727
0.00459916
0.00065655
0.00465248
0.000619036
0.00470006
0.000577785
0.00474146
0.000533425
0.00477579
0.000488094
0.00480331
0.000441409
0.00482454
0.000396471
0.00484022
0.000353003
0.00485126
0.000312644
0.00485856
0.000275706
0.00486299
0.000242416
0.00486541
0.000212754
0.000187001
-0.00484628
0.000183341
-0.00484123
0.000207733
0.000235112
-0.00483391
0.00482129
0.000225398
-0.00481156
0.00482882
0.000200221
0.000177526
-0.00481276
0.000169841
-0.0048032
0.000190672
-0.00479144
0.000213643
-0.000253242
-0.00477689
0.0002387
-0.00026557
-0.00479922
-0.00482375
-0.00481023
0.000299151
-0.00479218
0.00033497
0.000373666
-0.00476935
0.00476363
0.000349613
-0.00473956
0.00478329
0.000315335
0.000283237
-0.00475948
0.000265842
-0.0047384
0.000294265
0.000324574
-0.00471335
0.00471597
0.000298746
-0.00469013
0.00473808
0.000272163
0.00475719
0.000246739
0.00477323
0.000222662
0.00478672
0.000200157
0.00479802
0.000179371
0.000160364
-0.00478448
0.000149489
-0.0047716
0.000166494
0.000185213
-0.00475666
0.0047582
0.000169049
-0.00474204
0.00477225
0.000152434
0.000137259
-0.00476328
0.000123943
-0.00474816
0.000137301
-0.00473097
0.000151863
-0.000186749
-0.00471153
0.000167302
-0.000205265
-0.00472352
-0.00473926
-0.00471911
0.000226591
-0.00469592
0.000248984
0.000272297
-0.00466946
0.00467847
0.000245234
-0.0046514
0.0047024
0.000225052
0.000205478
-0.00468962
0.00018357
-0.00466507
0.000200507
-0.00463774
0.000217917
-0.000265752
-0.00460755
0.000235568
-0.000295646
-0.00462149
-0.000325485
-0.00463961
-0.000355074
-0.00466053
-0.000384329
-0.00468408
-0.000413152
-0.00471072
-0.00474107
-0.00470697
0.000454022
-0.00466737
0.000493845
0.000532168
-0.00462173
0.00463797
0.000488569
-0.00459435
0.00467684
0.000454996
0.000420163
-0.00465039
0.00038649
-0.00461234
0.000416966
-0.00457012
0.00044637
-0.000520698
-0.00452401
0.000474607
-0.000568691
-0.00454634
-0.00457136
-0.0045167
0.000601915
-0.00445851
0.000631572
0.000657338
-0.00439761
0.00443941
0.000599703
-0.00438175
0.00449449
0.000576519
0.000550086
-0.00447445
0.000500547
-0.00442194
0.000524026
0.000544782
-0.00436699
0.00440595
0.000492386
-0.00435353
0.00445633
0.000473661
0.00450401
0.000452896
0.00454856
0.000430072
0.00458963
0.000405314
0.00462701
0.000379608
0.000352982
-0.00460625
0.00031963
-0.00456944
0.000342813
0.000365208
-0.00452931
0.00455193
0.000325888
-0.00451259
0.00458827
0.000306492
0.000286419
-0.00457444
0.000253327
-0.00453849
0.000270555
-0.00449979
0.000287209
-0.00034465
-0.00445846
0.000303344
-0.000386827
-0.00447039
-0.00448605
-0.00443995
0.000406815
-0.00439134
0.000425075
0.00044163
-0.00434056
0.00437846
0.000392485
-0.00432929
0.00442559
0.000377972
0.000362035
-0.00441488
0.00031848
-0.0043688
0.000331924
0.000344675
-0.00432096
0.00436842
0.00029789
-0.00432161
0.00441324
0.000287134
0.00445648
0.000275269
0.00449704
0.000262815
0.00453528
0.000248991
0.00457097
0.000234876
0.00460404
0.000220279
0.0046344
0.000205218
0.00466209
0.000190232
0.00468719
0.00017542
0.00470979
0.000160972
0.00473003
0.000147053
0.0047481
0.000133794
0.0047641
0.000121297
0.000109624
-0.00478885
9.44945e-05
-0.00477193
0.000104362
0.000114895
-0.00475303
0.00482947
9.51984e-05
-0.00480978
0.00484726
8.65656e-05
7.85009e-05
-0.00490035
6.18043e-05
-0.00488183
6.80364e-05
-0.00486132
7.46872e-05
-0.000104154
-0.00483882
8.16486e-05
-0.000126033
-0.0047879
-0.00473201
-0.00470873
0.000137691
-0.00468306
0.000149762
0.00016211
-0.00465493
0.00473753
0.000133403
-0.00470881
0.00476387
0.000123428
0.000113659
-0.00481418
8.90313e-05
-0.00478721
9.64667e-05
0.000104189
-0.00475799
0.00470941
7.53351e-05
-0.00468054
0.00473611
6.97758e-05
0.00476069
6.44553e-05
0.00478317
5.91667e-05
0.00480365
5.41983e-05
0.00482229
4.93919e-05
4.48873e-05
-0.00452
2.87894e-05
-0.00450226
3.1644e-05
3.47182e-05
-0.00448278
0.00410724
-0.00408934
0.00412357
-3.78782e-05
-0.0040698
-0.00446149
-0.00443827
4.12393e-05
-0.0044131
4.46181e-05
4.81455e-05
-0.0043859
0.00402548
-0.00400061
0.00404852
-5.15989e-05
-0.00397396
-8.08223e-05
-0.00435666
-0.000111924
-0.00464942
-0.000143465
-0.00472643
-0.000174581
-0.00467768
-0.00462428
-0.00459109
0.000187104
-0.00455542
0.000199231
0.000211066
-0.00451747
0.00460819
0.000172864
-0.00456996
0.00464411
0.000163329
0.00015356
-0.00469247
0.000119617
-0.00465629
0.000127175
-0.0046179
0.000134497
-0.000181963
-0.00457739
0.000141489
-0.000222349
-0.00452955
-0.00447698
-0.00443451
0.000232828
-0.00439019
0.00024285
0.000251601
-0.00434387
0.00444275
0.000205609
-0.00439672
0.00448711
0.000198522
0.000190422
-0.00453501
0.000148068
-0.0044906
0.000154154
0.000159692
-0.00444465
0.00441874
0.000114942
-0.00437395
0.00446195
0.000110978
0.00450343
0.000106626
0.00454302
0.000101927
0.00458061
9.69351e-05
0.0046161
9.17094e-05
8.63149e-05
-0.00432544
5.5108e-05
-0.00429221
5.85062e-05
6.18416e-05
-0.00425709
0.00391526
-0.00388328
0.00394549
-6.5029e-05
-0.00384964
-0.00422016
-0.00418149
6.79873e-05
-0.00414121
7.07281e-05
7.32882e-05
-0.00409952
0.0037779
-0.00373996
0.00381447
-7.556e-05
-0.00370086
-0.00011849
-0.00405655
-0.000164642
-0.00432776
-0.000211908
-0.00439734
-0.000259355
-0.00434924
-0.000306988
-0.0042962
-0.000355289
-0.00427327
-0.000404673
-0.00427155
-0.000455459
-0.00427848
-0.000507925
-0.00428806
-0.000562657
-0.00429877
-0.000619483
-0.00431014
-0.000679073
-0.00432214
-0.00433473
-0.00427056
0.000696787
-0.00420572
0.000710603
0.000720726
-0.00414071
0.00419933
0.000658556
-0.00413714
0.00426115
0.000648807
0.000635829
-0.00425189
0.000577598
-0.00419269
0.000589638
-0.00413298
0.000598865
-0.000665267
-0.0040731
0.000605418
-0.000727415
-0.00407496
-0.000792141
-0.00407595
-0.00407586
-0.00086176
-0.00400915
0.000795078
-0.0040049
-0.00393696
0.000860389
-0.00387029
0.000856063
-0.00380637
0.000849191
-0.000902853
-0.00374395
0.000840464
-0.00372966
-0.00366843
0.000889698
-0.00093474
-0.00360847
0.000874795
-0.0035897
-0.00353161
0.000916849
-0.0034758
0.000897962
-0.00342219
0.000878303
0.000858063
-0.00337068
0.00344254
0.000806795
-0.00339126
0.0034958
0.000825069
0.00355108
0.000842695
0.000859488
0.00362488
0.000802896
-0.00356826
0.00368341
0.000816287
0.000829183
0.00375595
0.000769887
-0.00369662
0.00381689
0.00077955
0.0038795
0.000786608
0.00394363
0.000791958
0.000794896
0.00401181
0.000731658
-0.00394854
0.000730958
0.000669165
-0.00401314
-0.00401338
0.000609471
-0.000670491
-0.00395408
0.000611217
-0.00395195
-0.000729815
-0.0038916
0.000669495
-0.00388637
-0.00382546
0.000725724
-0.00376591
0.000720026
-0.00370747
0.000711471
-0.000758787
-0.0036513
0.00070264
-0.0036391
-0.00358329
0.000747107
-0.000788016
-0.00352921
0.000733962
-0.00351356
-0.00346073
0.000772263
0.000755818
-0.00340974
0.00347685
0.000705178
-0.00342619
0.000719929
0.00354287
0.000668095
-0.00349101
0.0035963
0.000680554
0.000692128
0.00366195
0.000637631
-0.00360743
0.00371755
0.000647069
0.00377407
0.000654974
0.00383261
0.000661509
0.000666758
0.00389542
0.000608607
-0.00383724
0.000610861
0.00395512
0.00055376
-0.00389799
0.00401271
0.000553651
0.00407056
0.000551654
0.0041284
0.000547603
0.00418594
0.000541345
0.00424286
0.000532748
0.000521709
-0.00423415
0.000467826
-0.00417921
0.000477829
0.000485723
-0.00412356
0.00417302
0.000431741
-0.00411901
0.00422627
0.000424601
0.000415651
-0.00422095
0.000365088
-0.00416894
0.000372614
-0.00411631
0.000379153
-0.000437126
-0.00406316
0.000384007
-0.000491583
-0.00406452
-0.00406751
-0.00401133
0.000495508
-0.00395528
0.00049762
0.000498053
-0.00389954
0.00395511
0.000443588
-0.00390061
0.00400981
0.000442948
0.00044083
-0.00400971
0.000387415
-0.00395619
0.000389454
-0.00390277
0.000390208
-0.000443088
-0.00384942
0.000389766
-0.000496949
-0.00384672
-0.000552429
-0.00384403
-0.00384179
-0.000604656
-0.00378611
0.000549001
-0.00378036
-0.00372458
0.00059921
-0.00366993
0.000592447
-0.00361684
0.000584563
-0.000627798
-0.00356471
0.000575692
-0.00355465
-0.00350332
0.000616777
-0.000654909
-0.00345342
0.000605035
-0.00344072
-0.000689856
-0.00339198
0.000641136
-0.000738835
-0.0033772
-0.000788032
-0.00336052
-0.000837403
-0.00334187
-0.000886881
-0.00332119
-0.000936382
-0.00329842
-0.00327351
-0.000958801
-0.00322619
0.000911491
-0.00319936
-0.0009769
-0.00315439
0.000931933
-0.0031259
0.000948306
-0.00308339
0.000905284
-0.00311136
0.00318087
0.000861864
-0.00313744
0.000886621
0.00325093
0.000841069
-0.00320537
0.000864014
-0.00327363
0.000816466
-0.00322791
0.000795365
-0.000818141
-0.00318396
0.000774199
-0.00316164
-0.000837297
-0.00311965
0.000795316
-0.000878926
-0.00309581
-0.000920115
-0.00307017
-0.000960764
-0.00304273
-0.00301351
-0.000969484
-0.00297528
0.000931261
-0.00294504
-0.00290926
0.000938908
-0.00287503
0.000909047
-0.000912659
-0.00284227
0.000879903
-0.000944553
-0.00281298
-0.000975482
-0.00278234
-0.00100482
-0.00275037
-0.00103344
-0.00271706
-0.00106073
-0.00268241
-0.00264639
-0.00262168
0.00102512
-0.00259796
0.000990702
0.000956004
-0.00257518
0.00263119
0.000931956
-0.00260713
0.00265676
0.000965147
0.000999488
-0.00268963
0.000972063
-0.00266334
0.00093887
-0.00263857
0.000907201
-0.000901222
-0.00261386
0.000876526
-0.000924386
-0.00258395
-0.00255319
-0.00253198
0.000891981
-0.00088293
-0.00251143
0.000862405
-0.0024822
-0.000871196
-0.0024633
0.000852324
-0.00243464
-0.000858456
-0.00241721
0.00084105
-0.000875232
-0.00238926
-0.000889889
-0.00236114
-0.000903989
-0.00233249
-0.000915926
-0.0023046
-0.00227599
-0.000898446
-0.00226517
0.000887677
-0.00223836
-0.00222803
0.00087216
0.000845835
-0.00221582
0.00225305
0.000832645
-0.00223981
0.000860092
0.00229151
0.000846749
-0.00227812
0.000874626
0.00086104
-0.00231886
-0.00234592
0.000845852
-0.000832791
-0.00233066
0.000817572
-0.00230485
-0.000818723
-0.00228985
0.000803768
-0.00226414
-0.000805057
-0.00224993
0.000790893
-0.000818558
-0.00222625
-0.00220179
-0.0021875
0.000791526
-0.00217355
0.000764282
-0.000750062
-0.00215947
0.000736041
-0.00213482
-0.000736902
-0.00212071
0.000722859
-0.000752684
-0.00209555
-0.000770541
-0.00207031
-0.00079186
-0.00204452
-0.000818209
-0.002018
-0.00199007
-0.00196029
0.000783522
-0.00193773
0.000744703
-0.00192164
0.000704542
-0.000674958
-0.00191086
0.000664245
-0.000684414
-0.00186978
-0.00182439
-0.00182307
0.000636299
-0.00182543
0.000591763
0.000550613
-0.00183015
0.00186371
0.000552113
-0.00186511
0.00186504
0.000590532
0.000631633
-0.001904
0.000624857
-0.0019005
0.000587128
0.00055117
-0.00189945
0.00193517
0.000548516
-0.00193243
0.00194027
0.000582131
0.00194811
0.000617104
0.00195941
0.000653026
0.00197475
0.000689283
0.00199425
0.000725288
0.000759862
-0.00202483
0.000740254
-0.00200777
0.00070831
0.000675264
-0.00199367
0.00203819
0.000662253
-0.0020251
0.0020534
0.000693175
0.000723426
-0.00208056
0.000708506
-0.00206677
0.000679454
-0.00205452
0.000650076
-0.00063108
-0.00204398
0.000620603
-0.000641899
-0.00201421
-0.00198246
-0.00197396
0.000608694
-0.0019679
0.000576149
0.000544603
-0.00196391
0.00199879
0.000539751
-0.00199387
0.00200549
0.000569513
0.000600049
-0.00203517
0.000591297
-0.00202801
0.000562414
0.000534174
-0.00202237
0.00205577
0.000528003
-0.00204955
0.00206329
0.000554948
0.00207219
0.000582461
0.00208247
0.000610376
0.00209409
0.000638512
0.00210692
0.000666691
0.000694772
0.00214581
0.000681787
-0.00213277
0.000709256
0.00218407
0.000696095
-0.00217086
0.00219772
0.000722446
0.00221209
0.000749963
0.000777417
-0.00223579
0.000763332
-0.0022223
0.00073652
0.000709012
-0.00220882
0.00224709
0.000695538
-0.00223358
0.00226103
0.000722622
0.0022757
0.000748706
0.000776787
0.00231551
0.000761916
-0.00230061
0.000788665
0.00235703
0.000772996
-0.00234133
0.00237304
0.000801594
0.000829672
-0.00240011
0.000812607
-0.00238339
0.000784898
-0.00236747
0.000757111
-0.000746231
-0.00235163
0.000730409
-0.00232561
-0.000734198
-0.00231142
0.000720037
-0.00228606
-0.00227191
0.000708503
0.000681878
-0.00225822
0.0022966
0.000667926
-0.00228262
0.000693706
0.00233556
0.000679211
-0.00232105
0.000703992
0.00237631
0.000688171
-0.00236047
0.00239268
0.000714052
0.00240958
0.000740235
0.002427
0.0007675
0.00244491
0.00079472
0.000822683
0.00249112
0.000803838
-0.00247226
0.000832039
0.00254006
0.00081165
-0.00251965
0.00256163
0.000840858
0.000869679
-0.00259053
0.000846368
-0.00256763
0.000817975
0.000790004
-0.00254597
0.00259528
0.000767535
-0.0025728
0.00261863
0.000794639
0.00264288
0.00082213
0.00266812
0.000851301
0.00269394
0.000881388
0.00272132
0.000911506
0.000943016
-0.00275317
0.000913856
-0.00272435
0.000882687
0.000854163
-0.00269711
0.00275315
0.000825665
-0.00272465
0.00278198
0.000853867
0.000882863
-0.00281088
0.000851481
-0.00278119
0.000824188
-0.00275231
0.000796784
-0.000798624
-0.00272418
0.0007705
-0.000825174
-0.00269809
-0.00267097
-0.00264587
0.000797037
-0.00262172
0.000770495
0.000744671
-0.00259885
0.0026473
0.000720354
-0.00262299
0.0026722
0.000745597
0.000771152
-0.00269757
0.000744533
-0.00267197
0.000719993
0.000696071
-0.00264769
0.00269567
0.000670802
-0.00267041
0.00272191
0.000693736
0.00274884
0.000717603
0.00277725
0.000742091
0.00280682
0.000767206
0.00283806
0.000792959
0.00287019
0.000819349
0.00290372
0.000846382
0.00293872
0.000874052
0.00090235
0.00300384
0.000865114
-0.0029666
0.00089237
0.000852913
-0.0030307
-0.00305587
0.000812984
-0.000827295
-0.00301755
0.000788977
-0.00299288
-0.000838377
-0.00295661
0.000802106
-0.00293092
-0.00289671
0.00081218
-0.0028639
0.00078654
-0.00283241
0.000761466
0.000736962
-0.00280217
0.0028563
0.000706123
-0.00282547
0.00288839
0.000729372
0.0029218
0.000753127
0.000777377
0.00298076
0.000742043
-0.00294542
0.000765318
0.00304057
0.000728081
-0.00300333
0.00307932
0.000750234
0.000772661
0.00314169
0.000732017
-0.00310104
0.000753059
0.0032044
0.000710591
-0.00316193
0.00324888
0.000729735
0.00329469
0.000749573
0.000769303
-0.00331265
0.000721447
-0.00326718
0.000704123
-0.00322301
0.000685571
-0.00318038
0.00066797
-0.000691111
-0.00313926
0.000649998
-0.00312101
-0.000711131
-0.0030816
0.000671726
-0.00306193
0.000690454
-0.0030243
0.000652491
-0.00304364
0.0030996
0.000614239
-0.00306135
0.00063207
0.00315579
0.000592207
-0.00311592
0.00319707
0.000608725
0.0032398
0.000625243
0.00328369
0.000641691
0.00332983
0.000658005
0.000674094
-0.00334477
0.000626901
-0.00329907
0.000612312
0.000597468
-0.00325484
0.00331237
0.000553282
-0.00326817
0.00335796
0.00056673
0.00340497
0.000579901
0.000592705
0.00346441
0.00054458
-0.00341627
0.00351389
0.000555568
0.000565979
0.00357343
0.000515438
-0.00352287
0.00362494
0.000524211
0.00367732
0.000532205
0.00373135
0.000538435
0.000544483
0.00378946
0.000490952
-0.0037359
0.000494452
0.000440905
-0.00379315
-0.00379673
0.000388239
-0.000437821
-0.0037446
0.000385723
-0.00373999
-0.000485599
-0.00368789
0.000433524
-0.00368304
-0.00363083
0.000480021
-0.00357994
0.000473339
-0.0035304
0.000465918
-0.000506515
-0.00348174
0.000457871
-0.0034738
-0.00342598
0.000496775
-0.00053312
-0.00337943
0.000486575
-0.00336947
-0.00332402
0.000521287
-0.0032799
0.000509169
-0.000539638
-0.0032371
0.000496835
-0.000582452
-0.00322536
-0.00321204
-0.00317065
0.000567335
-0.00313062
0.000552181
-0.000575743
-0.00309193
0.000537045
-0.00307743
-0.000596553
-0.00304027
0.000559381
-0.000633449
-0.00302446
-0.000670026
-0.00300707
-0.000706241
-0.00298809
-0.00296753
-0.000719176
-0.0029331
0.000684744
-0.00291147
-0.00287885
0.000696739
-0.00284748
0.000674745
-0.000683726
-0.00281729
0.000653528
-0.000713033
-0.00279617
-0.00277312
-0.00274519
0.00068967
-0.00271835
0.000666873
0.000644626
-0.00269219
0.00273993
0.000618237
-0.00271357
0.00276734
0.000639446
0.000660825
-0.00278829
0.000631799
-0.00276036
0.000611502
0.000591341
-0.0027335
0.00277956
0.000563971
-0.00275222
0.00280796
0.000583075
0.00283715
0.000602592
0.00286813
0.00062253
0.00289999
0.000642874
0.000663616
0.00295323
0.00063005
-0.00291968
0.000649883
0.000614637
-0.00297183
-0.00298888
0.000579049
-0.000596085
-0.00295457
0.000561761
-0.00293788
-0.000610551
-0.00290516
0.000577819
-0.00288737
-0.00285626
0.000591401
-0.00282631
0.000572613
-0.00279746
0.000554197
0.000536156
-0.00276968
0.002814
0.000507922
-0.00278581
0.00284327
0.000524898
0.00287364
0.000542212
0.000559856
0.00292149
0.000527928
-0.00288958
0.000544713
0.00296977
0.00051127
-0.00293635
0.00300439
0.000527115
0.000543161
0.00305453
0.000507011
-0.0030184
0.000521976
0.00310489
0.000484375
-0.0030673
0.00314374
0.000498185
0.00318389
0.000512032
0.000525867
-0.00319559
0.00048436
-0.00315536
0.000471796
0.000459201
-0.00311639
0.00316556
0.00042013
-0.00312649
0.00320605
0.000431291
0.00324735
0.000443062
0.00329034
0.000453843
0.00333414
0.000465382
0.000476006
0.00338794
0.000430906
-0.00334283
0.00343424
0.000440279
0.000449294
0.0034887
0.00040213
-0.00344152
0.00353698
0.00040962
0.00358651
0.000416408
0.00363662
0.000423249
0.000428778
0.00369337
0.000378133
-0.0036427
0.000382324
0.00375574
0.000331597
-0.00370498
0.00380743
0.000334065
0.00385927
0.000336434
0.0039118
0.00033727
0.00396436
0.000337674
0.0040168
0.000337053
0.00406926
0.000334996
0.00412136
0.000331941
0.00417288
0.000327661
0.00422358
0.000321953
0.000315428
-0.00424707
0.000266328
-0.0041972
0.000272119
0.000276844
-0.00414634
0.00425062
0.000226202
-0.00419994
0.00430046
0.000222323
0.000217589
-0.00434867
0.000168961
-0.00429903
0.000172723
-0.00424836
0.000175573
-0.000229239
-0.00419712
0.00017804
-0.000280517
-0.00414862
-0.00409488
-0.00404302
0.000283176
-0.00399079
0.000284857
0.000285619
-0.00393869
0.00404497
0.000233581
-0.0039929
0.00409698
0.000232893
0.000231576
-0.0041453
0.000179794
-0.0040933
0.000180942
0.000181515
-0.00404119
0.00403153
0.000130693
-0.00398066
0.00408225
0.00013026
0.00413261
0.000129482
0.00418255
0.000128139
0.00423182
0.000126352
0.00428029
0.000124295
0.000121529
-0.00401244
7.74589e-05
-0.00396733
7.92205e-05
8.05344e-05
-0.00392147
0.00361982
-0.00357815
0.00366078
-8.16781e-05
-0.00353587
-0.00387497
-0.00382798
8.25386e-05
-0.00378068
8.29993e-05
8.33268e-05
-0.00373327
0.00345023
-0.00340715
0.00349317
-8.34082e-05
-0.00336401
-0.000130742
-0.0036859
-0.000181551
-0.00392981
-0.000233573
-0.00398913
-0.000285525
-0.00394091
-0.00388691
-0.00383522
0.000284778
-0.003784
0.000282878
0.00028089
-0.00373326
0.00383764
0.000229877
-0.00378659
0.003889
0.000231549
0.000232914
-0.00393726
0.000181083
-0.00388583
0.000180155
-0.00383481
0.000178898
-0.000227603
-0.00378426
0.000177082
-0.000277746
-0.00373642
-0.000327766
-0.00368321
-0.00365459
-0.00037343
-0.00360512
0.000323987
-0.00359285
-0.00354398
0.000367561
0.000361724
-0.00349607
0.00355655
0.000314075
-0.00350888
0.000319021
0.0036337
0.000270659
-0.00358531
0.000274505
0.000224898
-0.00368678
-0.00373434
0.000175016
-0.000221809
-0.00368516
0.000172652
-0.0036379
-0.000266414
-0.00358985
0.000218387
-0.00353763
-0.000308566
-0.00349086
0.000261821
-0.000355254
-0.00346217
-0.00344917
-0.000394232
-0.00340351
0.000348581
-0.00339546
-0.00335054
0.000385993
-0.000421461
-0.00330674
0.000377671
-0.0032989
-0.00325622
0.000411169
-0.00321471
0.000401542
-0.00317442
0.000391002
0.000381189
-0.0031355
0.00318239
0.00034184
-0.00314305
0.00322249
0.000350895
0.00326433
0.0003597
0.00036876
0.00331491
0.00032622
-0.00327236
0.00335858
0.000334001
0.000341078
0.00341629
0.000296739
-0.00337194
0.000302718
-0.00344506
0.000256933
-0.0034001
0.000251799
-0.000290086
-0.00335647
0.000246464
-0.00332802
-0.00328562
0.000283832
-0.000318299
-0.00324419
0.000276873
-0.00323096
-0.00319082
0.000310747
-0.00315163
0.000302649
-0.000332748
-0.00311342
0.00029452
-0.000370587
-0.00310523
-0.00040874
-0.00309736
-0.000446617
-0.00308863
-0.00307864
-0.000470639
-0.00304211
0.000434083
-0.00303095
-0.000492185
-0.0029958
0.000457012
-0.00298349
0.000477528
-0.00294978
0.000443522
-0.00296182
0.00300675
0.000409291
-0.00297255
0.000421631
0.00305195
0.000386081
-0.00301643
0.00039738
-0.00306056
0.000360564
-0.0030249
0.000350396
-0.000374871
-0.00299036
0.000340298
-0.00298204
-0.000397086
-0.00294876
0.000363774
-0.000430194
-0.00293948
-0.000463061
-0.00292899
-0.000495651
-0.00291722
-0.0029041
-0.000511422
-0.00287299
0.000480275
-0.00285882
-0.00282917
0.000495208
-0.00280059
0.000479297
-0.00049129
-0.00277304
0.000463696
-0.000518494
-0.00275865
-0.000545284
-0.00274293
-0.000571637
-0.00272591
-0.000597526
-0.00270764
-0.000623228
-0.0026879
-0.000647779
-0.00266766
-0.000672081
-0.00264613
-0.00069613
-0.00262365
-0.000718827
-0.0026003
-0.00074157
-0.00257611
-0.00076285
-0.00255152
-0.000783342
-0.00252547
-0.00249914
-0.00077605
-0.0024797
0.000756623
-0.00245357
-0.00243546
0.000749407
0.000722733
-0.00241794
0.00246091
0.000704596
-0.00244276
0.000730624
0.00250531
0.000711165
-0.00248584
0.000736466
0.000715238
-0.00253029
-0.00255458
0.000693706
-0.000691043
-0.0025335
0.00066995
-0.00251017
-0.000685493
-0.0024908
0.00066612
-0.00246674
-0.000679615
-0.00244898
0.000661856
-0.000696782
-0.00242559
-0.00240066
-0.00238465
0.000672169
-0.000663912
-0.00236886
0.000648126
-0.00234516
-0.000653607
-0.00233041
0.000638869
-0.00230671
-0.000643467
-0.00229291
0.000629675
-0.000656916
-0.00226915
-0.000670095
-0.00224501
-0.000683107
-0.00222053
-0.00219579
-0.000669205
-0.00218332
0.000656774
-0.00215823
-0.000654519
-0.00214631
0.000642652
-0.00212055
0.000627317
-0.0021093
0.000616287
-0.00213524
0.0021715
0.000605256
-0.00216043
0.000630876
0.00220803
0.000619032
-0.00219616
0.00064431
-0.00223235
0.00063168
-0.0022203
0.000607004
-0.000594099
-0.0022089
0.000582724
-0.00218497
-0.000579952
-0.00217453
0.000569537
-0.000590168
-0.00215018
-0.000600274
-0.00212509
-0.00209914
-0.00209014
0.000573507
-0.00208229
0.000547147
0.000521318
-0.00207556
0.00210774
0.00051416
-0.00210055
0.00211592
0.000539013
0.00056438
-0.00214079
0.000555023
-0.00213228
0.000530533
0.000506549
-0.00212463
0.00215599
0.000498493
-0.00214791
0.00216486
0.000521686
0.000545384
0.0021982
0.00053542
-0.00218822
0.000558854
0.00223225
0.00054785
-0.00222123
0.00224393
0.000571059
0.00225624
0.000594707
0.000618788
-0.00227967
0.000605566
-0.00226704
0.00058208
-0.00225503
0.000559053
-0.00224366
0.000536486
-0.000525097
-0.00223295
0.000514389
-0.0022109
-0.000512455
-0.00220126
0.000502823
-0.00217897
0.000489995
-0.00217046
0.000481053
-0.00219231
0.0022229
0.000471669
-0.00221352
0.000492777
0.00225438
0.00048231
-0.00224392
0.00226549
0.000503279
0.00227724
0.000524735
0.00228962
0.00054667
0.00230262
0.000569079
0.00231622
0.000591964
0.000615487
0.00235366
0.00060087
-0.00233905
0.000623676
0.00239208
0.000608007
-0.00237641
0.00240837
0.000631832
0.000654941
-0.00243155
0.000637505
-0.00241475
0.000615023
0.000591852
-0.00239861
0.00243684
0.000575206
-0.00242022
0.00245415
0.000597696
0.00247212
0.000619522
0.00064317
0.00251418
0.000623595
-0.00249462
0.000646791
0.00255678
0.000625903
-0.00253591
0.00257813
0.000648585
0.000671526
-0.00260088
0.000648732
-0.00257894
0.000626634
-0.00255784
0.000604773
-0.000604099
-0.00253752
0.000583753
-0.00251644
-0.000600999
-0.00249741
0.000581952
-0.00247612
-0.00245831
0.000579857
0.000558073
-0.0024412
0.0024791
0.000540461
-0.00246153
0.000561516
0.002518
0.000542688
-0.00249921
0.000562395
0.00255784
0.00054235
-0.00253784
0.00257866
0.000562896
0.00260029
0.000583111
0.00262278
0.000604126
0.000625358
-0.00264377
0.00060144
-0.00262077
0.000581095
0.000560947
-0.00259865
0.00264031
0.000538306
-0.00261771
0.00266379
0.000557571
0.000577305
-0.00268276
0.000552386
-0.00265881
0.000533582
-0.00263577
0.000515217
-0.000519501
-0.0026136
0.000497282
-0.000541289
-0.00259597
-0.00257708
-0.00255688
0.000522109
-0.000523391
-0.00253719
0.000503646
-0.00251858
-0.000522381
-0.0025001
0.00050385
-0.00248117
-0.00052087
-0.00246383
0.000503489
-0.000537799
-0.00244463
-0.000554268
-0.00242476
-0.000570269
-0.00240424
-0.000585801
-0.0023831
-0.00236135
-0.000577949
-0.00234692
0.0005635
-0.00232504
-0.00231164
0.000555675
0.000533886
-0.00229887
0.00233311
0.000520685
-0.00231992
0.000541848
0.00236822
0.000527587
-0.00235398
0.000548606
0.000533261
-0.00238893
-0.002409
0.000517465
-0.000512889
-0.0023939
0.000497752
-0.00237426
-0.000507057
-0.00236023
0.000493
-0.00234038
-0.000500005
-0.00232741
0.000487008
-0.000512579
-0.00230737
-0.00228673
-0.00227521
0.000491754
-0.00226433
0.000471415
-0.000461841
-0.00225408
0.000451571
-0.0022341
-0.000451082
-0.00222492
0.000441884
-0.000459815
-0.00220479
-0.000468075
-0.00218405
-0.000475853
-0.00216267
-0.000483136
-0.00214061
-0.000489904
-0.00211784
-0.000496129
-0.00209428
-0.000501766
-0.00206987
-0.000506747
-0.00204451
-0.000510968
-0.00201809
-0.000514279
-0.00199049
-0.000516472
-0.00196165
-0.000517263
-0.00193156
-0.000516309
-0.00190031
-0.000512788
-0.00186853
-0.000506935
-0.0018359
-0.000497501
-0.00180288
-0.000483767
-0.00177029
-0.000465344
-0.00173827
-0.000442136
-0.00170736
-0.000414588
-0.00167823
-0.000383572
-0.00165156
-0.000350119
-0.00162775
-0.000315188
-0.00160688
-0.000279533
-0.0015887
-0.000243633
-0.00157431
-0.000207755
-0.00156221
-0.000171843
-0.00155844
-0.00156712
0.000164473
-0.00160114
-0.00159189
0.000198107
-0.000156598
-0.00162316
0.000188035
-0.00163323
0.000148497
-0.00166341
0.00017785
-0.00165236
0.00162594
0.000206433
-0.00165436
0.00159528
0.000218858
0.000231364
-0.00160705
0.000264281
-0.00163713
0.000249105
-0.00166483
0.00023429
-0.000194293
-0.0016904
0.00022001
-0.000167766
-0.00168074
-0.000140377
-0.00167958
-0.00169172
0.000132388
-0.00171825
-0.00170498
0.000157932
-0.000124626
-0.00172865
0.000148445
-0.00174307
0.000117157
-0.00176626
0.000139369
-0.00175074
0.00172801
0.000160694
-0.0017492
0.00170523
0.000171356
0.000182572
-0.00171406
0.000206367
-0.00173599
0.000193416
-0.00175635
0.00018118
-0.000150608
-0.00177528
0.000169657
-0.000130742
-0.00176895
-0.000110023
-0.00177133
-0.00178792
0.000103246
-0.00180813
-0.00179054
0.00012258
-9.68381e-05
-0.00180848
0.000114888
-0.00182697
9.08072e-05
-0.00184453
0.000107669
-0.00182524
0.00180452
0.000123789
-0.00182054
0.00178735
0.000132168
0.000141102
-0.00179289
0.000158831
-0.00180929
0.000148675
-0.00182456
0.000139158
-0.00011594
-0.00183877
0.000130243
-0.000100917
-0.00183547
-8.51606e-05
-0.0018409
-0.00186095
7.98819e-05
-0.00187634
-0.00185552
9.45989e-05
-7.49188e-05
-0.00186916
8.86503e-05
-0.00189075
7.02561e-05
-0.0019042
8.30476e-05
-0.00188187
0.00186228
9.51547e-05
-0.00187431
0.00184936
0.000101663
0.000108581
-0.00185198
0.000121886
-0.00186428
0.000114042
0.000106673
-0.00187572
0.00186714
0.000117619
-0.00187801
0.00185547
0.000125801
0.00184292
0.000134518
0.00182944
0.000143817
0.00181496
0.000153745
0.00179938
0.000164353
0.00178264
0.000175688
0.00176461
0.000187798
0.00174519
0.000200725
0.00172423
0.000214511
0.00170154
0.000229184
0.00167693
0.000244761
0.00165014
0.000261232
0.00162086
0.00027855
0.000296604
-0.00163806
0.000327934
-0.00166622
0.000306872
0.000287003
-0.00169185
0.00168397
0.000311257
-0.00170808
0.00165736
0.000333622
0.000357691
-0.00167892
0.000385188
-0.00170346
0.000358303
-0.0017257
0.000333628
-0.000290482
-0.001746
0.000310914
-0.000268341
-0.00173009
-0.00171529
-0.00173683
0.000250858
-0.0017567
0.000234505
0.000219223
-0.00177508
0.0017689
0.000236553
-0.00178611
0.00175029
0.00025324
0.00027118
-0.00176465
0.000289953
-0.00178186
0.000270568
0.000252606
-0.0017978
0.00179566
0.000267302
-0.00181024
0.00177996
0.000286373
0.00176303
0.000307009
0.00174466
0.0003294
0.00172464
0.000353779
0.00170264
0.000380433
0.000409726
-0.00172824
0.000430741
-0.00174733
0.000399641
0.000371464
-0.00176489
0.00177135
0.000386579
-0.00178635
0.00175536
0.000415751
0.000447951
-0.00178364
0.000461412
-0.00179658
0.000428805
-0.00180906
0.000399162
-0.00035999
-0.00182104
0.000372078
-0.000345778
-0.00180045
-0.00178116
-0.00179628
0.000322243
-0.00181039
0.000300591
0.000280606
-0.00182359
0.00182626
0.000292536
-0.00183809
0.00181373
0.000313222
0.000335631
-0.00183253
0.000347218
-0.00184352
0.000324313
-0.00185403
0.000303142
-0.000273383
-0.00186408
0.000283518
-0.000262105
-0.00184927
-0.000249632
-0.00183596
-0.000235933
-0.00182384
-0.000221021
-0.00181261
-0.000204949
-0.00180208
-0.00179212
-0.00180794
0.000191618
-0.00182265
0.000179166
0.00016753
-0.00183634
0.0018307
0.000180474
-0.00184355
0.0018169
0.000193063
0.000206553
-0.00182639
0.000220433
-0.00183923
0.000206001
-0.00185121
0.000192545
-0.000168713
-0.00186239
0.000179979
-0.000156651
-0.00185552
-0.00184908
-0.00186094
0.00014647
-0.00187199
0.00013693
0.000127981
-0.00188228
0.00187708
0.000137738
-0.00188676
0.00186668
0.000147406
0.000157711
-0.00187283
0.000168227
-0.00188256
0.00015722
0.000146892
-0.00189165
0.00188874
0.000155487
-0.00189727
0.00187963
0.000166402
0.0018699
0.000178036
0.00185951
0.000190456
0.0018484
0.000203737
0.00183653
0.000217962
0.000233225
-0.00184758
0.000244935
-0.00185849
0.000228965
0.000214083
-0.00186876
0.00186987
0.000223643
-0.00187935
0.00185985
0.000239063
0.000255604
-0.00187367
0.000265283
-0.00188283
0.000248304
-0.00189158
0.000232463
-0.000209243
-0.00189992
0.000217658
-0.000200189
-0.00188833
-0.00187841
-0.0018875
0.000187194
-0.00189605
0.000175022
0.000163601
-0.0019041
0.0019049
0.000171308
-0.00191255
0.00189684
0.00018315
0.000195771
-0.00190789
0.000203799
-0.00191549
0.000190808
-0.00192274
0.000178613
-0.000160182
-0.00192966
0.000167152
-0.000152871
-0.00191981
-0.000145229
-0.00191169
-0.000137186
-0.00190525
-0.000128654
-0.00190012
-0.000119573
-0.00189578
-0.000109931
-0.00189185
-9.97468e-05
-0.00188813
-8.90319e-05
-0.00188636
-7.77751e-05
-0.00188549
-6.58794e-05
-0.00189369
-0.00191673
6.17705e-05
-0.00192839
-0.00190467
7.28153e-05
-5.79107e-05
-0.00191484
6.81471e-05
-0.00193921
5.42818e-05
-0.00194924
6.37493e-05
-0.00192425
0.00190552
7.27436e-05
-0.00191446
0.00189588
7.78502e-05
8.32718e-05
-0.00189625
9.32328e-05
-0.00190544
8.71027e-05
-0.00191397
8.13289e-05
-6.79324e-05
-0.00192188
7.58855e-05
-5.96008e-05
-0.00192274
-5.08669e-05
-0.00193293
-0.00195853
4.76396e-05
-0.00196713
-0.00194094
5.56975e-05
-4.45643e-05
-0.00194837
5.2025e-05
-0.00197506
4.16482e-05
-0.00198238
4.85396e-05
-0.00195523
0.00193748
5.50788e-05
-0.00194399
0.0019304
5.91369e-05
6.34038e-05
-0.00192918
7.07477e-05
-0.00193589
6.58839e-05
-0.00194203
6.12523e-05
-5.11967e-05
-0.00194763
5.68211e-05
-4.52183e-05
-0.00194994
-3.8893e-05
-0.00196152
-0.0019891
3.62809e-05
-0.00199525
-0.00196727
4.20469e-05
-3.37904e-05
-0.00197247
3.90096e-05
-0.00200085
3.13993e-05
-0.00200592
3.60887e-05
-0.00197714
0.00196022
4.04471e-05
-0.00196456
0.00195535
4.38965e-05
4.74745e-05
-0.00195271
5.25693e-05
-0.00195727
4.84808e-05
-0.00196136
4.45423e-05
-3.71154e-05
-0.00196498
4.07456e-05
-3.32625e-05
-0.0019684
-2.90808e-05
-0.00198131
-0.00201048
2.6799e-05
-0.00201455
-0.001985
3.04991e-05
-2.45319e-05
-0.00198823
2.77741e-05
-0.00201813
2.22872e-05
-0.00202123
2.5089e-05
-0.00199103
0.00197476
2.76655e-05
-0.00197733
0.00197179
3.07532e-05
3.38923e-05
-0.00196816
3.70828e-05
-0.00197093
3.35294e-05
3.00503e-05
-0.00197332
0.00196804
3.23428e-05
-0.00197034
0.00196542
3.61606e-05
0.00196241
4.00959e-05
0.001959
4.41684e-05
0.00195516
4.83955e-05
0.00195087
5.27869e-05
0.00194611
5.73522e-05
0.00194085
6.21045e-05
0.00193507
6.7061e-05
0.00192874
7.2245e-05
0.00192185
7.76865e-05
0.00191436
8.34204e-05
0.00190626
8.94796e-05
0.00189753
9.5896e-05
0.000102702
-0.00190075
0.000111664
-0.00190901
0.000104211
9.71783e-05
-0.00191666
0.00191193
0.000104432
-0.00191914
0.00190416
0.000112044
0.000120104
-0.001908
0.000128049
-0.00191534
0.000119435
-0.00192216
0.0001113
-9.72303e-05
-0.00192849
0.000103606
-9.05276e-05
-0.0019258
-0.00192372
-0.00193021
8.42255e-05
-0.00193617
7.82394e-05
7.2538e-05
-0.00194162
0.00193759
7.77559e-05
-0.00194277
0.00193194
8.39227e-05
9.04044e-05
-0.00193437
9.63193e-05
-0.00193983
8.94094e-05
8.28487e-05
-0.00194489
0.00194353
8.79606e-05
-0.00194862
0.00193813
9.48402e-05
0.00193238
0.000102103
0.00192626
0.000109775
0.00191971
0.000117888
0.00191272
0.000126475
0.000135574
-0.00191884
0.000142777
-0.00192558
0.000133268
0.000124303
-0.00193195
0.00193325
0.000130574
-0.00193948
0.0019267
0.000139863
0.000149717
-0.00193626
0.000156366
-0.00194257
0.000146205
-0.00194858
0.000136621
-0.000121809
-0.00195431
0.000127573
-0.000115841
-0.00194541
-0.00193798
-0.00194369
0.000107848
-0.00194912
0.000100291
9.31411e-05
-0.00195427
0.00195645
9.82939e-05
-0.00196158
0.00195107
0.000105703
0.00011353
-0.00195977
0.000119019
-0.00196497
0.000110922
-0.0019699
0.000103248
-9.12713e-05
-0.00197458
9.59636e-05
-8.63697e-05
-0.00196646
-8.14388e-05
-0.00195918
-7.66129e-05
-0.00195342
-7.18777e-05
-0.0019496
-6.70925e-05
-0.00194753
-0.00194658
-0.00195109
6.18797e-05
-0.00195517
5.68819e-05
5.20866e-05
-0.00195885
0.00195591
5.57823e-05
-0.00195959
0.0019519
6.09045e-05
6.6266e-05
-0.001954
7.06812e-05
-0.00195811
6.50376e-05
-0.00196198
5.96699e-05
-5.08926e-05
-0.00196565
5.45686e-05
-4.74853e-05
-0.00196298
-0.00196215
-0.00196512
4.30717e-05
-0.00196779
3.88373e-05
3.47731e-05
-0.00197022
0.00196908
3.75635e-05
-0.00197187
0.00196613
4.17916e-05
4.62311e-05
-0.00196913
4.97242e-05
-0.00197246
4.51231e-05
4.07457e-05
-0.00197564
0.00197768
4.41255e-05
-0.00198106
0.00197411
4.86989e-05
0.00197036
5.34876e-05
0.00196642
5.85171e-05
0.0019623
6.38091e-05
0.00195797
6.93819e-05
7.52525e-05
-0.00196386
7.99501e-05
-0.00196832
7.3857e-05
6.80664e-05
-0.00197256
0.0019755
7.22298e-05
-0.00197965
0.0019711
7.82668e-05
8.46051e-05
-0.001979
8.90377e-05
-0.00198316
8.24414e-05
-0.00198706
7.61481e-05
-6.64692e-05
-0.00199072
7.01332e-05
-6.25552e-05
-0.00198355
-0.00197659
-0.00198039
5.73004e-05
-0.00198396
5.22776e-05
4.74615e-05
-0.0019873
0.0019906
5.06102e-05
-0.00199375
0.0019872
5.56828e-05
6.09614e-05
-0.00199412
6.43736e-05
-0.00199728
5.88466e-05
5.35302e-05
-0.0020002
0.00200397
5.62285e-05
-0.00200667
0.00200106
6.17658e-05
0.00199792
6.75189e-05
0.00199455
7.35105e-05
0.00199094
7.97629e-05
0.0019871
8.62993e-05
0.001983
9.31441e-05
0.00197866
0.000100324
0.00197406
0.000107866
0.0019692
0.000115802
0.00196408
0.000124164
0.00195869
0.000132987
0.00195303
0.00014231
0.0019471
0.000152171
0.00194089
0.000162615
0.0019344
0.00017369
0.00192761
0.000185447
0.00192053
0.000197944
0.00191315
0.000211243
0.00190545
0.000225414
0.00189745
0.000240537
0.00188913
0.000256698
0.00188049
0.000273996
0.00187155
0.000292544
0.00186231
0.000312472
0.00185278
0.000333929
0.00184301
0.000357089
0.00183303
0.000382154
0.00182293
0.000409365
0.00181283
0.000439019
0.000471463
-0.00184263
0.0004783
-0.00185022
0.000446703
0.00041739
-0.00185815
0.00187813
0.000423403
-0.00188406
0.00187302
0.000451909
0.000482886
-0.00190277
0.000485423
-0.00190635
0.000455578
-0.00191045
0.00042758
-0.000396814
-0.00191508
0.000401526
-0.000390351
-0.00189043
-0.00186625
-0.0018744
0.00036533
-0.00188251
0.000342122
0.000320551
-0.00189051
0.00190375
0.000327376
-0.0019105
0.00189703
0.000348921
0.000372015
-0.0019202
0.000377213
-0.00192556
0.000354355
0.000332944
-0.00193106
0.00194749
0.000337287
-0.00195177
0.00194348
0.000358426
0.00193989
0.00038087
0.00193661
0.000404885
0.00193389
0.000430381
0.00193215
0.000457396
0.000486089
-0.00196079
0.000485303
-0.00196106
0.000457738
0.00043159
-0.0019622
0.00198742
0.000431542
-0.00198731
0.00198842
0.000456808
0.000483294
-0.00201499
0.000480256
-0.0020129
0.000454783
-0.00201168
0.000430372
-0.000407497
-0.00201117
0.000407041
-0.000406828
-0.00198792
-0.00196408
-0.00196658
0.000383436
-0.00196937
0.000361278
0.000340346
-0.00197238
0.00199074
0.000342457
-0.00199281
0.00198909
0.000362988
0.000384659
-0.00201126
0.000384792
-0.00201183
0.000363605
-0.00201279
0.000343453
-0.000322966
-0.00201408
0.000324299
-0.000320673
-0.00199506
-0.000317335
-0.00197566
-0.000312868
-0.00195618
-0.000307245
-0.00193661
-0.000300463
-0.00191721
-0.00189835
-0.001906
0.00028172
-0.00191344
0.000264204
0.000247809
-0.00192064
0.00193033
0.000254204
-0.00193667
0.00192383
0.000270761
0.000288409
-0.00194217
0.000294025
-0.00194767
0.000276321
-0.00195309
0.000259672
-0.000238653
-0.00195839
0.000243999
-0.00023244
-0.00194283
-0.00192761
-0.00193433
0.000218015
-0.0019408
0.000204458
0.0001917
-0.00194701
0.00195455
0.000197285
-0.0019601
0.00194879
0.000210261
0.000224029
-0.00196355
0.000229232
-0.00196856
0.000215305
0.000202159
-0.0019734
0.00198268
0.000206319
-0.00198681
0.00197843
0.000219584
0.00197408
0.000233616
0.00196965
0.000248468
0.00196517
0.0002642
0.00196066
0.000280875
0.000298563
-0.00197912
0.000302062
-0.00198265
0.000284447
0.00026781
-0.00198622
0.00200004
0.000270548
-0.00200275
0.00199745
0.000287072
0.000304499
-0.00201567
0.000306117
-0.0020174
0.000288825
-0.00201923
0.000272403
-0.000254862
-0.00202119
0.000256849
-0.000252077
-0.00200551
-0.00198979
-0.00199335
0.000237197
-0.00199686
0.000223115
0.000209781
-0.0020003
0.00201109
0.00021257
-0.00201386
0.0020083
0.000225925
0.000240007
-0.00202325
0.00024208
-0.00202536
0.000228043
0.000214706
-0.00202749
0.00203963
0.000216206
-0.00204113
0.00203821
0.000229472
0.00203686
0.000243432
0.00203561
0.000258115
0.00203449
0.000273539
0.00203358
0.000289753
0.00203293
0.0003068
0.00203255
0.000324707
0.00203252
0.000343513
0.00203292
0.000363246
0.00203382
0.00038393
0.00203532
0.000405584
0.00203752
0.000428213
0.00204054
0.000451809
0.000476342
-0.00206515
0.000471668
-0.00206131
0.000448003
0.000425181
-0.00205824
0.00208432
0.000421366
-0.00208048
0.0020889
0.000443457
0.000466317
-0.00211184
0.00046035
-0.0021066
0.00043824
-0.00210206
0.000416842
-0.000400074
-0.00209814
0.000396182
-0.000403232
-0.00207729
-0.00205585
-0.00205406
0.000382171
-0.00205278
0.000361997
0.000342703
-0.00205195
0.00207261
0.00034109
-0.00207097
0.00207469
0.000359936
0.000379596
-0.0020948
0.000376274
-0.00209198
0.000357125
0.000338734
-0.00208961
0.00211089
0.000335688
-0.00210784
0.00211441
0.000353621
0.00211843
0.000372263
0.00212301
0.000391613
0.0021282
0.000411666
0.00213405
0.000432406
0.000453811
-0.00215557
0.000446731
-0.00214915
0.000425992
0.000405881
-0.00214336
0.00216948
0.000399524
-0.00216313
0.00217645
0.00041903
0.000439133
-0.0021967
0.000431035
-0.00218922
0.000411545
-0.00218233
0.000392626
-0.00038063
-0.00217599
0.00037429
-0.000386416
-0.00215734
-0.00213816
-0.0021335
0.000367611
-0.00212935
0.00034947
0.000331996
-0.00212566
0.00214734
0.000327699
-0.00214306
0.00215209
0.000344715
0.000362359
-0.00217019
0.000356543
-0.00216488
0.000339391
-0.00216002
0.000322833
-0.000311308
-0.0021556
0.000306866
-0.000315184
-0.00213919
-0.000318459
-0.00212239
-0.000321095
-0.00210521
-0.000323048
-0.00208765
-0.00032427
-0.00206974
-0.00205149
-0.00205135
0.000306676
-0.00205147
0.000289894
0.000273897
-0.00205182
0.00206824
0.000273549
-0.00206789
0.00206884
0.000289299
0.000305791
-0.00208605
0.000304193
-0.00208476
0.000288011
-0.00208374
0.000272531
-0.000258514
-0.00208296
0.00025773
-0.000258653
-0.00206775
-0.00205235
-0.00205304
0.000244126
-0.00205386
0.000230292
0.000217109
-0.00205477
0.00206798
0.000217415
-0.0020683
0.00206779
0.000230476
0.000244165
-0.00208239
0.000243584
-0.002082
0.000230069
0.000217156
-0.00208175
0.00209586
0.000216353
-0.00209508
0.00209682
0.000229093
0.00209797
0.000242412
0.00209936
0.000256334
0.002101
0.000270879
0.00210294
0.00028607
0.000301924
-0.0021195
0.000299027
-0.00211695
0.000283512
0.000268627
-0.00211471
0.00213259
0.000265807
-0.00212979
0.00213571
0.000280373
0.000295536
-0.00215157
0.000291486
-0.0021479
0.000276683
-0.00214457
0.000262447
-0.000251823
-0.00214154
0.000248766
-0.000254355
-0.00212728
-0.00211275
-0.00211104
0.000240677
-0.00210955
0.000227575
0.000215028
-0.00210825
0.00212303
0.000213204
-0.00212124
0.00212504
0.00022554
0.000238407
-0.00213879
0.000235625
-0.00213629
0.000223009
-0.00213403
0.000210903
-0.000201382
-0.00213197
0.000199288
-0.000203016
-0.00211964
-0.000204169
-0.00210713
-0.000204822
-0.00209445
-0.000204954
-0.00208164
-0.000204543
-0.00206872
-0.000203585
-0.00205574
-0.000202039
-0.00204268
-0.000199899
-0.00202962
-0.000197148
-0.00201661
-0.000193768
-0.00200366
-0.000189738
-0.00199082
-0.000185043
-0.00197807
-0.000179682
-0.00196543
-0.00195296
-0.00195866
0.000168346
-0.0019641
0.000157642
0.000147523
-0.00196928
0.00197542
0.000152204
-0.00198008
0.00197053
0.00016255
0.000173481
-0.00198256
0.000177992
-0.00198686
0.000166874
-0.00199098
0.000156341
-0.000142403
-0.00199492
0.000146353
-0.000137946
-0.00198452
-0.00197422
-0.00197891
0.000128871
-0.00198335
0.000120262
0.000112084
-0.00198756
0.00199274
0.00011589
-0.00199654
0.00198874
0.000124281
0.000133107
-0.00199868
0.000136872
-0.00200225
0.000127864
0.000119295
-0.00200565
0.00201192
0.000122306
-0.00201493
0.00200876
0.000131022
0.00200546
0.000140178
0.00200202
0.000149808
0.00199842
0.000159944
0.00199469
0.000170623
0.000181884
-0.00200694
0.000185171
-0.00201012
0.000173809
0.000163024
-0.00201319
0.00202193
0.000165591
-0.0020245
0.0020193
0.000176447
0.000187871
-0.00203175
0.000189997
-0.00203385
0.000178546
-0.00203592
0.000167654
-0.000155267
-0.00203794
0.000157284
-0.000152777
-0.00202699
-0.00201616
-0.00201901
0.000143033
-0.00202175
0.000133761
0.000124928
-0.00202437
0.00203173
0.000127159
-0.00203397
0.00202941
0.000136082
0.000145441
-0.00203992
0.000147405
-0.00204183
0.000137987
-0.00204369
0.000129001
-0.000118643
-0.00204548
0.000120417
-0.000116503
-0.00203612
-0.000114
-0.00202688
-0.000111134
-0.00201779
-0.000107904
-0.00200887
-0.000104304
-0.00200013
-0.00199152
-0.00199526
9.68942e-05
-0.00199878
8.98251e-05
8.30709e-05
-0.00200208
0.00200672
8.60842e-05
-0.00200973
0.00200352
9.30286e-05
0.000100293
-0.00201193
0.000103351
-0.00201482
9.59193e-05
-0.00201754
8.88108e-05
-7.94348e-05
-0.00202011
8.19999e-05
-7.66068e-05
-0.00201255
-0.00200517
-0.00200806
7.04091e-05
-0.00201075
6.44546e-05
5.87202e-05
-0.00201324
0.00201767
6.10121e-05
-0.00201996
0.0020152
6.69228e-05
7.30557e-05
-0.00202251
7.54616e-05
-0.00202477
6.91708e-05
6.3103e-05
-0.00202686
0.00203204
6.4987e-05
-0.00203393
0.00203001
7.11939e-05
0.00202784
7.76232e-05
0.00202554
8.43004e-05
0.0020231
9.12506e-05
0.00202051
9.84996e-05
0.000106074
-0.00202927
0.000108459
-0.00203154
0.000100767
9.33995e-05
-0.0020337
0.00204013
9.5253e-05
-0.002042
0.00203818
0.000102717
0.000110505
-0.00204719
0.000112209
-0.00204884
0.000104347
-0.0020504
9.68077e-05
-8.80862e-05
-0.00205189
8.95634e-05
-8.63308e-05
-0.00204376
-0.00203573
-0.00203765
7.95347e-05
-0.00203945
7.29856e-05
6.66578e-05
-0.00204114
0.002047
6.81105e-05
-0.00204846
0.00204543
7.45409e-05
8.11909e-05
-0.00205331
8.25883e-05
-0.00205464
7.58565e-05
6.93419e-05
-0.00205589
0.00206236
7.03505e-05
-0.00206338
0.00206126
7.69308e-05
0.00206011
8.37255e-05
0.00205889
9.07609e-05
0.00205762
9.80629e-05
0.00205629
0.000105657
0.00205491
0.00011357
0.00205348
0.000121827
0.00205201
0.000130453
0.00205051
0.000139478
0.00204897
0.000148929
0.0020474
0.000158834
0.00204583
0.000169219
0.00204425
0.000180117
0.000191564
-0.00205676
0.000192574
-0.00205782
0.000181167
0.000170296
-0.00205892
0.00206981
0.000170896
-0.00207044
0.00206923
0.000181729
0.000193068
-0.00208164
0.000193042
-0.00208172
0.000181788
-0.00208189
0.000171033
-0.000160553
-0.00208212
0.000160753
-0.000159925
-0.00207109
-0.00206003
-0.00206114
0.000150019
-0.00206224
0.00014056
0.000131521
-0.00206333
0.00207248
0.000132208
-0.00207319
0.00207177
0.000141238
0.00015068
-0.0020824
0.000150927
-0.00208272
0.000141526
0.000132525
-0.00208306
0.00209291
0.000132474
-0.00209289
0.00209297
0.000141425
0.0020931
0.000150766
0.00209329
0.000160523
0.00209358
0.000170719
0.00209396
0.000181377
0.000192519
-0.00210616
0.000191516
-0.00210532
0.000180508
0.000169968
-0.00210461
0.00211695
0.000168795
-0.00211582
0.00211822
0.000179197
0.000190053
-0.00213011
0.000188147
-0.00212842
0.000177462
-0.00212689
0.000167215
-0.000158826
-0.0021255
0.000157387
-0.000159876
-0.00211481
-0.002104
-0.00210349
0.00015021
-0.00210305
0.000140948
0.000132067
-0.00210269
0.00211312
0.000131313
-0.00211241
0.00211392
0.000140106
0.00014927
-0.00212424
0.000147958
-0.00212309
0.00013891
-0.00212205
0.000130223
-0.000122871
-0.00212111
0.000121876
-0.000123545
-0.00211178
-0.000123891
-0.00210238
-0.000123898
-0.00209292
-0.000123564
-0.00208343
-0.000122874
-0.00207391
-0.0020644
-0.00206544
0.000114591
-0.00206645
0.000106648
9.90192e-05
-0.00206743
0.00207532
9.9679e-05
-0.00207601
0.00207462
0.000107322
0.000115276
-0.00208381
0.000115626
-0.00208421
0.000107684
-0.0020846
0.000100046
-9.23202e-05
-0.002085
9.26867e-05
-9.16793e-05
-0.00207668
-0.00206837
-0.00206927
8.46027e-05
-0.00207013
7.77638e-05
7.11361e-05
-0.00207094
0.00207794
7.16992e-05
-0.00207853
0.00207732
7.83562e-05
8.52211e-05
-0.00208539
8.55828e-05
-0.00208578
7.87102e-05
7.20419e-05
-0.00208615
0.00209362
7.21646e-05
-0.00209378
0.00209347
7.88284e-05
0.00209332
8.56931e-05
0.00209319
9.27828e-05
0.00209308
0.000100124
0.00209299
0.00010774
0.000115654
-0.00210213
0.000115362
-0.00210193
0.000107494
9.99182e-05
-0.00210176
0.00211073
9.9435e-05
-0.00211029
0.00211123
0.000106953
0.000114758
-0.00212025
0.000113851
-0.00211947
0.000106126
-0.00211877
9.86808e-05
-9.21806e-05
-0.00211813
9.14939e-05
-9.26123e-05
-0.00210991
-0.00210163
-0.00210153
8.55525e-05
-0.00210146
7.87143e-05
7.20733e-05
-0.0021014
0.00210926
7.177e-05
-0.002109
0.00210956
7.8372e-05
8.51675e-05
-0.00211755
8.45434e-05
-0.00211703
7.78063e-05
-0.00211657
7.12591e-05
-6.5336e-05
-0.00211615
6.4877e-05
-6.56035e-05
-0.00210878
-6.56758e-05
-0.00210137
-6.55502e-05
-0.00209394
-6.52229e-05
-0.00208651
-6.46926e-05
-0.00207909
-6.39578e-05
-0.0020717
-6.3018e-05
-0.00206434
-6.18735e-05
-0.00205705
-6.05258e-05
-0.00204983
-5.89777e-05
-0.0020427
-5.72338e-05
-0.00203568
-5.53002e-05
-0.0020288
-5.3183e-05
-0.00202209
-5.08854e-05
-0.00201554
-4.84027e-05
-0.00200916
-4.57212e-05
-0.00200288
-4.28273e-05
-0.00199664
-3.97406e-05
-0.00199038
-3.65685e-05
-0.00198423
-3.3534e-05
-0.00197867
-3.08744e-05
-0.00197453
-2.86375e-05
-0.00197246
-2.66357e-05
-0.00197234
-2.46163e-05
-0.00197534
-2.24344e-05
-0.00197951
-2.00584e-05
-0.0019934
-0.00202387
1.78313e-05
-0.00202604
-0.00199537
1.97955e-05
-1.55926e-05
-0.00199694
1.71618e-05
-0.00202776
1.53303e-05
-0.00202905
1.55341e-05
-0.00199715
0.00198377
1.56836e-05
-0.00198392
0.00198132
1.96051e-05
2.16006e-05
-0.00197704
2.32894e-05
-0.00197746
2.00216e-05
-0.00197864
1.68598e-05
-1.57953e-05
-0.00197867
1.58136e-05
-1.69148e-05
-0.00198281
-1.60704e-05
-0.001998
-0.00202895
2.67287e-05
-0.00202848
-0.0019926
2.13191e-05
-5.32027e-05
-0.00197904
3.96272e-05
-0.00202175
0.000107415
7.19276e-05
0.00196512
4.3584e-05
0.00197949
2.52459e-05
1.79874e-05
-0.00197562
1.49219e-05
-0.00196751
1.71308e-05
2.44636e-05
0.0019732
1.56502e-05
0.0019769
1.34212e-05
0.00197755
1.42599e-05
0.00197716
1.61942e-05
0.0019757
1.83103e-05
0.00197411
2.16008e-05
2.50526e-05
-0.00197456
2.71444e-05
-0.00197655
2.3587e-05
2.0219e-05
-0.00197846
0.00197953
2.25501e-05
-0.00198187
0.00197708
2.60296e-05
2.96929e-05
-0.00198155
3.25714e-05
-0.00198426
2.87369e-05
-0.00198679
2.50706e-05
-1.92553e-05
-0.00198912
2.15754e-05
-1.7049e-05
-0.00198408
-0.00197933
-0.00198012
1.50411e-05
-0.0019798
1.30912e-05
1.11275e-05
0.00198603
1.06917e-05
0.00198516
1.39561e-05
1.61068e-05
-0.00199123
1.821e-05
-0.00199209
1.48041e-05
1.21907e-05
0.00199838
1.25601e-05
0.00199665
1.65215e-05
0.00199465
2.0204e-05
0.0019924
2.38157e-05
0.00198991
2.75518e-05
0.00198718
3.14566e-05
3.5523e-05
-0.00199322
3.83567e-05
-0.00199581
3.40365e-05
2.98817e-05
-0.00199814
0.00200169
3.20392e-05
-0.00200386
0.00199929
3.64331e-05
4.09995e-05
-0.00200534
4.34483e-05
-0.00200757
3.86547e-05
-0.00200957
3.40393e-05
-2.78275e-05
-0.00201137
2.96121e-05
-2.59014e-05
-0.00200579
-0.00200024
-0.00200209
2.20427e-05
-0.00200367
1.80915e-05
1.37943e-05
0.00200895
1.49131e-05
0.0020075
1.95307e-05
2.37374e-05
-0.00201295
2.53076e-05
-0.00201429
2.08576e-05
1.59341e-05
0.00201975
1.6766e-05
0.00201851
2.20827e-05
0.00201704
2.67648e-05
0.00201537
3.12707e-05
0.0020135
3.58986e-05
0.00201143
4.07184e-05
4.57198e-05
-0.00201765
4.78259e-05
-0.00201958
4.26338e-05
3.76244e-05
-0.00202131
0.00202581
3.92162e-05
-0.00202742
0.00202404
4.44014e-05
4.97686e-05
-0.00203059
5.15441e-05
-0.00203221
4.60168e-05
-0.00203368
4.06699e-05
-3.42254e-05
-0.00203499
3.55164e-05
-3.28088e-05
-0.00202885
-0.00202286
-0.00202422
2.81126e-05
-0.00202536
2.32089e-05
1.77167e-05
0.00203113
1.84843e-05
0.0020301
2.42357e-05
2.93495e-05
-0.00203612
3.04724e-05
-0.00203706
2.51619e-05
1.9171e-05
0.00204312
1.97779e-05
0.00204229
2.59868e-05
0.00204127
3.14787e-05
0.00204009
3.6678e-05
0.00203876
4.19803e-05
0.00203729
4.74743e-05
5.31462e-05
-0.00204413
5.45692e-05
-0.00204544
4.87691e-05
4.31437e-05
-0.00204662
0.00205223
4.41577e-05
-0.00205326
0.00205108
4.98977e-05
5.58091e-05
-0.00205812
5.68634e-05
-0.0020591
5.08582e-05
-0.00205998
4.50209e-05
-3.86025e-05
-0.00206076
3.93639e-05
-3.77071e-05
-0.00205417
-0.00204767
-0.00204857
3.23671e-05
-0.00204931
2.67111e-05
2.03071e-05
0.0020556
2.07609e-05
0.00205496
2.73358e-05
3.31371e-05
-0.00206143
3.37898e-05
-0.00206197
2.78623e-05
2.1142e-05
0.00206843
2.14527e-05
0.00206798
2.82933e-05
0.00206743
3.43265e-05
0.00206678
3.99922e-05
0.00206605
4.57325e-05
0.00206523
5.16495e-05
5.77309e-05
-0.0020724
5.84114e-05
-0.00207305
5.22716e-05
4.62931e-05
-0.00207363
0.00208009
4.67035e-05
-0.00208053
0.00207961
5.27253e-05
5.89053e-05
-0.00208685
5.9214e-05
-0.00208717
5.30122e-05
-0.00208745
4.69646e-05
-4.08523e-05
-0.00208771
4.10871e-05
-4.04879e-05
-0.00208091
-0.00207415
-0.00207459
3.47492e-05
-0.00207494
2.86312e-05
2.16956e-05
0.00208151
2.18726e-05
0.00208124
2.88783e-05
3.506e-05
-0.00208793
3.52604e-05
-0.0020881
2.90363e-05
2.1986e-05
0.00209472
2.20377e-05
0.00209463
2.91083e-05
0.00209453
3.53497e-05
0.00209439
4.11925e-05
0.00209425
4.70817e-05
0.0020941
5.31334e-05
5.93389e-05
-0.00210135
5.92831e-05
-0.00210134
5.30921e-05
4.70515e-05
-0.00210134
0.00210841
4.68777e-05
-0.00210827
0.00210858
5.28894e-05
5.9049e-05
-0.00211578
5.86398e-05
-0.00211546
5.25283e-05
-0.00211517
4.65627e-05
-4.10229e-05
-0.00211493
4.07523e-05
-4.11703e-05
-0.00210815
-0.00210134
-0.00210134
3.53328e-05
-0.00210135
2.90958e-05
2.20288e-05
0.00210796
2.1961e-05
0.00210805
2.90003e-05
3.52107e-05
-0.00211473
3.49847e-05
-0.00211456
2.88235e-05
2.18355e-05
0.00212113
2.16511e-05
0.00212138
2.85667e-05
0.00212168
3.46576e-05
0.00212204
4.03608e-05
0.00212246
4.61092e-05
0.00212294
5.20119e-05
0.00212348
5.80592e-05
0.00212408
6.42308e-05
0.00212475
7.05453e-05
0.00212548
7.70224e-05
0.00212629
8.36859e-05
0.00212717
9.05588e-05
0.00212814
9.76629e-05
0.00212919
0.000105019
0.00213034
0.000112649
0.00213159
0.000120571
0.00213295
0.000128806
0.00213443
0.000137372
0.00213605
0.000146288
0.00213781
0.000155573
0.00213973
0.000165244
0.00214182
0.000175319
0.00214411
0.000185817
0.0021466
0.000196753
0.00214931
0.000208144
0.00215227
0.000220008
0.0021555
0.000232358
0.00215903
0.00024521
0.00216287
0.000258577
0.00216705
0.000272473
0.0021716
0.000286907
0.00217656
0.00030189
0.00218194
0.000317429
0.00218779
0.000333529
0.00219412
0.000350194
0.00220097
0.000367422
0.00220837
0.000385212
0.00221635
0.000403558
0.000422452
0.00224444
0.000413399
-0.00223541
0.00043223
0.00227346
0.000422129
-0.00226338
0.00228414
0.000440865
0.00229544
0.000460092
0.000479807
-0.00231507
0.000467437
-0.00230335
0.000448343
0.000429726
-0.00229224
0.00232195
0.000418164
-0.00231042
0.00233408
0.000436171
0.00234684
0.000454645
0.000473587
0.00237945
0.000459744
-0.00236565
0.000478514
0.0024129
0.000463605
-0.00239804
0.00242843
0.000482182
0.000501223
-0.0024472
0.000484545
-0.00243125
0.000466188
-0.00241598
0.000448282
-0.000445484
-0.00240136
0.000430818
-0.00238382
-0.000441434
-0.00237025
0.000427813
-0.00235248
-0.00233993
0.000423583
0.000406186
-0.002328
0.0023573
0.000393802
-0.00234497
0.000410587
0.00238739
0.000397193
-0.00237405
0.00041379
0.00241825
0.000399378
-0.0024039
0.00243326
0.000415756
0.00244893
0.000432556
0.00246528
0.000449782
0.00248233
0.000467444
0.000485673
0.00251828
0.000467439
-0.0025001
0.000484889
0.00255471
0.000465755
-0.00253563
0.00257531
0.000482993
0.000501398
-0.00259227
0.00048001
-0.002572
0.000462668
0.000445978
-0.00255228
0.00258754
0.000425626
-0.00256725
0.00260843
0.000441722
0.00263015
0.000458223
0.00265273
0.00047465
0.0026762
0.000491701
0.00270058
0.000509154
0.000527013
-0.00271717
0.000501211
-0.00269237
0.000484307
0.000467778
-0.0026685
0.00270729
0.000443464
-0.00268303
0.00273248
0.000459059
0.000475001
-0.00274649
0.000448405
-0.00272092
0.000433431
-0.00269629
0.000418776
-0.000428213
-0.00267258
0.000404438
-0.000451622
-0.00265969
-0.00264554
-0.00262343
0.000436051
-0.00260217
0.000420403
0.000405134
-0.00258175
0.0026156
0.000384293
-0.00259483
0.00263721
0.000398723
0.000413507
-0.00264956
0.000390412
-0.00262779
0.000376886
-0.00260668
0.000363112
-0.000370674
-0.00258638
0.000350291
-0.000390725
-0.00257485
-0.000410438
-0.00256211
-0.000429585
-0.00254817
-0.00044881
-0.00253312
-0.00251706
-0.000449939
-0.00249923
0.00043205
-0.00248265
-0.00246591
0.000432983
0.000416445
-0.00244986
0.00248212
0.00039997
-0.00246571
0.00041581
0.00251494
0.000398284
-0.00249748
0.000413796
0.000395196
-0.00252964
-0.00254324
0.00037626
-0.000380422
-0.00252513
0.000362236
-0.00251185
-0.000383151
-0.00249478
0.000366007
-0.00248073
-0.000384522
-0.00246467
0.000368391
-0.000400317
-0.00244998
-0.00243448
-0.00241976
0.000384594
-0.000383415
-0.00240568
0.00036927
-0.00239018
-0.000381023
-0.00237708
0.000367864
-0.00236133
-0.000377457
-0.0023492
0.000365278
-0.000389243
-0.00233323
-0.000400625
-0.00231666
-0.00041159
-0.00229949
-0.00228173
-0.00040389
-0.00227181
0.000393937
-0.0022539
-0.000395089
-0.00224499
0.000386154
-0.00222696
0.000377305
-0.00221907
0.000368924
-0.00223663
0.00226246
0.00036009
-0.00225366
0.000376769
0.00228915
0.000366951
-0.00227937
0.000383554
-0.0023059
0.000372753
-0.00229571
0.000356715
-0.000350819
-0.00228606
0.000341129
-0.00227013
-0.0003439
-0.00226143
0.000335156
-0.000352205
-0.00224538
-0.000360053
-0.00222881
-0.00221172
-0.00220489
0.000343337
-0.00219854
0.000327158
0.000311516
-0.00219266
0.00221468
0.00030512
-0.00220831
0.0022215
0.000320304
0.000335998
-0.00223762
0.0003282
-0.00223034
0.000312989
0.000298265
-0.00222352
0.00224552
0.000290975
-0.00223827
0.00225323
0.000305236
0.000319963
0.00227694
0.000311307
-0.00226833
0.000325994
0.00230144
0.000316429
-0.00229192
0.00231148
0.000331037
0.00232207
0.000346076
0.000361549
-0.00233766
0.000349953
-0.00232668
0.000335046
-0.00231626
0.000320556
-0.00230636
0.000306478
-0.000302251
-0.00229698
0.00029281
-0.00228292
-0.000297066
-0.0022744
0.000288499
-0.00226021
0.00028327
-0.00225255
0.00027517
-0.00226635
0.00228809
0.000266692
-0.00227967
0.00027955
0.00231052
0.000270237
-0.00230127
0.00232027
0.000283003
0.00233053
0.000296156
0.00234132
0.000309702
0.00235267
0.000323642
0.00236458
0.000337981
0.00035272
0.00239222
0.000339802
-0.00237936
0.000354341
0.00242049
0.000340477
-0.0024067
0.00243492
0.00035478
0.00036946
-0.00244928
0.000353999
-0.00243454
0.000339969
0.000326298
-0.00242044
0.00244769
0.000311829
-0.0024333
0.00246272
0.00032486
0.00247841
0.000338231
0.000351945
0.00250775
0.000335196
-0.00249108
0.000348549
0.00253724
0.000330785
-0.00251955
0.00255566
0.000343732
0.000356995
-0.00256687
0.00033741
-0.00254814
0.000324917
-0.00253015
0.000312719
-0.00031815
-0.0025129
0.000300813
-0.00250259
-0.00032217
-0.00248633
0.000305823
-0.0024751
-0.00245979
0.000309468
0.000297085
-0.00244513
0.00247074
0.000282076
-0.00245582
0.000293799
0.00249636
0.000277859
-0.00248051
0.000289194
0.00252206
0.000272286
-0.00250524
0.00253959
0.000283188
0.00255787
0.000294357
0.0025769
0.000305797
0.00259672
0.000317511
0.00261735
0.000329587
0.00263878
0.000341603
0.00266108
0.00035451
0.00268443
0.000366991
0.0027083
0.0003805
0.00273328
0.000393732
0.00275921
0.000407443
0.00278633
0.000421231
0.00281403
0.000435953
0.00284297
0.000450307
0.000465156
0.00288578
0.000434774
-0.00285544
0.000448804
0.000417046
-0.00289727
-0.00290751
0.000385035
-0.000404096
-0.00287662
0.000373156
-0.00286663
-0.000420985
-0.00283725
0.000391552
-0.00282617
-0.00279791
0.000407643
-0.00277068
0.000393948
-0.00274442
0.00038112
0.000368357
-0.00271911
0.0027544
0.000342842
-0.00272895
0.00278096
0.000354489
0.0028085
0.000366358
0.000378834
0.00284675
0.000349957
-0.00281793
0.000361642
0.00288545
0.000331495
-0.00285536
0.00291658
0.00034199
0.000352808
0.00295692
0.000320397
-0.00292455
0.000330293
0.00299791
0.000296671
-0.00296432
0.00303258
0.000305599
0.00306834
0.000314604
0.000323663
-0.0030766
0.000286826
-0.00304059
0.000278574
-0.0030058
0.000270788
-0.00297222
0.000263053
-0.000287834
-0.00293942
0.000255004
-0.00293179
-0.000310631
-0.00290045
0.000279244
-0.00289323
0.000300999
-0.00286279
0.000270357
-0.00286986
0.00290778
0.00023971
-0.00287718
0.000247554
0.00295174
0.000215468
-0.0029197
0.00298435
0.000222368
0.00301836
0.000229011
0.0030533
0.000235826
0.00308917
0.000242689
0.00312639
0.000249583
0.00316455
0.000256357
0.00320381
0.000263377
0.000270367
0.00327206
0.000229746
-0.00323144
0.00331359
0.000235347
0.000240967
0.00340694
0.000197756
-0.00336372
0.00345119
0.000202226
0.00349645
0.000206559
0.00354268
0.000210721
0.000214677
0.00363669
0.000167174
-0.00358916
0.000169944
0.00363191
0.000122653
-0.00358459
0.00368013
0.000124461
0.00372904
0.000126143
0.00377854
0.000127614
0.00382864
0.000128835
0.00387912
0.000129717
0.000130426
-0.00363857
8.3132e-05
-0.00359159
8.27747e-05
8.22203e-05
-0.00354494
0.00327822
-0.00323565
0.00332101
-8.14095e-05
-0.00319357
-0.0034987
-0.00345296
8.044e-05
-0.00340789
7.94143e-05
7.8268e-05
-0.00336348
0.00311093
-0.00307048
0.003152
-7.68964e-05
-0.00303074
-0.000120491
-0.00331986
-0.00353788
-0.000164124
-0.00349211
0.000118369
-0.00354254
-0.00349688
0.000160914
-0.0034522
0.000157565
-0.00340854
0.000154107
-0.000193181
-0.00336599
0.000150639
-0.00332154
-0.00328031
0.00018852
-0.000223847
-0.00324027
0.000183801
-0.00319191
-0.00315348
0.000217922
-0.00311611
0.0002122
-0.00307981
0.00020637
0.000200563
-0.00304457
0.00312667
0.000164773
-0.0030909
0.0031635
0.000169524
0.00320141
0.00017429
0.000179054
0.00328383
0.000139609
-0.00324439
0.00332434
0.000143295
0.000146879
0.00331844
0.000105995
-0.00327755
0.0033604
0.000108695
0.00340333
0.000111188
0.0034473
0.000113611
0.000116128
0.003277
7.41254e-05
-0.00323498
7.5533e-05
-0.00299169
-0.00295338
-7.2542e-05
-0.00291589
-0.00319389
-0.00315371
7.10206e-05
-0.00311433
6.93272e-05
-0.00307607
6.77457e-05
-0.00010342
-0.00303865
6.60054e-05
-0.00323767
-0.00319883
0.000100768
-0.00013591
-0.00316103
9.81078e-05
-0.00320602
-0.00316871
0.00013221
-0.00313247
0.000128517
-0.000160051
-0.00309735
0.000124907
-0.000194889
-0.00305608
-0.00301047
-0.0029772
0.00018907
-0.00294509
0.000183317
-0.000208982
-0.00291397
0.000177821
-0.00288901
-0.000232346
-0.0028592
0.000202485
-0.000262143
-0.00284743
-0.000291663
-0.00284039
-0.00032084
-0.00283366
-0.0028263
-0.000338492
-0.00279825
0.000310381
-0.00279013
-0.00276328
0.000327581
-0.00273722
0.00031671
-0.000331091
-0.0027124
0.000306206
-0.000356033
-0.00270408
-0.00269471
-0.00267124
0.000343444
-0.00264862
0.000331815
0.00031978
-0.00262687
0.00265738
0.000297663
-0.00263535
0.0026803
0.000308821
0.000319596
-0.00268835
0.00029547
-0.00266516
0.00028555
0.000275272
-0.00264285
0.00267204
0.000252633
-0.00264948
0.00269548
0.000262029
0.00271964
0.000271233
0.00274501
0.000280765
0.00277115
0.000290496
0.000300422
0.0028054
0.000273046
-0.00277809
0.000282055
0.000253544
-0.00281194
-0.00281892
0.000224979
-0.00024548
-0.00279124
0.00021774
-0.00278444
-0.000264062
-0.00275788
0.000237435
-0.00275172
-0.00272628
0.000255252
-0.00270187
0.000246742
-0.00267808
0.000238162
0.000229769
-0.0026553
0.00268364
0.000206705
-0.00266066
0.00270749
0.000214227
0.00273224
0.000221918
0.000229544
0.0027645
0.000203654
-0.00273869
0.00021063
0.00280248
0.000183622
-0.00277554
0.00283036
0.0001898
0.000196089
0.00288384
0.000166885
-0.00285469
0.000172311
0.00295822
0.000141637
-0.00292759
0.00298985
0.000146152
0.00302249
0.000150654
0.000155444
-0.00306313
0.000121201
-0.00303004
0.000117535
0.000114032
-0.00299796
0.00298755
8.23487e-05
-0.0029559
0.00302018
8.48733e-05
0.00305385
8.75133e-05
0.00308855
9.01829e-05
0.00312432
9.27376e-05
9.54915e-05
0.0029668
6.09533e-05
-0.00293227
0.00300223
6.26694e-05
6.43488e-05
0.0027743
-0.00274106
0.00280838
0.00284338
0.0028792
-0.0027087
-0.00267721
-5.92301e-05
-0.00264666
-0.00289877
-0.00286617
5.75728e-05
-0.00283462
5.59408e-05
-0.00280399
5.42141e-05
5.25895e-05
-0.00277426
0.0025601
-0.00253296
0.00258807
0.00261693
-5.1027e-05
-0.00250664
-7.98557e-05
-0.00274546
-0.000110519
-0.00292527
-0.00296688
-0.000137189
-0.0029368
0.000107056
-0.00289795
-0.000161548
-0.00286927
0.000132813
-0.0028265
0.000156306
-0.00279924
0.000128513
-0.00284154
0.00290769
0.000100299
-0.00287954
0.000103648
0.00289558
7.48241e-05
-0.00286681
7.73176e-05
-0.00271755
4.93676e-05
-0.00269063
4.78499e-05
-7.24826e-05
-0.00266446
4.62612e-05
-0.00283905
-9.70121e-05
-0.00281218
7.00744e-05
-0.000124293
-0.00285232
-0.000151159
-0.00281474
-0.00017756
-0.00277291
-0.00274952
-0.000196813
-0.00272439
0.000171614
-0.00271366
-0.00268972
0.000190205
-0.00266655
0.000183456
-0.000199601
-0.00264422
0.000177171
-0.000221843
-0.00263851
-0.000243885
-0.00263335
-0.000265704
-0.00262775
-0.000287275
-0.00262137
-0.000308576
-0.00261413
-0.00260594
-0.00258583
0.000297312
-0.0025665
0.000286383
0.000275708
-0.00254794
0.00257413
0.000256786
-0.0025553
0.00259373
0.00026669
0.000276828
-0.00260071
0.000256078
-0.00258084
0.000246735
-0.00256176
0.000237605
-0.000247111
-0.00254343
0.000228685
-0.000265284
-0.00253722
-0.00253013
-0.00251304
0.000255106
-0.000261648
-0.00249666
0.000245173
-0.00248912
-0.000266804
-0.00247368
0.00025127
-0.00246533
-0.000270648
-0.00245079
0.000256025
-0.000285018
-0.00244154
-0.000299132
-0.0024311
-0.000312982
-0.00241952
-0.000326547
-0.00240694
-0.00239351
-0.00032565
-0.00238092
0.000312986
-0.0023671
-0.0023554
0.000311882
0.000298494
-0.00234426
0.00236889
0.000286957
-0.00235743
0.000299791
0.00239405
0.000287396
-0.00238173
0.000300016
0.000286767
-0.00240635
-0.00241768
0.000273262
-0.00027473
-0.00240485
0.000261815
-0.00239377
-0.00027512
-0.00238175
0.000263017
-0.00236997
-0.000274482
-0.00235875
0.000263184
-0.000285483
-0.0023465
-0.00233365
-0.00232356
0.000272845
-0.00231397
0.000260576
-0.000257855
-0.00230485
0.000248673
-0.0022925
-0.000254234
-0.00228418
0.000245853
-0.000262259
-0.0022717
-0.000269912
-0.00225876
-0.000277174
-0.00224534
-0.000284026
-0.00223146
-0.000290444
-0.00221714
-0.000296407
-0.00220238
-0.0021872
-0.00218215
0.000281827
-0.00217748
0.000267768
0.000254222
-0.00217316
0.00219173
0.000249407
-0.00218695
0.00219686
0.000262595
0.000276271
-0.00221118
0.000270265
-0.0022056
0.000256977
-0.00220039
0.000244154
-0.000236698
-0.00219553
0.000231788
-0.000241179
-0.00218252
-0.00216917
-0.00216548
0.000228628
-0.00216207
0.000216556
0.00020495
-0.00215893
0.00217456
0.00020134
-0.002171
0.00217839
0.000212676
0.000224458
-0.00219099
0.00021987
-0.00218676
0.000208389
0.000197334
-0.00218281
0.00219865
0.00019295
-0.00219433
0.00220327
0.000203713
0.0022082
0.000214883
0.00221347
0.000226471
0.00221908
0.000238486
0.00222508
0.000250936
0.00026383
-0.00223855
0.000256989
-0.00223216
0.000244496
0.000232424
-0.00222616
0.00224482
0.00022599
-0.00223845
0.00225159
0.000237675
0.000249763
-0.00226417
0.00024217
-0.00225705
0.000230494
-0.00225033
0.000219202
-0.0002147
-0.00224398
0.000208285
-0.000220768
-0.00223244
-0.00222051
-0.00221521
0.000209519
-0.00221023
0.000198669
0.000188207
-0.00220555
0.00222146
0.000183126
-0.00221644
0.00222678
0.000193276
0.000203798
-0.00223799
0.000197739
-0.00223233
0.000187554
0.000177723
-0.002227
0.00224283
0.000172015
-0.0022372
0.0022488
0.000181517
0.00225511
0.000191356
0.00226178
0.00020154
0.00226884
0.000212075
0.0022763
0.000222968
0.000234225
0.0022962
0.000225946
-0.00228799
0.000237131
0.00231674
0.000228092
-0.00230778
0.00232617
0.000239171
0.00233609
0.000250592
0.000262362
-0.00234804
0.000251584
-0.00233785
0.000240316
0.000229378
-0.00232813
0.00234886
0.000219334
-0.0023389
0.00235931
0.000229786
0.00237027
0.000240548
0.000251624
0.00239259
0.000239831
-0.00238088
0.000250673
0.00241481
0.000238104
-0.00240234
0.00242787
0.000248665
0.000259512
-0.00243689
0.000245519
-0.00242361
0.000235283
-0.00241091
0.000225313
-0.000227824
-0.00239879
0.000215605
-0.00239042
-0.000229287
-0.00237905
0.000217822
-0.00236971
-0.00235905
0.000219038
0.000209078
-0.00234888
0.0023682
0.000198639
-0.00235785
0.000208095
0.00238722
0.000196964
-0.00237619
0.000206157
0.002406
0.000194288
-0.00239423
0.00241833
0.000203172
0.00243124
0.000212297
0.00244476
0.000221666
0.0024589
0.000231283
0.00024115
0.00248097
0.000226025
-0.00246594
0.00023548
0.00250324
0.00021944
-0.0024873
0.00251987
0.000228441
0.000237664
-0.00252584
0.000219973
-0.00250897
0.000211466
0.000203162
-0.00249279
0.00251394
0.000186659
-0.00249755
0.00253104
0.000194263
0.00254886
0.00020205
0.00256742
0.000210023
0.00258674
0.000218185
0.00260684
0.000226537
0.000235082
-0.00261223
0.000213865
-0.00259191
0.000206118
0.000198545
-0.00257237
0.00259667
0.000178707
-0.00257693
0.00261719
0.000185499
0.000192446
-0.00262271
0.00017084
-0.002602
0.000164692
-0.00258208
0.000158681
-0.000172067
-0.00256293
0.000152804
-0.000191144
-0.00255796
-0.00255359
-0.00253556
0.000183913
-0.00251826
0.000176849
0.000169949
-0.00250166
0.00252225
0.000153046
-0.00250546
0.00253974
0.000159239
0.000165579
-0.00254453
0.00014706
-0.00252685
0.000141446
0.000135962
-0.00250989
0.00253568
0.000118683
-0.00251853
0.00255354
0.000123457
0.00257214
0.000128342
0.00259149
0.00013334
0.00261161
0.000138453
0.00263252
0.000143682
0.00265423
0.00014903
0.00267677
0.000154535
0.00270006
0.000160082
0.000165789
0.00274748
0.000141236
-0.00272301
0.000146112
0.000120152
-0.00278885
-0.00282603
9.3787e-05
-0.00011615
-0.00280059
9.06239e-05
-0.00276385
-0.00013625
-0.00273975
0.00011206
-0.00269927
-0.00267643
0.000131608
-0.00265444
0.000126931
-0.00263325
0.000122389
0.000117946
-0.00261285
0.00267247
9.70379e-05
-0.00265168
0.00269407
0.000100685
0.00271649
0.000104413
0.000108251
0.00277614
8.45138e-05
-0.0027525
8.7526e-05
0.00276114
6.32324e-05
-0.00273693
0.00278621
6.5467e-05
6.77482e-05
0.00263922
4.32727e-05
-0.00261481
4.47707e-05
0.00243269
-0.00240964
0.00245652
0.00248119
-0.00238736
-4.1844e-05
-0.00236582
-0.00259126
4.04035e-05
-0.00256851
-0.00234503
-3.90159e-05
-0.00232496
-6.10289e-05
-0.00254659
-0.00271354
-8.15224e-05
-0.00269102
5.89018e-05
-0.00272971
-0.00270776
7.8617e-05
-0.00268661
7.57751e-05
-9.34718e-05
-0.00266626
7.29957e-05
-0.000113602
-0.00263167
-0.00259323
-0.00257437
0.000109354
-0.00255624
0.000105203
0.000101145
-0.00253883
0.00259393
8.32446e-05
-0.00257617
0.00261243
8.65765e-05
8.99851e-05
-0.00264668
7.0278e-05
-0.00262786
6.76208e-05
6.50234e-05
-0.00260978
0.00259031
4.69986e-05
-0.00257242
0.00260893
4.88684e-05
0.00262829
5.07883e-05
0.00264841
5.27495e-05
0.00266932
5.4755e-05
5.68056e-05
0.00252542
3.63e-05
-0.00250501
3.76383e-05
-0.00230562
-0.00228697
-3.49908e-05
-0.002269
-0.00248536
-0.00246643
3.37103e-05
-0.00244822
3.24582e-05
-0.00243072
3.12324e-05
3.00385e-05
-0.00241389
0.00221905
-0.00220367
0.00223507
0.00225172
-2.88653e-05
-0.0021889
-4.51637e-05
-0.00239773
-6.24844e-05
-0.00255525
-7.99882e-05
-0.00259242
-9.71795e-05
-0.00255912
-0.000114018
-0.00252213
-0.000130604
-0.00250208
-0.000146997
-0.00249363
-0.000163212
-0.00248937
-0.000179236
-0.00248576
-0.000195056
-0.00248184
-0.000210657
-0.0024773
-0.00247204
-0.000216804
-0.00245743
0.00020209
-0.00245157
-0.00243782
0.000207816
0.000199056
-0.00242468
0.00244346
0.000185591
-0.0024301
0.000193735
0.00246247
0.000179434
-0.00244828
0.000187148
0.000171991
-0.0024668
-0.00247052
0.000156634
-0.000164922
-0.00245594
0.000150215
-0.00245241
-0.000171912
-0.00243865
0.000158027
-0.00243472
-0.000177655
-0.00242176
0.000164579
-0.000190521
-0.00241735
-0.00241214
-0.00240017
0.00018221
-0.000185641
-0.00238876
0.000174119
-0.00238302
-0.000188024
-0.00237233
0.000177229
-0.00236568
-0.00018945
-0.00235566
0.000179332
-0.000199406
-0.00234799
-0.000209188
-0.00233919
-0.000218764
-0.00232941
-0.00231888
-0.000217352
-0.00231008
0.000208471
-0.00229926
-0.000215112
-0.00229117
0.000206945
-0.00228021
0.000204625
-0.00227283
0.000196868
-0.00228349
0.00230171
0.00018883
-0.00229376
0.000198494
0.00232037
0.000189799
-0.00231176
0.000199344
-0.00232995
0.000190017
-0.00232115
0.000180908
-0.000180549
-0.00231277
0.000172075
-0.00230357
-0.000179472
-0.00229577
0.000171589
-0.000187114
-0.0022862
-0.000194478
-0.00227621
-0.00226585
-0.00225923
0.000184665
-0.00225297
0.000175179
0.000166015
-0.00224705
0.00226275
0.000159734
-0.00225655
0.0022693
0.000168553
0.000177678
-0.00227902
0.000170416
-0.00227221
0.000161656
0.000153187
-0.00226575
0.00228131
0.000146403
-0.00227462
0.00228836
0.000154521
0.000162914
0.00230479
0.000155224
-0.00229719
0.000163515
0.00232112
0.000155303
-0.00231301
0.00232965
0.000163456
0.0023386
0.000171862
0.000180526
-0.00234612
0.000170886
-0.00233704
0.000162682
-0.00232841
0.000154715
-0.00232019
0.000146984
-0.000147401
-0.00231238
0.000139484
-0.00230529
-0.000147198
-0.00229793
0.000139746
-0.00228996
0.000139432
-0.00228309
0.000132335
-0.00229093
0.00230494
0.000125167
-0.00229788
0.000132213
0.00231829
0.000124611
-0.00231079
0.00232619
0.000131481
0.0023345
0.00013856
0.00234325
0.000145853
0.00235246
0.000153363
0.00236215
0.000161093
0.000169047
0.00237789
0.000158584
-0.00236754
0.000166244
0.00239357
0.000155066
-0.00238251
0.00240518
0.000162395
0.000169924
-0.00240939
0.000157434
-0.0023976
0.000150474
0.000143698
-0.00238635
0.00240096
0.000132145
-0.00238954
0.00241294
0.000138365
0.0024255
0.00014475
0.000151304
0.00244199
0.000137841
-0.00242866
0.000143951
0.0024592
0.000129696
-0.00244508
0.00247396
0.000135324
0.000141091
-0.00247804
0.00012537
-0.00246311
0.00012026
-0.00244883
0.00011527
-0.000124204
-0.00243516
0.000110401
-0.00243157
-0.000131884
-0.00241868
0.000118848
-0.00241593
-0.00240377
0.000126078
0.000120421
-0.00239218
0.00240636
0.000108536
-0.00239462
0.000113625
0.00242211
0.000101015
-0.00240964
0.000105649
0.0024429
9.22785e-05
-0.00242968
0.00245673
9.64204e-05
0.0024712
0.000100664
0.0024863
0.000105011
0.000109462
-0.00250612
9.33049e-05
-0.00249078
8.95196e-05
8.58221e-05
-0.00247608
0.0025271
7.06581e-05
-0.00251209
0.00254277
7.36962e-05
7.68058e-05
-0.00257577
6.00029e-05
-0.00255981
5.75777e-05
-0.00254453
5.5208e-05
-6.76906e-05
-0.00252989
5.28929e-05
-8.22113e-05
-0.00249773
-0.00246203
-0.00244859
7.86861e-05
-8.82375e-05
-0.00243576
7.52456e-05
-0.00241705
-9.64971e-05
-0.00240501
8.42967e-05
-0.00239775
-0.000103578
-0.00238642
9.2095e-05
-0.000114913
-0.00238343
-0.000126091
-0.00238114
-0.000137102
-0.00237866
-0.000147935
-0.00237564
-0.00237199
-0.000151134
-0.00236197
0.000140998
-0.0023577
-0.00234834
0.000143891
0.000136853
-0.00233945
0.00235245
0.000127697
-0.00234342
0.000134253
0.00236546
0.000124445
-0.00235578
0.000130685
0.0001202
-0.00236831
-0.00237063
0.000109552
-0.000114469
-0.00236064
0.000104336
-0.00235846
-0.000118378
-0.00234911
0.000108898
-0.00234658
-0.000121325
-0.00233787
0.000112482
-0.000130014
-0.00233485
-0.00233102
-0.00232303
0.000123372
-0.00231545
0.000116923
-0.000117948
-0.00230828
0.000110664
-0.00230368
-0.000118343
-0.00229693
0.000111488
-0.000125165
-0.00229116
-0.000131923
-0.00228427
-0.000138556
-0.00227655
-0.000145002
-0.00226827
-0.000151213
-0.00225962
-0.000157164
-0.00225068
-0.000162843
-0.00224145
-0.000168238
-0.00223188
-0.000173338
-0.00222197
-0.000178125
-0.00221172
-0.000182583
-0.00220115
-0.000186693
-0.00219028
-0.000190437
-0.00217912
-0.000193796
-0.0021677
-0.00215602
-0.00215334
0.00018308
-0.00215086
0.000172785
0.000162896
-0.00214856
0.00216178
0.000160187
-0.00215913
0.00216463
0.000169875
0.000179953
-0.00217568
0.000176455
-0.00217248
0.000166606
-0.00216949
0.000157132
-0.000150875
-0.0021667
0.00014802
-0.000153397
-0.00215666
-0.00214644
-0.00214449
0.000144272
-0.00214268
0.000135503
0.000127074
-0.002141
0.00215225
0.000125038
-0.00215028
0.00215438
0.000133316
0.000141923
-0.00216409
0.000139256
-0.00216167
0.000130824
0.00012271
-0.0021594
0.0021709
0.000120101
-0.00216836
0.00217362
0.000128038
0.00217652
0.000136282
0.00217963
0.000144847
0.00218294
0.000153746
0.00218649
0.000162994
0.000172602
-0.00219703
0.000168412
-0.00219316
0.000159056
0.000150046
-0.00218953
0.00220311
0.000146047
-0.00219918
0.00220729
0.000154809
0.000163902
-0.00221723
0.00015909
-0.00221277
0.000150269
-0.00220856
0.000141766
-0.000137607
-0.0022046
0.00013357
-0.000141371
-0.00219549
-0.00218613
-0.00218293
0.000133017
-0.00217994
0.000124973
0.000117225
-0.00217713
0.00218877
0.000114094
-0.00218571
0.00219203
0.000121642
0.000129476
-0.00220088
0.000125672
-0.00219737
0.000118059
-0.00219408
0.000110722
-0.000106818
-0.00219098
0.000103647
-0.000109759
-0.00218285
-0.000112456
-0.00217451
-0.000114897
-0.00216599
-0.000117071
-0.0021573
-0.000118966
-0.00214845
-0.00213946
-0.00213803
0.000111162
-0.00213671
0.000103642
9.63891e-05
-0.00213549
0.00214517
9.48678e-05
-0.00214371
0.00214675
0.000102004
0.000109399
-0.00215533
0.00010737
-0.00215351
0.000100113
-0.00215181
9.31078e-05
-8.79724e-05
-0.00215024
8.63369e-05
-8.93824e-05
-0.00214236
-0.00213437
-0.00213334
8.26018e-05
-0.0021324
7.60264e-05
6.96341e-05
-0.00213154
0.00213996
6.85312e-05
-0.00213891
0.00214111
7.48246e-05
8.1298e-05
-0.00214878
7.9782e-05
-0.00214744
7.3424e-05
6.72429e-05
-0.0021462
0.0021548
6.57756e-05
-0.00215339
0.00215634
7.18317e-05
0.002158
7.80617e-05
0.00215978
8.44845e-05
0.00216171
9.11182e-05
0.00216377
9.79803e-05
0.000105087
-0.00217205
0.00010256
-0.00216976
9.56155e-05
8.89087e-05
-0.00216762
0.00217765
8.64893e-05
-0.0021753
0.00218016
9.30296e-05
9.9801e-05
-0.00218808
9.68217e-05
-0.00218535
9.02344e-05
-0.00218281
8.38711e-05
-8.01653e-05
-0.00218043
7.77179e-05
-8.24242e-05
-0.0021731
-0.00216562
-0.00216377
7.61455e-05
-0.00216205
7.00555e-05
6.41364e-05
-0.00216047
0.00216917
6.23324e-05
-0.00216742
0.00217106
6.81032e-05
7.40419e-05
-0.00217821
7.17604e-05
-0.00217615
6.59834e-05
6.03713e-05
-0.00217424
0.00218297
5.82618e-05
-0.00218092
0.00218519
6.37055e-05
0.00218758
6.93112e-05
0.00219013
7.50933e-05
0.00219287
8.10659e-05
0.00219579
8.72423e-05
0.0021989
9.36358e-05
0.00220221
0.000100259
0.00220573
0.000107123
0.00220947
0.00011424
0.00221344
0.000121622
0.00221765
0.000129278
0.00222212
0.000137218
0.00222686
0.000145453
0.000153991
-0.00223616
0.00014862
-0.00223116
0.000140373
0.000132417
-0.00222644
0.00223988
0.000127371
-0.00223492
0.00224513
0.000135039
0.000142984
-0.00225382
0.000137095
-0.00224833
0.000129459
-0.00224313
0.000122088
-0.000119971
-0.00223822
0.000114972
-0.000124741
-0.00223023
-0.00222198
-0.00221778
0.000117338
-0.00221382
0.000110198
0.000103311
-0.00221009
0.00222164
9.9297e-05
-0.0022177
0.00222581
0.000105943
0.000112831
-0.00223358
0.000108105
-0.0022292
0.000101479
9.50849e-05
-0.00222507
0.00223654
9.0678e-05
-0.00223222
0.00224112
9.68123e-05
0.00224597
0.000103169
0.0022511
0.000109756
0.00225652
0.000116581
0.00226223
0.000123652
0.000130975
-0.00227033
0.000124665
-0.00226442
0.000117654
0.000110884
-0.00225882
0.0022719
0.000105057
-0.00226617
0.00227793
0.000111529
0.000118231
-0.00228476
0.000111739
-0.00227868
0.00010535
-0.0022729
9.91755e-05
-9.88078e-05
-0.00226739
9.32102e-05
-0.000104349
-0.00226072
-0.0022535
-0.00224847
9.8043e-05
-0.0022437
9.19582e-05
8.60875e-05
-0.00223919
0.00225064
8.13487e-05
-0.00224598
0.00225555
8.69599e-05
9.27775e-05
-0.00226216
8.74509e-05
-0.00225718
8.18934e-05
-0.00225245
7.65329e-05
-7.59369e-05
-0.00224796
7.13641e-05
-8.04228e-05
-0.00224158
-8.47576e-05
-0.00223494
-8.89135e-05
-0.00222814
-9.28841e-05
-0.00222118
-9.66677e-05
-0.002214
-0.00220657
-0.00220327
9.02564e-05
-0.00220017
8.40663e-05
7.80859e-05
-0.00219726
0.00220724
7.49425e-05
-0.00220416
0.00221051
8.07174e-05
8.66944e-05
-0.00221751
8.29559e-05
-0.00221407
7.72024e-05
-0.00221084
7.16431e-05
-6.93586e-05
-0.00220782
6.62675e-05
-7.23032e-05
-0.00220129
-0.00219454
-0.00219199
6.67055e-05
-0.00218963
6.12799e-05
5.60132e-05
-0.00218743
0.00219609
5.36354e-05
-0.00219376
0.0021986
5.8717e-05
6.3954e-05
-0.00220499
6.10652e-05
-0.00220235
5.60253e-05
5.1137e-05
-0.00219991
0.00220842
4.85227e-05
-0.00220585
0.00221118
5.32089e-05
0.00221414
5.8042e-05
0.00221731
6.30321e-05
0.0022207
6.81889e-05
0.0022243
7.35224e-05
7.90421e-05
-0.00223093
7.49557e-05
-0.00222716
6.96772e-05
6.45783e-05
-0.00222362
0.0022335
6.08178e-05
-0.0022298
0.00223742
6.56799e-05
7.07167e-05
-0.00224371
6.63808e-05
-0.00223968
6.15762e-05
-0.00223587
5.69429e-05
-5.61213e-05
-0.00223228
5.24727e-05
-5.96496e-05
-0.00222634
-0.0022203
-0.0022172
5.48815e-05
-0.00221431
5.0265e-05
4.57909e-05
-0.00221162
0.00222007
4.29353e-05
-0.00221726
0.0022231
4.71889e-05
5.15813e-05
-0.00222892
4.81573e-05
-0.00222577
4.39881e-05
3.99568e-05
-0.00222283
0.00223136
3.68868e-05
-0.00222833
0.00223459
4.0707e-05
0.00223802
4.46669e-05
0.00224166
4.87736e-05
0.0022455
5.3034e-05
0.00224955
5.74546e-05
0.00225381
6.20412e-05
0.00225829
6.67991e-05
0.00226301
7.17329e-05
0.00226796
7.68467e-05
0.00227318
8.2144e-05
0.00227866
8.7628e-05
0.00228444
9.33018e-05
0.00229052
9.91679e-05
0.000105229
0.00230148
9.86985e-05
-0.00229506
0.00010459
0.00231178
9.76156e-05
-0.00230492
0.00231905
0.000103284
0.00232673
0.000109123
0.000115135
-0.00232961
0.000106753
-0.00232179
0.000101188
9.57833e-05
-0.00231441
0.0023239
8.81498e-05
-0.00231639
0.00233185
9.31126e-05
0.00234025
9.82225e-05
0.000103483
0.00235114
9.43366e-05
-0.00234213
9.9265e-05
0.00236263
8.94892e-05
-0.002353
0.00237277
9.40557e-05
9.87517e-05
-0.00237562
8.78082e-05
-0.00236535
8.36363e-05
-0.00235559
7.95787e-05
-8.50511e-05
-0.00234631
7.5635e-05
-0.00234385
-8.95486e-05
-0.00233518
8.07398e-05
-0.00233359
-0.00232551
8.48986e-05
8.03835e-05
-0.00231787
0.00232697
7.24902e-05
-0.00231921
7.65537e-05
0.00233752
6.80856e-05
-0.00232919
7.18044e-05
0.00235287
6.27388e-05
-0.00234395
0.00236227
6.60841e-05
0.00237217
6.95283e-05
0.00238258
7.30715e-05
0.00239352
7.67139e-05
8.04556e-05
0.00242351
6.8617e-05
-0.00241183
7.18894e-05
0.00247089
5.92031e-05
-0.00245837
0.002484
6.19637e-05
6.47927e-05
-0.0025159
5.06316e-05
-0.00250253
4.84236e-05
4.62684e-05
-0.00248977
0.00246626
3.34543e-05
-0.00245362
0.0024795
3.50113e-05
0.00249335
3.66062e-05
0.00250784
3.82393e-05
0.00252298
3.9911e-05
0.00253877
4.16218e-05
4.33725e-05
-0.00238223
2.77243e-05
-0.00236736
2.66036e-05
2.55135e-05
-0.00235312
0.00216114
-0.00214809
0.00217472
-2.44444e-05
-0.00213562
-0.00233948
-0.00232643
2.34012e-05
-0.00231397
2.23823e-05
2.13874e-05
-0.00230207
0.00211229
-0.0021014
0.00212369
-2.04165e-05
-0.00209102
-3.1935e-05
-0.00229071
-4.41658e-05
-0.00244156
-5.65107e-05
-0.0024776
-0.00244642
-6.54283e-05
-0.00243505
5.38863e-05
-0.0024007
-0.00239011
6.23234e-05
5.93023e-05
-0.00238004
0.00242422
4.88423e-05
-0.00241392
5.13301e-05
0.002466
4.01187e-05
-0.00245496
4.21159e-05
3.04533e-05
-0.00243007
-0.0022799
1.94695e-05
-2.90095e-05
-0.0022696
1.85466e-05
-0.00241913
-3.81744e-05
-0.00240873
2.76037e-05
-0.00244446
-4.64233e-05
-0.00243449
3.62836e-05
-5.63652e-05
-0.00240414
-0.00237048
-0.0023614
5.35122e-05
-5.94916e-05
-0.0023528
5.07433e-05
-0.0023355
-6.4477e-05
-0.0023275
5.63417e-05
-0.00232132
-6.85465e-05
-0.00231388
6.09764e-05
-7.59998e-05
-0.00231189
-8.33305e-05
-0.00231066
-9.05346e-05
-0.0023093
-0.00230745
-9.21134e-05
-0.00230089
8.5438e-05
-0.00229844
-9.29865e-05
-0.00229234
8.67738e-05
-0.00228898
8.74509e-05
-0.00228323
8.15934e-05
-0.00228658
0.00229471
7.56843e-05
-0.00228891
8.04892e-05
0.00230263
7.41051e-05
-0.00229636
7.86504e-05
-0.00230388
7.17436e-05
-0.0022975
6.76104e-05
-6.96903e-05
-0.00229151
6.35955e-05
-0.00229048
-7.10195e-05
-0.00228496
6.54015e-05
-7.65687e-05
-0.00228346
-8.2089e-05
-0.00228116
-0.00227779
-0.00227263
7.68981e-05
-0.00226775
7.18757e-05
6.70192e-05
-0.00226313
0.00227124
6.24005e-05
-0.00226671
0.00227605
6.69751e-05
7.1697e-05
-0.00227835
6.64912e-05
-0.00227356
6.2096e-05
5.78307e-05
-0.00226907
0.00227498
5.32513e-05
-0.00227048
0.0022798
5.71858e-05
6.12347e-05
0.00228591
5.59012e-05
-0.00228067
5.9694e-05
0.00229241
5.38891e-05
-0.00228671
0.0022985
5.73953e-05
0.00230499
6.10035e-05
6.4719e-05
-0.00230687
5.75808e-05
-0.00230027
5.42866e-05
-0.00229408
5.10893e-05
-0.00228828
4.79838e-05
-5.04798e-05
-0.00228286
4.49645e-05
-0.00228139
-5.22125e-05
-0.00227642
4.71617e-05
-0.00227579
4.86236e-05
-0.00227124
4.39298e-05
-0.00227181
0.00227781
3.91601e-05
-0.00227313
4.20252e-05
0.00228839
3.67912e-05
-0.00228324
0.00229391
3.9346e-05
0.00229981
4.19711e-05
0.00230611
4.46727e-05
0.00231282
4.74563e-05
0.00231995
5.03266e-05
5.32874e-05
0.00234466
4.54554e-05
-0.00233697
4.8058e-05
0.00238606
3.95815e-05
-0.00237773
0.00239486
4.17928e-05
4.40734e-05
-0.00242502
3.44466e-05
-0.00241605
3.26638e-05
3.09353e-05
-0.00240756
0.00238058
2.23693e-05
-0.00237217
0.00238947
2.36171e-05
0.00239885
2.49077e-05
2.62363e-05
0.0022598
1.67735e-05
-0.0022505
1.76478e-05
0.0020717
-0.00206274
0.00208112
-0.00205424
-1.5924e-05
-0.00204616
-0.00224167
-0.0022333
1.50987e-05
1.42885e-05
-0.00222536
0.0020385
-0.00203125
-1.35385e-05
-0.00202438
-2.11577e-05
-0.00221788
-2.92612e-05
-0.00236421
-3.74391e-05
-0.00239952
-0.00236986
-4.2934e-05
-0.00236243
3.53646e-05
-0.00232971
-0.00232287
4.04915e-05
3.81248e-05
-0.00231644
0.00235542
3.14124e-05
-0.00234883
3.33565e-05
0.00239194
2.60733e-05
-0.00238479
2.76409e-05
1.99865e-05
-0.00235669
-0.0022108
1.27775e-05
-1.88539e-05
-0.00220412
1.20537e-05
-0.0023496
-2.45569e-05
-0.00234293
1.77588e-05
-0.00237805
-2.95292e-05
-0.00237172
2.30892e-05
-3.58301e-05
-0.00234264
-0.00231041
-0.00230476
3.36024e-05
-0.0022995
3.1436e-05
-3.43002e-05
-0.0022946
2.93244e-05
-0.00227846
-3.63633e-05
-0.00227404
3.18664e-05
-4.07797e-05
-0.00226878
-4.51308e-05
-0.00226753
-4.94277e-05
-0.00226702
-5.36921e-05
-0.00226629
-5.79705e-05
-0.00226487
-6.23262e-05
-0.00226243
-0.00225873
-0.00225456
5.77939e-05
-0.0022506
5.34197e-05
4.92006e-05
-0.00224683
0.00225458
4.55251e-05
-0.00225097
0.00225839
4.95348e-05
5.36826e-05
-0.00226094
4.96775e-05
-0.00225725
4.57843e-05
-0.0022538
4.20105e-05
-4.16522e-05
-0.00225055
3.83546e-05
-4.51336e-05
-0.00224754
-0.00224325
-0.00223986
4.12152e-05
-0.00223664
3.74417e-05
3.3809e-05
-0.0022336
0.00224121
3.0847e-05
-0.00223828
0.00224429
3.43136e-05
3.79152e-05
-0.0022475
3.48165e-05
-0.00224463
3.13969e-05
2.80979e-05
-0.00224191
0.00224671
2.55641e-05
-0.0022442
0.0022494
2.86692e-05
0.00225229
3.18768e-05
0.00225541
3.51848e-05
0.00225878
3.85926e-05
0.0022624
4.2101e-05
4.57119e-05
-0.00226311
4.17307e-05
-0.00225949
3.84207e-05
3.51984e-05
-0.00225614
0.00225992
3.17857e-05
-0.00225655
0.00226357
3.471e-05
3.77073e-05
-0.00226476
3.36301e-05
-0.00226106
3.09566e-05
-0.00225766
2.83406e-05
-2.89333e-05
-0.00225455
2.57812e-05
-3.2062e-05
-0.00225347
-0.00225307
-0.00225024
2.90107e-05
-0.00224765
2.60446e-05
2.31653e-05
-0.00224527
0.00224807
2.08117e-05
-0.00224574
0.00225064
2.3445e-05
2.61529e-05
-0.0022517
2.32791e-05
-0.00224911
2.08365e-05
1.84567e-05
-0.00224678
0.00225411
1.60932e-05
-0.00225176
0.00225672
1.82146e-05
0.00225959
2.03844e-05
0.00226274
2.25977e-05
0.00226619
2.4852e-05
0.00226995
2.71467e-05
2.94836e-05
0.00229006
2.52388e-05
-0.00228588
2.7261e-05
0.00232638
2.25137e-05
-0.0023217
0.00233142
2.42011e-05
0.00233684
2.59288e-05
2.77029e-05
-0.00236579
2.16672e-05
-0.00236024
2.02873e-05
1.89451e-05
-0.00235506
0.00232523
1.37139e-05
-0.00232008
0.00233075
1.468e-05
0.00233665
1.56742e-05
1.66996e-05
0.00219783
1.06778e-05
-0.00219191
1.13541e-05
0.0020118
-0.00200604
0.00201791
-0.00200062
-1.00233e-05
-0.00199553
-0.00218635
-0.00218114
9.38907e-06
8.7732e-06
-0.00217627
0.00199078
-0.00198632
-8.1731e-06
-0.00198214
-1.27723e-05
-0.00217174
-1.76356e-05
-0.00231528
-0.00235025
-2.08599e-05
-0.0023458
1.6353e-05
-0.00231738
-2.32513e-05
-0.0023134
1.92328e-05
-0.00228203
2.12932e-05
-0.00227851
1.76259e-05
-0.00230977
0.00234171
1.38444e-05
-0.00233796
1.50915e-05
0.00231084
1.09464e-05
-0.00230674
1.18514e-05
-0.00216753
7.58793e-06
-0.00216363
7.01211e-06
-1.00522e-05
-0.00216006
6.44486e-06
-0.00230298
-1.26053e-05
-0.00229956
9.16297e-06
-1.60337e-05
-0.00233456
-1.93608e-05
-0.00230647
-0.0022753
-0.00227239
1.74529e-05
-0.00226975
1.55712e-05
1.37203e-05
-0.00226739
0.0023008
1.13216e-05
-0.0022984
0.00230349
1.28807e-05
1.44523e-05
-0.00233149
1.13683e-05
-0.00232874
1.01291e-05
8.87539e-06
-0.00232628
0.00229372
6.43946e-06
-0.00229128
0.00229647
7.37351e-06
8.27213e-06
0.00215679
5.31393e-06
-0.00215385
5.8811e-06
0.00197141
-0.00196839
0.00197471
0.00197828
-0.00196567
-4.7288e-06
-0.00196324
-0.0021512
4.11911e-06
-0.00214887
-0.00196111
-3.43653e-06
-0.0019593
-5.4584e-06
-0.00214683
-7.61022e-06
-0.00228911
-9.77135e-06
-0.00232411
-1.19089e-05
-0.00229626
-1.4027e-05
-0.00226527
-1.61444e-05
-0.00224965
-1.82565e-05
-0.00224468
-2.03763e-05
-0.00224363
-2.25655e-05
-0.0022431
-2.49224e-05
-0.00224187
-2.7515e-05
-0.00223934
-3.03126e-05
-0.00223551
-3.31993e-05
-0.00223074
-3.60555e-05
-0.00222551
-3.88125e-05
-0.00222011
-4.14507e-05
-0.00221466
-4.39741e-05
-0.00220914
-4.63894e-05
-0.00220348
-4.8697e-05
-0.00219764
-5.08918e-05
-0.00219161
-5.29652e-05
-0.0021854
-5.49082e-05
-0.00217902
-5.67122e-05
-0.00217249
-5.83696e-05
-0.00216582
-5.98736e-05
-0.00215901
-6.12177e-05
-0.0021521
-6.23958e-05
-0.00214507
-6.3402e-05
-0.00213796
-0.00213076
-0.00213005
5.73112e-05
-0.00212942
5.13438e-05
4.55201e-05
-0.00212886
0.00213631
4.47989e-05
-0.00213562
0.00213709
5.0528e-05
5.64005e-05
-0.00214405
5.53317e-05
-0.00214313
4.95685e-05
-0.00214231
4.39488e-05
-3.92254e-05
-0.0021416
3.84864e-05
-3.98509e-05
-0.00213503
-0.00212838
-0.00212798
3.42315e-05
-0.00212765
2.82293e-05
2.14079e-05
0.00213411
2.11065e-05
0.00213452
2.78116e-05
3.37063e-05
-0.00214099
3.30827e-05
-0.0021405
2.73135e-05
2.07468e-05
0.00214681
2.0329e-05
0.00214738
2.67354e-05
0.00214809
3.23616e-05
0.00214892
3.76357e-05
0.00214986
4.29732e-05
0.00215092
4.84695e-05
5.411e-05
-0.00215769
5.27407e-05
-0.00215649
4.72355e-05
4.18754e-05
-0.00215543
0.00216302
4.0659e-05
-0.00216183
0.00216435
4.58711e-05
5.12293e-05
-0.00217088
4.9582e-05
-0.00216943
4.43814e-05
-0.00216812
3.9328e-05
-3.56083e-05
-0.00216698
3.44371e-05
-3.66755e-05
-0.00216079
-0.00215449
-0.00215369
3.15443e-05
-0.00215303
2.60776e-05
1.98523e-05
0.00215915
1.93155e-05
0.00215989
2.53398e-05
3.0632e-05
-0.00216598
2.96261e-05
-0.00216516
2.45219e-05
1.87174e-05
0.00217105
1.80566e-05
0.00217195
2.36239e-05
0.00217304
2.85283e-05
0.00217429
3.31649e-05
0.00217571
3.78868e-05
0.00217729
4.27719e-05
4.78052e-05
-0.00218354
4.59065e-05
-0.00218185
4.1049e-05
3.63407e-05
-0.00218033
0.00218784
3.46954e-05
-0.00218622
0.00218964
3.92197e-05
4.38941e-05
-0.00219556
4.17759e-05
-0.00219366
3.72914e-05
-0.00219194
3.29575e-05
-3.03344e-05
-0.00219041
2.87864e-05
-3.17957e-05
-0.00218477
-0.00217898
-0.00217779
2.73412e-05
-0.00217681
2.26465e-05
1.73317e-05
0.00218243
1.65423e-05
0.0021835
2.1591e-05
2.60682e-05
-0.00218905
2.47137e-05
-0.00218791
2.04601e-05
1.56881e-05
0.00219322
1.47698e-05
0.00219444
1.92567e-05
0.00219587
2.32824e-05
0.00219749
2.71567e-05
0.0021993
3.11324e-05
0.00220129
3.52699e-05
3.95577e-05
-0.00220685
3.72401e-05
-0.00220476
3.31566e-05
2.9222e-05
-0.00220287
0.00221008
2.72222e-05
-0.0022081
0.00221227
3.09461e-05
3.48167e-05
-0.0022176
3.22805e-05
-0.00221531
2.86298e-05
-0.00221322
2.51239e-05
-2.36569e-05
-0.00221134
2.17747e-05
-2.5448e-05
-0.00220631
-0.00220117
-0.00219966
2.17773e-05
-0.00219837
1.79834e-05
1.37874e-05
0.00220337
1.2739e-05
0.00220473
1.66395e-05
2.01977e-05
-0.00220968
1.85371e-05
-0.00220824
1.52188e-05
1.16184e-05
0.00221303
1.04156e-05
0.00221456
1.37108e-05
0.00221632
1.67833e-05
0.0022183
1.97957e-05
0.00222049
2.29234e-05
0.00222289
2.62092e-05
2.96408e-05
-0.00222808
2.69504e-05
-0.0022256
2.37215e-05
2.0644e-05
-0.00222333
0.00223046
1.83637e-05
-0.00222818
0.0022329
2.12627e-05
2.43195e-05
-0.00223691
2.18763e-05
-0.00223463
1.89659e-05
-0.00223248
1.62129e-05
-1.56364e-05
-0.00223047
1.36348e-05
-1.77299e-05
-0.00222608
-0.00222127
-0.00221941
1.49394e-05
-0.00221779
1.21117e-05
9.12305e-06
0.00222249
7.75415e-06
0.00222418
1.04486e-05
1.30463e-05
-0.00222862
1.12065e-05
-0.00222706
8.91676e-06
6.48712e-06
0.00223089
5.44102e-06
0.00223228
7.54397e-06
0.00223394
9.55875e-06
0.00223573
1.18547e-05
0.00223764
1.43039e-05
0.00223968
1.69195e-05
1.9681e-05
-0.00224112
1.7685e-05
-0.0022393
1.51006e-05
1.26448e-05
-0.00223764
0.00224006
1.12572e-05
-0.00223866
0.00224174
1.34089e-05
1.5786e-05
-0.0022428
1.3907e-05
-0.00224126
1.18655e-05
-0.00223981
9.81457e-06
-9.12841e-06
-0.00223901
8.33425e-06
-1.0451e-05
-0.00223733
-0.00223622
-0.00223494
8.29245e-06
-0.00223393
6.54838e-06
4.96115e-06
0.00223629
5.84776e-06
0.00223661
6.24389e-06
7.58607e-06
-0.00223873
7.31781e-06
-0.00223976
7.28664e-06
8.44427e-06
0.00224813
1.354e-05
0.00224551
9.9145e-06
0.00224455
8.29332e-06
0.002245
7.88479e-06
0.00224611
8.71238e-06
0.00224777
1.02113e-05
1.20252e-05
-0.00226338
1.01464e-05
-0.00226184
8.67251e-06
7.72636e-06
-0.00226085
0.00229291
7.04099e-06
-0.00229221
0.00229442
7.1817e-06
8.31844e-06
-0.0023222
6.42303e-06
-0.00232059
5.60021e-06
-0.00231953
5.99657e-06
-9.07234e-06
-0.00231958
9.15518e-06
-8.22149e-06
-0.00229305
-0.00226117
-0.0022636
1.07286e-05
-0.00226871
1.50314e-05
2.02729e-05
0.0023031
2.75721e-05
0.00229654
2.1604e-05
1.42291e-05
-0.00232203
1.67007e-05
-0.0023278
2.73941e-05
3.19219e-05
0.00228133
3.43801e-05
0.00227983
2.89216e-05
0.00228112
1.54451e-05
0.00228324
7.06427e-06
0.00228524
4.03763e-06
0.00228712
3.74585e-06
4.46064e-06
-0.00214502
2.67592e-06
-0.00214324
1.99823e-06
1.90111e-06
-0.00214106
0.00195669
-0.00195525
0.00195782
-3.79351e-06
-0.00195292
-0.00213775
-0.00213277
1.05099e-05
-0.00212752
2.36976e-05
2.99581e-05
0.00193618
0.001947
0.000443458
0.000197015
0.0001997
-0.000445755
0.000197173
0.000168554
0.000358775
0.000362602
-9.24848e-05
-9.54251e-05
-0.000360094
-0.00069334
-0.000349091
0.0003572
0.000515712
0.000538736
-0.000761326
4.32267e-06
-0.000766575
7.90145e-06
3.50224e-05
-0.000787508
0.000821968
9.09857e-05
-0.000877933
0.000824556
5.31312e-06
3.55596e-05
-0.000962823
-0.000231984
-0.000725527
-0.000395111
-0.00128447
-0.00138974
0.000425645
-0.00102965
-7.67556e-05
0.000120307
-5.72504e-05
-2.76118e-05
0.000373934
0.000228143
0.000134022
7.07849e-05
3.84757e-05
1.82749e-05
9.09711e-06
5.86157e-06
4.52448e-06
6.08517e-06
5.6605e-06
5.97442e-06
6.3412e-06
6.77048e-06
6.96326e-06
7.3273e-06
7.35565e-06
7.66122e-06
7.83743e-06
7.88479e-06
8.1135e-06
8.21567e-06
8.29505e-06
8.24853e-06
8.38912e-06
8.40452e-06
8.39908e-06
8.37335e-06
8.32837e-06
8.26427e-06
8.18111e-06
8.07914e-06
7.95841e-06
7.8187e-06
7.5519e-06
7.5887e-06
7.17234e-06
7.05858e-06
6.70381e-06
6.54149e-06
6.2431e-06
5.80604e-06
5.66686e-06
5.0522e-06
4.725e-06
4.23354e-06
3.67513e-06
3.04243e-06
2.35088e-06
1.99351e-06
2.40256e-06
6.11164e-06
1.12043e-05
2.52597e-05
2.76579e-05
3.76782e-05
-2.6765e-06
-1.55937e-05
)
;
boundaryField
{
bottomEmptyFaces
{
type empty;
value nonuniform List<scalar> 0();
}
topEmptyFaces
{
type empty;
value nonuniform List<scalar> 0();
}
inlet
{
type calculated;
value nonuniform List<scalar>
70
(
-0.00204894
-0.00193651
-0.00232968
-0.00216787
-0.0023891
-0.00226144
-0.00230826
-0.00224868
-0.00224932
-0.00223194
-0.00222903
-0.0022234
-0.0022191
-0.00221468
-0.00221019
-0.00220563
-0.00220096
-0.00219614
-0.00219115
-0.002186
-0.00218068
-0.00217521
-0.00216959
-0.00216384
-0.00215797
-0.00215198
-0.00214589
-0.00213971
-0.00213345
-0.00212711
-0.00212072
-0.00211428
-0.00210781
-0.00210132
-0.00209482
-0.00208834
-0.00208188
-0.00207545
-0.00206908
-0.00206278
-0.00205656
-0.00205043
-0.00204441
-0.00203852
-0.00203277
-0.00202718
-0.00202176
-0.0020165
-0.0020114
-0.00200642
-0.0019995
-0.00199162
-0.00197591
-0.00195766
-0.00190574
-0.00187227
-0.00174411
-0.00170284
-0.00150805
-0.00127663
-0.0012726
-0.00105517
-0.00148072
-0.00108501
-0.000848859
-0.000878314
-0.00183134
-0.000204726
-0.000249348
-0.000300676
)
;
}
outlet
{
type calculated;
value nonuniform List<scalar>
34
(
0.0044678
0.00422247
0.00507944
0.00472617
0.00520777
0.00492867
0.00502956
0.00489883
0.00490072
0.00486582
0.00486455
0.00485738
0.00485092
0.00483885
0.00480627
0.00476558
0.00462788
0.00453911
0.00418045
0.00405894
0.00348782
0.00337933
0.00270029
0.00276526
0.00214596
0.00187926
0.00184979
0.00158155
0.00113762
0.00110614
0.00399337
0.000174964
0.00026079
0.000343988
)
;
}
walls
{
type calculated;
value uniform 0;
}
rightWall
{
type calculated;
value nonuniform List<scalar>
30
(
0.000272911
0.00028949
0.000372811
0.000395159
0.000467499
0.000490756
0.000534373
0.000549459
0.0005699
0.000576692
0.000582077
0.000581521
0.000580946
0.00057728
0.000573692
0.000571193
0.000566095
0.000569475
0.000552133
0.000563316
0.000507611
0.000525985
0.000428
0.000428904
4.39923e-05
6.8032e-05
8.86317e-05
7.76483e-05
0.000111402
0.000142779
)
;
}
symmetryLine
{
type symmetryPlane;
value uniform 0;
}
}
// ************************************************************************* //
| [
"mhoeper3234@gmail.com"
] | mhoeper3234@gmail.com | |
5cd1ede383e8f10a10ab0d9d8200af15f1f39f0d | e5f77ab381f5a6b2e655eaaefe05a3cf6d0a96e8 | /11838.cpp | cd29c7d5859a3ac9ab89f7d7997aed94b3ddbf0b | [] | no_license | pspencil/NWERC-Prep | ae699dca70c74fcca73d9b1482b885745c390190 | 5a9f141397018241da7dd33e04f1ef0129f77250 | refs/heads/master | 2021-06-11T13:02:43.133207 | 2016-11-18T10:47:23 | 2016-11-18T10:47:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,420 | cpp | //https://uva.onlinejudge.org/external/118/11838.pdf
#include <cstdio>
#include <vector>
#include <algorithm>
#include <map>
#include <string>
#include <iostream>
#include <cstring>
using namespace std;
#define debug(A,B) {for(int index=0;index<B;index++)printf("%d ",A[index]);printf("\n");}
vector<int> adj[100001];
int num[100001],low[100001],visited[100001];
vector<int> S;
int counter;
int n,m;
int total;
void scc(int s){
low[s] = num[s] = counter++;
S.push_back(s);
visited[s] = 1;
for(int i:adj[s]){
if(num[i]==-1)
scc(i);
if(visited[i])
low[s]=min(low[s],low[i]);
// printf("inner %d %d %d\n",s,i,low[s]);
}
// printf("%d %d %d\n",s,low[s],num[s]);
if(low[s] == num[s]){
total++;
while(1){
int v = S.back();S.pop_back();visited[v]=0;
low[v]=num[s];
if(v == s) break;
}
}
}
int main(){
while(scanf("%d %d",&n,&m),n+m){
for(int i=1;i<=n;i++) adj[i].clear();
memset(num,-1,sizeof(num));
memset(low,-1,sizeof(low));
memset(visited,0,sizeof(visited));
counter = 0;
S.clear();
total = 0;
for(int i=0;i<m;i++){
int a,b,c;
scanf("%d %d %d",&a,&b,&c);
adj[a].push_back(b);
if(c==2)
adj[b].push_back(a);
// printf("%d %d %d %d %d\n",i,m,a,b,c);
}
for(int i=1;i<=n;i++)
if(num[i]==-1)
scc(i);
if(total > 1) printf("0\n");
else printf("1\n");
}
}
| [
"pan.song@dhs.sg"
] | pan.song@dhs.sg |
26b9eb7fcef1f3566244eaa6a9a1764cc7ea17ac | 37c52162994d595cd0592dc2a5b73b91d61d6313 | /include/Awl/boost/mpl/find.hpp | 1185b057b69f28e8c40154665f266a2ed63d2bb7 | [
"Zlib",
"BSL-1.0"
] | permissive | Yalir/Awl | 47db2b5976ab9f584044287ac1ef36860a3e944e | 92ef5996d8933bf92ceb37357d8cd2b169cb788e | refs/heads/master | 2020-04-05T04:27:16.143511 | 2013-04-12T11:36:51 | 2013-04-12T11:36:51 | 2,344,212 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 960 | hpp |
#ifndef BOOST_MPL_FIND_HPP_INCLUDED
#define BOOST_MPL_FIND_HPP_INCLUDED
// Copyright Aleksey Gurtovoy 2000-2002
//
// Distributed under 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/libs/mpl for documentation.
// $Id: find.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
// $Date: 2008-10-11 02:19:02 -0400 (Sat, 11 Oct 2008) $
// $Revision: 49267 $
#include <Awl/boost/mpl/find_if.hpp>
#include <Awl/boost/mpl/same_as.hpp>
#include <Awl/boost/mpl/aux_/na_spec.hpp>
#include <Awl/boost/mpl/aux_/lambda_support.hpp>
namespace boost { namespace mpl {
template<
typename BOOST_MPL_AUX_NA_PARAM(Sequence)
, typename BOOST_MPL_AUX_NA_PARAM(T)
>
struct find
: find_if< Sequence,same_as<T> >
{
BOOST_MPL_AUX_LAMBDA_SUPPORT(2,find,(Sequence,T))
};
BOOST_MPL_AUX_NA_SPEC(2, find)
}}
#endif // BOOST_MPL_FIND_HPP_INCLUDED
| [
"soltic.lucas@gmail.com"
] | soltic.lucas@gmail.com |
bc6f5b3c2e4ca1c7e068f0322ba8dbc45c4ff437 | 77b9dcb5e5e1c080d8fb894c97113668fb6516f1 | /Compilador/Source.cpp | 331da0dbddf7363768a77ba0174a7d34a88bfe03 | [
"MIT"
] | permissive | MartinX122/CompiladorC- | 3f1f925a494e1cd779cdc8379b3147a79bd60ce8 | 89873915b7b235a81a65fea3523aad2e65045016 | refs/heads/master | 2022-04-24T04:38:20.177235 | 2020-04-28T23:34:27 | 2020-04-28T23:34:27 | 189,281,356 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 379 | cpp | /*
PROYECTO FINAL
COMPILADORES
*/
#include "PantallaPrincipal.h"
[System::STAThreadAttribute]
void Main(array<System::String^>^ args)
{
System::Windows::Forms::Application::EnableVisualStyles();
System::Windows::Forms::Application::SetCompatibleTextRenderingDefault(false);
Compilador::PantallaPrincipal Dialog;
System::Windows::Forms::Application::Run(% Dialog);
}
| [
"hector.ruiz@grupolg.mx"
] | hector.ruiz@grupolg.mx |
e71152d789b6c41b4d977a808af374654ec60846 | da9ef2b5e869e36bb9c31403682621c95be1e9c8 | /lab/Lab032918/Savitch_9thEd_Chap4_Prob7_WeightLbs/main.cpp | 2e9951bdba375ddb679b00f8b502b48c05e658a2 | [] | no_license | ja2712164/Pass_Suff | 9678e1dc263b80f033cb0c9e5c3408a2c591dc6f | ca8807e5c708207c153251c3120487727341264a | refs/heads/master | 2021-09-14T08:55:29.083330 | 2018-05-10T19:48:36 | 2018-05-10T19:48:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,249 | cpp | /*
* File: main.cpp
* Author: Jonathan Acosta
* Created on March 29, 2018, 12:05 AM
* Purpose: MY attraction to the earth
*/
//system Libraries
#include <iostream> //I/O Library-> cout, endl
#include <iomanip>
using namespace std; //namespace I/O stream library created
//User Libraries
//Global Constants
//Math, Physics, Science, Conversions, 2-D Array
const float GRAVITY=6.673e-8f; //cm^3/g/sec^2
const float CMMTRS=0.01f;//Centimeters to Meters
const float MTRSFT=3.281f;//Meters to feet
const float LBSLUG=32.174f;//Pounds per Slugs
//Function Prototypes
//Execution Begins Here!
int main(int argc, char** argv) {
//Declare Variables
float myMass,msEarth,rEarth,myWt,myWtCnv;
//Initial Variables
myMass=6;//6 slugs * Conversion
myWtCnv=myMass*LBSLUG;
msEarth=5.972e27f; //grams
rEarth=6.371e6f; //meters
//Map/Process Inputs to Outputs
myWt=GRAVITY*CMMTRS*CMMTRS*CMMTRS*myMass*msEarth*MTRSFT*MTRSFT*MTRSFT
/(rEarth*rEarth*MTRSFT*MTRSFT);
//Display Outputs
//Output my Weight
cout<<fixed<<setprecision(0);
cout<<myMass<<" slugs = "<<myWt<<" lbs"<<endl;
cout<<myMass<<" slugs = "<<myWtCnv<<" lbs"<<endl;
//Exit Program!
return 0;
}
| [
"Gazelemacosta@gmail.com"
] | Gazelemacosta@gmail.com |
11eb5da6373258c08d32980deb277ffa01d38a2e | 39e3f0690f47e2fdb7180eaced55035ea1a71ef2 | /rfid.cpp | 713a4f32862a681f489dc05ce41ca0820af5cabf | [] | no_license | BenjaminSN/projetSN | 0e73380b4f266be3e5e5bfc96efb0ee90a8d0649 | c40eef28005027c3cfe1fd6834a753825030efdc | refs/heads/master | 2020-03-28T05:32:47.314675 | 2018-10-01T08:40:09 | 2018-10-01T08:40:09 | 147,783,029 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20 | cpp |
#include "keypad.h" | [
"btss17bcherp@eleve-irup.com"
] | btss17bcherp@eleve-irup.com |
045f1274843863a96c15b70948ec143e2d785f50 | 7c9731476b6cb7daaf1d23a9308e3d270e5d403b | /command.cpp | c1b6686ac869a3d872f1d9dd2cd2ac0c7a80f054 | [] | no_license | danilchenko-andrey/smart-photo-box | 34c462a183daebadd1fc9f957150aa59bb30e058 | e6c8027dd9ad19b584d848af62881663f78df626 | refs/heads/master | 2020-03-29T10:16:25.007393 | 2012-11-18T20:02:41 | 2012-11-18T20:02:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 246 | cpp | #include <command.h>
#include <stdexcept>
using std::runtime_error;
smartPhotoBox::CameraHolder::CameraHolder()
{
gphotoContext = gp_context_new();
if (!photoContext) {
throw new runtime_error("Failed to initialize gphoto2 context");
}
} | [
"danilchenko.andrey@gmail.com"
] | danilchenko.andrey@gmail.com |
5566fc972f3d740e042d7bd816696b5b734904e7 | 35d2dfe3dc3915c0888629a801d647d54273cffe | /Word Search II.cpp | 39bc34460c07825a586b9eb9791ac12275a88701 | [] | no_license | JalanshMunshi/LeetCodeSubmissions | 0fe7db831aaa2f720d412787d45ec1b3de23be73 | 733409ca80d9a9969e9ad0697a3b85bc6c5c216f | refs/heads/master | 2022-12-26T09:48:53.970590 | 2020-10-01T09:36:16 | 2020-10-01T09:36:16 | 262,956,757 | 0 | 0 | null | 2020-10-01T09:36:18 | 2020-05-11T06:24:21 | C++ | UTF-8 | C++ | false | false | 1,897 | cpp | class Solution {
private:
struct TrieNode {
unordered_map<char, TrieNode*> children;
string word;
bool isWord;
TrieNode(): isWord(false) {}
};
TrieNode* buildTrie(vector<string> words)
{
TrieNode *root = new TrieNode();
for(string s : words)
{
TrieNode *curr = root;
for(char c : s)
{
if(curr->children.find(c) == curr->children.end())
curr->children.insert({c, new TrieNode});
curr = curr->children[c];
}
curr->isWord = true;
curr->word = s;
}
return root;
}
void dfs(vector<vector<char>> &board, int i, int j, TrieNode *root, set<string> &foundWords)
{
// Base condition
if(i < 0 || i >= board.size()
|| j < 0 || j >= board[0].size()
|| root->children.find(board[i][j]) == root->children.end())
return;
root = root->children[board[i][j]];
if(root->isWord)
foundWords.insert(root->word);
char c = board[i][j];
board[i][j] = '*';
// Recursively call the adjacent coordinates
dfs(board, i-1, j, root, foundWords);
dfs(board, i+1, j, root, foundWords);
dfs(board, i, j-1, root, foundWords);
dfs(board, i, j+1, root, foundWords);
board[i][j] = c;
}
public:
vector<string> findWords(vector<vector<char>>& board, vector<string>& words) {
TrieNode *root = buildTrie(words);
int n = board.size(), m = board[0].size();
set<string> foundWords;
for(int i=0; i<n; i++)
for(int j=0; j<m; j++)
dfs(board, i, j, root, foundWords);
vector<string> ans;
for(string s : foundWords)
ans.push_back(s);
return ans;
}
}; | [
"jalansh.munshi1366@gmail.com"
] | jalansh.munshi1366@gmail.com |
7fbb45850f3ee6138151898f77d9e1252cf1d41a | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/git/new_hunk_1522.cpp | fb3021386ebc8fc13dd78addeaeb9a09d2b2c9f9 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 281 | cpp | if (signed_add_overflows(consumed_bytes, bytes))
die("pack too large for current definition of off_t");
consumed_bytes += bytes;
if (max_input_size && consumed_bytes > max_input_size)
die(_("pack exceeds maximum allowed size"));
}
static void *get_data(unsigned long size)
| [
"993273596@qq.com"
] | 993273596@qq.com |
d46664d9a076caa98b523642efcb9625514729c2 | 121fbaaddc9999c0c56deb3f0c9ec32a155c8466 | /extern/glow/src/glow/objects/Program.Uniforms.cc | 79f7b948c41143921ba52bdd8670a33a37a3c334 | [
"MIT"
] | permissive | huzjkevin/portal_maze_zgl | 6fc9128793eac545473fe15c51f2e15199740b0d | efb32b1c3430f20638c1401095999ecb4d0af5aa | refs/heads/master | 2023-06-15T02:56:56.066983 | 2021-07-08T15:02:30 | 2021-07-08T15:02:30 | 384,133,404 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,832 | cc | #include "Program.hh"
#include "AtomicCounterBuffer.hh"
#include "Sampler.hh"
#include "ShaderStorageBuffer.hh"
#include "Texture.hh"
#include "UniformBuffer.hh"
#include <glow/glow.hh>
#include <glow/limits.hh>
#include <glow/util/UniformState.hh>
#include <glow/common/runtime_assert.hh>
using namespace glow;
void UsedProgram::setUniform(const std::string& name, int count, const GLfloat* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
glUniform1fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT), count, values);
}
void UsedProgram::setTexture(const std::string& name, const SharedTexture& tex, SharedSampler const& sampler)
{
if (!isCurrent())
return;
checkValidGLOW();
// get unit
auto unit = program->mTextureUnitMapping.getOrAddLocation(name);
// ensure enough unit entries
while (program->mTextures.size() <= unit)
{
program->mTextures.push_back(nullptr);
program->mSamplers.push_back(nullptr);
}
// set unit entries
program->mTextures[unit] = tex;
program->mSamplers[unit] = sampler;
// bind or unbind texture
if (tex)
{
// bind texture to unit
glActiveTexture(GL_TEXTURE0 + unit);
glBindTexture(tex->getTarget(), tex->getObjectName());
// safety net: activate different unit
glActiveTexture(GL_TEXTURE0 + limits::maxCombinedTextureImageUnits - 1);
// update shader binding
glUniform1i(program->useUniformLocationAndVerify(name, 1, tex->getUniformType()), unit);
}
else // nullptr
{
// update shader binding
glUniform1i(program->getUniformLocation(name), limits::maxCombinedTextureImageUnits - 1);
}
// bind or unbind sampler
glBindSampler(unit, sampler ? sampler->getObjectName() : 0);
}
void UsedProgram::setImage(int bindingLocation, const SharedTexture& tex, GLenum usage, int mipmapLevel, int layer)
{
GLOW_RUNTIME_ASSERT(tex->isStorageImmutable(), "Texture has to be storage immutable for image binding", return );
checkValidGLOW();
// TODO: format handling
// TODO: slicing
glBindImageTexture(bindingLocation, tex->getObjectName(), mipmapLevel, GL_TRUE, layer, usage, tex->getInternalFormat());
}
void UsedProgram::setUniform(const std::string& name, int count, const bool* values) const
{
std::vector<int32_t> tmp(count);
for (auto i = 0; i < count; ++i)
tmp[i] = (int)values[i];
setUniformBool(name, (int)tmp.size(), tmp.data());
}
void UsedProgram::setUniform(const std::string& name, int count, const int32_t* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
glUniform1iv(program->useUniformLocationAndVerify(name, count, GL_INT), count, values);
}
void UsedProgram::setUniformIntInternal(const std::string& name, int count, const int32_t* values, GLenum uniformType) const
{
if (!isCurrent())
return;
checkValidGLOW();
glUniform1iv(program->useUniformLocationAndVerify(name, count, uniformType), count, values);
}
void UsedProgram::setUniform(const std::string& name, int count, const uint32_t* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
glUniform1uiv(program->useUniformLocationAndVerify(name, count, GL_UNSIGNED_INT), count, values);
}
void UsedProgram::setUniformBool(const std::string& name, int count, const int32_t* values) const
{
checkValidGLOW();
glUniform1iv(program->useUniformLocationAndVerify(name, count, GL_BOOL), count, values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::vec2* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::vec2) == 2 * sizeof(GLfloat), "glm size check");
glUniform2fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_VEC2), count, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::vec3* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::vec3) == 3 * sizeof(GLfloat), "glm size check");
glUniform3fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_VEC3), count, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::vec4* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::vec4) == 4 * sizeof(GLfloat), "glm size check");
glUniform4fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_VEC4), count, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::ivec2* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::ivec2) == 2 * sizeof(GLint), "glm size check");
glUniform2iv(program->useUniformLocationAndVerify(name, count, GL_INT_VEC2), count, (GLint*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::ivec3* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::ivec3) == 3 * sizeof(GLint), "glm size check");
glUniform3iv(program->useUniformLocationAndVerify(name, count, GL_INT_VEC3), count, (GLint*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::ivec4* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::ivec4) == 4 * sizeof(GLint), "glm size check");
glUniform4iv(program->useUniformLocationAndVerify(name, count, GL_INT_VEC4), count, (GLint*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::uvec2* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::uvec2) == 2 * sizeof(GLuint), "glm size check");
glUniform2uiv(program->useUniformLocationAndVerify(name, count, GL_UNSIGNED_INT_VEC2), count, (GLuint*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::uvec3* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::uvec3) == 3 * sizeof(GLuint), "glm size check");
glUniform3uiv(program->useUniformLocationAndVerify(name, count, GL_UNSIGNED_INT_VEC3), count, (GLuint*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::uvec4* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::uvec4) == 4 * sizeof(GLuint), "glm size check");
glUniform4uiv(program->useUniformLocationAndVerify(name, count, GL_UNSIGNED_INT_VEC4), count, (GLuint*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::bvec2* values) const
{
if (!isCurrent())
return;
std::vector<glm::ivec2> tmp(count);
for (auto i = 0; i < count; ++i)
tmp[i] = (glm::ivec2)values[i];
checkValidGLOW();
static_assert(sizeof(glm::ivec2) == 2 * sizeof(GLint), "glm size check");
glUniform2iv(program->useUniformLocationAndVerify(name, count, GL_BOOL_VEC2), count, (GLint*)tmp.data());
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::bvec3* values) const
{
if (!isCurrent())
return;
std::vector<glm::ivec3> tmp(count);
for (auto i = 0; i < count; ++i)
tmp[i] = (glm::ivec3)values[i];
checkValidGLOW();
static_assert(sizeof(glm::ivec3) == 3 * sizeof(GLint), "glm size check");
glUniform3iv(program->useUniformLocationAndVerify(name, count, GL_BOOL_VEC3), count, (GLint*)tmp.data());
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::bvec4* values) const
{
if (!isCurrent())
return;
std::vector<glm::ivec4> tmp(count);
for (auto i = 0; i < count; ++i)
tmp[i] = (glm::ivec4)values[i];
checkValidGLOW();
static_assert(sizeof(glm::ivec4) == 4 * sizeof(GLint), "glm size check");
glUniform4iv(program->useUniformLocationAndVerify(name, count, GL_BOOL_VEC4), count, (GLint*)tmp.data());
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::mat2x2* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::mat2x2) == 2 * 2 * sizeof(GLfloat), "glm size check");
glUniformMatrix2fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_MAT2), count, GL_FALSE, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::mat3x3* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::mat3x3) == 3 * 3 * sizeof(GLfloat), "glm size check");
glUniformMatrix3fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_MAT3), count, GL_FALSE, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::mat4x4* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::mat4x4) == 4 * 4 * sizeof(GLfloat), "glm size check");
glUniformMatrix4fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_MAT4), count, GL_FALSE, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::mat2x3* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::mat2x3) == 2 * 3 * sizeof(GLfloat), "glm size check");
glUniformMatrix2x3fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_MAT2x3), count, GL_FALSE, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::mat2x4* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::mat2x4) == 2 * 4 * sizeof(GLfloat), "glm size check");
glUniformMatrix2x4fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_MAT2x4), count, GL_FALSE, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::mat3x2* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::mat3x2) == 3 * 2 * sizeof(GLfloat), "glm size check");
glUniformMatrix3x2fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_MAT3x2), count, GL_FALSE, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::mat3x4* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::mat3x4) == 3 * 4 * sizeof(GLfloat), "glm size check");
glUniformMatrix3x4fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_MAT3x4), count, GL_FALSE, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::mat4x2* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::mat4x2) == 4 * 2 * sizeof(GLfloat), "glm size check");
glUniformMatrix4x2fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_MAT4x2), count, GL_FALSE, (GLfloat*)values);
}
void UsedProgram::setUniform(const std::string& name, int count, const glm::mat4x3* values) const
{
if (!isCurrent())
return;
checkValidGLOW();
static_assert(sizeof(glm::mat4x3) == 4 * 3 * sizeof(GLfloat), "glm size check");
glUniformMatrix4x3fv(program->useUniformLocationAndVerify(name, count, GL_FLOAT_MAT4x3), count, GL_FALSE, (GLfloat*)values);
}
void UsedProgram::setUniforms(const SharedUniformState& state)
{
if (!isCurrent())
return;
state->restore();
}
void UsedProgram::setUniform(const std::string& name, GLenum uniformType, GLint size, void const* data)
{
switch (uniformType)
{
// floats
case GL_FLOAT:
setUniform(name, size, (float const*)data);
break;
case GL_FLOAT_VEC2:
setUniform(name, size, (glm::vec2 const*)data);
break;
case GL_FLOAT_VEC3:
setUniform(name, size, (glm::vec3 const*)data);
break;
case GL_FLOAT_VEC4:
setUniform(name, size, (glm::vec4 const*)data);
break;
case GL_FLOAT_MAT2:
setUniform(name, size, (glm::mat2 const*)data);
break;
case GL_FLOAT_MAT3:
setUniform(name, size, (glm::mat3 const*)data);
break;
case GL_FLOAT_MAT4:
setUniform(name, size, (glm::mat4 const*)data);
break;
case GL_FLOAT_MAT2x3:
setUniform(name, size, (glm::mat2x3 const*)data);
break;
case GL_FLOAT_MAT2x4:
setUniform(name, size, (glm::mat2x4 const*)data);
break;
case GL_FLOAT_MAT3x2:
setUniform(name, size, (glm::mat3x2 const*)data);
break;
case GL_FLOAT_MAT3x4:
setUniform(name, size, (glm::mat3x4 const*)data);
break;
case GL_FLOAT_MAT4x2:
setUniform(name, size, (glm::mat4x2 const*)data);
break;
case GL_FLOAT_MAT4x3:
setUniform(name, size, (glm::mat4x3 const*)data);
break;
// doubles
/* MAYBE some day
case GL_DOUBLE:
setUniform(name, size, (double const*)data);
break;
case GL_DOUBLE_VEC2:
setUniform(name, size, (glm::dvec2 const*)data);
break;
case GL_DOUBLE_VEC3:
setUniform(name, size, (glm::dvec3 const*)data);
break;
case GL_DOUBLE_VEC4:
setUniform(name, size, (glm::dvec4 const*)data);
break;
case GL_DOUBLE_MAT2:
setUniform(name, size, (glm::dmat2 const*)data);
break;
case GL_DOUBLE_MAT3:
setUniform(name, size, (glm::dmat3 const*)data);
break;
case GL_DOUBLE_MAT4:
setUniform(name, size, (glm::dmat4 const*)data);
break;
case GL_DOUBLE_MAT2x3:
setUniform(name, size, (glm::dmat2x3 const*)data);
break;
case GL_DOUBLE_MAT2x4:
setUniform(name, size, (glm::dmat2x4 const*)data);
break;
case GL_DOUBLE_MAT3x2:
setUniform(name, size, (glm::dmat3x2 const*)data);
break;
case GL_DOUBLE_MAT3x4:
setUniform(name, size, (glm::dmat3x4 const*)data);
break;
case GL_DOUBLE_MAT4x2:
setUniform(name, size, (glm::dmat4x2 const*)data);
break;
case GL_DOUBLE_MAT4x3:
setUniform(name, size, (glm::dmat4x3 const*)data);
break;
*/
// uint
case GL_UNSIGNED_INT:
case GL_UNSIGNED_INT_ATOMIC_COUNTER:
setUniform(name, size, (uint32_t const*)data);
break;
case GL_UNSIGNED_INT_VEC2:
setUniform(name, size, (glm::uvec2 const*)data);
break;
case GL_UNSIGNED_INT_VEC3:
setUniform(name, size, (glm::uvec3 const*)data);
break;
case GL_UNSIGNED_INT_VEC4:
setUniform(name, size, (glm::uvec4 const*)data);
break;
// int
case GL_INT:
setUniform(name, size, (int32_t const*)data);
break;
case GL_INT_VEC2:
setUniform(name, size, (glm::ivec2 const*)data);
break;
case GL_INT_VEC3:
setUniform(name, size, (glm::ivec3 const*)data);
break;
case GL_INT_VEC4:
setUniform(name, size, (glm::ivec4 const*)data);
break;
// bool
case GL_BOOL:
setUniformIntInternal(name, size, (int32_t const*)data, GL_BOOL);
break;
case GL_BOOL_VEC2:
setUniform(name, size, (glm::ivec2 const*)data);
break;
case GL_BOOL_VEC3:
setUniform(name, size, (glm::ivec3 const*)data);
break;
case GL_BOOL_VEC4:
setUniform(name, size, (glm::ivec4 const*)data);
break;
// sampler
case GL_SAMPLER_1D:
case GL_SAMPLER_2D:
case GL_SAMPLER_3D:
case GL_SAMPLER_CUBE:
case GL_SAMPLER_1D_SHADOW:
case GL_SAMPLER_2D_SHADOW:
case GL_SAMPLER_1D_ARRAY:
case GL_SAMPLER_2D_ARRAY:
case GL_SAMPLER_1D_ARRAY_SHADOW:
case GL_SAMPLER_2D_ARRAY_SHADOW:
case GL_SAMPLER_2D_MULTISAMPLE:
case GL_SAMPLER_2D_MULTISAMPLE_ARRAY:
case GL_SAMPLER_CUBE_SHADOW:
case GL_SAMPLER_BUFFER:
case GL_SAMPLER_2D_RECT:
case GL_SAMPLER_2D_RECT_SHADOW:
case GL_INT_SAMPLER_1D:
case GL_INT_SAMPLER_2D:
case GL_INT_SAMPLER_3D:
case GL_INT_SAMPLER_CUBE:
case GL_INT_SAMPLER_1D_ARRAY:
case GL_INT_SAMPLER_2D_ARRAY:
case GL_INT_SAMPLER_2D_MULTISAMPLE:
case GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY:
case GL_INT_SAMPLER_BUFFER:
case GL_INT_SAMPLER_2D_RECT:
case GL_UNSIGNED_INT_SAMPLER_1D:
case GL_UNSIGNED_INT_SAMPLER_2D:
case GL_UNSIGNED_INT_SAMPLER_3D:
case GL_UNSIGNED_INT_SAMPLER_CUBE:
case GL_UNSIGNED_INT_SAMPLER_1D_ARRAY:
case GL_UNSIGNED_INT_SAMPLER_2D_ARRAY:
case GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE:
case GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY:
case GL_UNSIGNED_INT_SAMPLER_BUFFER:
case GL_UNSIGNED_INT_SAMPLER_2D_RECT:
// images
case GL_IMAGE_1D:
case GL_IMAGE_2D:
case GL_IMAGE_3D:
case GL_IMAGE_CUBE:
case GL_IMAGE_1D_ARRAY:
case GL_IMAGE_2D_ARRAY:
case GL_IMAGE_2D_MULTISAMPLE:
case GL_IMAGE_2D_MULTISAMPLE_ARRAY:
case GL_IMAGE_BUFFER:
case GL_IMAGE_2D_RECT:
case GL_INT_IMAGE_1D:
case GL_INT_IMAGE_2D:
case GL_INT_IMAGE_3D:
case GL_INT_IMAGE_CUBE:
case GL_INT_IMAGE_1D_ARRAY:
case GL_INT_IMAGE_2D_ARRAY:
case GL_INT_IMAGE_2D_MULTISAMPLE:
case GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY:
case GL_INT_IMAGE_BUFFER:
case GL_INT_IMAGE_2D_RECT:
case GL_UNSIGNED_INT_IMAGE_1D:
case GL_UNSIGNED_INT_IMAGE_2D:
case GL_UNSIGNED_INT_IMAGE_3D:
case GL_UNSIGNED_INT_IMAGE_CUBE:
case GL_UNSIGNED_INT_IMAGE_1D_ARRAY:
case GL_UNSIGNED_INT_IMAGE_2D_ARRAY:
case GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE:
case GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY:
case GL_UNSIGNED_INT_IMAGE_BUFFER:
case GL_UNSIGNED_INT_IMAGE_2D_RECT:
setUniformIntInternal(name, size, (int32_t const*)data, uniformType);
break;
default:
error() << "Uniform type not implemented: " << uniformType;
break;
}
}
void Program::setUniformBuffer(const std::string& bufferName, const SharedUniformBuffer& buffer)
{
checkValidGLOW();
auto loc = mUniformBufferMapping.getOrAddLocation(bufferName);
auto idx = glGetUniformBlockIndex(mObjectName, bufferName.c_str());
auto isNew = !mUniformBuffers.count(bufferName);
mUniformBuffers[bufferName] = buffer;
if (idx == GL_INVALID_INDEX)
return; // not active
glUniformBlockBinding(mObjectName, idx, loc);
if (getCurrentProgram() && getCurrentProgram()->program == this)
glBindBufferBase(GL_UNIFORM_BUFFER, loc, buffer ? buffer->getObjectName() : 0);
if (isNew)
verifyUniformBuffer(bufferName, buffer);
}
void Program::setShaderStorageBuffer(const std::string& bufferName, const SharedShaderStorageBuffer& buffer)
{
checkValidGLOW();
auto loc = mShaderStorageBufferMapping.getOrAddLocation(bufferName);
auto idx = glGetProgramResourceIndex(mObjectName, GL_SHADER_STORAGE_BLOCK, bufferName.c_str());
mShaderStorageBuffers[bufferName] = buffer;
if (idx == GL_INVALID_INDEX)
return; // not active
glShaderStorageBlockBinding(mObjectName, idx, loc);
if (getCurrentProgram() && getCurrentProgram()->program == this)
glBindBufferBase(GL_SHADER_STORAGE_BUFFER, loc, buffer ? buffer->getObjectName() : 0);
}
void Program::setAtomicCounterBuffer(int bindingPoint, const SharedAtomicCounterBuffer& buffer)
{
checkValidGLOW();
mAtomicCounterBuffers[bindingPoint] = buffer;
if (getCurrentProgram() && getCurrentProgram()->program == this)
glBindBufferBase(GL_ATOMIC_COUNTER_BUFFER, bindingPoint, buffer ? buffer->getObjectName() : 0);
}
bool Program::verifyUniformBuffer(const std::string& bufferName, const SharedUniformBuffer& buffer)
{
if (buffer->getVerificationOffsets().empty())
return true; // nothing to verify
checkValidGLOW();
auto blockIdx = glGetUniformBlockIndex(mObjectName, bufferName.c_str());
if (blockIdx == GL_INVALID_INDEX)
return true; // not active
// get nr of uniforms
GLint uniformCnt = -1;
glGetActiveUniformBlockiv(mObjectName, blockIdx, GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS, &uniformCnt);
// get uniform indices
std::vector<GLint> uniformIndices;
uniformIndices.resize(uniformCnt);
glGetActiveUniformBlockiv(mObjectName, blockIdx, GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES, uniformIndices.data());
// get offsets of uniforms
std::vector<GLint> uniformOffsets;
uniformOffsets.resize(uniformCnt);
glGetActiveUniformsiv(mObjectName, uniformCnt, (const GLuint*)uniformIndices.data(), GL_UNIFORM_OFFSET, uniformOffsets.data());
// get name max length
GLint nameMaxLength;
glGetProgramiv(mObjectName, GL_ACTIVE_UNIFORM_MAX_LENGTH, &nameMaxLength);
// get names
std::vector<char> nameBuffer;
nameBuffer.resize(nameMaxLength + 1);
std::vector<std::string> uniformNames;
for (auto uIdx : uniformIndices)
{
glGetActiveUniformName(mObjectName, uIdx, (GLsizei)nameBuffer.size(), nullptr, nameBuffer.data());
uniformNames.push_back(nameBuffer.data());
}
// actual verification
auto failure = false;
auto const& vOffsets = buffer->getVerificationOffsets();
for (auto i = 0u; i < uniformIndices.size(); ++i)
{
auto gpuOffset = uniformOffsets[i];
auto const& name = uniformNames[i];
if (vOffsets.count(name))
{
auto cpuOffset = (int)vOffsets.at(name);
// mismatch
if (cpuOffset != gpuOffset)
{
if (!failure)
error() << "UniformBuffer Verification Failure for `" << bufferName << "':";
failure = true;
error() << " * Uniform `" << name << "': CPU@" << cpuOffset << " vs GPU@" << gpuOffset;
}
}
}
return !failure;
}
| [
"zhengjiang.hu@rwth-aachen.de"
] | zhengjiang.hu@rwth-aachen.de |
c5ab7ad9c05f0cf782bd373a32b466dd195bd70e | 8567438779e6af0754620a25d379c348e4cd5a5d | /third_party/WebKit/Source/core/workers/AbstractWorker.h | 13a8cd76b8d6d3665467316da074fd37d0d58c6a | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | thngkaiyuan/chromium | c389ac4b50ccba28ee077cbf6115c41b547955ae | dab56a4a71f87f64ecc0044e97b4a8f247787a68 | refs/heads/master | 2022-11-10T02:50:29.326119 | 2017-04-08T12:28:57 | 2017-04-08T12:28:57 | 84,073,924 | 0 | 1 | BSD-3-Clause | 2022-10-25T19:47:15 | 2017-03-06T13:04:15 | null | UTF-8 | C++ | false | false | 2,681 | h | /*
* Copyright (C) 2010 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.
*/
#ifndef AbstractWorker_h
#define AbstractWorker_h
#include "core/CoreExport.h"
#include "core/dom/ContextLifecycleObserver.h"
#include "core/events/EventListener.h"
#include "core/events/EventTarget.h"
#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
namespace blink {
class ExceptionState;
class KURL;
class ExecutionContext;
class CORE_EXPORT AbstractWorker : public EventTargetWithInlineData,
public ContextLifecycleObserver {
USING_GARBAGE_COLLECTED_MIXIN(AbstractWorker);
public:
// EventTarget APIs
ExecutionContext* getExecutionContext() const final {
return ContextLifecycleObserver::getExecutionContext();
}
DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(error);
AbstractWorker(ExecutionContext*);
~AbstractWorker() override;
DECLARE_VIRTUAL_TRACE();
protected:
// Helper function that converts a URL to an absolute URL and checks the
// result for validity.
KURL resolveURL(const String& url,
ExceptionState&,
WebURLRequest::RequestContext);
};
} // namespace blink
#endif // AbstractWorker_h
| [
"hedonist.ky@gmail.com"
] | hedonist.ky@gmail.com |
322f756e22ed5f83af5fb61ea36711c7f1a33da3 | 7e68c3e0e86d1a1327026d189a613297b769c411 | /Test/UnitTest/TestRandom/TestRandom.cpp | 6ca90f451e829644609530ed75aaf031c64ab95c | [] | no_license | staticlibs/Big-Numbers | bc08092e36c7c640dcf43d863448cd066abaebed | adbfa38cc2e3b8ef706a3ac8bbd3e398f741baf3 | refs/heads/master | 2023-03-16T20:25:08.699789 | 2020-12-20T20:50:25 | 2020-12-20T20:50:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,504 | cpp | #include "stdafx.h"
#include <limits.h>
#include <Random.h>
#include <Math/MathLib.h>
#include <Math/Int128.h>
#include <Math/PrimeFactors.h>
#include <Math/Statistic.h>
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace TestRandom {
#include <UnitTestTraits.h>
static String getDirName(bool is64Bit) {
return format(_T("c:\\temp\\TestDir\\TestRandom\\%s"), is64Bit?_T("64"):_T("32"));
}
static void dumpAllPValues(const TCHAR *method, const TCHAR *generatorName, bool is64Bit, const CompactDoubleArray &a) {
if(a.size() <= 1) return;
CompactDoubleArray b(a);
b.sort(doubleHashCmp);
StringArray names(Tokenizer(method, _T(":")));
const String fileName = format(_T("%s\\AllPValues_%s%s.txt")
,getDirName(is64Bit).cstr()
,generatorName
,names.last().cstr());
FILE *f = MKFOPEN(fileName, _T("w"));
const size_t n = a.size();
const double step = 1.0 / (n-1);
double x = 0;
for(const double *yp = &b.first(), *endp = &b.last(); yp<=endp; x += step) {
fprintf(f, "%.6lf %10.6le\n", x, *(yp++));
}
fclose(f);
}
static CompactUIntArray filterFactors(const CompactInt64Array &a) {
CompactUIntArray result;
for(size_t i = 0; i < a.size(); i++) {
const INT64 f = a[i];
if((f == 1) || (f > 256)) continue;
result.add((int)f);
}
return result;
}
template<class T> CompactDoubleArray checkIsUniformDist(const CompactArray<T> &a, bool is64Bit, T from, T to) {
const size_t n = a.size();
CompactArray<_int128> b(n);
for(size_t i = 0; i < n; i++) {
const T x = a[i];
verify((from <= x) && (x <= to));
b.add(x);
b.last() -= from;
}
const _int128 length = (_int128)to - from + 1;
const CompactUIntArray allFactors = filterFactors(PrimeFactorArray((length > ULLONG_MAX)?((INT64)256):((INT64)length),227).getAllFactors().sort(int64HashCmp));
CompactDoubleArray allPValues;
for(size_t i = 0; i < allFactors.size(); i++) {
const UINT bucketCount = allFactors[i];
CompactDoubleArray observed(bucketCount);
observed.insert(0, 0.0, bucketCount);
for(size_t i = 0; i < n; i++) {
_int128 t128 = b[i];
t128 *= bucketCount;
t128 /= length;
const UINT index = (UINT)t128;
observed[index]++;
}
const double e = (double)n / bucketCount;
CompactDoubleArray expected(bucketCount);
expected.insert(0,e,bucketCount);
const double pvalue = chiSquareGoodnessOfFitTest(observed, expected,false);
allPValues.add(pvalue);
if(pvalue < 1e-9) {
debugLog(_T("%10.17le %10s-%10s bucketCount:%5u\n"), pvalue, toString(from).cstr(), toString(to).cstr(), bucketCount);
CompactDoubleArray c(n);
for(size_t i = 0; i < n; i++) {
c.add((double)a[i]);
}
c.sort(doubleHashCmp);
for(size_t i = 0; i < n; i++) {
debugLog(_T("%le\n"), c[i]);
}
}
}
return allPValues;
}
#define SAMPLECOUNT 100000
void _TestNextInt32_INT_MIN_MAX(RandomGenerator &rnd) {
rnd.randomize();
INFO(_T("%s gen:%s"), __TFUNCTION__,rnd.getName());
CompactIntArray samples(SAMPLECOUNT);
for(int i = 0; i < SAMPLECOUNT; i++) {
const int x = rnd.nextInt();
samples.add(x);
}
dumpAllPValues(__TFUNCTION__, rnd.getName(), false, checkIsUniformDist(samples, false, INT_MIN, INT_MAX));
}
void _TestNextInt64_LLONG_MIN_MAX(RandomGenerator &rnd) {
rnd.randomize();
INFO(_T("%s gen:%s"), __TFUNCTION__,rnd.getName());
CompactInt64Array samples(SAMPLECOUNT);
for(int i = 0; i < SAMPLECOUNT; i++) {
const INT64 x = rnd.nextInt64();
samples.add(x);
}
dumpAllPValues(__TFUNCTION__, rnd.getName(), true, checkIsUniformDist(samples, true, LLONG_MIN, LLONG_MAX));
}
void _TestNextInt32_0_n(RandomGenerator &rnd) {
rnd.randomize();
INFO(_T("%s gen:%s"), __TFUNCTION__,rnd.getName());
CompactDoubleArray allPValues;
for(int n = 10; n > 0; n *= 3) {
CompactIntArray samples(SAMPLECOUNT);
for(int i = 0; i < SAMPLECOUNT; i++) {
const int x = rnd.nextInt(n);
verify((0 <= x) && (x < n));
samples.add(x);
}
allPValues.addAll(checkIsUniformDist(samples, false, 0, n-1));
}
dumpAllPValues(__TFUNCTION__, rnd.getName(), false, allPValues);
}
void _TestNextInt64_0_n(RandomGenerator &rnd) {
rnd.randomize();
CompactDoubleArray allPValues;
INFO(_T("%s gen:%s"), __TFUNCTION__,rnd.getName());
for(INT64 n = 10; n > 0; n *= 3) {
CompactInt64Array samples(SAMPLECOUNT);
for(int i = 0; i < SAMPLECOUNT; i++) {
const INT64 x = rnd.nextInt64(n);
verify((0 <= x) && (x < n));
samples.add(x);
}
allPValues.addAll(checkIsUniformDist(samples, true, (INT64)0, n-1));
}
dumpAllPValues(__TFUNCTION__, rnd.getName(), true, allPValues);
}
static JavaRandom javaRnd;
static MersenneTwister32 m32;
static MersenneTwister64 m64;
static RandomGenerator *randomGenerators[] = {
&javaRnd
,&m32
,&m64
};
TEST_CLASS(TestRandom) {
public:
TEST_METHOD(TestNextInt32_INT_MIN_MAX) {
for(int i = 0; i < ARRAYSIZE(randomGenerators); i++)
_TestNextInt32_INT_MIN_MAX(*randomGenerators[i]);
}
TEST_METHOD(TestNextInt64_LLONG_MIN_MAX) {
for(int i = 0; i < ARRAYSIZE(randomGenerators); i++)
_TestNextInt64_LLONG_MIN_MAX(*randomGenerators[i]);
}
TEST_METHOD(TestNextInt32_0_n) {
for(int i = 0; i < ARRAYSIZE(randomGenerators); i++)
_TestNextInt32_0_n(*randomGenerators[i]);
}
TEST_METHOD(TestNextInt64_0_n) {
for(int i = 0; i < ARRAYSIZE(randomGenerators); i++)
_TestNextInt64_0_n(*randomGenerators[i]);
}
TEST_METHOD(TestRandInt32_0_UINT_MAX) {
for(int i = 0; i < ARRAYSIZE(randomGenerators); i++) {
RandomGenerator &newRnd = *randomGenerators[i];
RandomGenerator &oldRnd = RandomGenerator::setStdGenerator(newRnd);
randomize();
CompactUIntArray samples(SAMPLECOUNT);
for(int i = 0; i < SAMPLECOUNT; i++) {
const UINT x = randInt();
samples.add(x);
}
dumpAllPValues(__TFUNCTION__, newRnd.getName(), false, checkIsUniformDist(samples, false, (UINT)0, UINT_MAX));
RandomGenerator::setStdGenerator(oldRnd);
}
}
TEST_METHOD(TestRandInt64_0_UINT64_MAX) {
for(int i = 0; i < ARRAYSIZE(randomGenerators); i++) {
RandomGenerator &newRnd = *randomGenerators[i];
RandomGenerator &oldRnd = RandomGenerator::setStdGenerator(newRnd);
randomize();
CompactUInt64Array samples(SAMPLECOUNT);
for(int i = 0; i < SAMPLECOUNT; i++) {
const UINT64 x = randInt64();
samples.add(x);
}
dumpAllPValues(__TFUNCTION__, newRnd.getName(), true, checkIsUniformDist(samples, true, (UINT64)0, ULLONG_MAX));
RandomGenerator::setStdGenerator(oldRnd);
}
}
TEST_METHOD(TestRandInt32_0_n) {
for(int i = 0; i < ARRAYSIZE(randomGenerators); i++) {
RandomGenerator &newRnd = *randomGenerators[i];
RandomGenerator &oldRnd = RandomGenerator::setStdGenerator(newRnd);
randomize();
CompactDoubleArray allPValues;
for(INT64 n = 10; n <= UINT_MAX; n = n * 3 + 1) {
CompactUIntArray samples(SAMPLECOUNT);
for(int i = 0; i < SAMPLECOUNT; i++) {
const UINT x = randInt((UINT)n);
samples.add(x);
}
allPValues.addAll(checkIsUniformDist(samples, false, (UINT)0, (UINT)n-1));
}
dumpAllPValues(__TFUNCTION__, newRnd.getName(), false, allPValues);
RandomGenerator::setStdGenerator(oldRnd);
}
}
TEST_METHOD(TestRandInt64_0_n) {
for(int i = 0; i < ARRAYSIZE(randomGenerators); i++) {
RandomGenerator &newRnd = *randomGenerators[i];
RandomGenerator &oldRnd = RandomGenerator::setStdGenerator(newRnd);
randomize();
CompactDoubleArray allPValues;
for(UINT64 n = 10; n <= LLONG_MAX; n = n * 3 + 1) {
CompactUInt64Array samples(SAMPLECOUNT);
for(int i = 0; i < SAMPLECOUNT; i++) {
const UINT64 x = randInt64(n);
samples.add(x);
}
allPValues.addAll(checkIsUniformDist(samples, true, (UINT64)0, n-1));
}
dumpAllPValues(__TFUNCTION__, newRnd.getName(), true, allPValues);
RandomGenerator::setStdGenerator(oldRnd);
}
}
TEST_METHOD(TestRandInt32_from_to) {
for(int i = 0; i < ARRAYSIZE(randomGenerators); i++) {
RandomGenerator &newRnd = *randomGenerators[i];
RandomGenerator &oldRnd = RandomGenerator::setStdGenerator(newRnd);
randomize();
CompactDoubleArray allPValues;
for(int from = 1; from < INT_MAX/3; from *= 3) {
for(int to = from + 10; to > 0; to = to*3 + 1) {
CompactIntArray samples(SAMPLECOUNT);
for(int i = 0; i < SAMPLECOUNT; i++) {
const int x = randInt(from, to);
verify((from <= x) && (x <= to));
samples.add(x);
}
allPValues.addAll(checkIsUniformDist(samples, false, from, to));
}
}
dumpAllPValues(__TFUNCTION__, newRnd.getName(), false, allPValues);
RandomGenerator::setStdGenerator(oldRnd);
}
}
TEST_METHOD(TestRandInt64_from_to) {
for(int i = 0; i < ARRAYSIZE(randomGenerators); i++) {
RandomGenerator &newRnd = *randomGenerators[i];
RandomGenerator &oldRnd = RandomGenerator::setStdGenerator(newRnd);
randomize();
CompactDoubleArray allPValues;
for(INT64 from = 1; from < LLONG_MAX/3; from *= 3) {
for(INT64 to = from + 10; to > 0; to = to*3 + 1) {
CompactInt64Array samples(SAMPLECOUNT);
for(int i = 0; i < SAMPLECOUNT; i++) {
const INT64 x = randInt64(from, to);
verify((from <= x) && (x <= to));
samples.add(x);
}
allPValues.addAll(checkIsUniformDist(samples, true, from, to));
}
}
dumpAllPValues(__TFUNCTION__, newRnd.getName(), true, allPValues);
RandomGenerator::setStdGenerator(oldRnd);
}
}
};
}
| [
"jesper.gr.mikkelsen@gmail.com"
] | jesper.gr.mikkelsen@gmail.com |
a0510b27c51fea32a37fad0a7634e776e8792ba0 | 0756dea0444ada160540685dd1d28fcd3ef4aac5 | /src/gas_system.cpp | 746f3743a56e11d8b626075614b2c64495863877 | [
"MIT"
] | permissive | ange-yaghi/engine-sim | 439e38f717bf46dbe8b6825d181ed77f711f8f21 | 85f7c3b959a908ed5232ede4f1a4ac7eafe6b630 | refs/heads/master | 2023-02-18T03:26:25.469967 | 2023-01-22T17:44:02 | 2023-01-22T17:44:02 | 439,491,516 | 8,177 | 795 | MIT | 2023-01-13T00:07:50 | 2021-12-18T00:14:57 | C++ | UTF-8 | C++ | false | false | 19,228 | cpp | #include "../include/gas_system.h"
#include "../include/units.h"
#include "../include/utilities.h"
#include <cmath>
#include <cassert>
void GasSystem::setGeometry(double width, double height, double dx, double dy) {
m_width = width;
m_height = height;
m_dx = dx;
m_dy = dy;
}
void GasSystem::initialize(double P, double V, double T, const Mix &mix, int degreesOfFreedom) {
m_degreesOfFreedom = degreesOfFreedom;
m_state.n_mol = P * V / (constants::R * T);
m_state.V = V;
m_state.E_k = T * (0.5 * degreesOfFreedom * m_state.n_mol * constants::R);
m_state.mix = mix;
m_state.momentum[0] = m_state.momentum[1] = 0;
const double hcr = heatCapacityRatio();
m_chokedFlowLimit = chokedFlowLimit(degreesOfFreedom);
m_chokedFlowFactorCached = chokedFlowRate(degreesOfFreedom);
}
void GasSystem::reset(double P, double T, const Mix &mix) {
m_state.n_mol = P * volume() / (constants::R * T);
m_state.E_k = T * (0.5 * m_degreesOfFreedom * m_state.n_mol * constants::R);
m_state.mix = mix;
m_state.momentum[0] = m_state.momentum[1] = 0;
}
void GasSystem::setVolume(double V) {
return changeVolume(V - m_state.V);
}
void GasSystem::setN(double n) {
m_state.E_k = kineticEnergy(n);
m_state.n_mol = n;
}
void GasSystem::changeVolume(double dV) {
const double V = this->volume();
const double L = std::pow(V + dV, 1 / 3.0);
const double surfaceArea = (L * L);
const double dL = -dV / surfaceArea;
const double W = dL * pressure() * surfaceArea;
m_state.V += dV;
m_state.E_k += W;
}
void GasSystem::changePressure(double dP) {
m_state.E_k += dP * volume() * m_degreesOfFreedom * 0.5;
}
void GasSystem::changeTemperature(double dT) {
m_state.E_k += dT * 0.5 * m_degreesOfFreedom * n() * constants::R;
}
void GasSystem::changeEnergy(double dE) {
m_state.E_k += dE;
}
void GasSystem::changeMix(const Mix &mix) {
m_state.mix = mix;
}
void GasSystem::injectFuel(double n) {
const double n_fuel = this->n_fuel() + n;
const double p_fuel = n_fuel / this->n();
m_state.mix.p_fuel = p_fuel;
}
void GasSystem::changeTemperature(double dT, double n) {
m_state.E_k += dT * 0.5 * m_degreesOfFreedom * n * constants::R;
}
double GasSystem::react(double n, const Mix &mix) {
const double l_n_fuel = mix.p_fuel * n;
const double l_n_o2 = mix.p_o2 * n;
const double system_n_fuel = n_fuel();
const double system_n_o2 = n_o2();
const double system_n_inert = n_inert();
const double system_n = this->n();
// Assuming the following reaction:
// 25[O2] + 2[C8H16] -> 16[CO2] + 18[H2O]
constexpr double ideal_o2_ratio = 25.0 / 2;
constexpr double ideal_fuel_ratio = 2.0 / 25;
constexpr double output_input_ratio = (16.0 + 18.0) / (25 + 2);
const double ideal_fuel_n = ideal_fuel_ratio * l_n_o2;
const double ideal_o2_n = ideal_o2_ratio * l_n_fuel;
const double a_n_fuel = std::fmin(
std::fmin(system_n_fuel, l_n_fuel),
ideal_fuel_n);
const double a_n_o2 = std::fmin(
std::fmin(system_n_o2, l_n_o2),
ideal_o2_n);
const double reactants_n = a_n_fuel + a_n_o2;
const double products_n = output_input_ratio * reactants_n;
const double dn = products_n - reactants_n;
m_state.n_mol += dn;
// Adjust mix
const double new_system_n_fuel = system_n_fuel - a_n_fuel;
const double new_system_n_o2 = system_n_o2 - a_n_o2;
const double new_system_n_inert = system_n_inert + products_n;
const double new_system_n = system_n + dn;
if (new_system_n != 0) {
m_state.mix.p_fuel = new_system_n_fuel / new_system_n;
m_state.mix.p_inert = new_system_n_inert / new_system_n;
m_state.mix.p_o2 = new_system_n_o2 / new_system_n;
}
else {
m_state.mix.p_fuel = m_state.mix.p_inert = m_state.mix.p_o2 = 0;
}
return a_n_fuel;
}
double GasSystem::flowConstant(
double targetFlowRate,
double P,
double pressureDrop,
double T,
double hcr)
{
const double T_0 = T;
const double p_0 = P, p_T = P - pressureDrop; // p_0 = upstream pressure
const double chokedFlowLimit =
std::pow((2.0 / (hcr + 1)), hcr / (hcr - 1));
const double p_ratio = p_T / p_0;
double flowRate = 0;
if (p_ratio <= chokedFlowLimit) {
// Choked flow
flowRate = std::sqrt(hcr);
flowRate *= std::pow(2 / (hcr + 1), (hcr + 1) / (2 * (hcr - 1)));
}
else {
flowRate = (2 * hcr) / (hcr - 1);
flowRate *= (1 - std::pow(p_ratio, (hcr - 1) / hcr));
flowRate = std::sqrt(flowRate);
flowRate *= std::pow(p_ratio, 1 / hcr);
}
flowRate *= p_0 / std::sqrt(constants::R * T_0);
return targetFlowRate / flowRate;
}
double GasSystem::k_28inH2O(double flowRateScfm) {
return flowConstant(
units::flow(flowRateScfm, units::scfm),
units::pressure(1.0, units::atm),
units::pressure(28.0, units::inH2O),
units::celcius(25),
heatCapacityRatio(5)
);
}
double GasSystem::k_carb(double flowRateScfm) {
return flowConstant(
units::flow(flowRateScfm, units::scfm),
units::pressure(1.0, units::atm),
units::pressure(1.5, units::inHg),
units::celcius(25),
heatCapacityRatio(5)
);
}
double GasSystem::flowRate(
double k_flow,
double P0,
double P1,
double T0,
double T1,
double hcr,
double chokedFlowLimit,
double chokedFlowRateCached)
{
if (k_flow == 0) return 0;
double direction;
double T_0;
double p_0, p_T; // p_0 = upstream pressure
if (P0 > P1) {
direction = 1.0;
T_0 = T0;
p_0 = P0;
p_T = P1;
}
else {
direction = -1.0;
T_0 = T1;
p_0 = P1;
p_T = P0;
}
const double p_ratio = p_T / p_0;
double flowRate = 0;
if (p_ratio <= chokedFlowLimit) {
// Choked flow
flowRate = chokedFlowRateCached;
flowRate /= std::sqrt(constants::R * T_0);
}
else {
const double s = std::pow(p_ratio, 1 / hcr);
flowRate = (2 * hcr) / (hcr - 1);
flowRate *= s * (s - p_ratio);
flowRate = std::sqrt(std::fmax(flowRate, 0.0) / (constants::R * T_0));
}
flowRate *= direction * p_0;
return flowRate * k_flow;
}
double GasSystem::loseN(double dn, double E_k_per_mol) {
m_state.E_k -= E_k_per_mol * dn;
m_state.n_mol -= dn;
if (m_state.n_mol < 0) {
m_state.n_mol = 0;
}
return dn;
}
double GasSystem::gainN(double dn, double E_k_per_mol, const Mix &mix) {
const double next_n = m_state.n_mol + dn;
const double current_n = m_state.n_mol;
m_state.E_k += dn * E_k_per_mol;
m_state.n_mol = next_n;
if (next_n != 0) {
m_state.mix.p_fuel = (m_state.mix.p_fuel * current_n + dn * mix.p_fuel) / next_n;
m_state.mix.p_inert = (m_state.mix.p_inert * current_n + dn * mix.p_inert) / next_n;
m_state.mix.p_o2 = (m_state.mix.p_o2 * current_n + dn * mix.p_o2) / next_n;
}
else {
m_state.mix.p_fuel = m_state.mix.p_inert = m_state.mix.p_o2 = 0;
}
return -dn;
}
void GasSystem::dissipateExcessVelocity() {
const double v_x = velocity_x();
const double v_y = velocity_y();
const double v_squared = v_x * v_x + v_y * v_y;
const double c = this->c();
const double c_squared = c * c;
if (c_squared >= v_squared || v_squared == 0) {
return;
}
const double k_squared = c_squared / v_squared;
const double k = std::sqrt(k_squared);
m_state.momentum[0] *= k;
m_state.momentum[1] *= k;
m_state.E_k += 0.5 * mass() * (v_squared - c_squared);
if (m_state.E_k < 0) m_state.E_k = 0;
}
void GasSystem::updateVelocity(double dt, double beta) {
if (n() == 0) return;
const double depth = volume() / (m_width * m_height);
double d_momentum_x = 0;
double d_momentum_y = 0;
const double p0 = dynamicPressure(m_dx, m_dy);
const double p1 = dynamicPressure(-m_dx, -m_dy);
const double p2 = dynamicPressure(m_dy, m_dx);
const double p3 = dynamicPressure(-m_dy, -m_dx);
const double p_sa_0 = p0 * (m_height * depth);
const double p_sa_1 = p1 * (m_height * depth);
const double p_sa_2 = p2 * (m_width * depth);
const double p_sa_3 = p3 * (m_width * depth);
d_momentum_x += p_sa_0 * m_dx;
d_momentum_y += p_sa_0 * m_dy;
d_momentum_x -= p_sa_1 * m_dx;
d_momentum_y -= p_sa_1 * m_dy;
d_momentum_x += p_sa_2 * m_dy;
d_momentum_y += p_sa_2 * m_dx;
d_momentum_x -= p_sa_3 * m_dy;
d_momentum_y -= p_sa_3 * m_dx;
const double m = mass();
const double inv_m = 1 / m;
const double v0_x = m_state.momentum[0] * inv_m;
const double v0_y = m_state.momentum[1] * inv_m;
m_state.momentum[0] -= d_momentum_x * dt * beta;
m_state.momentum[1] -= d_momentum_y * dt * beta;
const double v1_x = m_state.momentum[0] * inv_m;
const double v1_y = m_state.momentum[1] * inv_m;
m_state.E_k -= 0.5 * m * (v1_x * v1_x - v0_x * v0_x);
m_state.E_k -= 0.5 * m * (v1_y * v1_y - v0_y * v0_y);
if (m_state.E_k < 0) m_state.E_k = 0;
}
void GasSystem::dissipateVelocity(double dt, double timeConstant) {
if (n() == 0) return;
const double invMass = 1.0 / mass();
const double velocity_x = m_state.momentum[0] * invMass;
const double velocity_y = m_state.momentum[1] * invMass;
const double velocity_squared =
velocity_x * velocity_x + velocity_y * velocity_y;
const double s = dt / (dt + timeConstant);
m_state.momentum[0] = m_state.momentum[0] * (1 - s);
m_state.momentum[1] = m_state.momentum[1] * (1 - s);
const double newVelocity_x = m_state.momentum[0] * invMass;
const double newVelocity_y = m_state.momentum[1] * invMass;
const double newVelocity_squared =
newVelocity_x * newVelocity_x + newVelocity_y * newVelocity_y;
const double dE_k = 0.5 * mass() * (velocity_squared - newVelocity_squared);
m_state.E_k += dE_k;
}
double GasSystem::flow(const FlowParameters ¶ms) {
GasSystem *source = nullptr, *sink = nullptr;
double sourcePressure = 0, sinkPressure = 0;
double dx, dy;
double sourceCrossSection = 0, sinkCrossSection = 0;
double direction = 0;
const double P_0 =
params.system_0->pressure()
+ params.system_0->dynamicPressure(params.direction_x, params.direction_y);
const double P_1 =
params.system_1->pressure()
+ params.system_1->dynamicPressure(-params.direction_x, -params.direction_y);
if (P_0 > P_1) {
dx = params.direction_x;
dy = params.direction_y;
source = params.system_0;
sink = params.system_1;
sourcePressure = P_0;
sinkPressure = P_1;
sourceCrossSection = params.crossSectionArea_0;
sinkCrossSection = params.crossSectionArea_1;
direction = 1.0;
}
else {
dx = -params.direction_x;
dy = -params.direction_y;
source = params.system_1;
sink = params.system_0;
sourcePressure = P_1;
sinkPressure = P_0;
sourceCrossSection = params.crossSectionArea_1;
sinkCrossSection = params.crossSectionArea_0;
direction = -1.0;
}
double flow = params.dt * flowRate(
params.k_flow,
sourcePressure,
sinkPressure,
source->temperature(),
sink->temperature(),
source->heatCapacityRatio(),
source->m_chokedFlowLimit,
source->m_chokedFlowFactorCached);
const double maxFlow = source->pressureEquilibriumMaxFlow(sink);
flow = clamp(flow, 0.0, 0.9 * source->n());
const double fraction = flow / source->n();
const double fractionVolume = fraction * source->volume();
const double fractionMass = fraction * source->mass();
const double remainingMass = (1 - fraction) * source->mass();
if (flow != 0) {
// - Stage 1
// Fraction flows from source to sink.
const double E_k_bulk_src0 = source->bulkKineticEnergy();
const double E_k_bulk_sink0 = sink->bulkKineticEnergy();
const double s0 = source->totalEnergy() + sink->totalEnergy();
const double E_k_per_mol = source->kineticEnergyPerMol();
sink->gainN(flow, E_k_per_mol, source->mix());
source->loseN(flow, E_k_per_mol);
const double s1 = source->totalEnergy() + sink->totalEnergy();
const double dp_x = source->m_state.momentum[0] * fraction;
const double dp_y = source->m_state.momentum[1] * fraction;
source->m_state.momentum[0] -= dp_x;
source->m_state.momentum[1] -= dp_y;
sink->m_state.momentum[0] += dp_x;
sink->m_state.momentum[1] += dp_y;
const double E_k_bulk_src1 = source->bulkKineticEnergy();
const double E_k_bulk_sink1 = sink->bulkKineticEnergy();
sink->m_state.E_k -= ((E_k_bulk_src1 + E_k_bulk_sink1) - (E_k_bulk_src0 + E_k_bulk_sink0));
}
const double sourceMass = source->mass();
const double invSourceMass = 1 / sourceMass;
const double sinkMass = sink->mass();
const double invSinkMass = 1 / sinkMass;
const double c_source = source->c();
const double c_sink = sink->c();
const double sourceInitialMomentum_x = source->m_state.momentum[0];
const double sourceInitialMomentum_y = source->m_state.momentum[1];
const double sinkInitialMomentum_x = sink->m_state.momentum[0];
const double sinkInitialMomentum_y = sink->m_state.momentum[1];
// Momentum in fraction
if (sinkCrossSection != 0) {
const double sinkFractionVelocity =
clamp((fractionVolume / sinkCrossSection) / params.dt, 0.0, c_sink);
const double sinkFractionVelocity_squared = sinkFractionVelocity * sinkFractionVelocity;
const double sinkFractionVelocity_x = sinkFractionVelocity * dx;
const double sinkFractionVelocity_y = sinkFractionVelocity * dy;
const double sinkFractionMomentum_x = sinkFractionVelocity_x * fractionMass;
const double sinkFractionMomentum_y = sinkFractionVelocity_y * fractionMass;
sink->m_state.momentum[0] += sinkFractionMomentum_x;
sink->m_state.momentum[1] += sinkFractionMomentum_y;
}
if (sourceCrossSection != 0 && sourceMass != 0) {
const double sourceFractionVelocity =
clamp((fractionVolume / sourceCrossSection) / params.dt, 0.0, c_source);
const double sourceFractionVelocity_squared = sourceFractionVelocity * sourceFractionVelocity;
const double sourceFractionVelocity_x = sourceFractionVelocity * dx;
const double sourceFractionVelocity_y = sourceFractionVelocity * dy;
const double sourceFractionMomentum_x = sourceFractionVelocity_x * fractionMass;
const double sourceFractionMomentum_y = sourceFractionVelocity_y * fractionMass;
source->m_state.momentum[0] += sourceFractionMomentum_x;
source->m_state.momentum[1] += sourceFractionMomentum_y;
}
if (sourceMass != 0) {
// Energy conservation
const double sourceVelocity0_x = sourceInitialMomentum_x * invSourceMass;
const double sourceVelocity0_y = sourceInitialMomentum_y * invSourceMass;
const double sourceVelocity1_x = source->m_state.momentum[0] * invSourceMass;
const double sourceVelocity1_y = source->m_state.momentum[1] * invSourceMass;
source->m_state.E_k -=
0.5 * sourceMass
* (sourceVelocity1_x * sourceVelocity1_x - sourceVelocity0_x * sourceVelocity0_x);
source->m_state.E_k -=
0.5 * sourceMass
* (sourceVelocity1_y * sourceVelocity1_y - sourceVelocity0_y * sourceVelocity0_y);
}
if (sinkMass > 0) {
const double sinkVelocity0_x = sinkInitialMomentum_x * invSinkMass;
const double sinkVelocity0_y = sinkInitialMomentum_y * invSinkMass;
const double sinkVelocity1_x = sink->m_state.momentum[0] * invSinkMass;
const double sinkVelocity1_y = sink->m_state.momentum[1] * invSinkMass;
sink->m_state.E_k -=
0.5 * sinkMass
* (sinkVelocity1_x * sinkVelocity1_x - sinkVelocity0_x * sinkVelocity0_x);
sink->m_state.E_k -=
0.5 * sinkMass
* (sinkVelocity1_y * sinkVelocity1_y - sinkVelocity0_y * sinkVelocity0_y);
}
if (sink->m_state.E_k < 0) {
sink->m_state.E_k = 0;
}
if (source->m_state.E_k < 0) {
source->m_state.E_k = 0;
}
return flow * direction;
}
double GasSystem::flow(double k_flow, double dt, double P_env, double T_env, const Mix &mix) {
const double maxFlow = pressureEquilibriumMaxFlow(P_env, T_env);
double flow = dt * flowRate(
k_flow,
pressure(),
P_env,
temperature(),
T_env,
heatCapacityRatio(),
m_chokedFlowLimit,
m_chokedFlowFactorCached);
if (std::abs(flow) > std::abs(maxFlow)) {
flow = maxFlow;
}
if (flow < 0) {
const double bulk_E_k_0 = bulkKineticEnergy();
gainN(-flow, kineticEnergyPerMol(T_env, m_degreesOfFreedom), mix);
const double bulk_E_k_1 = bulkKineticEnergy();
m_state.E_k += (bulk_E_k_1 - bulk_E_k_0);
}
else {
const double starting_n = n();
loseN(flow, kineticEnergyPerMol());
m_state.momentum[0] -= (flow / starting_n) * m_state.momentum[0];
m_state.momentum[1] -= (flow / starting_n) * m_state.momentum[1];
}
return flow;
}
double GasSystem::pressureEquilibriumMaxFlow(const GasSystem *b) const {
// pressure_a = (kineticEnergy() + n * b->kineticEnergyPerMol()) / (0.5 * degreesOfFreedom * volume())
// pressure_b = (b->kineticEnergy() - n * / (0.5 * b->degreesOfFreedom * b->volume())
// pressure_a = pressure_b
// E_a = kineticEnergy()
// E_b = b->kineticEnergy()
// D_a = E_a / n()
// D_b = E_b / b->n()
// Q_a = 1 / (0.5 * degreesOfFreedom * volume())
// Q_b = 1 / (0.5 * b->degreesOfFreedom * b->volume())
// pressure_a = Q_a * (E_a + dn * D_b)
// pressure_b = Q_b * (E_b - dn * D_b)
if (pressure() > b->pressure()) {
const double maxFlow =
(b->volume() * kineticEnergy() - volume() * b->kineticEnergy()) /
(b->volume() * kineticEnergyPerMol() + volume() * kineticEnergyPerMol());
return std::fmax(0.0, std::fmin(maxFlow, n()));
}
else {
const double maxFlow =
(b->volume() * kineticEnergy() - volume() * b->kineticEnergy()) /
(b->volume() * b->kineticEnergyPerMol() + volume() * b->kineticEnergyPerMol());
return std::fmin(0.0, std::fmax(maxFlow, -b->n()));
}
}
double GasSystem::pressureEquilibriumMaxFlow(double P_env, double T_env) const {
if (pressure() > P_env) {
return -(P_env * (0.5 * m_degreesOfFreedom * volume()) - kineticEnergy()) / kineticEnergyPerMol();
}
else {
const double E_k_per_mol_env = 0.5 * T_env * constants::R * m_degreesOfFreedom;
return -(P_env * (0.5 * m_degreesOfFreedom * volume()) - kineticEnergy()) / E_k_per_mol_env;
}
}
| [
"me@angeyaghi.com"
] | me@angeyaghi.com |
75b1a3cf07f27e015a35becc2eea6c95793333d5 | 451ab1e84ae56931352f38ef2ea82d4c14a17497 | /cocos2d/cocos/renderer/CCCustomCommand.h | 65cf2eb032c6646d51829a39d6a3f740abdb0b12 | [
"MIT"
] | permissive | denghe/xxlib_cocos_cpp | 64b5c02b2525e6f8f27efcc0daa2855e90388063 | d4e9c6f0e59c3db01a6791622188576089df5afe | refs/heads/master | 2021-06-27T21:33:54.024283 | 2020-09-26T07:03:17 | 2020-09-26T07:03:17 | 154,665,907 | 6 | 3 | null | 2019-05-23T14:21:14 | 2018-10-25T12:19:53 | C++ | UTF-8 | C++ | false | false | 2,770 | h | /****************************************************************************
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
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 _CC_CUSTOMCOMMAND_H_
#define _CC_CUSTOMCOMMAND_H_
#include "renderer/CCRenderCommand.h"
/**
* @addtogroup renderer
* @{
*/
NS_CC_BEGIN
/**
Custom command is used for call custom openGL command which can not be done by other commands,
such as stencil function, depth functions etc. The render command is executed by calling a call back function.
*/
class CC_DLL CustomCommand : public RenderCommand
{
public:
/**Constructor.*/
CustomCommand();
/**Destructor.*/
~CustomCommand();
public:
/**
Init function.
@param globalZOrder GlobalZOrder of the render command.
@param modelViewTransform When in 3D mode, depth sorting needs modelViewTransform.
@param flags Use to identify that the render command is 3D mode or not.
*/
void init(float globalZOrder, const Mat4& modelViewTransform, uint32_t flags);
/**
Init function. The render command will be in 2D mode.
@param globalZOrder GlobalZOrder of the render command.
*/
void init(float globalZOrder);
/**
Execute the render command and call callback functions.
*/
void execute();
//TODO: This function is not used, it should be removed.
bool isTranslucent() { return true; }
/**Callback function.*/
std::function<void()> func;
protected:
};
NS_CC_END
/**
end of support group
@}
*/
#endif //_CC_CUSTOMCOMMAND_H_
| [
"denghe@hotmail.com"
] | denghe@hotmail.com |
7910f93673850dae087f179cec4a4197fe8fb1c4 | 0f8559dad8e89d112362f9770a4551149d4e738f | /Wall_Destruction/Havok/Source/Physics/Utilities/Constraint/Chain/hkpPoweredChainMapper.h | 536eb1eea2ed840502caf9e3c896bd8dbb3bc2ee | [] | no_license | TheProjecter/olafurabertaymsc | 9360ad4c988d921e55b8cef9b8dcf1959e92d814 | 456d4d87699342c5459534a7992f04669e75d2e1 | refs/heads/master | 2021-01-10T15:15:49.289873 | 2010-09-20T12:58:48 | 2010-09-20T12:58:48 | 45,933,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,934 | h | /*
*
* Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
* prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
* Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
*
*/
#ifndef HK_UTILITIES_POWERED_CHAIN_MAPPER_H
#define HK_UTILITIES_POWERED_CHAIN_MAPPER_H
#include <Common/Base/hkBase.h>
#include <Common/Base/Container/PointerMap/hkPointerMap.h>
class hkpConstraintInstance;
class hkpEntity;
class hkpConstraintMotor;
class hkQuaternion;
class hkpConstraintChainData;
class hkpPoweredChainData;
class hkpConstraintChainInstance;
extern const hkClass hkpPoweredChainMapperClass;
/// This class allows you to manage several overlapping powered chains.
/// It allows you to set max forces and target orientations for motors.
class hkpPoweredChainMapper : public hkReferencedObject
{
public:
HK_DECLARE_REFLECTION();
HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_CONSTRAINT);
private:
// You should only create the mapper with the buildChainMapper() function.
hkpPoweredChainMapper() {}
public:
virtual ~hkpPoweredChainMapper();
/// Holds parameters for the mapper-building function.
struct Config
{
HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_UTILITIES, hkpPoweredChainMapper::Config );
/// Tells whether limit constraints should be created in parallel with the chains.
///
/// Limit constraints use information from the existing powered/non-powered ragdoll/hinge constraints only.
/// No limit constraints are created for any other types of constraints.
hkBool m_createLimitConstraints;
/// Should the chains clone motors or reuse the ones from the original constraints.
hkBool m_cloneMotors;
Config()
{
m_createLimitConstraints = false;
m_cloneMotors = false;
}
};
/// Used to specify the first and the last entity of a new chain.
struct ChainEndpoints
{
HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_UTILITIES, hkpPoweredChainMapper::ChainEndpoints );
/// First entity in the chain.
hkpEntity* m_start;
/// Last entity in the chain.
hkpEntity* m_end;
};
/// Builds a mapper with chains specified by entity pairs in the ChainEndpoints array.
/// Returns HK_NULL upon failure.
static hkpPoweredChainMapper* HK_CALL buildChainMapper(const Config config, const hkArray<hkpConstraintInstance*>& allConstraints, const hkArray<ChainEndpoints>& pairs, hkArray<hkpConstraintInstance*>* unusedConstraints = HK_NULL);
//
// Setting link properties
//
/// Sets min/max force for one motor (specifed by the coordinateIndex) in all chains overlapping at the specified link (linkIndex)
void setForceLimits(int linkIndex, int coordinageIndex /*motorIndex*/, hkReal minForce, hkReal maxForce);
/// This appends the motors related to a given link to the motorsOut array.
/// Note: there may be only one motor for a given link/coordinate index pair in a chain; but there may be several chains overlapping at the specified link.
void getMotors(int linkIndex, int coordinateIndex, hkArray<hkpConstraintMotor*>& motorsOut);
/// Return the total number of links.
/// Note: as links order is a one-to-one match with the constraintArray passed to the buildChainMapper function,
/// some of the links might not lead to any target chains.
inline int getNumLinks() { return m_links.getSize(); }
/// Set motor for the given link/coordinate index
void setMotors(int linkIndex, int coordinateIndex, hkpConstraintMotor* newMotor);
/// Sets target orientations for all chains overlapping at the specified link.
void setTargetOrientation(int linkIndex, const hkQuaternion& newTarget);
//
// Internal
//
/// Specifies a chain/index referenced by a link.
struct Target
{
HK_DECLARE_REFLECTION();
HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CONSTRAINT, Target );
/// Targeted powered chain
hkpPoweredChainData* m_chain;
/// Index of the targeted ConstraintInfo in the chain
int m_infoIndex;
};
/// Holds information about a single link of the mapper.
/// One link may point to none, one, or a few chains.
/// Also a link may have a limit constraint associated with it.
struct LinkInfo
{
HK_DECLARE_REFLECTION();
HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CONSTRAINT, LinkInfo );
/// This specifies the index of the first target for this link. All targets for a given link are groupped together.
/// Those targets are set, when you call setMaxForce() or setTargetOrientation() for that link.
int m_firstTargetIdx;
/// Specifies the number of targets for this link.
int m_numTargets;
/// A limit constraint that functions in parallel with the chains.
/// It is direcly related to using chains, and should be added/removed to/from the world when chains are removed.
hkpConstraintInstance* m_limitConstraint;
LinkInfo() : m_firstTargetIdx(-1), m_numTargets(0), m_limitConstraint(HK_NULL) {}
LinkInfo(const LinkInfo& info) { m_firstTargetIdx = info.m_firstTargetIdx; m_numTargets = info.m_numTargets; m_limitConstraint = info.m_limitConstraint; }
};
/// Matches 1-1 the hkpConstraintInstance array passed to buildChainMapper()
/// Note that some m_links may have no targets -- when a certain constraint is not used by the mapper.
hkArray<struct LinkInfo> m_links;
/// Combined array of targets for all the links.
hkArray<struct Target> m_targets;
/// Just an extra array listing directly all the chains owned by the mapper.
hkArray<class hkpConstraintChainInstance*> m_chains;
/// Finish up ctor.
hkpPoweredChainMapper( hkFinishLoadedObjectFlag f ) :
hkReferencedObject(f), m_links(f), m_targets(f), m_chains(f) {}
};
#endif // HK_UTILITIES_POWERED_CHAIN_MAPPER_H
/*
* Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20091222)
*
* Confidential Information of Havok. (C) Copyright 1999-2009
* Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
* Logo, and the Havok buzzsaw logo are trademarks of Havok. Title, ownership
* rights, and intellectual property rights in the Havok software remain in
* Havok and/or its suppliers.
*
* Use of this software for evaluation purposes is subject to and indicates
* acceptance of the End User licence Agreement for this product. A copy of
* the license is included with this software and is also available at www.havok.com/tryhavok.
*
*/
| [
"olinord@gmail.com"
] | olinord@gmail.com |
819210f504b095c78a1ee5c849446a8df01a9030 | f85caea83c5070e4a49baaa7e927bf26f600eee0 | /isochrone/src/iso_dartmouth.cpp | a8370e1ee86c34bfc5d9f3f6bd8314273f73b018 | [
"MIT"
] | permissive | ktfm2/Kai_updates | 9da328981b0ddcd46c1057020c9199ca6d727430 | f731922d3e140c1f16ea9b4b45f39232fe19a1ba | refs/heads/master | 2023-01-09T04:53:37.324940 | 2020-11-11T11:34:34 | 2020-11-11T11:34:34 | 299,119,774 | 0 | 0 | MIT | 2020-10-06T21:41:26 | 2020-09-27T21:10:10 | null | UTF-8 | C++ | false | false | 3,713 | cpp | //=============================================================================
#include "iso_dartmouth.h"
//=============================================================================
isochrone_dartmouth::isochrone_dartmouth(void){
const unsigned N = 1000;
InitialMass = VecDoub(N,0.);
Mass = VecDoub(N,0.);
L = VecDoub(N,0.);
Teff = VecDoub(N,0.);
Logg = VecDoub(N,0.);
es = VecDoub(N,0.);
std::vector<std::string> maglist =
{"B","V",
"J","H","K",
"Jv","Hv","Kv","Vp","I"};
for(auto m: maglist)
mags[m]=VecDoub(N,0.);
}
double isochrone_dartmouth::get_metallicity(std::vector<std::string> input_iso_list, std::string dir){
double ff = 0.;
auto input_iso = input_iso_list[0];
// Load in isochrone file
std::ifstream inFile;inFile.open(input_iso);
if(!inFile.is_open()){
std::cerr<<"Input isochrone file "<<input_iso<<" won't open."<<std::endl;
}
std::string line;
while (std::getline(inFile, line))
{
if (line.find("Fe/H") != std::string::npos){
std::getline(inFile, line);
VecDoub X = string2vec<double>(line.erase(0,1));
ff = X[4];
break;
}
}
return ff;
}
void isochrone_dartmouth::fill(std::vector<std::string> input_iso_list,
std::string dir, double Age, double thin_mag){
auto input_iso = input_iso_list[0];
// Load in isochrone file
std::ifstream inFile;inFile.open(input_iso);
if(!inFile.is_open()){
std::cerr<<"Input isochrone file "<<input_iso<<" won't open."<<std::endl;
}
std::string line; bool found=0;
const std::string age_st = "#AGE=";
while (std::getline(inFile, line) and found==0)
{
if (line.find("Fe/H") != std::string::npos){
std::getline(inFile, line);
VecDoub X = string2vec<double>(line.erase(0,1));
FeH = X[4];
}
if (line.find(age_st) != std::string::npos){
if(atof(line.substr(5,6).c_str())==Age){
found=1;break;
}
}
}
if(found==0) std::cerr<<"Search failed -- Dartmouth isochrone"<<" "<<Age<<" "<<input_iso<<std::endl;
std::getline(inFile, line);
VecDoub X;int N=0;
while (std::getline(inFile, line)){
if (line.find("#") != std::string::npos or line.empty()) break;
X = string2vec<double>(line);
InitialMass[N]=X[1];
Mass[N]=X[1];
L[N]=X[4];
Teff[N]=X[2];
Logg[N]=X[3];
mags["B"][N]=X[6];
mags["V"][N]=X[7];
mags["Vp"][N]=VpMag(X[6],X[7]);
mags["J"][N]=X[10];
mags["H"][N]=X[11];
mags["K"][N]=X[12];
mags["I"][N]=I2MASS(mags["J"][N],mags["K"][N]);
VecDoub JKHv = JKH_vista_from_2MASS(mags["J"][N],mags["K"][N],mags["H"][N]);
mags["Jv"][N]=JKHv[0];
mags["Hv"][N]=JKHv[2];
mags["Kv"][N]=JKHv[1];
++N;
}
InitialMass.resize(N);
Mass.resize(N);
L.resize(N);
Teff.resize(N);
Logg.resize(N);
es.resize(N);
for(auto n: mags)
mags[n.first].resize(N);
age = Age;
N_length=InitialMass.size();
deltamass = VecDoub(N_length,0.);
for(unsigned index_m=0; index_m<N_length; ++index_m){
if(index_m==0)
deltamass[index_m]=fabs(InitialMass[1]-InitialMass[0]);
else if(index_m==N_length-1)
deltamass[index_m]=fabs(InitialMass[N_length-1]-InitialMass[N_length-2]);
else
deltamass[index_m]=fabs((InitialMass[index_m+1]-InitialMass[index_m-1])/2.);
}
inFile.close();
}
//=============================================================================
| [
"jls713@users.noreply.github.com"
] | jls713@users.noreply.github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.