blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3b1afb808ae908d3e89f779bbc646984785e0f6e | 58856fa0e7dfe209d26bf40593df1bd708c938a3 | /maze_location.cpp | c6d884bab5404d4e52a725f252f2886eee25948d | [] | no_license | explojoe/final-project-cs162 | 742aa7242c01affa5c5b214f86f3e231eaba098c | 1106a0acf11b5e03737f56ea18b94f1f6ad6a5a6 | refs/heads/master | 2020-05-02T01:20:12.656679 | 2018-03-20T01:30:00 | 2018-03-20T01:30:00 | 177,684,945 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 990 | cpp | maze_location.cpp | /*********************************************************************
** Program Filename: maze_location.cpp
** Author: Joshua Wentzel
** Date: 3/18/2018
** Description: Escape from CS162.
** Input: path to .txt containing maze data
** Output: Escape from CS162 gameplay
*********************************************************************/
#include <iostream>
#include "maze_location.hpp"
using namespace std;
void MazeLocation::reset(){}
void MazeLocation::set_has_student(bool b){}
void MazeLocation::set_has_ta(bool b){}
void MazeLocation::set_has_instructor(bool b){}
void MazeLocation::set_has_ladder(bool b){}
void MazeLocation::set_has_skill(bool b){}
void MazeLocation::set_has_start(bool b){}
bool MazeLocation::has_student(){return false;}
bool MazeLocation::has_ta(){return false;}
bool MazeLocation::has_instructor(){return false;}
bool MazeLocation::has_ladder(){return false;}
bool MazeLocation::has_skill(){return false;}
bool MazeLocation::has_start(){return false;} |
3d249d56c28427c59bed5f4c45b44688228750ed | a1a5724ab0f1671f2d8b6c3d7786228b2477b961 | /GFG/Mathematics/GCD.cpp | 74afa81b01c949075287d74cfc4f272e43cda93b | [] | no_license | Mark-DSouza/CP | 87bfd1c910e7d8d5b5aeccf8a0fbb644bb248946 | 7b93e81b33d9b53a55939512ee4472d19f3a5a42 | refs/heads/master | 2023-04-01T07:11:13.551450 | 2021-03-31T07:35:19 | 2021-03-31T07:35:19 | 282,376,973 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 513 | cpp | GCD.cpp | #include <iostream>
using namespace std;
// gcd(a, b) = gcd(a-b, b) works until a and b are equal or one of them is 0
int gcd(int a, int b) {
while (a != b) {
if (a > b)
a = a - b;
else
b = b - a;
}
return a;
}
// Time Complexity: log(min(a, b))
int gcdOptimised(int a, int b) {
if (b == 0)
return a;
return gcd(b, a%b);
}
int main() {
int a = 12, b = 15;
cout << gcd(a, b) << endl << gcdOptimised(a, b) << endl;
return 0;
} |
b08c5d7493b13acd31dbafbe40bfda8d7e958512 | a03e913301c4e92b703eb3402c41bafd8756bc91 | /src/format.cpp | 0ddfe94e37d2c9e698864fdba499b0a157b3b41f | [
"MIT"
] | permissive | azarrias/CppND-System-Monitor | 2ecd338f4f2e92135d1dd4d77c6026272178963f | 12411c60abd8096647ae1c3091bab110555ec24f | refs/heads/master | 2021-05-20T21:13:55.310213 | 2020-04-14T19:38:21 | 2020-04-14T19:38:21 | 252,419,055 | 0 | 0 | null | 2020-04-02T10:02:51 | 2020-04-02T10:02:51 | null | UTF-8 | C++ | false | false | 1,233 | cpp | format.cpp | #include <string>
#include <sstream>
#include "format.h"
using std::string;
// TODO: Complete this helper function
// INPUT: Long int measuring seconds
// OUTPUT: D day(s), HH:MM:SS
// REMOVE: [[maybe_unused]] once you define the function
string Format::ElapsedTime(long seconds) {
unsigned int days = seconds / 86400;
unsigned int hours = (seconds / 3600) % 24;
unsigned int minutes = (seconds / 60) % 60;
seconds = seconds % 60;
// add days too
string result;
result = (days == 1) ? "1 day, " : std::to_string(days) + " days, ";
result = result + Lpad(std::to_string(hours), 2, '0') + ':';
result = result + Lpad(std::to_string(minutes), 2, '0') + ':';
result = result + Lpad(std::to_string(seconds), 2, '0');
return result;
}
// Add these functions to avoid leftovers from previous values
string Format::Lpad(const string &str, int paddedLength, char padChar) {
string str2(str.substr(0, paddedLength));
str2.insert(str2.begin(), paddedLength - str2.length(), padChar);
return str2;
}
string Format::Rpad(const string &str, int paddedLength, char padChar) {
string str2(str.substr(0, paddedLength));
str2.append(paddedLength - str2.length(), padChar);
return str2;
} |
b2418bfc8753bca3c83c7921fba7d9cfaf422616 | e6d4a87dcf98e93bab92faa03f1b16253b728ac9 | /algorithms/cpp/randomFlipMatrix/randomFlipMatrix.cpp | 2bf19af59beb418cb6e4a48079ad31ea61d72a1d | [] | no_license | MichelleZ/leetcode | b5a58e1822e3f6ef8021b29d9bc9aca3fd3d416f | a390adeeb71e997b3c1a56c479825d4adda07ef9 | refs/heads/main | 2023-03-06T08:16:54.891699 | 2023-02-26T07:17:47 | 2023-02-26T07:17:47 | 326,904,500 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 832 | cpp | randomFlipMatrix.cpp | // Source: https://leetcode.com/problems/random-flip-matrix/
// Author: Miao Zhang
// Date: 2021-02-19
class Solution {
public:
Solution(int n_rows, int n_cols): rows_(n_rows),
cols_(n_cols), n_(n_rows * n_cols) {
}
vector<int> flip() {
int s = rand() % (n_--);
int index = s;
if (dic_.count(s)) {
index = dic_[s];
}
dic_[s] = dic_.count(n_) ? dic_[n_] : n_;
return {index / cols_, index % cols_};
}
void reset() {
dic_.clear();
n_ = rows_ * cols_;
}
private:
int rows_;
int cols_;
int n_;
unordered_map<int, int> dic_;
};
/**
* Your Solution object will be instantiated and called as such:
* Solution* obj = new Solution(n_rows, n_cols);
* vector<int> param_1 = obj->flip();
* obj->reset();
*/
|
3c8140255abeb6330f1ececc8adb0ece9b7f6a87 | 2966236fadb79a60c7c59eba32516f2641d2ca5b | /ch10-managing-memory-and-low-level-data-structures/ex02-03-median.cpp | 0ee296df97111e42dc226905a698bfc687068df6 | [] | no_license | ctasims/accelerated-cpp | 15dcb3b85f4a2861030041bb0e2d4e106472b65b | e15bf457b32b0d1ca333c2fb29d5e23ca9b43294 | refs/heads/master | 2021-01-23T18:49:34.678365 | 2014-04-24T23:03:25 | 2014-04-24T23:03:25 | 16,974,615 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 675 | cpp | ex02-03-median.cpp | #include <vector>
#include <algorithm>
#include <stdexcept>
#include <iostream>
using namespace std;
template<class Type, class Iter>
Type median2(const Iter b, const Iter e)
{
vector<Type> v(b, e);
auto size = v.size();
if (size == 0)
throw domain_error("median of an empty vector");
sort(v.begin(), v.end());
auto mid = size/2;
return size % 2 == 0 ? (v[mid] + v[mid-1]) / 2 : v[mid];
}
int main() {
const int arr[] = {1, 4, 6, 7};
size_t arr_size = sizeof(arr)/sizeof(*arr);
vector<int> arr2 = {1, 4, 6, 7};
cout << median2<int>(arr, arr+arr_size) << " "
<< median2<int>(arr2.begin(), arr2.end()) << endl;
}
|
fabf8682d2960ddbc21cc983fbd4ad2ed32ffcb7 | e43ddf8aa1e5541205ace207bf13cb1d87cb2704 | /ObEnchDlg.h | 5e76b4ae6968b09924c9facb48bd8e4d64f8cafc | [
"MIT"
] | permissive | clayne/obranditem | 5dbdf817cee53882020179d71de3f53ed6fe611e | 4869f96bb9eda7b3a2369815c5f225050d28c445 | refs/heads/master | 2023-03-16T05:51:36.236547 | 2020-04-02T18:19:39 | 2020-04-02T18:19:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,726 | h | ObEnchDlg.h | /*===========================================================================
*
* File: Obenchdlg.H
* Author: Dave Humphrey (uesp@sympatico.ca)
* Created On: May 8, 2006
*
* Description
*
*=========================================================================*/
#ifndef __OBENCHDLG_H
#define __OBENCHDLG_H
/*===========================================================================
*
* Begin Required Includes
*
*=========================================================================*/
#include "windows/obrecdialog.h"
#include "windows/obrecordlistctrl.h"
/*===========================================================================
* End of Required Includes
*=========================================================================*/
/*===========================================================================
*
* Begin Class CObEnchDlg Definition
*
*=========================================================================*/
class CObEnchDlg : public CObRecordDialog {
DECLARE_OBRECUIFIELDS();
protected:
CObEnchRecord* m_pRecord;
public:
/* Construction */
CObEnchDlg(CWnd* pParent = NULL);
/* Access the dialog record object */
virtual CObRecord* GetRecord (void) { return (m_pRecord); }
/* Return a prefix describing the record type */
virtual const SSCHAR* GetTitlePrefix (void) { return ("Enchantment"); }
/* Set and get control data */
void ClearControlData (void);
void SetControlData (void);
void SetEffectList (void);
/* Set class members */
void SetRecord (CObRecord* pRecord) { m_pRecord = ObCastClass(CObEnchRecord, pRecord); }
/* Dialog Data */
//{{AFX_DATA(CObEnchDlg)
enum { IDD = IDD_ENCH_DLG };
CEdit m_FormID;
CButton m_AutoCalc;
CObRecordListCtrl m_EffectList;
CEdit m_Cost;
CEdit m_Charge;
CEdit m_Type;
CEdit m_EditorID;
//}}AFX_DATA
/* ClassWizard generated virtual function overrides */
//{{AFX_VIRTUAL(CObEnchDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX);
//}}AFX_VIRTUAL
protected:
/* Generated message map functions */
//{{AFX_MSG(CObEnchDlg)
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/*===========================================================================
* End of Class CObEnchDlg Definition
*=========================================================================*/
//{{AFX_INSERT_LOCATION}}
//}}AFX_INSERT_LOCATION
#endif
/*===========================================================================
* End of File Obenchdlg.H
*=========================================================================*/
|
77094d4927c88efe0115d90ef42cdcc7d03b1869 | ac8d5cd79cc6899de62c1cd4dd26a880e8975134 | /GraczKomputer.cpp | 2b10e8f74ddd62038a13ed423cbc00a053f8ad7a | [] | no_license | Openroads/kolko-krzyzyk | 2a7db9bd253c25c128a5971e12aef1f5d8e2bd56 | 3c063d1aa3d04d2af2ffa2802a656984f90a4ac4 | refs/heads/master | 2021-01-01T03:36:08.947254 | 2016-04-22T09:20:29 | 2016-04-22T09:20:29 | 56,191,908 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 385 | cpp | GraczKomputer.cpp | #include "GraczKomputer.h"
#include <ctime>
#include <cstdlib>
GraczKomputer::GraczKomputer(int w,string n ):wymiar(w),Gracz(n)
{
}
int GraczKomputer::podajX() {
srand(time(0));
int x;
x = rand() % wymiar;
return x;
}
int GraczKomputer::podajY() {
srand(time(NULL));
int y;
y = rand() % wymiar;
return y;
}
GraczKomputer::~GraczKomputer()
{
}
|
f302ebe812b69e7b506b1e9f8a0f499cf2894110 | c2b7e4a26fa9813738ea8f4784bd90698500620b | /include/HttpConn.h | 7a55265d3bef9729297b197da0c5b376b968e8eb | [] | no_license | Dark-Rich/webserver | e7604eacd2bb8011cfe3b59a5e696f55e3fa6140 | 0a9472537a80681c87eace7c7048bc5fa06fef12 | refs/heads/master | 2020-05-17T13:55:38.286718 | 2015-04-30T09:31:48 | 2015-04-30T09:31:48 | 34,208,479 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,137 | h | HttpConn.h | #ifndef HTTPCONN_H
#define HTTPCONN_H
#include <arpa/inet.h>
#include <sys/stat.h>
/**
**HTTP服务类
*/
class HttpConn
{
public:
/*文件名的最大长度*/
static const int FILENAME_LEN=200;
/*读缓冲区的大小*/
static const int READ_BUFFER_SIZE=2048;
/*写缓冲区的大小*/
static const int WRITE_BUFFER_SIZE=1024;
/*HTTP请求方法*/
enum METHOD{GET=0,POST,HEAD,PUT,DELETE,TRACE,OPTIONS,CONNECT,PATCH};
/*解析客户请求时,主状态机的状态*/
enum CHECK_STATE{CHECK_STATE_REQUESTLINE=0,
CHECK_STATE_HEADER,
CHECK_STATE_CONTENT};
/*处理HTTP请求的结果*/
enum HTTP_CODE{NO_REQUEST,GET_REQUEST,BAD_REQUEST,NO_RESOURCE,FORBIDDEN_REQUEST,FILE_REQUEST,INTERNAL_ERROR,CLOSED_CONNECTION};
/*行的读取状态*/
enum LINE_STATUS{LINE_OK=0,LINE_BAD,LINE_OPEN};
public:
/*epoll文件描述符,所有事件使用相同的*/
static int m_epollfd_;
/*用户数量*/
static int m_user_count_;
public:
HttpConn();
virtual ~HttpConn();
public:
/*初始化连接*/
void Init(int sockfd,const struct sockaddr_in &addr);
/*关闭连接*/
void Close(bool real_close=true);
/*处理客户请求*/
void Process();
/*非阻塞读操作*/
bool Read();
/*非阻塞写操作*/
bool Write();
protected:
private:
/*HTTP连接的socket*/
int m_sockfd_;
/*客户端的ip地址*/
struct sockaddr_in m_address_;
/*读缓冲区*/
char m_read_buf[READ_BUFFER_SIZE];
/*标识读缓冲区已经读入的客户端数据的最后一个字节的下一个位置*/
int m_read_idx_;
/*当前正在分析的字符在读缓冲区中的位置*/
int m_checked_idx_;
/*当前正在解析的行的起始位置*/
int m_start_line_;
/*写缓冲区*/
char m_write_buf[WRITE_BUFFER_SIZE];
/*写缓冲区中待发送的字节数*/
int m_write_idx_;
/*主状态机当前状态*/
CHECK_STATE m_check_state_;
/*请求方法*/
METHOD m_method_;
/*客户请求文件的完整路径*/
char m_real_file[FILENAME_LEN];
/*客户请求文件的文件名*/
char* m_url_;
/*HTTP版本协议号*/
char* m_version_;
/*主机名*/
char* m_host_;
/*HTTP请求的消息体长度*/
int m_content_length_;
/*HTTP请求是否要保持连接*/
bool m_linger_;
/*客户请求的目标文件被mmap到内存的起始位置*/
char* m_file_address_;
/*目标文件的状态*/
struct stat m_file_stat_;
/*成员iov_base指向一个缓冲区,存放readv所接收的数据或是writev将要发送的数据*/
/*ov_len确定接收的最大长度以及实际写入的长度*/
struct iovec m_iv[2];
/*内存块的数量*/
int m_iv_count_;
private:
/*初始化连接*/
void Init();
/*解析HTTP请求*/
HTTP_CODE ProcessRead();
/*填充HTTP应答*/
bool ProcessWrite(HTTP_CODE ret);
/*解析HTTP请求行,获得请求方法,目标URL,以及HTTP版本号*/
HTTP_CODE ParseRequestLine(char *text);
/*解析HTTP请求的一个头部信息*/
HTTP_CODE ParseHeaders(char *text);
/*解析HTTP请求的消息体*/
HTTP_CODE ParseContent(char *text);
/*分析目标文件属性*/
HTTP_CODE DoRequest();
/*获取内容*/
char *GetLine();
/*从状态机*/
LINE_STATUS ParseLine();
/*解除内存映射*/
void Unmap();
/*向写缓冲写入待发送的数据*/
bool AddResponse(const char *format,...);
/*发送的内容*/
bool AddContent(const char *content);
/*发送的状态*/
bool AddStatusLine(int status,const char *title);
/*发送的头部*/
bool AddHeaders(int content_length);
/*消息体长度*/
bool AddContentLength(int content_length);
/*状态信息*/
bool AddLinger();
/*标志信息*/
bool AddBlankLine();
};
#endif // HTTPCONN_H
|
c06378cf2b0b743d01f4741571d718fd2d12f539 | 8294cadba0c0b8126dbc6e39ab117e2e245e3201 | /source/connection_hub.cpp | 6f147bb1716a85f234f27c99597e2038b173f501 | [
"MIT"
] | permissive | DaveChambers/chorus | 16ccff07b1ce543574db080aeea4f856565b2d17 | 77b8f92770fd3f48ddff7a43a6e275b98d604bd5 | refs/heads/master | 2022-04-06T05:35:49.149890 | 2020-02-12T16:29:32 | 2020-02-12T16:29:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,784 | cpp | connection_hub.cpp | #include <prismarine/connection_hub.h>
#include <memory>
namespace prismarine
{
ConnectionHub::ConnectionHub()
: addr()
{
}
ConnectionHub::~ConnectionHub()
{
}
int ConnectionHub::listen(const char* ip, int port)
{
uv_loop_t* loop = uv_default_loop();
uv_tcp_t server;
uv_tcp_init(loop, &server);
uv_ip4_addr(ip, port, &addr);
uv_tcp_bind(&server, (const struct sockaddr*) & addr, 0);
int r = uv_listen((uv_stream_t*)&server, 128, ConnectionHub::on_new_connection);
if (r) {
fprintf(stderr, "Listen error %s\n", uv_strerror(r));
return 1;
}
return uv_run(loop, UV_RUN_DEFAULT);
}
void ConnectionHub::on_new_connection(uv_stream_t* server, int status)
{
uv_loop_t* loop = uv_default_loop();
if (status < 0) {
fprintf(stderr, "New connection error %s\n", uv_strerror(status));
// error!
return;
}
std::unique_ptr<uv_tcp_t> client = std::make_unique<uv_tcp_t>();
uv_tcp_init(loop, client.get());
if (uv_accept(server, (uv_stream_t*)client.get()) == 0)
{
uv_read_start((uv_stream_t*)client.get(), ConnectionHub::alloc_buffer, ConnectionHub::echo_read);
}
else
{
uv_close((uv_handle_t*)client.get(), ConnectionHub::on_close);
}
}
void ConnectionHub::alloc_buffer(uv_handle_t* handle, size_t suggested_size, uv_buf_t* buf)
{
buf->base = (char*)malloc(suggested_size);
buf->len = suggested_size;
}
void ConnectionHub::echo_read(uv_stream_t* client, ssize_t nread, const uv_buf_t* buf)
{
}
void ConnectionHub::on_close(uv_handle_t* handle)
{
}
} |
db3a32afc8d499ce3290f991b69c0111b3daefd6 | 1420c9dac842a7950fea8fef3069d1c86ae81835 | /Source/PaulasCrazyIdea/PaulasSphere.h | 86b5ec6e2e0a00c0f992a1a0df09bf9ff798832b | [] | no_license | miguelemosreverte/UE4Visualization | 9618366ba1a661842b2d0227995af81f56499323 | 1dd2c2e151d79d67eb526c462350e499488add69 | refs/heads/master | 2021-01-12T03:33:00.039336 | 2017-03-30T01:41:49 | 2017-03-30T01:41:49 | 78,228,445 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,470 | h | PaulasSphere.h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "GameFramework/Actor.h"
#include "PaulasSphere.generated.h"
UCLASS()
class PAULASCRAZYIDEA_API APaulasSphere : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this actor's properties
APaulasSphere();
UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category = PaulasSpheres)
UStaticMeshComponent* SphereVisual;
UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category = PaulasSpheres)
UMaterial* StandardSphereMaterial;
UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category = PaulasSpheres)
UMaterial* OrangeSphereMaterial;
UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category = PaulasSpheres)
UMaterial* HighlightSphereMaterial;
bool Moved = false;
UFUNCTION(BlueprintCallable, Category = PaulasSpheres)
void maybeMove(UPARAM(ref) int32& newRowID);
FVector ID;
UFUNCTION(BlueprintCallable, Category = PaulasSpheres)
void setID(UPARAM(ref) FVector& newID);
FVector getID();
int32 RowID;
UFUNCTION(BlueprintCallable, Category = PaulasSpheres)
void setRowID(UPARAM(ref) int32& newRowID);
UFUNCTION(BlueprintCallable, Category = PaulasSpheres)
int32 getRowID();
UFUNCTION(BlueprintCallable, Category = PaulasSpheres)
void changeMaterial();
UFUNCTION(BlueprintCallable, Category = PaulasSpheres)
void changeMaterialOriginal();
UFUNCTION(BlueprintCallable, Category = PaulasSpheres)
void changeMaterialToHighlightVersion();
UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category = PaulasSpheres)
FVector LibraryPositionOffset;
// Called when the game starts or when spawned
virtual void BeginPlay() override;
// Called every frame
virtual void Tick( float DeltaSeconds ) override;
UStaticMeshComponent* JoyfulControl;
UStaticMesh * AssetSM_JoyControl;
FORCEINLINE void SetupSMComponentsWithCollision(UStaticMeshComponent* Comp)
{
if(!Comp) return;
//~~~~~~~~
Comp->bOwnerNoSee = false;
Comp->bCastDynamicShadow = true;
Comp->CastShadow = true;
Comp->BodyInstance.SetObjectType(ECC_WorldDynamic);
Comp->BodyInstance.SetCollisionEnabled(ECollisionEnabled::QueryAndPhysics);
Comp->BodyInstance.SetResponseToAllChannels(ECR_Ignore);
Comp->BodyInstance.SetResponseToChannel(ECC_WorldStatic, ECR_Block);
Comp->BodyInstance.SetResponseToChannel(ECC_WorldDynamic, ECR_Block);
Comp->BodyInstance.SetResponseToChannel(ECC_Pawn, ECR_Block);
Comp->SetHiddenInGame(false);
}
};
|
c5d1a92b9ecf1f4c040e9fd32fe67f27d7d441c5 | 2a6d801fde1f1975a8ab1fb5fe9dd25d61b64bdb | /src/simulator/save_simulation_data.cpp | 2b8e0b5af8deace5076e344808a542538e76a802 | [
"MIT"
] | permissive | oygx210/autogenu-jupyter | edab4cbc86436084cffaf60ea3257bc28b95cac3 | 7ee1710d4c8d2f4bceea70d5a2560d12eec29c8f | refs/heads/master | 2022-09-03T21:47:09.599432 | 2020-05-29T07:45:35 | 2020-05-29T07:45:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 674 | cpp | save_simulation_data.cpp | #include "save_simulation_data.hpp"
namespace cgmres {
void saveData(const int dim_state, const int dim_control_input,
std::ofstream& state_data, std::ofstream& control_input_data,
std::ofstream& error_data, const double time_param,
const double* state_vec, const double* control_input_vec,
const double error_norm) {
for (int i=0; i<dim_state; i++) {
state_data << state_vec[i] << " ";
}
state_data << "\n";
for (int i=0; i<dim_control_input; i++) {
control_input_data << control_input_vec[i] << " ";
}
control_input_data << "\n";
error_data << error_norm << "\n";
}
} // namespace cgmres |
b560c55b88b1ea61394a9ccb407d59752e2133ba | 9ea624a093561c87e47b822008e35d40a136a953 | /tst/OpcUaStackClient/ServiceSet/ServiceSetManagerSyncReal_t.cpp | 35afb468af80a9471ba2cd27efdd82f964fa2e98 | [
"Apache-2.0"
] | permissive | ASNeG/OpcUaStack | 399828371ed4c128360c710dcd831b41f192f27d | e7c365f006be878dcb588a83af9a0dde49bf2b5a | refs/heads/master | 2023-08-30T16:12:24.823685 | 2022-06-27T21:35:44 | 2022-06-27T21:35:44 | 149,216,768 | 141 | 41 | Apache-2.0 | 2023-08-22T09:10:17 | 2018-09-18T02:25:58 | C++ | UTF-8 | C++ | false | false | 298 | cpp | ServiceSetManagerSyncReal_t.cpp | #include "unittest.h"
#ifdef REAL_SERVER
BOOST_AUTO_TEST_SUITE(ServiceSetManagerSyncReal_)
BOOST_AUTO_TEST_CASE(ServiceSetManagerSyncReal_)
{
std::cout << "ServiceSetManagerSyncReal_t" << std::endl;
}
BOOST_AUTO_TEST_CASE(ServiceSetManagerSyncReal_xx)
{
}
BOOST_AUTO_TEST_SUITE_END()
#endif
|
5104696d49cd340df00210d1c9dfe9ddbed8b8fa | 6a94cd9fd6cdf2a2cbb79e04be4461aa688df83f | /indexer/cpp/index/index.hpp | f4da6d5c8937d0cb75cb25c3be29958054eaa7a0 | [] | no_license | igorhenri5/Search-Engine | fea786482e93a40491e6b67ed617159ade3f2bf3 | 09415264218b75b9bf1a52b844b5858ead60b85a | refs/heads/main | 2023-03-27T11:42:02.663715 | 2021-04-01T02:50:28 | 2021-04-01T02:50:28 | 338,874,173 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 898 | hpp | index.hpp | #ifndef __INDX__
#define __INDX__
#include <regex>
#include <vector>
#include <utility>
#include <unordered_map>
#include "../util/util.hpp"
#include "entry.hpp"
// #define SUB_INDEX_SIZE 5000
// #define SORT_CHUNK_SIZE 500
#define SUB_INDEX_SIZE 5000000
#define SORT_CHUNK_SIZE 2000
// #define SUB_INDEX_SIZE 10000000
// #define SORT_CHUNK_SIZE 1000
class InvertedIndex{
public:
InvertedIndex();
~InvertedIndex();
void insert(std::string, int, int);
void to_string();
unsigned long sizeBytes();
int vocabularySize();
void occurrenceToCSV(std::string);
double avgInvertedListSize();
private:
std::unordered_map<std::string, Entry*>* index;
std::vector<std::string>* subIndexList;
int numInsertions;
void exportIndex();
void clearIndex();
void mergeSubIndexes();
};
#endif |
2a7e4c75b9dbe8abda11ba27daad8c3a79b47d50 | 65d110333360454daf5ecdab3af420a809d72b7d | /Flameduino/MCP4726.cpp | df1554d1270808aaf833e6bc9ead5e22784ced1f | [
"BSD-3-Clause"
] | permissive | Ehryk/Flameduino | eb0ede77be4cdd9d488d6217ec5d35bb8c49fb9e | 734ce5d1e489ed2962d56b2f586ccdc82127ae8c | refs/heads/master | 2021-01-23T06:44:48.064796 | 2015-11-10T21:09:20 | 2015-11-10T21:09:20 | 41,476,153 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,715 | cpp | MCP4726.cpp |
#include "MCP4726.h"
#include <Wire.h>
MCP4726::MCP4726() {
}
void MCP4726::begin(uint8_t addr) {
_i2caddr = addr;
Wire.begin();
}
void MCP4726::begin(uint8_t addr, bool retain_default) {
_i2caddr = addr;
_retain_default = retain_default;
Wire.begin();
}
void MCP4726::setRetainDefault(bool retain_default) {
_retain_default = retain_default;
}
bool MCP4726::setOutput(uint16_t output)
{
return setOutput(output, _retain_default);
}
bool MCP4726::setOutput(uint16_t output, bool retain)
{
uint8_t twbrback = TWBR;
TWBR = ((F_CPU / 400000L) - 16) / 2; // Set I2C frequency to 400kHz
Wire.beginTransmission(_i2caddr);
if (retain)
{
Wire.write(MCP4726_RETAIN);
}
else
{
Wire.write(MCP4726_VOLATILE);
}
Wire.write(output / 16); // Upper data bits (D11.D10.D9.D8.D7.D6.D5.D4)
Wire.write((output % 16) << 4); // Lower data bits (D3. D2. D1.D0.xx.xx.xx.xx)
Wire.endTransmission();
TWBR = twbrback;
return true;
}
bool MCP4726::setVoltage(float voltage)
{
return setVoltage(voltage, _retain_default);
}
bool MCP4726::setVoltage(float voltage, bool retain)
{
uint16_t output = voltage / VOLTAGE_REFERENCE * MAX_VALUE;
if (output > MAX_VALUE)
{
output = MAX_VALUE;
}
else if (output < 0)
{
output = 0;
}
return setOutput(output, retain);
}
bool MCP4726::setPercentage(float percentage)
{
return setVoltage(percentage, _retain_default);
}
bool MCP4726::setPercentage(float percentage, bool retain)
{
uint16_t output = percentage / 100 * MAX_VALUE;
if (output > MAX_VALUE)
{
output = MAX_VALUE;
}
else if (output < 0)
{
output = 0;
}
return setOutput(output, retain);
}
|
fe33f6515b4f0e9f7647f30bc8c5e0df7f936dfd | e61b8adef5f9556cad8795b5bbf9b651ef04a01a | /tests/models/hubbard/dispersion/2d.cpp | eb0faee1134834dd4a480a92214d79e078c8fc2d | [
"MIT"
] | permissive | qftphys/Simulate-the-non-equilibrium-dynamics-of-Fermionic-systems | ea369e0c4dfa14a15dc8956a864b12b9d238fade | 48d36fecbe4bc12af90f104cdf1f9f68352c508c | refs/heads/master | 2020-03-14T05:16:52.309728 | 2017-02-13T12:13:42 | 2017-02-13T12:13:42 | 131,461,287 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,049 | cpp | 2d.cpp | #include <catch.hpp>
#include <ieompp/lattices/periodic_square_lattice.hpp>
#include <ieompp/models/hubbard/dispersion.hpp>
using namespace ieompp;
TEST_CASE("dispersion_2d")
{
const std::vector<uint64_t> sizes = {4, 8, 16, 32};
const std::vector<double> Js = {0.0, 0.5, 1.0, 1.5, 2.0};
for(const auto& Nx : sizes) {
for(const auto& Ny : sizes) {
for(const auto& J : Js) {
const lattices::PeriodicSquareLattice<double, uint64_t> lattice(Nx, 1., Ny, 1.),
brillouin_zone(Nx, Ny);
const auto dispersion =
models::hubbard::make_dispersion(brillouin_zone, lattice, J);
for(const auto& k_idx : brillouin_zone) {
const auto k = brillouin_zone[k_idx];
const auto expected =
-2 * J * (std::cos(k[0] * lattice.dx()) + std::cos(k[1] * lattice.dy()));
REQUIRE(dispersion(k_idx) == Approx(expected));
}
}
}
}
}
|
542b89bb8255a1e826f6e2c869a215f49762f7f7 | 6b550d3d0b182bcddda1f0a175d6b6cd07b60fb3 | /logdevice/common/configuration/EpochMetaDataVersion.h | 7b6c8673562bf2626803f9888f519e9363329dca | [
"BSD-3-Clause"
] | permissive | Rachelmorrell/LogDevice | 5bd04f7ab0bdf9cc6e5b2da4a4b51210cdc9a4c8 | 3a8d800033fada47d878b64533afdf41dc79e057 | refs/heads/master | 2021-06-24T09:10:20.240011 | 2020-04-21T14:10:52 | 2020-04-21T14:13:09 | 157,563,026 | 1 | 0 | NOASSERTION | 2020-04-21T19:20:55 | 2018-11-14T14:43:33 | C++ | UTF-8 | C++ | false | false | 1,411 | h | EpochMetaDataVersion.h | /**
* Copyright (c) 2017-present, Facebook, Inc. and its affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <memory>
#include <folly/Optional.h>
namespace facebook { namespace logdevice {
/**
* @file: EpochMetaData has several formats of metadata it supports. These are
* versioned by prepending a version field to the metadata. This file
* describes the version type and bounds on it, as well as the version
* currently used.
*/
class ServerConfig;
namespace epoch_metadata_version {
typedef uint32_t type;
const type CURRENT{2};
const type MIN_SUPPORTED{1};
inline bool validToRead(type v) {
return v >= MIN_SUPPORTED;
}
inline bool validToWrite(type v) {
return v >= MIN_SUPPORTED && v <= CURRENT;
}
// returns cfg->getMetaDataLogsConfig().metadata_version_to_write if it is
// set, otherwise returns CURRENT. Metadata writes should use this method to
// select the version of metadata to write. It has to be used instead of the
// metadata_version_to_write directly, as we want to avoid dumping
// metadata_version_to_write into the config if it hasn't been explicitly
// specified.
type versionToWrite(const std::shared_ptr<ServerConfig>& cfg);
}; // namespace epoch_metadata_version
}} // namespace facebook::logdevice
|
7bee6584513da9da63f49a8022b8ed03dc6e5f83 | ee4f338aebedc47b06bd08fd35eada5aa81c7a91 | /SDK/BZ_UI_DraggedItem_parameters.hpp | c3fa892e059ad704ebced44a01fe0d832991e398 | [] | no_license | Hengle/BlazingSails_SDK | 5cf1ff31e0ac314aa841d7b55d0409e3e659e488 | 8a70c90a01d65c6cbd25f3dfdd1a8262714d3a60 | refs/heads/master | 2023-03-17T11:11:09.896530 | 2020-01-28T19:46:17 | 2020-01-28T19:46:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 623 | hpp | BZ_UI_DraggedItem_parameters.hpp | #pragma once
// BlazingSails (Dumped by Hinnie) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "../SDK.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Parameters
//---------------------------------------------------------------------------
// Function UI_DraggedItem.UI_DraggedItem_C.SetIcon
struct UUI_DraggedItem_C_SetIcon_Params
{
struct FSlateBrush ReturnValue; // (Parm, OutParm, ReturnParm)
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
|
b3fb2f7c8217facd937b8da96d7cc5baf99df828 | 9b9f18276252c368e8d8eaa7591042a2624543ea | /2016/Day16/tests.cpp | a28c9db299d55a8ea0a79146a2f4da4d403237e0 | [
"MIT"
] | permissive | marcuskrahl/AdventOfCode | 9a8bcd195301986cf4c094cfffe530fad8f348f1 | 8170dc2ab3fe1a446b0892d5358e6637f4b429c9 | refs/heads/master | 2023-01-11T15:12:32.172994 | 2022-12-25T07:27:42 | 2022-12-25T07:27:42 | 47,201,168 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,272 | cpp | tests.cpp | #define CATCH_CONFIG_MAIN
#include "../lib/catch.hpp"
#include "Aunt.hpp"
TEST_CASE("Aunts are correctly parsed","[aunt]") {
Aunt aunt1("Sue 1: children: 3, cats: 7, samoyeds: 2, pomeranians: 3, akitas: 0, vizslas: 0, goldfish: 5, trees: 3, cars: 2, perfumes: 1");
REQUIRE(aunt1.get_value("children") == 3);
REQUIRE(aunt1.get_value("cats") == 7);
REQUIRE(aunt1.get_value("samoyeds") == 2);
REQUIRE(aunt1.get_value("pomeranians") == 3);
REQUIRE(aunt1.get_value("akitas") == 0);
REQUIRE(aunt1.get_value("vizslas") == 0);
REQUIRE(aunt1.get_value("goldfish") == 5);
REQUIRE(aunt1.get_value("trees") == 3);
REQUIRE(aunt1.get_value("cars") == 2);
REQUIRE(aunt1.get_value("perfumes") == 1);
Aunt aunt2("Sue 22: vizslas: 2, cars: 9, perfumes: 5");
REQUIRE(aunt2.get_value("vizslas") == 2);
REQUIRE(aunt2.get_value("cars") == 9);
REQUIRE(aunt2.get_value("perfumes") == 5);
REQUIRE(aunt2.get_value("akitas") == -1);
}
TEST_CASE("Aunts are equal if they share the same properties","[aunt]") {
Aunt aunt1("Sue 1: children: 3, cats: 7, samoyeds: 2");
Aunt aunt2("Sue 2: children: 3, cats: 7, akitas: 3");
Aunt aunt3("Sue 3: children: 3, cats: 7, samoyeds: 2, akitas: 4");
REQUIRE( (aunt1 == aunt2) == true);
REQUIRE( (aunt1 == aunt3) == true);
REQUIRE( (aunt2 == aunt3) == false);
}
TEST_CASE("Aunts are range equal if they share distinct properties","[aunt]") {
Aunt target_aunt("Sue 1: cats: 5, trees: 6, pomeranians: 4, goldfish: 3");
Aunt aunt2("Sue 2: cats: 5");
Aunt aunt3("Sue 3: cats: 7");
Aunt aunt4("Sue 4: trees: 6");
Aunt aunt5("Sue 5: trees: 7");
Aunt aunt6("Sue 6: pomeranians: 4");
Aunt aunt7("Sue 7: pomeranians: 3");
Aunt aunt8("Sue 8: goldfish: 3");
Aunt aunt9("Sue 9: goldfish: 2");
REQUIRE( aunt2.range_equals(target_aunt) == false);
REQUIRE( aunt3.range_equals(target_aunt) == true);
REQUIRE( aunt4.range_equals(target_aunt) == false);
REQUIRE( aunt5.range_equals(target_aunt) == true);
REQUIRE( aunt6.range_equals(target_aunt) == false);
REQUIRE( aunt7.range_equals(target_aunt) == true);
REQUIRE( aunt8.range_equals(target_aunt) == false);
REQUIRE( aunt9.range_equals(target_aunt) == true);
}
|
ea9cd80ae8d0bf4c379c6f80fd042dec2f0f3cd5 | 507784c65870c7dc8b64ac7423e8ef2d56171ed5 | /src/app.cpp | 064f0ea2a171f1151f7f9e3f5351461093597b6b | [] | no_license | rojkov/survival | 074e15716cedfa6f0888ff5088a54eafebec917f | 5de03dca2aa1b14a2737c25eb14f8d8fdfe829db | refs/heads/master | 2020-04-04T01:06:03.390577 | 2015-12-29T20:30:21 | 2015-12-29T20:30:21 | 41,848,119 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,568 | cpp | app.cpp | #include "app.h"
#include "world.h"
#include "lifeform.h"
App::App()
: m_win(nullptr, SDL_DestroyWindow)
, m_renderer(nullptr)
{
}
App::~App()
{
SDL_Quit();
}
int App::execute()
{
// TODO: init only used subsystems
if (SDL_Init(SDL_INIT_EVERYTHING) < 0) {
return -1;
}
m_win.reset(SDL_CreateWindow("Survival",
SDL_WINDOWPOS_UNDEFINED,
SDL_WINDOWPOS_UNDEFINED,
640, 480,
0));
if (m_win == nullptr) {
return -1;
}
m_renderer.reset(SDL_CreateRenderer(m_win.get(), -1,
SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC),
SDL_DestroyRenderer);
if (m_renderer == nullptr) {
return -1;
}
std::shared_ptr<World> world(std::make_shared<World>(m_renderer));
world->add_entity(std::make_shared<LifeForm>(world, 50, 50));
world->add_entity(std::make_shared<LifeForm>(world, 150, 180));
bool done(false);
SDL_Event event;
uint32_t previous(SDL_GetTicks());
while (!done) {
uint32_t current = SDL_GetTicks();
uint32_t elapsed = current - previous;
previous = current;
// Handle pending events
while (SDL_PollEvent(&event)) {
if (event.type == SDL_QUIT) {
done = true;
}
}
world->handle_event(event);
world->update(elapsed);
world->render();
}
return 0;
}
|
e35142a9494cd1bda853f6d8cb227a24236f9314 | 233fbc2e4322e4275cbe40562e29f25d2f2cc949 | /util.h | 69eac35454155cf3fd120d3fef70abf0f1d00c1c | [] | no_license | nurettin/3dtest | 158829c7a6aa9e789f98ac0c4cf2c5462c5562f9 | 26870c0ff98b093275f6bdd6e56c54701f1964ad | refs/heads/master | 2016-09-11T02:48:10.708580 | 2014-08-23T19:13:20 | 2014-08-23T19:13:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,352 | h | util.h | #ifndef UTIL_HPP
#define UTIL_HPP
#include <memory>
#include <utility>
#include <stdexcept>
#include <GL/gl.h>
#include <SDL.h>
struct SDL
{
typedef std::unique_ptr<int, std::function<void(int*)>> sdl_t;
typedef std::unique_ptr<SDL_Window, void(*)(SDL_Window*)> win_t;
typedef std::unique_ptr<void, void(*)(void*)> ctx_t;
typedef std::function<void()> fun_t;
typedef std::function<void(int, int)> fun_resize_t;
typedef std::function<void(SDL_Event const &)> fun_event_t;
sdl_t sdl;
win_t win;
ctx_t ctx;
fun_t init;
fun_resize_t resize;
fun_t render;
fun_event_t event;
SDL(int w, int h, fun_t init, fun_resize_t resize, fun_t render, fun_event_t event)
: sdl(gc(SDL_Init(SDL_INIT_EVERYTHING), [](int*){ SDL_Quit(); }))
, win(SDL_CreateWindow("SDL2 OpenGL Test"
, SDL_WINDOWPOS_UNDEFINED
, SDL_WINDOWPOS_UNDEFINED
, w, h
, SDL_WINDOW_OPENGL| SDL_WINDOW_FULLSCREEN), &SDL_DestroyWindow)
, ctx(SDL_GL_CreateContext(win.get()), &SDL_GL_DeleteContext)
, init(init)
, resize(resize)
, render(render)
, event(event)
{
ensure_sdl(*sdl.get());
ensure_sdl(win.get());
ensure_sdl(ctx.get());
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24);
SDL_GL_SetSwapInterval(1);
init();
resize(w, h);
}
~SDL(){ SDL_Quit(); }
void run()
{
SDL_Event e;
for(bool run= true; run; SDL_Delay(10))
{
bool handled= false;
while(SDL_PollEvent(&e))
{
switch(e.type)
{
case SDL_QUIT:
run= false;
break;
case SDL_WINDOWEVENT:
if(e.window.event== SDL_WINDOWEVENT_RESIZED)
resize(e.window.data1, e.window.data2);
handled= true;
break;
}
if(!handled) event(e);
}
render();
SDL_GL_SwapWindow(win.get());
}
}
void ensure_sdl(int i){ if(i< 0) throw std::runtime_error(SDL_GetError()); }
template <typename T>
void ensure_sdl(T* p){ if(p== 0) throw std::runtime_error(SDL_GetError()); }
template <typename T, typename D>
std::unique_ptr<T, D> gc(T p, D d)
{
return std::unique_ptr<T, D>(&p, d);
}
template <typename T, typename D>
std::unique_ptr<T, D> gc(T* p, D d)
{
return std::unique_ptr<T, D>(p, d);
}
};
#endif
|
cb6d786abba7f5b89698d7471e7765efc45c5184 | c5b5805ed4dd2bf46fd31826670017abec8e872e | /Arrays/checkKey&Doible.cpp | 2e3bfe5b941ed15d3064986585d7b44d7c8bb2ee | [] | no_license | maverick439/DataStructures | 3079224f0dcdf1a779e870209e6425fb11661da7 | bf5d632d8558ff4f051c4ac7939028774b39af56 | refs/heads/master | 2022-07-23T16:03:15.218699 | 2022-07-09T03:41:19 | 2022-07-09T03:41:19 | 131,743,165 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 633 | cpp | checkKey&Doible.cpp | /**
* Given an array arr of integers, check if there exists two integers N and M such that N is the double of M ( i.e. N = 2 * M).
*
* Input: arr = [10,2,5,3]
* Output: true
*
* Input: arr = [3,1,7,11]
* Output: false
* */
class Solution {
public:
bool checkIfExist(vector<int>& arr) {
unordered_set<int> set;
for(int i=0; i< arr.size(); i++){
if((set.find(2*arr[i]) != set.end()) || (arr[i]%2 == 0 && set.find(arr[i]/2) != set.end())){
return true;
}
else{
set.insert(arr[i]);
}
}
return false;
}
}; |
7bb2e3e3641eecaa027367de39dba5f41f1acc78 | 4e38faaa2dc1d03375010fd90ad1d24322ed60a7 | /include/RED4ext/Scripting/Natives/Generated/quest/CharacterManagerCombat_AssignSquad.hpp | 9570d54560a3f73c572a12f5057d097f88d45196 | [
"MIT"
] | permissive | WopsS/RED4ext.SDK | 0a1caef8a4f957417ce8fb2fdbd821d24b3b9255 | 3a41c61f6d6f050545ab62681fb72f1efd276536 | refs/heads/master | 2023-08-31T08:21:07.310498 | 2023-08-18T20:51:18 | 2023-08-18T20:51:18 | 324,193,986 | 68 | 25 | MIT | 2023-08-18T20:51:20 | 2020-12-24T16:17:20 | C++ | UTF-8 | C++ | false | false | 1,033 | hpp | CharacterManagerCombat_AssignSquad.hpp | #pragma once
// clang-format off
// This file is generated from the Game's Reflection data
#include <cstdint>
#include <RED4ext/Common.hpp>
#include <RED4ext/NativeTypes.hpp>
#include <RED4ext/Scripting/Natives/Generated/AI/SquadType.hpp>
#include <RED4ext/Scripting/Natives/Generated/game/EntityReference.hpp>
#include <RED4ext/Scripting/Natives/Generated/quest/ICharacterManagerCombat_NodeSubType.hpp>
namespace RED4ext
{
namespace quest
{
struct CharacterManagerCombat_AssignSquad : quest::ICharacterManagerCombat_NodeSubType
{
static constexpr const char* NAME = "questCharacterManagerCombat_AssignSquad";
static constexpr const char* ALIAS = NAME;
TweakDBID presetID; // 70
game::EntityReference puppetRef; // 78
AI::SquadType squadType; // B0
uint8_t unkB4[0xB8 - 0xB4]; // B4
};
RED4EXT_ASSERT_SIZE(CharacterManagerCombat_AssignSquad, 0xB8);
} // namespace quest
using questCharacterManagerCombat_AssignSquad = quest::CharacterManagerCombat_AssignSquad;
} // namespace RED4ext
// clang-format on
|
2cd69816e841258256bf82569a03fb6a74d7bb56 | 3deaf38a9f50d9701f7de75a7421b66b0b704ee4 | /cs116/lab04/savingsAccount.h | a3b4e21fbbc09cc3c79545bf9c52b18fafb32ddc | [] | no_license | mikim42/Ohlone | e1bc2c85ba6c9eb8b2a89817f8654325b6df56de | dba2736a02ae22453ff94f514e8908d4f3ae5bef | refs/heads/master | 2021-01-03T01:38:24.057727 | 2020-02-11T21:01:41 | 2020-02-11T21:01:41 | 239,861,478 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,454 | h | savingsAccount.h | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* savingsAccount.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: Mingyun Kim <mikim@student.42.us.org> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/03/04 17:43:56 by Mingyun K #+# #+# */
/* Updated: 2018/03/04 17:44:03 by Mingyun K ### ########.fr */
/* */
/* ************************************************************************** */
/*
** Mingyun Kim
** https://www.github.com/mikim42
*/
#ifndef H_savingsAccount
#define H_savingsAccount
#include "bankAccount.h"
const double DEFAULT_INTEREST_RATE_SAVINGS = 0.06;
class savingsAccount: public bankAccount
{
public:
double getInterestRate() const;
void setInterestRate(double rate);
void withdraw(double amount);
void postInterest();
void print() const;
savingsAccount(int acctNumber, double bal,
double intRate = DEFAULT_INTEREST_RATE_SAVINGS);
protected:
double interestRate;
};
#endif
|
9e9091475ab3e0d4a8d4d7781ec97b8e1f06dbc1 | 4d3fedef233cb3591bcae93424e3e1615ce03320 | /241diffWaysToCompute.cpp | 60970ba4c55ca439a6a0dd3d58f7e691aeac4fba | [] | no_license | noelzhang/LeetCodeCPP | cdd95ac67fd6ef0609d5083a54ed2bc09f6e0dd4 | 39518f1aa01cf92967e0bf7b20df1ca881345b12 | refs/heads/master | 2020-04-15T04:46:52.294472 | 2015-08-16T13:54:26 | 2015-08-16T13:54:26 | 38,528,484 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 719 | cpp | 241diffWaysToCompute.cpp | class Solution {
public:
vector<int> diffWaysToCompute(string input) {
vector<int> res;
if(input.length()==0)
return res;
for (int i = 0; i < input.length(); ++i)
{
auto cur = input[i];
if(cur == '-'||cur == '+'||cur == '*'){
auto res1 = diffWaysToCompute(input.substr(0,i));
auto res2 = diffWaysToCompute(input.substr(i+1,input.length()-i-1));
for(auto r1 : res1){
for(auto r2 : res2){
switch(cur){
case '-':
res.push_back(r1 - r2);
break;
case '+':
res.push_back(r1 + r2);
break;
default:
res.push_back(r1 * r2);
}
}
}
}
}
if(res.empty())
res.push_back(atoi(input.c_str()));
return res;
}
}; |
a1b5a77f7e8684add978257b699947b606d701c6 | 1cedee9b9fc9551e05188c5f13863db1dfcda396 | /libraries/CurieBle/src/BleDescriptor.h | bdd8378a5b0af7fe1b4e07941ced46d2648b5fcf | [] | no_license | cmti-95035/Arduino | a9d6aed8da1ec3b0807239763af1448fe489b5b5 | fbf43e101882ea44043b7c0c4b63e24e8bbed2e5 | refs/heads/master | 2021-01-10T13:07:11.555917 | 2016-01-25T04:37:35 | 2016-01-25T04:37:35 | 47,204,033 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,445 | h | BleDescriptor.h | /*
* Copyright (c) 2015 Intel Corporation. All rights 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef _BLE_DESCRIPTOR_H_INCLUDED
#define _BLE_DESCRIPTOR_H_INCLUDED
#include "BleCommon.h"
#include "internal/ble_client.h"
/**
* BLE Descriptor Events
*/
enum BleDescriptorEvent {
BLE_DESC_EVENT_WRITE = 0,
};
/* Forward declaration needed for callback function prototype below */
class BleCharacteristic;
class BleDescriptor;
/** Function prototype for BLE Characteristic event callback */
typedef void (*BleDescriptorEventCb)(BleDescriptor &descriptor, BleDescriptorEvent event, void *arg);
/**
* BLE GATT Descriptor class
*/
class BleDescriptor {
public:
/**
* Constructor for BLE Descriptor with 16-bit UUID
*
* @param uuid16 16-bit UUID defined by BLE standard
* @param maxLength Maximum data length required for descriptor value (<= BLE_MAX_ATTR_DATA_LEN)
* @param clientAccess Access permissions for remote client
*/
BleDescriptor(const uint16_t uuid16,
const uint16_t maxLength,
const BleClientAccessMode clientAccess);
/**
* Constructor for BLE Descriptor with 128-bit UUID
*
* @param uuid128 128-bit custom-defined UUID
* @param maxLength Maximum data length required for descriptor value (<= BLE_MAX_ATTR_DATA_LEN)
* @param clientAccess Access permissions for remote client
*/
BleDescriptor(const uint8_t uuid128[],
const uint16_t maxLength,
const BleClientAccessMode clientAccess);
/**
* Set the current value of the Descriptor
*
* @param value New value to set, as a byte array. Data is stored in internal copy.
* @param length Length, in bytes, of valid data in the array to write.
* Must not exceed BLE_MAX_ATTR_DATA_LEN.
*
* @return BleStatus indicating success or error
*/
BleStatus setValue(const uint8_t value[],
const uint16_t length);
/* Alternative methods to set descriptor value */
BleStatus setValue(const String &str);
BleStatus setValue(const char *cstr);
BleStatus setValue(const char &value);
BleStatus setValue(const unsigned char &value);
BleStatus setValue(const short &value);
BleStatus setValue(const unsigned short &value);
BleStatus setValue(const int &value);
BleStatus setValue(const unsigned int &value);
BleStatus setValue(const long &value);
BleStatus setValue(const unsigned long &value);
/**
* Get the current value of the Descriptor
*
* @param value Current value, as a byte array. Data is read from internal copy.
* @param length Length, in bytes, of valid data read into the array.
*
* @return BleStatus indicating success or error
*/
BleStatus getValue(uint8_t value[], uint16_t &length) const;
/* Alternative methods to get descriptor value */
BleStatus getValue(String &str) const; /* WARNING - assumes characteristic value is a null-terminated string */
BleStatus getValue(char *cstr) const; /* WARNING - ensure cstr buffer size is big enough */
BleStatus getValue(char &value) const;
BleStatus getValue(unsigned char &value) const;
BleStatus getValue(short &value) const;
BleStatus getValue(unsigned short &value) const;
BleStatus getValue(int &value) const;
BleStatus getValue(unsigned int &value) const;
BleStatus getValue(long &value) const;
BleStatus getValue(unsigned long &value) const;
/**
* Provide a function to be called when events related to this Descriptor are raised
*
* @param callback Pointer to callback function to invoke when an event occurs, or NULL to disable.
* @param arg [Optional] Opaque argument which will be passed in the callback.
*/
void setEventCallback(BleDescriptorEventCb callback, void *arg = NULL);
private:
friend class BleCharacteristic;
friend void blePeripheralGattsEventHandler(ble_client_gatts_event_t event, struct ble_gatts_evt_msg *event_data, void *param);
BleDescriptor(const uint16_t maxLength,
const BleClientAccessMode clientAccess);
BleStatus _setValue(void);
void _setConnectedState(boolean_t connected);
struct ble_gatts_descriptor _desc;
struct bt_uuid _uuid;
uint16_t _handle;
uint16_t _char_handle;
boolean_t _initialised;
boolean_t _connected;
BleDescriptorEventCb _event_cb;
void *_event_cb_arg;
uint8_t _data[BLE_MAX_ATTR_DATA_LEN];
};
#endif // _BLE_DESCRIPTOR_H_INCLUDED
|
5476d5ee941bbc53572895a2ee1b6882eef8d916 | 957bccd826fb9c6be313119c6a3b3163541aee53 | /Matura_informatyka/piksele.cpp | e6c817e31609ce6544db7f30a2754b995c705157 | [] | no_license | andrzejjurga/zsk | c1678366db2a306ce805aec48a554f8527eb1499 | 17187270ee13e8caf30ecf568b94d79968f7ba93 | refs/heads/master | 2023-03-31T02:45:29.944465 | 2021-03-31T15:18:46 | 2021-03-31T15:18:46 | 295,343,236 | 2 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 2,358 | cpp | piksele.cpp | //Algorytmy w praktyce Piksele Egzamin maturalny — maj 2017
#include <iostream>
#include <fstream>
#include <math.h>
using namespace std;
void zad6_1()
{
int tab[200][320];
ifstream plik;
int max = 0, min = 250;
plik.open("dane.txt");
for(int i = 0; i < 200; i++)
{
for(int j = 0; j < 320 ; j++)
{
plik >> tab[i][j];
if(tab[i][j] > max)
max = tab[i][j];
else if(tab[i][j] < min)
min = tab[i][j];
}
}
cout<<max<<" "<<min<<endl;
}
void zad6_2()
{
int tab[200][320];
ifstream plik;
int wyn = 0;
plik.open("dane.txt");
for(int i = 0; i < 200; i++)
for(int j = 0; j < 320 ; j++)
plik >> tab[i][j];
for(int i = 0; i < 200; i++)
{
bool u = true;
int left = 0, right = 319;
while(left<right && u == true)
{
if(tab[i][left]!=tab[i][right])
u = false;
left++;
right--;
}
if (u == false)
wyn++;
}
cout<<wyn<<endl;
}
void zad6_3()
{
int tab[200][320];
ifstream plik;
plik.open("dane.txt");
int wyn = 0;
for(int i = 0; i < 200; i++)
for(int j = 0; j < 320 ; j++)
plik >> tab[i][j];
for(int i = 0; i < 200; i++)
for(int j = 0; j < 320 ; j++)
{
if(i>0 && abs(tab[i][j]-tab[i-1][j])>128)
wyn++;
else if(j<319 && abs(tab[i][j]-tab[i][j+1])>128)
wyn++;
else if(i<199 && abs(tab[i][j]-tab[i+1][j])>128)
wyn++;
else if(j>0 && abs(tab[i][j]-tab[i][j-1])>128)
wyn++;
}
cout<<wyn<<endl;
}
void zad6_4()
{
int tab[200][320];
ifstream plik;
plik.open("dane.txt");
for(int i = 0; i < 200; i++)
for(int j = 0; j < 320 ; j++)
plik >> tab[i][j];
int length = 0, temp = 1;
for(int j = 0; j < 320 ; j++)
for(int i = 0; i < 199; i++)
{
if(tab[i+1][j]!=tab[i][j])
{
if(temp > length)
length = temp;
temp = 0;
}
temp++;
}
cout<<length<<endl;
}
int main()
{
zad6_1();
zad6_2();
zad6_3();
zad6_4();
return 0;
}
|
0274c8579b610fe8b21fa28ee39c3e6b7e6b71ab | eb7caa862eb8cb9ed81b6568c13303f9a8590b02 | /build3/vs2010/GJK/GJK.h | 7adf40da5a68cdd87c0348148a57c8a599e4ac41 | [
"Zlib"
] | permissive | Valvador/bullet3Experiments | 43c80fd72b074abd80fbaeabad8c922ee11e5ba5 | d345149a2ea3a9c92eb6397b9d79bfda966d6652 | refs/heads/master | 2021-01-15T18:16:34.281231 | 2020-09-08T02:39:14 | 2020-09-08T02:39:14 | 35,391,137 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 975 | h | GJK.h | #include "btVector3.h"
// GJK IMPLEMETNATION USING https://github.com/kevinmoran/GJK/blob/master/GJK.h AS REFERENCE
///
#pragma once
namespace ProjGJK
{
class GJKConvex;
struct GJKContactResult
{
btVector3 normal;
btVector3 position;
float depth;
};
struct GJKSimplex
{
btVector3 vertices[4];
GJKSimplex() // Uninitialized
{};
GJKSimplex( const btVector3& a, const btVector3& b, const btVector3& c, const btVector3& d) :
vertices{ a,b,c,d }
{};
void updateSimplexVertex(int i, const btVector3& vertex);
void updateSimplex3(int &simpDim, btVector3& searchDir);
bool updateSimplex4CheckInside(int &simpDim, btVector3& searchDir);
GJKContactResult doEPAForSimplexContact(GJKConvex* shape0, GJKConvex* shape1);
};
class GJKPair
{
private:
GJKConvex* obj0;
GJKConvex* obj1;
public:
GJKPair(GJKConvex* shape0, GJKConvex* shape1) :
obj0(shape0),
obj1(shape1)
{};
bool doGJK(GJKContactResult* resultOut = nullptr);
};
} |
3b176a1a1c8dca70f6f7779791d1427a4305c767 | 2133dd71f3bd896acdfe2236a8b95a2774379bda | /string/678. 有效的括号字符串.cpp | 16e241f7276aaea62cefd7858cb46a6153fa8296 | [] | no_license | SuperCodeFarmers/MyLeetCode | 4df011817c19b6d3d4f7d0f16ee022d8d2041768 | a7677da42340b85faee9e2d5d755db38089795b8 | refs/heads/master | 2023-08-24T22:20:25.832819 | 2021-09-30T07:12:32 | 2021-09-30T07:12:32 | 275,822,699 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,938 | cpp | 678. 有效的括号字符串.cpp | /*
678. 有效的括号字符串
给定一个只包含三种字符的字符串:( ,) 和 *,写一个函数来检验这个字符串是否为有效字符串。有效字符串具有如下规则:
任何左括号 ( 必须有相应的右括号 )。
任何右括号 ) 必须有相应的左括号 ( 。
左括号 ( 必须在对应的右括号之前 )。
* 可以被视为单个右括号 ) ,或单个左括号 ( ,或一个空字符串。
一个空字符串也被视为有效字符串。
示例 1:
输入: "()"
输出: True
示例 2:
输入: "(*)"
输出: True
示例 3:
输入: "(*))"
输出: True
注意:
字符串大小将在 [1,100] 范围内。
*/
/*
解题思路:
遍历两次,第一次顺序,第二次逆序。
第一次遇到左括号加一,右括号减一,星号加一,最后保证cnt >= 0,也就是可以保证产生的左括号足够
第二次遇到右括号加一,左括号减一,星号加一,最后保证cnt >= 0,也就是可以保证产生的右括号足够
当两次遍历都是True,那么说明有效.
首先必要性是显然的,如果某个方向不能满足足够的括号,那肯定不有效;而充分性,我们关注的其实是对于*的处理这里,我们这样判断之后其实需要能够对应一个有效的'*'的转换方案,就可以说这个判断是充分的。
对于有效的*的转换方案,我们在两次遍历中分别将'*'看作'('和')',那么其实只要两次遍历用于匹配的那些'*'是不相同的集合即可。
具体一点,我们假设我们的匹配方案是尽可能的先匹配最近的(),在没有可用的情况下再去利用*变换出来的括号
对于第一次遍历,我们将'*'看作'(',那么最后'('的数量>=')'的数量。最后能够匹配到所有的),可能会剩余一些'('或者'*'。 那么匹配到的')'有两种,一种直接和最近的'('匹配的')',一种是和'*'匹配的')‘,我们将第一种的字符对集合记为A,第二个记为B同样,
对于第二次遍历,我们将'*'看作')',最后所有'('都会被匹配,同样划分为两种,一种是和最近的')'匹配的,一种是和'*'匹配的,第一种匹配集合记为C,第二种记为D。
这样,我们发现两次遍历后,所有的'('和')'都至少出现在A,B,C,D,中的一个集合中;简单思考,我们不难发现,A和C是相同的,因为我们的规则总会先去匹配到最近的括号。
而B和D中的'*'一定是不同的'*',这个就是我们证明的目标!因为如果B和D中某个'*'是相同位置的'*'的话,那么这个'*'在两次遍历中分别匹配了')'和'(',那么其实这个'*'一定在一对'('和')'之间,而这两个'('其实')'其实本身应该优先相互匹配,出现在集合A(也就是C)中,而不应该属于B和D中。
由此推出矛盾,于是我们知道C和D中的'*'是不重合的。
这样我们就得到了一个充分的转换方案,将B中的'*’转换为'(',D中的'*'转换为')',剩余的没在B和D中的看做空,就能够得到一个有效的括号序列。所以这个两次遍历的判断条件是充分的。
*/
class Solution
{
public:
bool checkValidString(string s)
{
int len = s.size();
int leftCount = 0;
int rightCount = 0;
for (int i = 0, j = len - 1; i < len; ++i, --j)
{
if (s[i] == ')') {
leftCount -= 1;
} else {
leftCount += 1;
}
if (leftCount < 0) {
return false;
}
if (s[j] == '(') {
rightCount -= 1;
} else {
rightCount += 1;
}
if (rightCount < 0) {
return false;
}
}
return true;
}
}; |
2759c5c2119fb0361ff39bf74985e5d8e75875a5 | 43ce1a6015cdbdfc93a797b01504384b4b205e98 | /lec03/countBits.cpp | 633899a47ee5fe91992a15c77b1befac78da2966 | [] | no_license | mohankukreja1/cpp | 287955da7d7dfc2ea3f7651903fc2f4fe5a374ad | 82f6e03faa138a1ead0137a0d979e760d7c556bc | refs/heads/master | 2022-12-31T13:50:56.282385 | 2020-10-17T08:32:28 | 2020-10-17T08:32:28 | 304,832,641 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 286 | cpp | countBits.cpp | //count no of bits
#include <iostream>
using namespace std;
int main(){
int N;
cin >> N; //no read :)
int cnt = 0;
while (N != 0){
int rem = N % 2;
if (rem == 1) ++cnt;
N /= 2; //no reduced to half.
}
cout << "No of bits are " << cnt << endl;
return 0;
} |
9c5cd83864e690efb30735338261d5a0e8c56645 | e2e1aec9f08f7b907d28aa29c6d007fe8ed1dd5d | /P_2/P_2_a/src/P_2_a_C_matx_float_class.cpp | a13e9399628fd979989ad59a259fb2eee9337e79 | [
"MIT"
] | permissive | UAH-s-Telematics-Engineering-Tasks/adv_programming | d5cdde1bd5d93afe7066ee1d0480ec5b340e1c63 | a31750a2ad2d998208d240a5f4a0d78d4b39f801 | refs/heads/master | 2020-12-23T04:17:05.251722 | 2020-01-19T21:06:48 | 2020-01-19T21:06:48 | 237,030,463 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,746 | cpp | P_2_a_C_matx_float_class.cpp | #include "../inc/P_2_a_C_matx_float_class.h"
#include "../inc/Library_includes.h"
#include "../inc/Utils.h"
void C_matx_float_class::create_2d_mtx(int rows, int cols) {
int i;
n_rows = rows; n_cols = cols;
bool success = false;
try {
C_matx_float_class::mtx = new float* [rows];
success = true;
for (i = 0; i < rows; i++)
mtx[i] = new float [cols];
} catch(std::bad_alloc& e) {
std::cout << "Error!\n";
if (!success)
delete[] mtx;
else {
for (int k = i - 1; k >= 0; k--)
delete[] mtx[k];
delete[] mtx;
}
mtx = NULL;
}
for (int k = 0; k < rows; k++)
for (i = 0; i < cols; i++)
mtx[k][i] = 0;
}
void C_matx_float_class::populate(void) {
if (!mtx) {
std::cout << "We have an empty matrix!\n";
return;
}
std::cout << "Input all the required data: ";
for (int i = 0; i < n_rows; i++)
for (int k = 0; k < n_cols; k++)
mtx[i][k] = read_float((char*)"");
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
}
void C_matx_float_class::show_mtx(void) {
if (!mtx) {
std::cout << "We have an empty matrix!\n";
return;
}
for (int i = 0; i < n_rows; i++) {
std::cout << "Row " << i << ": ";
for (int k = 0; k < n_cols; k++)
std::cout << *(*(mtx + i) + k) << ' '; //Tricky but insightful!. We have an extra space but we won't see it!
std::cout << '\n';
}
std::getchar(); //Pause for reading!
}
void C_matx_float_class::deallocate(void) {
if (!mtx) // We have an empty matrix!!
return;
for (int i = 0; i < n_rows; i++)
delete[] mtx[i];
delete[] mtx;
C_matx_float_class::initialize();
}
|
03baafdc91c8330dac882c3b842650ddb89e0abf | e4b23d14453638f1035ba52e984f80d77334f531 | /visualizer/src/App.cpp | f64a601e88fa17f4b5520790f704ad0f7fc7c341 | [] | no_license | therooftopprinz/dspp | fc21a3387742a52c8032c16d80833cdc0f2829cb | 74afc3d19c9b7221100ec8666e223d0b1d32a062 | refs/heads/master | 2020-07-20T00:40:34.522994 | 2020-02-12T15:58:57 | 2020-02-12T15:58:57 | 206,541,273 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,441 | cpp | App.cpp | #include <string>
#include <sstream>
#include <thread>
#include <stdexcept>
#include <GLFW/glfw3.h>
#include <logless/Logger.hpp>
#include <App.hpp>
App::App()
: mCmdPlotTime (mTaskMan, mPipeMan)
, mCmdTestSignal(mPipeMan)
{
if (!glfwInit())
{
Logless("glfwInit failed!");
throw std::runtime_error("glfwInit failed!");
}
mCmdMan.addCommand("exit", [this](bfc::ArgsMap&& pArgs) -> std::string {return cmdExit(std::move(pArgs));});
mCmdMan.addCommand("plot_time", [this](bfc::ArgsMap&& pArgs) -> std::string {return mCmdPlotTime.execute(std::move(pArgs));});
mCmdMan.addCommand("test_signal", [this](bfc::ArgsMap&& pArgs) -> std::string {return mCmdTestSignal.execute(std::move(pArgs));});
}
App::~App()
{
glfwTerminate();
}
std::string App::cmdExit(bfc::ArgsMap&& pArgs)
{
mCliLoopRunning = false;
mAppRunning = false;
return "exiting...";
}
void App::cliLoop()
{
while (mCliLoopRunning)
{
std::string line;
std::cout << "$ ";
std::getline(std::cin, line);
std::cout << mCmdMan.executeCommand(line) << "\n";
}
}
int App::run()
{
mAppRunning = true;
mCliLoopRunning = true;
std::thread cliLoopThread([this](){cliLoop();});
while (mAppRunning)
{
mTaskMan.scheduleAll();
std::this_thread::sleep_for(std::chrono::milliseconds(10));
}
cliLoopThread.join();
return 0;
}
|
e46c500005e12566a6c10fb5f4984be2e7fe3512 | 316ac30a4f49f9d90b0c79d41dab723f5cbacdb7 | /3rdparty/trt_fused_multihead_attention/fmha_v2_fp16_Causal_64_40_sm70.cubin.cpp | f12838c7a65ae46b3aeba1c3b572dbfcf45887d1 | [
"Apache-2.0"
] | permissive | neevaco/FasterTransformer | 3ea19bf8e3f058079c4ecdbdafd7cfe582f78db8 | 7bb372317da21dc7a898cb0e6e0ce7c11b0b38ec | refs/heads/corvo | 2023-08-31T05:21:31.325030 | 2023-08-30T23:14:57 | 2023-08-30T23:14:57 | 610,989,639 | 0 | 0 | Apache-2.0 | 2023-09-12T04:05:16 | 2023-03-07T22:08:10 | C++ | UTF-8 | C++ | false | false | 1,257,610 | cpp | fmha_v2_fp16_Causal_64_40_sm70.cubin.cpp | /*
* Copyright (c) 2022-2023, NVIDIA CORPORATION. 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.
*/
namespace fastertransformer
{
unsigned char cubin_fmha_v2_fp16_Causal_64_40_sm70_cu_cubin[] = {
0x7f, 0x45, 0x4c, 0x46, 0x02, 0x01, 0x01, 0x33, 0x07, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xbe, 0x00, 0x79, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x1b, 0x03, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00,
0x46, 0x05, 0x46, 0x00, 0x40, 0x00, 0x38, 0x00, 0x04, 0x00, 0x40, 0x00,
0x15, 0x00, 0x01, 0x00, 0x00, 0x2e, 0x73, 0x68, 0x73, 0x74, 0x72, 0x74,
0x61, 0x62, 0x00, 0x2e, 0x73, 0x74, 0x72, 0x74, 0x61, 0x62, 0x00, 0x2e,
0x73, 0x79, 0x6d, 0x74, 0x61, 0x62, 0x00, 0x2e, 0x73, 0x79, 0x6d, 0x74,
0x61, 0x62, 0x5f, 0x73, 0x68, 0x6e, 0x64, 0x78, 0x00, 0x2e, 0x6e, 0x76,
0x2e, 0x75, 0x66, 0x74, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x00, 0x2e,
0x6e, 0x76, 0x2e, 0x69, 0x6e, 0x66, 0x6f, 0x00, 0x2e, 0x74, 0x65, 0x78,
0x74, 0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34,
0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72,
0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x69,
0x6e, 0x66, 0x6f, 0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f,
0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b,
0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x00, 0x2e, 0x6e, 0x76,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x66, 0x6d, 0x68, 0x61,
0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75,
0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d,
0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c,
0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e,
0x74, 0x30, 0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36,
0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65,
0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x00, 0x2e, 0x74, 0x65, 0x78,
0x74, 0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34,
0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72,
0x6e, 0x65, 0x6c, 0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x69, 0x6e, 0x66, 0x6f,
0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f,
0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e,
0x65, 0x6c, 0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34,
0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72,
0x6e, 0x65, 0x6c, 0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x63, 0x6f, 0x6e, 0x73,
0x74, 0x61, 0x6e, 0x74, 0x30, 0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76,
0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61,
0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30,
0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x00, 0x2e, 0x64, 0x65, 0x62,
0x75, 0x67, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x00, 0x2e, 0x64, 0x65,
0x62, 0x75, 0x67, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x00, 0x2e, 0x64, 0x65,
0x62, 0x75, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x00, 0x2e, 0x72, 0x65, 0x6c,
0x61, 0x2e, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x6c, 0x69, 0x6e, 0x65,
0x00, 0x2e, 0x72, 0x65, 0x6c, 0x2e, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f,
0x6c, 0x69, 0x6e, 0x65, 0x00, 0x2e, 0x6e, 0x76, 0x5f, 0x64, 0x65, 0x62,
0x75, 0x67, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x73, 0x61, 0x73, 0x73,
0x00, 0x2e, 0x72, 0x65, 0x6c, 0x2e, 0x6e, 0x76, 0x5f, 0x64, 0x65, 0x62,
0x75, 0x67, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x73, 0x61, 0x73, 0x73,
0x00, 0x2e, 0x6e, 0x76, 0x5f, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x70,
0x74, 0x78, 0x5f, 0x74, 0x78, 0x74, 0x00, 0x2e, 0x72, 0x65, 0x6c, 0x2e,
0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x00,
0x2e, 0x72, 0x65, 0x6c, 0x61, 0x2e, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f,
0x66, 0x72, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x2e, 0x73, 0x68, 0x73, 0x74,
0x72, 0x74, 0x61, 0x62, 0x00, 0x2e, 0x73, 0x74, 0x72, 0x74, 0x61, 0x62,
0x00, 0x2e, 0x73, 0x79, 0x6d, 0x74, 0x61, 0x62, 0x00, 0x2e, 0x73, 0x79,
0x6d, 0x74, 0x61, 0x62, 0x5f, 0x73, 0x68, 0x6e, 0x64, 0x78, 0x00, 0x2e,
0x6e, 0x76, 0x2e, 0x75, 0x66, 0x74, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x79,
0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x69, 0x6e, 0x66, 0x6f, 0x00, 0x66, 0x6d,
0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43,
0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f,
0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f,
0x6e, 0x6c, 0x00, 0x2e, 0x74, 0x65, 0x78, 0x74, 0x2e, 0x66, 0x6d, 0x68,
0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61,
0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73,
0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e,
0x6c, 0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x66,
0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30,
0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x5f, 0x6e, 0x6c, 0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36,
0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65,
0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x00, 0x24, 0x66, 0x6d, 0x68,
0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61,
0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73,
0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e,
0x6c, 0x24, 0x5f, 0x5a, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64,
0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61,
0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x35, 0x73, 0x6d, 0x65,
0x6d, 0x5f, 0x45, 0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x63, 0x6f, 0x6e, 0x73,
0x74, 0x61, 0x6e, 0x74, 0x30, 0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76,
0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61,
0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30,
0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x00, 0x5f,
0x70, 0x61, 0x72, 0x61, 0x6d, 0x00, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76,
0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61,
0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30,
0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x00, 0x2e, 0x74, 0x65, 0x78,
0x74, 0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34,
0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72,
0x6e, 0x65, 0x6c, 0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x69, 0x6e, 0x66, 0x6f,
0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f,
0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e,
0x65, 0x6c, 0x00, 0x2e, 0x6e, 0x76, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34,
0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72,
0x6e, 0x65, 0x6c, 0x00, 0x24, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c,
0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f,
0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x24, 0x5f, 0x5a, 0x4e, 0x32, 0x35,
0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68,
0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f,
0x6e, 0x35, 0x73, 0x6d, 0x65, 0x6d, 0x5f, 0x45, 0x00, 0x2e, 0x6e, 0x76,
0x2e, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x30, 0x2e, 0x66,
0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30,
0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x00, 0x2e, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x66, 0x72, 0x61, 0x6d,
0x65, 0x00, 0x2e, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x6c, 0x69, 0x6e,
0x65, 0x00, 0x2e, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x73, 0x74, 0x72,
0x00, 0x2e, 0x72, 0x65, 0x6c, 0x61, 0x2e, 0x64, 0x65, 0x62, 0x75, 0x67,
0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x00, 0x2e, 0x72, 0x65, 0x6c, 0x2e, 0x64,
0x65, 0x62, 0x75, 0x67, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x00, 0x2e, 0x6e,
0x76, 0x5f, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x6c, 0x69, 0x6e, 0x65,
0x5f, 0x73, 0x61, 0x73, 0x73, 0x00, 0x2e, 0x72, 0x65, 0x6c, 0x2e, 0x6e,
0x76, 0x5f, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x6c, 0x69, 0x6e, 0x65,
0x5f, 0x73, 0x61, 0x73, 0x73, 0x00, 0x2e, 0x6e, 0x76, 0x5f, 0x64, 0x65,
0x62, 0x75, 0x67, 0x5f, 0x70, 0x74, 0x78, 0x5f, 0x74, 0x78, 0x74, 0x00,
0x2e, 0x72, 0x65, 0x6c, 0x2e, 0x64, 0x65, 0x62, 0x75, 0x67, 0x5f, 0x66,
0x72, 0x61, 0x6d, 0x65, 0x00, 0x2e, 0x72, 0x65, 0x6c, 0x61, 0x2e, 0x64,
0x65, 0x62, 0x75, 0x67, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x69, 0x00, 0x00, 0x00, 0x03, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x4e, 0x01, 0x00, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xb2, 0x01, 0x00, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8b, 0x02, 0x00, 0x00, 0x03, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xbf, 0x02, 0x00, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xcc, 0x02, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xd8, 0x02, 0x00, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x04, 0x03, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x30, 0x03, 0x00, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x40, 0x00, 0x00, 0x00, 0x12, 0x10, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8c, 0x01, 0x00, 0x00, 0x12, 0x10, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x03, 0x00, 0x04, 0x7c,
0xff, 0xff, 0xff, 0xff, 0x0f, 0x0c, 0x81, 0x80, 0x80, 0x28, 0x00, 0x08,
0xff, 0x81, 0x80, 0x28, 0x08, 0x81, 0x80, 0x80, 0x28, 0x00, 0x00, 0x00,
0xff, 0xff, 0xff, 0xff, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x04, 0x04, 0x00, 0x00, 0x00, 0x04, 0x28, 0x00, 0x00, 0x00, 0x0c, 0x81,
0x80, 0x80, 0x28, 0x00, 0x04, 0x08, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x24, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0x03, 0x00, 0x04, 0x7c, 0xff, 0xff, 0xff, 0xff, 0x0f, 0x0c, 0x81, 0x80,
0x80, 0x28, 0x00, 0x08, 0xff, 0x81, 0x80, 0x28, 0x08, 0x81, 0x80, 0x80,
0x28, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x34, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x51, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x00, 0x04, 0x24, 0x00,
0x00, 0x00, 0x0c, 0x81, 0x80, 0x80, 0x28, 0x00, 0x04, 0x14, 0x14, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x58, 0x00, 0x00,
0x02, 0x00, 0x7d, 0x02, 0x00, 0x00, 0x01, 0x01, 0xfb, 0x0e, 0x0a, 0x00,
0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x2f, 0x77, 0x6f, 0x72,
0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x2f, 0x66, 0x74, 0x5f, 0x66, 0x6d,
0x68, 0x61, 0x2f, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x2f, 0x67,
0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x00, 0x2f, 0x77, 0x6f,
0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x2f, 0x66, 0x74, 0x5f, 0x66,
0x6d, 0x68, 0x61, 0x2f, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x2f,
0x2e, 0x2f, 0x73, 0x72, 0x63, 0x00, 0x2f, 0x77, 0x6f, 0x72, 0x6b, 0x73,
0x70, 0x61, 0x63, 0x65, 0x2f, 0x66, 0x74, 0x5f, 0x66, 0x6d, 0x68, 0x61,
0x2f, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x2f, 0x2e, 0x2f, 0x73,
0x72, 0x63, 0x2f, 0x66, 0x6d, 0x68, 0x61, 0x00, 0x2f, 0x77, 0x6f, 0x72,
0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x2f, 0x63, 0x75, 0x64, 0x61, 0x2d,
0x31, 0x32, 0x2e, 0x31, 0x2d, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x2f,
0x2f, 0x62, 0x69, 0x6e, 0x2f, 0x2e, 0x2e, 0x2f, 0x2f, 0x69, 0x6e, 0x63,
0x6c, 0x75, 0x64, 0x65, 0x00, 0x2f, 0x75, 0x73, 0x72, 0x2f, 0x69, 0x6e,
0x63, 0x6c, 0x75, 0x64, 0x65, 0x2f, 0x63, 0x2b, 0x2b, 0x2f, 0x39, 0x00,
0x00, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f,
0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x2e, 0x63, 0x75, 0x00, 0x01,
0xa5, 0x8a, 0xe7, 0x9e, 0x06, 0xfc, 0x31, 0x66, 0x75, 0x73, 0x65, 0x64,
0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61,
0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6b, 0x65, 0x72,
0x6e, 0x65, 0x6c, 0x5f, 0x32, 0x78, 0x32, 0x2e, 0x68, 0x00, 0x02, 0xf2,
0x9a, 0xe7, 0x9e, 0x06, 0xa6, 0x54, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74,
0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6b, 0x65, 0x72, 0x6e,
0x65, 0x6c, 0x2e, 0x68, 0x00, 0x02, 0xee, 0xe8, 0xdd, 0x9e, 0x06, 0xdc,
0x32, 0x67, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71,
0x6b, 0x76, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x2e, 0x68, 0x00,
0x03, 0xee, 0xe8, 0xdd, 0x9e, 0x06, 0x8b, 0x75, 0x73, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x2e, 0x68, 0x00, 0x03, 0xee, 0xe8, 0xdd,
0x9e, 0x06, 0xd9, 0xd9, 0x05, 0x73, 0x6d, 0x5f, 0x33, 0x30, 0x5f, 0x69,
0x6e, 0x74, 0x72, 0x69, 0x6e, 0x73, 0x69, 0x63, 0x73, 0x2e, 0x68, 0x70,
0x70, 0x00, 0x04, 0xf2, 0xcb, 0xe3, 0x9d, 0x06, 0xf7, 0xbf, 0x01, 0x6d,
0x61, 0x73, 0x6b, 0x2e, 0x68, 0x00, 0x03, 0xee, 0xe8, 0xdd, 0x9e, 0x06,
0x81, 0x79, 0x75, 0x74, 0x69, 0x6c, 0x73, 0x2e, 0x68, 0x00, 0x03, 0xb5,
0xd0, 0xe2, 0x9e, 0x06, 0xfc, 0xf4, 0x03, 0x66, 0x72, 0x61, 0x67, 0x6d,
0x65, 0x6e, 0x74, 0x2e, 0x68, 0x00, 0x03, 0x96, 0xc5, 0xe2, 0x9e, 0x06,
0xca, 0xd5, 0x02, 0x67, 0x65, 0x6d, 0x6d, 0x2e, 0x68, 0x00, 0x03, 0xee,
0xe8, 0xdd, 0x9e, 0x06, 0x85, 0x0e, 0x73, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x76, 0x2e, 0x68, 0x00, 0x03, 0xee, 0xe8, 0xdd,
0x9e, 0x06, 0xe6, 0xb1, 0x02, 0x73, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x6f, 0x2e, 0x68, 0x00, 0x03, 0xe1, 0xd0, 0xe2, 0x9e,
0x06, 0xdc, 0x92, 0x03, 0x73, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x2e,
0x68, 0x00, 0x03, 0xcb, 0xea, 0xe2, 0x9e, 0x06, 0x95, 0xd9, 0x07, 0x63,
0x6d, 0x61, 0x74, 0x68, 0x00, 0x05, 0x84, 0xd5, 0xa3, 0x91, 0x06, 0xea,
0xff, 0x02, 0x67, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x6f, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x2e, 0x68, 0x00, 0x03,
0xee, 0xe8, 0xdd, 0x9e, 0x06, 0xba, 0xa5, 0x02, 0x66, 0x75, 0x73, 0x65,
0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f,
0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6b, 0x65,
0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x31, 0x78, 0x4e, 0x5f, 0x6e, 0x6f, 0x6c,
0x6f, 0x6f, 0x70, 0x2e, 0x68, 0x00, 0x02, 0xec, 0x9a, 0xe7, 0x9e, 0x06,
0xd3, 0x5c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x02, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x03, 0xde, 0x00, 0x01,
0x03, 0x01, 0x02, 0x20, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0,
0x69, 0x03, 0x71, 0x01, 0xf6, 0x04, 0x03, 0x00, 0x04, 0x90, 0x04, 0xe7,
0x01, 0x03, 0x14, 0x01, 0x03, 0x01, 0x02, 0x20, 0x01, 0xee, 0x04, 0x10,
0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0x63, 0x02, 0x10, 0x01, 0x04,
0x03, 0x00, 0x04, 0x90, 0x04, 0xe7, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01,
0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0x6c, 0x02, 0x10,
0x01, 0x04, 0x03, 0x00, 0x04, 0x90, 0x0a, 0xd1, 0x02, 0x03, 0x1a, 0x01,
0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0x66, 0x02, 0x10,
0x01, 0xeb, 0x04, 0x03, 0x00, 0x04, 0x90, 0x04, 0xe7, 0x01, 0x03, 0x19,
0x02, 0x10, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03,
0x78, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x0f, 0x94, 0x7c,
0x03, 0x18, 0x01, 0x00, 0x04, 0x90, 0x10, 0x98, 0x7e, 0x03, 0x1b, 0x01,
0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0x79, 0x02, 0x10,
0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x12, 0x92, 0x78, 0x03, 0x30, 0x01,
0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0x91, 0x7f, 0x02,
0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90,
0x15, 0x8a, 0x6b, 0x03, 0x1d, 0x01, 0x00, 0x04, 0x90, 0x16, 0x8e, 0x6d,
0x03, 0x1b, 0x01, 0x00, 0x04, 0x90, 0x12, 0x92, 0x78, 0x03, 0x29, 0x02,
0x20, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0xa1,
0x7f, 0x02, 0x20, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x19, 0xe5, 0x6e,
0x03, 0xff, 0x04, 0x01, 0x00, 0x04, 0x90, 0x1a, 0xf3, 0x6f, 0x03, 0x89,
0x7f, 0x01, 0x00, 0x04, 0x90, 0x1b, 0x83, 0x71, 0x03, 0xa1, 0x7c, 0x01,
0x04, 0x06, 0x00, 0x04, 0x90, 0x1c, 0xa4, 0x0a, 0x03, 0xe9, 0x01, 0x01,
0x04, 0x04, 0x00, 0x04, 0x90, 0x12, 0x92, 0x78, 0x03, 0xd1, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0x4e,
0x02, 0xc0, 0x00, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x1f, 0xef, 0x7f,
0x03, 0x32, 0x01, 0x00, 0x04, 0x90, 0x10, 0x98, 0x7e, 0x03, 0x53, 0x02,
0xd0, 0x00, 0x01, 0x00, 0x04, 0x90, 0x16, 0x8e, 0x6d, 0x03, 0x77, 0x02,
0x10, 0x01, 0x03, 0x0f, 0x02, 0x20, 0x01, 0x04, 0x03, 0x00, 0x04, 0x90,
0x04, 0xe7, 0x01, 0x03, 0x4f, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04,
0x90, 0x16, 0x8e, 0x6d, 0x03, 0x24, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90,
0x1f, 0xef, 0x7f, 0x03, 0x34, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x16,
0x8e, 0x6d, 0x03, 0x4a, 0x02, 0x10, 0x01, 0xf1, 0xf6, 0x00, 0x04, 0x90,
0x1f, 0xef, 0x7f, 0x03, 0x2d, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x16,
0x8e, 0x6d, 0x03, 0x5c, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x12, 0x92,
0x78, 0x03, 0x24, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x16, 0x8e, 0x6d,
0x03, 0x53, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x00, 0x04,
0x90, 0x12, 0x92, 0x78, 0x03, 0x24, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90,
0x16, 0x8e, 0x6d, 0x03, 0x5f, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x12,
0x92, 0x78, 0x03, 0x16, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x16, 0x8e,
0x6d, 0x03, 0x67, 0x02, 0x10, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02,
0xa0, 0x69, 0x03, 0x54, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00, 0x04, 0x90,
0x33, 0xd5, 0x75, 0x03, 0x54, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x34,
0xf8, 0x76, 0x03, 0xc3, 0x00, 0x01, 0x04, 0x06, 0x00, 0x04, 0x90, 0x35,
0xa4, 0x0a, 0x03, 0xe8, 0x01, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x16,
0x8e, 0x6d, 0x03, 0xad, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x06, 0x00, 0x04,
0x90, 0x35, 0xa4, 0x0a, 0x03, 0xd3, 0x01, 0x02, 0x20, 0x01, 0x04, 0x04,
0x00, 0x04, 0x90, 0x12, 0x92, 0x78, 0x03, 0xc6, 0x7e, 0x02, 0x10, 0x01,
0x00, 0x04, 0x90, 0x16, 0x8e, 0x6d, 0x03, 0x67, 0x02, 0x10, 0x01, 0x00,
0x04, 0x90, 0x12, 0x92, 0x78, 0x03, 0x19, 0x02, 0x20, 0x01, 0x00, 0x04,
0x90, 0x16, 0x8e, 0x6d, 0x03, 0x67, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90,
0x12, 0x92, 0x78, 0x03, 0x20, 0x02, 0x10, 0x01, 0xf4, 0x00, 0x04, 0x90,
0x3e, 0xe4, 0x79, 0x03, 0xef, 0x7e, 0x01, 0x04, 0x08, 0x00, 0x04, 0x90,
0x3f, 0xe8, 0x7b, 0x03, 0xe9, 0x07, 0x01, 0x00, 0x04, 0x90, 0x40, 0xce,
0x14, 0x03, 0x6c, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x12, 0x92, 0x78,
0x03, 0xb7, 0x79, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x04, 0x90, 0x40,
0xce, 0x14, 0x03, 0xc9, 0x06, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04,
0x90, 0x1f, 0xef, 0x7f, 0x03, 0xb0, 0x79, 0x02, 0x20, 0x01, 0x00, 0x04,
0x90, 0x10, 0x98, 0x7e, 0x03, 0x5e, 0x02, 0x20, 0x01, 0x00, 0x04, 0x90,
0x1f, 0xef, 0x7f, 0x03, 0x22, 0x02, 0x20, 0x01, 0x03, 0x0b, 0x02, 0x10,
0x01, 0x00, 0x04, 0x90, 0x10, 0x98, 0x7e, 0x03, 0x5c, 0x02, 0x10, 0x01,
0x00, 0x04, 0x90, 0x1f, 0xef, 0x7f, 0x03, 0x19, 0x02, 0x10, 0x01, 0x00,
0x04, 0x90, 0x10, 0x98, 0x7e, 0x03, 0x67, 0x02, 0x20, 0x01, 0x00, 0x04,
0x90, 0x1f, 0xef, 0x7f, 0x03, 0x19, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90,
0x10, 0x98, 0x7e, 0x03, 0x67, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x12,
0x92, 0x78, 0x03, 0x19, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x10, 0x98,
0x7e, 0x03, 0x67, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x1f, 0xef, 0x7f,
0x03, 0x19, 0x02, 0x20, 0x01, 0x00, 0x04, 0x90, 0x10, 0x98, 0x7e, 0x03,
0x67, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x1f, 0xef, 0x7f, 0x03, 0x20,
0x02, 0x10, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0xf6, 0x03, 0x05, 0x02,
0x20, 0x01, 0x00, 0x05, 0x90, 0x54, 0xc1, 0x81, 0x01, 0x03, 0xef, 0x7e,
0x01, 0x04, 0x08, 0x00, 0x04, 0x90, 0x55, 0xa2, 0x14, 0x03, 0xe9, 0x07,
0x01, 0x00, 0x04, 0x90, 0x56, 0xce, 0x14, 0x03, 0x6c, 0x01, 0x04, 0x04,
0x00, 0x04, 0x90, 0x1f, 0xef, 0x7f, 0x03, 0xb7, 0x79, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x04, 0x90, 0x56, 0xce, 0x14, 0x03, 0xc9, 0x06, 0x02,
0x20, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x1f, 0xef, 0x7f, 0x03, 0xb7,
0x79, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x04, 0x90, 0x56, 0xce, 0x14,
0x03, 0xc9, 0x06, 0x02, 0x10, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02,
0xa0, 0x69, 0x03, 0x8b, 0x79, 0x02, 0x30, 0x01, 0x04, 0x04, 0x00, 0x05,
0x90, 0x5c, 0xc5, 0x83, 0x01, 0x03, 0x30, 0x01, 0x04, 0x10, 0x00, 0x04,
0x90, 0x02, 0xa0, 0x69, 0x03, 0xa5, 0x7f, 0x02, 0xc0, 0x01, 0x01, 0x04,
0x04, 0x00, 0x05, 0x90, 0x5e, 0xac, 0x85, 0x01, 0x03, 0x13, 0x01, 0x00,
0x05, 0x90, 0x5f, 0xb9, 0x87, 0x01, 0x03, 0x24, 0x01, 0x00, 0x04, 0x90,
0x1f, 0xef, 0x7f, 0x03, 0x19, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0x5f,
0xb9, 0x87, 0x01, 0x03, 0x67, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x1f,
0xef, 0x7f, 0x03, 0x19, 0x02, 0xd0, 0x00, 0x01, 0x00, 0x04, 0x90, 0x12,
0x92, 0x78, 0x02, 0x10, 0x00, 0x05, 0x90, 0x5c, 0xc5, 0x83, 0x01, 0x03,
0x0c, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0x64, 0x99, 0x89, 0x01, 0x03,
0xef, 0x7e, 0x01, 0x04, 0x08, 0x00, 0x04, 0x90, 0x65, 0xa2, 0x14, 0x03,
0xe9, 0x07, 0x01, 0x00, 0x04, 0x90, 0x66, 0xce, 0x14, 0x03, 0x6c, 0x01,
0x04, 0x04, 0x00, 0x04, 0x90, 0x1f, 0xef, 0x7f, 0x03, 0xb0, 0x79, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0x5c, 0xc5, 0x83, 0x01, 0xf6, 0x00, 0x04,
0x90, 0x1f, 0xef, 0x7f, 0x03, 0x79, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00,
0x04, 0x90, 0x66, 0xce, 0x14, 0x03, 0xd0, 0x06, 0x02, 0x10, 0x01, 0x04,
0x04, 0x00, 0x04, 0x90, 0x1f, 0xef, 0x7f, 0x03, 0xb0, 0x79, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0x5c, 0xc5, 0x83, 0x01, 0xf6, 0x04, 0x08, 0x00,
0x04, 0x90, 0x66, 0xce, 0x14, 0x03, 0xc9, 0x06, 0x02, 0xc0, 0x00, 0x01,
0x04, 0x05, 0x00, 0x04, 0x90, 0x1b, 0x83, 0x71, 0x03, 0xf9, 0x78, 0x02,
0x30, 0x01, 0x00, 0x04, 0x90, 0x1a, 0xf3, 0x6f, 0x03, 0xfc, 0x03, 0x02,
0x10, 0x01, 0x00, 0x04, 0x90, 0x1b, 0x83, 0x71, 0x03, 0x84, 0x7c, 0x02,
0x10, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0x64,
0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x72, 0x9d, 0x72, 0x03,
0xc2, 0x0a, 0x01, 0x00, 0x04, 0x90, 0x73, 0xab, 0x73, 0x03, 0x9e, 0x7f,
0x01, 0x00, 0x04, 0x90, 0x1b, 0x83, 0x71, 0x03, 0xbc, 0x76, 0x02, 0x10,
0x01, 0x00, 0x04, 0x90, 0x73, 0xab, 0x73, 0x03, 0xc3, 0x09, 0x02, 0x10,
0x01, 0x00, 0x04, 0x90, 0x1b, 0x83, 0x71, 0x03, 0xbd, 0x76, 0x02, 0x20,
0x01, 0xf1, 0x00, 0x04, 0x90, 0x1a, 0xf3, 0x6f, 0x03, 0xfc, 0x03, 0x02,
0x10, 0x01, 0x00, 0x04, 0x90, 0x1b, 0x83, 0x71, 0x03, 0x87, 0x7c, 0x02,
0x10, 0x01, 0x00, 0x04, 0x90, 0x73, 0xab, 0x73, 0x03, 0xbf, 0x09, 0x02,
0x10, 0x01, 0x00, 0x04, 0x90, 0x1b, 0x83, 0x71, 0x03, 0xc1, 0x76, 0x02,
0x10, 0x01, 0x00, 0x04, 0x90, 0x1a, 0xf3, 0x6f, 0x03, 0xf8, 0x03, 0x02,
0x10, 0x01, 0x03, 0x15, 0x02, 0x20, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90,
0x02, 0xa0, 0x69, 0x03, 0x86, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00,
0x05, 0x90, 0x7f, 0xe6, 0x8f, 0x01, 0x03, 0x15, 0x01, 0x04, 0x05, 0x00,
0x06, 0x90, 0x80, 0x01, 0xba, 0x91, 0x01, 0x03, 0xde, 0x00, 0x01, 0x04,
0x08, 0x00, 0x06, 0x90, 0x81, 0x01, 0xa6, 0x94, 0x01, 0x03, 0x93, 0x09,
0x01, 0x00, 0x06, 0x90, 0x82, 0x01, 0xcd, 0x94, 0x01, 0x03, 0x63, 0x01,
0x00, 0x05, 0x90, 0x83, 0x01, 0xcf, 0x1d, 0x03, 0x77, 0x01, 0x04, 0x05,
0x00, 0x04, 0x90, 0x1a, 0xf3, 0x6f, 0x03, 0x9a, 0x7a, 0x02, 0x10, 0x01,
0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0x87, 0x7c, 0x02,
0x10, 0x01, 0x04, 0x04, 0x00, 0x06, 0x90, 0x86, 0x01, 0xf9, 0x94, 0x01,
0x03, 0x14, 0x01, 0x04, 0x05, 0x00, 0x06, 0x90, 0x87, 0x01, 0xcd, 0x96,
0x01, 0x03, 0xde, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x88, 0x01,
0xfc, 0x1c, 0x03, 0x93, 0x09, 0x01, 0x00, 0x05, 0x90, 0x89, 0x01, 0xa3,
0x1d, 0x03, 0x63, 0x01, 0x00, 0x05, 0x90, 0x8a, 0x01, 0xcf, 0x1d, 0x03,
0x77, 0x01, 0x00, 0x05, 0x90, 0x83, 0x01, 0xcf, 0x1d, 0x02, 0x10, 0x00,
0x05, 0x90, 0x8a, 0x01, 0xcf, 0x1d, 0x02, 0x10, 0x04, 0x05, 0x00, 0x04,
0x90, 0x73, 0xab, 0x73, 0x03, 0x4d, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0x8a, 0x01, 0xcf, 0x1d, 0x03, 0x33, 0x02, 0x10, 0x01, 0x04,
0x05, 0x00, 0x04, 0x90, 0x1a, 0xf3, 0x6f, 0x03, 0x9a, 0x7a, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x8a, 0x01, 0xcf, 0x1d, 0x03, 0xe6,
0x05, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x73, 0xab, 0x73,
0x03, 0x61, 0x02, 0x10, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0,
0x69, 0x03, 0xb2, 0x76, 0x02, 0x10, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90,
0x91, 0x01, 0xe4, 0x8e, 0x01, 0x03, 0x16, 0x01, 0x04, 0x10, 0x00, 0x04,
0x90, 0x02, 0xa0, 0x69, 0xeb, 0x04, 0x04, 0x00, 0x06, 0x90, 0x93, 0x01,
0xb9, 0x99, 0x01, 0x03, 0x10, 0x01, 0x04, 0x05, 0x00, 0x06, 0x90, 0x94,
0x01, 0xa2, 0x9b, 0x01, 0x03, 0xde, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0x95, 0x01, 0xfc, 0x1c, 0x03, 0x93, 0x09, 0x01, 0x00, 0x05, 0x90,
0x96, 0x01, 0xa3, 0x1d, 0x03, 0x63, 0x01, 0x00, 0x05, 0x90, 0x97, 0x01,
0xcf, 0x1d, 0x03, 0x77, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0,
0x69, 0x03, 0xad, 0x76, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x06, 0x90,
0x99, 0x01, 0x8e, 0x9e, 0x01, 0x03, 0x91, 0x04, 0x01, 0x04, 0x10, 0x00,
0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0xf5, 0x7b, 0x02, 0x10, 0x01, 0x04,
0x05, 0x00, 0x06, 0x90, 0x9b, 0x01, 0xc0, 0x9f, 0x01, 0x03, 0xd3, 0x09,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x97, 0x01, 0xcf, 0x1d, 0x03, 0x7a,
0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x06, 0x90, 0x9b, 0x01, 0xc0, 0x9f,
0x01, 0xf3, 0x04, 0x08, 0x00, 0x05, 0x90, 0x97, 0x01, 0xcf, 0x1d, 0xeb,
0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0xa9, 0x76, 0x02,
0x20, 0x01, 0x04, 0x05, 0x00, 0x06, 0x90, 0x99, 0x01, 0x8e, 0x9e, 0x01,
0x03, 0x83, 0x04, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa1,
0x01, 0xea, 0x20, 0x03, 0x8f, 0x04, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90,
0x02, 0xa0, 0x69, 0x03, 0x9e, 0x78, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00,
0x06, 0x90, 0xa3, 0x01, 0x8e, 0x9e, 0x01, 0x03, 0xe3, 0x03, 0x01, 0x00,
0x06, 0x90, 0x9b, 0x01, 0xc0, 0x9f, 0x01, 0x03, 0xb8, 0x05, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa5, 0x01, 0xea, 0x20, 0x03, 0xc7,
0x7e, 0x01, 0x04, 0x05, 0x00, 0x06, 0x90, 0xa3, 0x01, 0x8e, 0x9e, 0x01,
0x03, 0x83, 0x7c, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0x9b, 0x01, 0xc0,
0x9f, 0x01, 0x03, 0xc8, 0x05, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0x99,
0x01, 0x8e, 0x9e, 0x01, 0x03, 0xa6, 0x7a, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xa9, 0x01, 0xea, 0x20, 0x03, 0x8f, 0x04, 0x01, 0x04,
0x05, 0x00, 0x06, 0x90, 0x9b, 0x01, 0xc0, 0x9f, 0x01, 0x03, 0xb9, 0x01,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xab, 0x01, 0xea, 0x20,
0x03, 0xc7, 0x7e, 0x01, 0x04, 0x05, 0x00, 0x06, 0x90, 0xa3, 0x01, 0x8e,
0x9e, 0x01, 0x03, 0xf1, 0x7b, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xad, 0x01, 0xea, 0x20, 0x03, 0x8f, 0x04, 0x01, 0x04, 0x05, 0x00,
0x06, 0x90, 0xa3, 0x01, 0x8e, 0x9e, 0x01, 0x03, 0xf1, 0x7b, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xaf, 0x01, 0xea, 0x20, 0x03, 0x8f,
0x04, 0x01, 0x04, 0x05, 0x00, 0x06, 0x90, 0x9b, 0x01, 0xc0, 0x9f, 0x01,
0x03, 0xb9, 0x01, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb1,
0x01, 0xea, 0x20, 0x03, 0xc7, 0x7e, 0x01, 0x00, 0x05, 0x90, 0xaf, 0x01,
0xea, 0x20, 0x02, 0x10, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69,
0x03, 0xa1, 0x78, 0x02, 0x10, 0x01, 0x04, 0x0a, 0x00, 0x06, 0x90, 0xb3,
0x01, 0xa2, 0xa6, 0x01, 0x03, 0xc9, 0x7e, 0x01, 0x04, 0x09, 0x00, 0x05,
0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0x95, 0x04, 0x01, 0x03, 0x0e, 0x02,
0x20, 0x01, 0x03, 0x72, 0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01,
0x04, 0x05, 0x00, 0x06, 0x90, 0xa3, 0x01, 0x8e, 0x9e, 0x01, 0x03, 0xe4,
0x00, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb9, 0x01, 0xea,
0x20, 0x03, 0x8f, 0x04, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x01,
0x8e, 0x26, 0x03, 0xff, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x20,
0x01, 0x03, 0x72, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb9,
0x01, 0xea, 0x20, 0x03, 0x81, 0x05, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00,
0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0xff, 0x7a, 0x02, 0x10, 0x01,
0x04, 0x05, 0x00, 0x06, 0x90, 0xa3, 0x01, 0x8e, 0x9e, 0x01, 0x03, 0xf2,
0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc0, 0x01, 0xea,
0x20, 0x03, 0x8f, 0x04, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x01,
0x8e, 0x26, 0x03, 0x8d, 0x7b, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x06,
0x90, 0x9b, 0x01, 0xc0, 0x9f, 0x01, 0x03, 0xac, 0x06, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xc3, 0x01, 0xea, 0x20, 0x03, 0xc7, 0x7e,
0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0x8d,
0x7b, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x06, 0x90, 0x9b, 0x01, 0xc0,
0x9f, 0x01, 0x03, 0xac, 0x06, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xc6, 0x01, 0xea, 0x20, 0x03, 0xc7, 0x7e, 0x01, 0x04, 0x09, 0x00,
0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0xff, 0x7a, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xc0, 0x01, 0xea, 0x20, 0x03, 0x81, 0x05,
0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26,
0x03, 0xff, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x03,
0x72, 0x02, 0x20, 0x01, 0x04, 0x05, 0x00, 0x06, 0x90, 0xa3, 0x01, 0x8e,
0x9e, 0x01, 0x03, 0xf2, 0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xcd, 0x01, 0xea, 0x20, 0x03, 0x8f, 0x04, 0x01, 0x04, 0x09, 0x00,
0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0xff, 0x7a, 0x02, 0x10, 0x01,
0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0xa8, 0x7c, 0x02,
0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xd0, 0x01, 0xb2, 0x8b, 0x01,
0x03, 0xfc, 0x01, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e,
0x26, 0x03, 0xea, 0x01, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90,
0xd0, 0x01, 0xb2, 0x8b, 0x01, 0x03, 0x96, 0x7e, 0x02, 0x10, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0xea, 0x01, 0x02,
0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xd0, 0x01, 0xb2, 0x8b, 0x01,
0x03, 0x96, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02,
0xa0, 0x69, 0x03, 0x8f, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06,
0x90, 0xd6, 0x01, 0xcf, 0xa7, 0x01, 0x03, 0x98, 0x0d, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xd7, 0x01, 0xc1, 0x39, 0x03, 0x8a, 0x75, 0x01, 0x04,
0x07, 0x00, 0x06, 0x90, 0xd0, 0x01, 0xb2, 0x8b, 0x01, 0x03, 0xcf, 0x7e,
0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26,
0x03, 0xdc, 0x01, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xd0,
0x01, 0xb2, 0x8b, 0x01, 0x03, 0xa8, 0x7e, 0x02, 0x20, 0x01, 0x04, 0x09,
0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0xe6, 0x01, 0x02, 0x20,
0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xd0, 0x01, 0xb2, 0x8b, 0x01, 0x03,
0x9a, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x01,
0x8e, 0x26, 0x03, 0xe6, 0x01, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x06,
0x90, 0xd0, 0x01, 0xb2, 0x8b, 0x01, 0x03, 0x92, 0x7e, 0x02, 0x10, 0x01,
0x00, 0x06, 0x90, 0xdf, 0x01, 0x8b, 0x8d, 0x01, 0x03, 0x50, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0x90, 0x02, 0x02,
0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xdf, 0x01, 0x8b, 0x8d, 0x01,
0x03, 0xf0, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4,
0x01, 0x8e, 0x26, 0x03, 0x90, 0x02, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00,
0x06, 0x90, 0xdf, 0x01, 0x8b, 0x8d, 0x01, 0x03, 0xf0, 0x7d, 0x02, 0x10,
0x01, 0x04, 0x0b, 0x00, 0x04, 0x90, 0x33, 0xd5, 0x75, 0x03, 0xd0, 0x7e,
0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26,
0x03, 0xce, 0x03, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xdf,
0x01, 0x8b, 0x8d, 0x01, 0x03, 0xe2, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x09,
0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0x9e, 0x02, 0x02, 0x10,
0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0xab, 0x7d,
0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9, 0x01, 0xd5, 0xa9,
0x01, 0x03, 0xc5, 0x08, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xea, 0x01,
0xd5, 0xab, 0x01, 0x03, 0xb9, 0x78, 0x01, 0x00, 0x06, 0x90, 0xdf, 0x01,
0x8b, 0x8d, 0x01, 0x03, 0xb9, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00,
0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0x90, 0x02, 0x02, 0x10, 0x01,
0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9, 0x01, 0xd5, 0xa9, 0x01, 0x03, 0xfe,
0x05, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xee, 0x01, 0xd5,
0xab, 0x01, 0x03, 0xb6, 0x78, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9,
0x01, 0xd5, 0xa9, 0x01, 0x03, 0xca, 0x07, 0x02, 0x10, 0x01, 0x04, 0x07,
0x00, 0x06, 0x90, 0xf0, 0x01, 0xd5, 0xab, 0x01, 0x03, 0xb6, 0x78, 0x01,
0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0xcc, 0x01,
0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9, 0x01, 0xd5, 0xa9,
0x01, 0x03, 0xfe, 0x05, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90,
0xf3, 0x01, 0xd5, 0xab, 0x01, 0x03, 0xb6, 0x78, 0x01, 0x04, 0x09, 0x00,
0x05, 0x90, 0xb4, 0x01, 0x8e, 0x26, 0x03, 0xda, 0x01, 0x02, 0x10, 0x01,
0x03, 0x72, 0x02, 0x20, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xd6, 0x01,
0xcf, 0xa7, 0x01, 0x03, 0xbf, 0x0a, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xf7, 0x01, 0xd0, 0x36, 0x03, 0xaf, 0x74, 0x01, 0x04, 0x07,
0x00, 0x06, 0x90, 0xdf, 0x01, 0x8b, 0x8d, 0x01, 0x03, 0x82, 0x7f, 0x02,
0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xd6, 0x01, 0xcf, 0xa7, 0x01,
0x03, 0xd0, 0x0c, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xfa,
0x01, 0xd0, 0x36, 0x03, 0xae, 0x74, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0xb4, 0x01, 0x8e, 0x26, 0x03, 0xa0, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0d,
0x00, 0x06, 0x90, 0xd6, 0x01, 0xcf, 0xa7, 0x01, 0x03, 0xb3, 0x0a, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xfd, 0x01, 0xd0, 0x36, 0x03,
0xad, 0x74, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xd6, 0x01, 0xcf, 0xa7,
0x01, 0x03, 0xd7, 0x0b, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xff, 0x01, 0xa4, 0x37, 0x03, 0xcf, 0x76, 0x01, 0x00, 0x05, 0x90, 0x80,
0x02, 0x87, 0x38, 0x03, 0x7a, 0x01, 0x00, 0x05, 0x90, 0x81, 0x02, 0xe5,
0x38, 0x03, 0x77, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x01, 0x8e,
0x26, 0x03, 0x89, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90,
0xd6, 0x01, 0xcf, 0xa7, 0x01, 0x03, 0xb8, 0x0a, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0x84, 0x02, 0xa4, 0x37, 0x03, 0xce, 0x76, 0x01,
0x00, 0x05, 0x90, 0x85, 0x02, 0x87, 0x38, 0x03, 0x7a, 0x01, 0x00, 0x05,
0x90, 0x86, 0x02, 0xe5, 0x38, 0x03, 0x77, 0x01, 0x00, 0x05, 0x90, 0x80,
0x02, 0x87, 0x38, 0x03, 0x09, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0x88,
0x02, 0xe5, 0x38, 0x03, 0x77, 0x01, 0x00, 0x05, 0x90, 0x85, 0x02, 0x87,
0x38, 0x03, 0x09, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0x8a, 0x02, 0xe5,
0x38, 0x03, 0x77, 0x01, 0x00, 0x05, 0x90, 0xd7, 0x01, 0xc1, 0x39, 0x03,
0xce, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0x8c, 0x02,
0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xd6,
0x01, 0xcf, 0xa7, 0x01, 0x03, 0xb4, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0x8e, 0x02, 0xa4, 0x37, 0x03, 0xcd, 0x76, 0x01, 0x00,
0x05, 0x90, 0x8f, 0x02, 0x87, 0x38, 0x03, 0x7a, 0x01, 0x00, 0x05, 0x90,
0x90, 0x02, 0xe5, 0x38, 0x03, 0x77, 0x01, 0x00, 0x05, 0x90, 0xd7, 0x01,
0xc1, 0x39, 0x03, 0xcf, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06,
0x90, 0xd6, 0x01, 0xcf, 0xa7, 0x01, 0x03, 0xee, 0x0a, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0x93, 0x02, 0xd0, 0x36, 0x03, 0xac, 0x74,
0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xd6, 0x01, 0xcf, 0xa7, 0x01, 0x03,
0xdd, 0x0b, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x95, 0x02,
0xc1, 0x39, 0x03, 0x88, 0x75, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0x96,
0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0x8f, 0x02, 0x87, 0x38, 0x03, 0xfb, 0x00, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0x98, 0x02, 0xe5, 0x38, 0x03, 0x77, 0x01, 0x04, 0x0d, 0x00, 0x06,
0x90, 0xd6, 0x01, 0xcf, 0xa7, 0x01, 0x03, 0xc7, 0x09, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0x9a, 0x02, 0xc1, 0x39, 0x03, 0x87, 0x75,
0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0x9b, 0x02, 0x9c, 0x3a, 0x03, 0xc0,
0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xf7, 0x01, 0xd0, 0x36, 0x03,
0xdb, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xd6, 0x01,
0xcf, 0xa7, 0x01, 0x03, 0xde, 0x0b, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0x9e, 0x02, 0xc1, 0x39, 0x03, 0x87, 0x75, 0x01, 0x04, 0x0e,
0x00, 0x05, 0x90, 0x9f, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04,
0x0d, 0x00, 0x06, 0x90, 0xd6, 0x01, 0xcf, 0xa7, 0x01, 0x03, 0xb5, 0x0a,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa1, 0x02, 0xa4, 0x37,
0x03, 0xcc, 0x76, 0x01, 0x00, 0x05, 0x90, 0xa2, 0x02, 0x87, 0x38, 0x03,
0x7a, 0x01, 0x00, 0x05, 0x90, 0xa3, 0x02, 0xe5, 0x38, 0x03, 0x77, 0x01,
0x00, 0x05, 0x90, 0x95, 0x02, 0xc1, 0x39, 0x03, 0xcf, 0x7e, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0xfa, 0x01, 0xd0, 0x36, 0x03, 0x9a, 0x7f, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xd7, 0x01, 0xc1, 0x39, 0x03, 0xe7, 0x00,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa2, 0x02, 0x87, 0x38, 0x03, 0xb9,
0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa8, 0x02, 0xe5, 0x38, 0x03,
0x77, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xd6, 0x01, 0xcf, 0xa7, 0x01,
0x03, 0xc8, 0x09, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xaa,
0x02, 0xc1, 0x39, 0x03, 0x86, 0x75, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90,
0xab, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xa8, 0x02, 0xe5, 0x38, 0x03, 0xf2, 0x00, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0x95, 0x02, 0xc1, 0x39, 0x03, 0xd0, 0x7e, 0x02, 0x10, 0x01,
0x00, 0x05, 0x90, 0xa8, 0x02, 0xe5, 0x38, 0x03, 0xb0, 0x01, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0x9a, 0x02, 0xc1, 0x39, 0x03, 0xcf, 0x7e, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xfd, 0x01, 0xd0, 0x36, 0x03, 0x9a, 0x7f,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0x9e, 0x02, 0xc1, 0x39, 0x03, 0xe6,
0x00, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa8, 0x02, 0xe5, 0x38, 0x03,
0xb1, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xd6, 0x01,
0xcf, 0xa7, 0x01, 0x03, 0xc8, 0x09, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xb4, 0x02, 0xc1, 0x39, 0x03, 0x86, 0x75, 0x01, 0x04, 0x0e,
0x00, 0x05, 0x90, 0xb5, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0x93, 0x02, 0xd0, 0x36, 0x03, 0xdb, 0x7e, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0x9a, 0x02, 0xc1, 0x39, 0x03, 0xe7, 0x00,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa8, 0x02, 0xe5, 0x38, 0x03, 0xb0,
0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0x9e, 0x02, 0xc1, 0x39, 0x03,
0xd0, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa8, 0x02, 0xe5, 0x38,
0x03, 0xb0, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xaa, 0x02, 0xc1,
0x39, 0x03, 0xcf, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa8, 0x02,
0xe5, 0x38, 0x03, 0xb1, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06,
0x90, 0xd6, 0x01, 0xcf, 0xa7, 0x01, 0x03, 0xc9, 0x09, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xbe, 0x02, 0xc1, 0x39, 0x03, 0x85, 0x75,
0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xbf, 0x02, 0x9c, 0x3a, 0x03, 0xc0,
0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb4, 0x02, 0xc1, 0x39, 0x03,
0x41, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xaa, 0x02, 0xc1, 0x39, 0xf0,
0x04, 0x0d, 0x00, 0x06, 0x90, 0xd6, 0x01, 0xcf, 0xa7, 0x01, 0x03, 0xf9,
0x0a, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc3, 0x02, 0xc1,
0x39, 0x03, 0x85, 0x75, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xc4, 0x02,
0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x95,
0x02, 0xc1, 0x39, 0x03, 0x40, 0x02, 0x10, 0x01, 0x04, 0x0e, 0x00, 0x05,
0x90, 0xc6, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xbe, 0x02, 0xc1, 0x39, 0x03, 0x41, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xb4, 0x02, 0xc1, 0x39, 0xf0, 0x00, 0x05, 0x90, 0x95, 0x02,
0xc1, 0x39, 0xed, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xca, 0x02, 0x9c, 0x3a,
0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x95, 0x02, 0xc1,
0x39, 0x03, 0x41, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbe, 0x02, 0xc1,
0x39, 0xf0, 0x00, 0x05, 0x90, 0x95, 0x02, 0xc1, 0x39, 0xee, 0x00, 0x05,
0x90, 0x9e, 0x02, 0xc1, 0x39, 0xee, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xcf,
0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0x95, 0x02, 0xc1, 0x39, 0x03, 0x42, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90,
0x9e, 0x02, 0xc1, 0x39, 0xee, 0x00, 0x05, 0x90, 0x95, 0x02, 0xc1, 0x39,
0xf0, 0x00, 0x05, 0x90, 0x9e, 0x02, 0xc1, 0x39, 0xed, 0x04, 0x0e, 0x00,
0x05, 0x90, 0xd4, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0x9e, 0x02, 0xc1, 0x39, 0x03, 0x42, 0x02, 0x10, 0x01,
0xee, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9, 0x01, 0xd5, 0xa9, 0x01, 0x03,
0xaa, 0x06, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xd8, 0x02,
0xd5, 0xab, 0x01, 0x03, 0xb9, 0x78, 0x01, 0x00, 0x06, 0x90, 0xdf, 0x01,
0x8b, 0x8d, 0x01, 0x03, 0xb9, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xb4, 0x02, 0xc1, 0x39, 0x03, 0xe4, 0x01, 0x02, 0x10, 0x01,
0x00, 0x05, 0x90, 0x9e, 0x02, 0xc1, 0x39, 0xf0, 0x04, 0x0d, 0x00, 0x06,
0x90, 0xe9, 0x01, 0xd5, 0xa9, 0x01, 0x03, 0xa9, 0x06, 0x02, 0x20, 0x01,
0x04, 0x07, 0x00, 0x06, 0x90, 0xdd, 0x02, 0xd5, 0xab, 0x01, 0x03, 0xb9,
0x78, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb4, 0x02, 0xc1, 0x39, 0x03,
0x9e, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9, 0x01,
0xd5, 0xa9, 0x01, 0x03, 0xa9, 0x06, 0x02, 0x20, 0x01, 0x02, 0x10, 0x01,
0x04, 0x07, 0x00, 0x06, 0x90, 0xe1, 0x02, 0xd5, 0xab, 0x01, 0x03, 0xb9,
0x78, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9, 0x01, 0xd5, 0xa9, 0x01,
0x03, 0xc7, 0x07, 0x02, 0x20, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xee,
0x01, 0xd5, 0xab, 0x01, 0x03, 0xb9, 0x78, 0x02, 0x30, 0x01, 0x04, 0x0d,
0x00, 0x06, 0x90, 0xe9, 0x01, 0xd5, 0xa9, 0x01, 0x03, 0xc7, 0x07, 0x02,
0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0xf0, 0x01, 0xd5, 0xab, 0x01,
0x03, 0xb9, 0x78, 0x02, 0x30, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9,
0x01, 0xd5, 0xa9, 0x01, 0x03, 0xc7, 0x07, 0x02, 0x20, 0x01, 0x04, 0x07,
0x00, 0x06, 0x90, 0xf3, 0x01, 0xd5, 0xab, 0x01, 0x03, 0xb9, 0x78, 0x02,
0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9, 0x01, 0xd5, 0xa9, 0x01,
0x03, 0xc7, 0x07, 0x02, 0x20, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02,
0xa0, 0x69, 0x03, 0xca, 0x77, 0x02, 0x80, 0x01, 0x01, 0x04, 0x0d, 0x00,
0x06, 0x90, 0xea, 0x02, 0xd3, 0xac, 0x01, 0x03, 0xb3, 0x0c, 0x01, 0x00,
0x06, 0x90, 0xeb, 0x02, 0xc3, 0xae, 0x01, 0x03, 0x53, 0x01, 0x00, 0x06,
0x90, 0xec, 0x02, 0xb0, 0xb0, 0x01, 0x03, 0xef, 0x7e, 0x01, 0x00, 0x05,
0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0xb0, 0x73, 0x01, 0x00, 0x06, 0x90,
0xe9, 0x01, 0xd5, 0xa9, 0x01, 0x03, 0x91, 0x0a, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0xef, 0x75, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xb4, 0x02, 0xc1, 0x39, 0x03, 0xe6, 0x03,
0x02, 0x30, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xf1, 0x02, 0x9c, 0x3a,
0x03, 0xc0, 0x00, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xed, 0x02, 0xaa,
0x4c, 0x03, 0xda, 0x7b, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xa8, 0x02, 0xe5, 0x38, 0x03, 0x98, 0x05, 0x02, 0x10, 0x01, 0x04, 0x0d,
0x00, 0x05, 0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0xe8, 0x7a, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa8, 0x02, 0xe5, 0x38, 0x03, 0x98,
0x05, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9, 0x01, 0xd5,
0xa9, 0x01, 0x03, 0xf9, 0x04, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xed,
0x02, 0xaa, 0x4c, 0x03, 0xef, 0x75, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xb4, 0x02, 0xc1, 0x39, 0x03, 0xe7, 0x03, 0x02, 0x20, 0x01,
0x04, 0x0d, 0x00, 0x05, 0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0x99, 0x7c,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb4, 0x02, 0xc1, 0x39,
0x03, 0xe6, 0x03, 0x02, 0x10, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xfb,
0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xb4, 0x02, 0xc1, 0x39, 0x03, 0x42, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00,
0x05, 0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0x98, 0x7c, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xc3, 0x02, 0xc1, 0x39, 0x03, 0xe7, 0x03,
0x02, 0xc0, 0x00, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xe9, 0x01, 0xd5,
0xa9, 0x01, 0x03, 0xaa, 0x06, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xed,
0x02, 0xaa, 0x4c, 0x03, 0xef, 0x75, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xc3, 0x02, 0xc1, 0x39, 0x03, 0xe8, 0x03, 0x02, 0x20, 0x01,
0x04, 0x0d, 0x00, 0x05, 0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0x98, 0x7c,
0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc3, 0x02, 0xc1, 0x39,
0x03, 0xe6, 0x03, 0x02, 0x30, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0x84,
0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90,
0xe9, 0x01, 0xd5, 0xa9, 0x01, 0x03, 0xeb, 0x05, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0xef, 0x75, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xc3, 0x02, 0xc1, 0x39, 0x03, 0xe6, 0x03,
0x02, 0x10, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0x88, 0x03, 0x9c, 0x3a,
0x03, 0xc0, 0x00, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xed, 0x02, 0xaa,
0x4c, 0x03, 0xda, 0x7b, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0xe9, 0x01,
0xd5, 0xa9, 0x01, 0x03, 0x91, 0x0a, 0x02, 0x10, 0x01, 0x02, 0x10, 0x01,
0x04, 0x07, 0x00, 0x06, 0x90, 0x8c, 0x03, 0xd5, 0xab, 0x01, 0x03, 0xb6,
0x78, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03,
0xb9, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x06, 0x90, 0x8c, 0x03,
0xd5, 0xab, 0x01, 0x03, 0xca, 0x02, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xc3, 0x02, 0xc1, 0x39, 0x03, 0x9d, 0x01, 0x02, 0x10, 0x01,
0x04, 0x0d, 0x00, 0x05, 0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0x99, 0x7c,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc3, 0x02, 0xc1, 0x39,
0x03, 0xe7, 0x03, 0x02, 0x10, 0x01, 0x03, 0x01, 0x02, 0x20, 0x01, 0x04,
0x0d, 0x00, 0x05, 0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0x98, 0x7c, 0x02,
0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc3, 0x02, 0xc1, 0x39, 0x03,
0xe8, 0x03, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xed, 0x02,
0xaa, 0x4c, 0x03, 0x98, 0x7c, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0xe9,
0x01, 0xd5, 0xa9, 0x01, 0x03, 0x91, 0x0a, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0xef, 0x75, 0x02, 0x10, 0x01, 0x00,
0x06, 0x90, 0xe9, 0x01, 0xd5, 0xa9, 0x01, 0x03, 0x91, 0x0a, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0xed, 0x02, 0xaa, 0x4c, 0x03, 0xef, 0x75, 0x02,
0x10, 0x01, 0x00, 0x06, 0x90, 0xec, 0x02, 0xb0, 0xb0, 0x01, 0x03, 0xd8,
0x0c, 0x02, 0xd0, 0x00, 0x01, 0x04, 0x06, 0x00, 0x05, 0x90, 0x9b, 0x03,
0xc1, 0x4c, 0x03, 0xc6, 0x76, 0x01, 0x04, 0x0b, 0x00, 0x04, 0x90, 0x33,
0xd5, 0x75, 0x03, 0xb5, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x06, 0x00, 0x05,
0x90, 0x9b, 0x03, 0xc1, 0x4c, 0x03, 0xcb, 0x02, 0x02, 0x10, 0x01, 0x04,
0x0b, 0x00, 0x04, 0x90, 0x33, 0xd5, 0x75, 0x03, 0xb5, 0x7d, 0x02, 0x20,
0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x91, 0x01, 0xe4, 0x8e, 0x01, 0xf6,
0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0xca, 0x00, 0x02,
0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xa1, 0x03, 0xb7, 0xa2, 0x01,
0x03, 0xd4, 0x08, 0x01, 0x04, 0x06, 0x00, 0x05, 0x90, 0x9b, 0x03, 0xc1,
0x4c, 0x03, 0xa6, 0x79, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90,
0xec, 0x02, 0xb0, 0xb0, 0x01, 0x03, 0xca, 0x09, 0x02, 0x20, 0x01, 0x04,
0x0b, 0x00, 0x04, 0x90, 0x33, 0xd5, 0x75, 0x03, 0x86, 0x74, 0x02, 0x10,
0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x91, 0x01, 0xe4, 0x8e, 0x01, 0x03,
0x6c, 0x02, 0x10, 0x01, 0x04, 0x06, 0x00, 0x05, 0x90, 0x9b, 0x03, 0xc1,
0x4c, 0x03, 0xc4, 0x02, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00, 0x04, 0x90,
0x33, 0xd5, 0x75, 0x03, 0xd0, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00,
0x06, 0x90, 0xa1, 0x03, 0xb7, 0xa2, 0x01, 0x03, 0x8b, 0x09, 0x02, 0x10,
0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x91, 0x01, 0xe4, 0x8e, 0x01, 0x03,
0xe1, 0x76, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xa1, 0x03,
0xb7, 0xa2, 0x01, 0x03, 0x9f, 0x09, 0x02, 0x10, 0x01, 0xf5, 0x04, 0x0b,
0x00, 0x04, 0x90, 0x33, 0xd5, 0x75, 0x03, 0xef, 0x76, 0x02, 0x10, 0x01,
0x04, 0x0d, 0x00, 0x06, 0x90, 0xa1, 0x03, 0xb7, 0xa2, 0x01, 0x03, 0x8b,
0x09, 0x02, 0x10, 0x01, 0xf5, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x91, 0x01,
0xe4, 0x8e, 0x01, 0x03, 0xdb, 0x76, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00,
0x04, 0x90, 0x33, 0xd5, 0x75, 0x03, 0x14, 0x02, 0x10, 0x01, 0x04, 0x0d,
0x00, 0x06, 0x90, 0xec, 0x02, 0xb0, 0xb0, 0x01, 0x03, 0xea, 0x0b, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xb2, 0x03, 0xaa, 0x4c, 0x03, 0xa8, 0x73,
0x01, 0x00, 0x06, 0x90, 0xa1, 0x03, 0xb7, 0xa2, 0x01, 0x03, 0x83, 0x0a,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb2, 0x03, 0xaa, 0x4c, 0x03, 0xfd,
0x75, 0x02, 0x10, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x91, 0x01, 0xe4,
0x8e, 0x01, 0x03, 0x82, 0x01, 0x02, 0x10, 0x01, 0x04, 0x10, 0x00, 0x04,
0x90, 0x02, 0xa0, 0x69, 0x03, 0x1d, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00,
0x06, 0x90, 0xb7, 0x03, 0xf2, 0xa0, 0x01, 0x03, 0x58, 0x01, 0x04, 0x0d,
0x00, 0x05, 0x90, 0xb2, 0x03, 0xaa, 0x4c, 0x03, 0x89, 0x7f, 0x02, 0x10,
0x01, 0x00, 0x06, 0x90, 0xec, 0x02, 0xb0, 0xb0, 0x01, 0x03, 0xe9, 0x0c,
0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0xa1, 0x03, 0xb7, 0xa2, 0x01, 0x03,
0x9a, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00, 0x06, 0x90, 0xb7, 0x03,
0xf2, 0xa0, 0x01, 0x03, 0xfd, 0x76, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xbc, 0x03, 0xea, 0x20, 0x03, 0x94, 0x08, 0x01, 0x04, 0x0d,
0x00, 0x05, 0x90, 0xb2, 0x03, 0xaa, 0x4c, 0x03, 0xec, 0x76, 0x02, 0x10,
0x01, 0x04, 0x0b, 0x00, 0x06, 0x90, 0xb7, 0x03, 0xf2, 0xa0, 0x01, 0x03,
0x80, 0x01, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbf, 0x03,
0xea, 0x20, 0x03, 0x94, 0x08, 0x01, 0x04, 0x0b, 0x00, 0x06, 0x90, 0xb7,
0x03, 0xf2, 0xa0, 0x01, 0x03, 0xf2, 0x77, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xc1, 0x03, 0xea, 0x20, 0x03, 0x8e, 0x08, 0x01, 0x04,
0x0b, 0x00, 0x06, 0x90, 0xb7, 0x03, 0xf2, 0xa0, 0x01, 0x03, 0xf2, 0x77,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc3, 0x03, 0xea, 0x20,
0x03, 0x8e, 0x08, 0x01, 0x04, 0x0b, 0x00, 0x06, 0x90, 0xb7, 0x03, 0xf2,
0xa0, 0x01, 0x03, 0xec, 0x77, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xc5, 0x03, 0xea, 0x20, 0x03, 0x94, 0x08, 0x01, 0x04, 0x0b, 0x00,
0x06, 0x90, 0xb7, 0x03, 0xf2, 0xa0, 0x01, 0x03, 0xf2, 0x77, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc7, 0x03, 0xea, 0x20, 0x03, 0x8e,
0x08, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xec, 0x02, 0xb0, 0xb0, 0x01,
0x03, 0xcb, 0x03, 0x02, 0x10, 0x01, 0x03, 0x05, 0x02, 0x20, 0x01, 0x03,
0x05, 0x02, 0x20, 0x01, 0xf0, 0x00, 0x06, 0x90, 0xea, 0x02, 0xd3, 0xac,
0x01, 0x03, 0xa7, 0x01, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0xec, 0x02,
0xb0, 0xb0, 0x01, 0x03, 0xdd, 0x7e, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90,
0xce, 0x03, 0xaa, 0x4c, 0x03, 0x92, 0x73, 0x01, 0x00, 0x06, 0x90, 0xec,
0x02, 0xb0, 0xb0, 0x01, 0x03, 0xef, 0x0c, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xd0, 0x03, 0xaa, 0x4c, 0x03, 0x91, 0x73, 0x01, 0x00, 0x05, 0x90,
0xce, 0x03, 0xaa, 0x4c, 0x02, 0x10, 0x00, 0x05, 0x90, 0xd0, 0x03, 0xaa,
0x4c, 0x02, 0x10, 0x00, 0x06, 0x90, 0xa1, 0x03, 0xb7, 0xa2, 0x01, 0x03,
0x85, 0x0a, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0xec, 0x02, 0xb0, 0xb0,
0x01, 0x03, 0xeb, 0x02, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xd3, 0x03,
0xaa, 0x4c, 0x03, 0x90, 0x73, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02,
0xa0, 0x69, 0x03, 0x86, 0x02, 0x02, 0x20, 0x01, 0x04, 0x0c, 0x00, 0x06,
0x90, 0xd5, 0x03, 0xb5, 0xc0, 0x01, 0x03, 0x64, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xd6, 0x03, 0xcf, 0x1d, 0x03, 0xef, 0x08, 0x01, 0x04, 0x0d,
0x00, 0x06, 0x90, 0xea, 0x02, 0xd3, 0xac, 0x01, 0x03, 0xbb, 0x03, 0x02,
0x10, 0x01, 0x00, 0x06, 0x90, 0xd8, 0x03, 0xa1, 0xb2, 0x01, 0x03, 0x60,
0x01, 0xf3, 0x03, 0x05, 0x02, 0x20, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90,
0x02, 0xa0, 0x69, 0x03, 0xe4, 0x73, 0x02, 0x20, 0x01, 0x04, 0x0d, 0x00,
0x06, 0x90, 0xdc, 0x03, 0x87, 0xb4, 0x01, 0x03, 0x86, 0x09, 0x01, 0x00,
0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03, 0xa8, 0x75, 0x01, 0x04, 0x10,
0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0xd7, 0x01, 0x02, 0xf0, 0x02,
0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0xdf, 0x03, 0xef, 0xb5, 0x01, 0x03,
0xa8, 0x0c, 0x01, 0x00, 0x06, 0x90, 0xe0, 0x03, 0xdf, 0xb7, 0x01, 0x03,
0x53, 0x01, 0x00, 0x06, 0x90, 0xe1, 0x03, 0xcc, 0xb9, 0x01, 0x03, 0xef,
0x7e, 0x01, 0x00, 0x05, 0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03, 0xa7, 0x73,
0x01, 0x00, 0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03, 0x18, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03, 0x68, 0x02, 0xc0,
0x00, 0x01, 0x00, 0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03, 0x18, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03, 0x68, 0x02,
0xc0, 0x00, 0x01, 0x00, 0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03, 0x18,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03, 0x68,
0x02, 0x30, 0x01, 0x00, 0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03, 0x18,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03, 0x68,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03, 0x18,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03, 0x68,
0x02, 0xc0, 0x00, 0x01, 0x00, 0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03,
0x18, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03,
0x68, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03,
0x18, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0xe1, 0x03, 0xcc, 0xb9, 0x01,
0x03, 0xc9, 0x0c, 0x02, 0x10, 0x01, 0x04, 0x06, 0x00, 0x05, 0x90, 0xf1,
0x03, 0xc1, 0x4c, 0x03, 0xc6, 0x76, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xdd, 0x03, 0xbd, 0x46, 0x03, 0xf1, 0x7c, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03, 0x68, 0x02, 0x20, 0x01, 0x00, 0x05,
0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03, 0x18, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03, 0x68, 0x02, 0x10, 0x01, 0x00, 0x06,
0x90, 0xe1, 0x03, 0xcc, 0xb9, 0x01, 0x03, 0xe1, 0x0c, 0x02, 0x10, 0x01,
0x00, 0x05, 0x90, 0xf7, 0x03, 0x85, 0x4f, 0x03, 0x9f, 0x73, 0x01, 0x00,
0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03, 0x18, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03, 0x68, 0x02, 0x10, 0x01, 0x00,
0x06, 0x90, 0xd8, 0x03, 0xa1, 0xb2, 0x01, 0x03, 0x8a, 0x0e, 0x02, 0x10,
0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0xdd, 0x73,
0x02, 0x20, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46,
0x03, 0xb1, 0x7e, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0xe2, 0x03, 0x85,
0x4f, 0x03, 0x68, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0xe1, 0x03, 0xcc,
0xb9, 0x01, 0x03, 0xe8, 0x0c, 0x02, 0x10, 0x01, 0x04, 0x10, 0x00, 0x04,
0x90, 0x02, 0xa0, 0x69, 0x03, 0x8a, 0x75, 0x02, 0x10, 0x01, 0x04, 0x0d,
0x00, 0x06, 0x90, 0x80, 0x04, 0xbd, 0xbb, 0x01, 0x03, 0xb5, 0x0c, 0x01,
0x00, 0x05, 0x90, 0xdd, 0x03, 0xbd, 0x46, 0x03, 0xf1, 0x71, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0xe2, 0x03, 0x85, 0x4f, 0x03, 0x68, 0x02, 0x10,
0x01, 0x04, 0x06, 0x00, 0x05, 0x90, 0xf1, 0x03, 0xc1, 0x4c, 0x03, 0xa7,
0x03, 0x02, 0x30, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf7, 0x03, 0x85,
0x4f, 0x03, 0xd9, 0x7c, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0xe1, 0x03,
0xcc, 0xb9, 0x01, 0x03, 0xe8, 0x0c, 0x02, 0x10, 0x01, 0xf4, 0x03, 0x05,
0x02, 0x20, 0x01, 0xf0, 0xee, 0xf0, 0xf3, 0x00, 0x05, 0x90, 0x8c, 0x04,
0x85, 0x4f, 0x03, 0x89, 0x73, 0x01, 0x00, 0x06, 0x90, 0xe1, 0x03, 0xcc,
0xb9, 0x01, 0x03, 0xf8, 0x0c, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0x8e,
0x04, 0x85, 0x4f, 0x03, 0x88, 0x73, 0x01, 0x00, 0x06, 0x90, 0xdf, 0x03,
0xef, 0xb5, 0x01, 0x03, 0x9a, 0x0e, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90,
0xe1, 0x03, 0xcc, 0xb9, 0x01, 0x03, 0xdf, 0x7e, 0x02, 0x20, 0x01, 0x00,
0x05, 0x90, 0x91, 0x04, 0x85, 0x4f, 0x03, 0x87, 0x73, 0x01, 0x00, 0x06,
0x90, 0x80, 0x04, 0xbd, 0xbb, 0x01, 0x03, 0xa7, 0x0e, 0x02, 0x10, 0x01,
0x00, 0x06, 0x90, 0xdf, 0x03, 0xef, 0xb5, 0x01, 0x03, 0x76, 0x02, 0x10,
0x01, 0x00, 0x06, 0x90, 0x94, 0x04, 0xa1, 0xb2, 0x01, 0x03, 0x60, 0x01,
0xf3, 0x03, 0x05, 0x02, 0x20, 0x01, 0x03, 0x04, 0x02, 0x20, 0x01, 0x00,
0x06, 0x90, 0x80, 0x04, 0xbd, 0xbb, 0x01, 0x03, 0x1d, 0x02, 0x20, 0x01,
0x03, 0x08, 0x02, 0xc0, 0x00, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02,
0xa0, 0x69, 0x03, 0xcc, 0x73, 0x02, 0xc0, 0x00, 0x01, 0x04, 0x0d, 0x00,
0x06, 0x90, 0x9b, 0x04, 0xa1, 0xbd, 0x01, 0x03, 0x8e, 0x09, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0x9c, 0x04, 0xe5, 0x57, 0x03, 0x8d, 0x79, 0x01,
0x00, 0x05, 0x90, 0x9d, 0x04, 0xc4, 0x58, 0x03, 0x75, 0x01, 0x04, 0x0d,
0x00, 0x06, 0x90, 0x80, 0x04, 0xbd, 0xbb, 0x01, 0x03, 0xa4, 0x0a, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x9c, 0x04, 0xe5, 0x57, 0x03,
0xe8, 0x75, 0x02, 0xc0, 0x00, 0x01, 0x00, 0x05, 0x90, 0xa0, 0x04, 0xc4,
0x58, 0x03, 0x74, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0x80, 0x04, 0xbd,
0xbb, 0x01, 0x03, 0xa4, 0x0a, 0x02, 0x10, 0x01, 0x00, 0x06, 0x90, 0x9b,
0x04, 0xa1, 0xbd, 0x01, 0x03, 0xdb, 0x7c, 0x02, 0xc0, 0x00, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xa3, 0x04, 0xe5, 0x57, 0x03, 0x8c, 0x79, 0x01,
0x00, 0x05, 0x90, 0xa4, 0x04, 0xc4, 0x58, 0x03, 0x75, 0x01, 0x04, 0x0d,
0x00, 0x06, 0x90, 0x80, 0x04, 0xbd, 0xbb, 0x01, 0x03, 0xa4, 0x0a, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa3, 0x04, 0xe5, 0x57, 0x03,
0xe8, 0x75, 0x02, 0xc0, 0x00, 0x01, 0x00, 0x05, 0x90, 0xa7, 0x04, 0xc4,
0x58, 0x03, 0x74, 0x01, 0x00, 0x05, 0x90, 0x9c, 0x04, 0xe5, 0x57, 0x03,
0x0d, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x06, 0x90, 0x9b, 0x04, 0xa1,
0xbd, 0x01, 0x03, 0xf3, 0x06, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xaa, 0x04, 0xe5, 0x57, 0x03, 0x8b, 0x79, 0x01, 0x00, 0x05, 0x90,
0xab, 0x04, 0xc4, 0x58, 0x03, 0x75, 0x01, 0x00, 0x05, 0x90, 0xaa, 0x04,
0xe5, 0x57, 0x03, 0x0c, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xad, 0x04,
0xc4, 0x58, 0x03, 0x74, 0x01, 0x00, 0x05, 0x90, 0xa3, 0x04, 0xe5, 0x57,
0x03, 0x0d, 0x02, 0x10, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0,
0x69, 0x03, 0xef, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x0a, 0x00, 0x05, 0x90,
0xb0, 0x04, 0xa8, 0x5d, 0x03, 0x80, 0x7e, 0x01, 0x04, 0x09, 0x00, 0x05,
0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0xc3, 0x04, 0x01, 0x04, 0x0d, 0x00,
0x06, 0x90, 0x9b, 0x04, 0xa1, 0xbd, 0x01, 0x03, 0xc2, 0x06, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb3, 0x04, 0xe5, 0x57, 0x03, 0x8a,
0x79, 0x01, 0x00, 0x05, 0x90, 0xb4, 0x04, 0xc4, 0x58, 0x03, 0x75, 0x01,
0x04, 0x09, 0x00, 0x05, 0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0x3f, 0x02,
0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xb3, 0x04, 0xe5, 0x57, 0x03, 0xbf, 0x7f, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xb8, 0x04, 0xc4, 0x58, 0x03, 0x74, 0x01, 0x00, 0x05, 0x90, 0xaa,
0x04, 0xe5, 0x57, 0x03, 0x0d, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb4,
0x04, 0xc4, 0x58, 0x03, 0x73, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb3,
0x04, 0xe5, 0x57, 0x03, 0x0d, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb8,
0x04, 0xc4, 0x58, 0x03, 0x73, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05,
0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0xcd, 0x00, 0x02, 0x10, 0x01, 0x03,
0x10, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb4, 0x04, 0xc4,
0x58, 0x03, 0xa3, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0xb1, 0x04, 0xf2, 0x5e, 0x03, 0xdd, 0x00, 0x02, 0x10, 0x01, 0x03, 0x0e,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb8, 0x04, 0xc4, 0x58,
0x03, 0x95, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb1,
0x04, 0xf2, 0x5e, 0x03, 0xeb, 0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0x9c, 0x04, 0xe5, 0x57, 0x03, 0xa2, 0x7f, 0x02, 0x10, 0x01,
0x04, 0x0c, 0x00, 0x06, 0x90, 0xd5, 0x03, 0xb5, 0xc0, 0x01, 0x03, 0xdc,
0x7d, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc6, 0x04, 0xcf,
0x1d, 0x03, 0xee, 0x08, 0x01, 0x00, 0x05, 0x90, 0xb4, 0x04, 0xc4, 0x58,
0x03, 0xa9, 0x79, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0xd6, 0x03, 0xcf,
0x1d, 0x03, 0xd7, 0x06, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xc6, 0x04,
0xcf, 0x1d, 0x02, 0x20, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb1, 0x04, 0xf2,
0x5e, 0x03, 0xe8, 0x79, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xc6, 0x04, 0xcf, 0x1d, 0x03, 0x98, 0x06, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xb8, 0x04, 0xc4, 0x58, 0x03, 0xa9, 0x79, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xa3, 0x04, 0xe5, 0x57, 0x03, 0x0d, 0x02, 0x10, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0x32, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd6, 0x03, 0xcf, 0x1d, 0x03, 0x98,
0x06, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xc6, 0x04, 0xcf, 0x1d, 0x02,
0x10, 0x00, 0x05, 0x90, 0xb4, 0x04, 0xc4, 0x58, 0x03, 0xa9, 0x79, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xb8, 0x04, 0xc4, 0x58, 0x02, 0x10, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0xcd, 0x00, 0x02,
0x10, 0x01, 0x03, 0x10, 0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01,
0x03, 0x54, 0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x03, 0x10,
0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xaa, 0x04, 0xe5, 0x57, 0x03, 0xa2, 0x7f, 0x02, 0x20, 0x01, 0x00,
0x05, 0x90, 0xb3, 0x04, 0xe5, 0x57, 0x02, 0x10, 0x04, 0x09, 0x00, 0x05,
0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0x32, 0x02, 0x10, 0x01, 0x03, 0x0e,
0x02, 0x20, 0x01, 0x03, 0x10, 0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20,
0x01, 0x03, 0x54, 0x02, 0x20, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0xd5,
0x03, 0xb5, 0xc0, 0x01, 0x03, 0xaa, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xde, 0x04, 0xcf, 0x1d, 0x03, 0xee, 0x08, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0xe8, 0x79, 0x02,
0x10, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0xd5, 0x03, 0xb5, 0xc0, 0x01,
0x03, 0xa9, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xe1,
0x04, 0xcf, 0x1d, 0x03, 0xef, 0x08, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0xb1, 0x04, 0xf2, 0x5e, 0x03, 0xf6, 0x79, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xde, 0x04, 0xcf, 0x1d, 0x03, 0x8a, 0x06, 0x02, 0x10,
0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0xf6,
0x79, 0x02, 0x20, 0x01, 0x03, 0x10, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02,
0x20, 0x01, 0x03, 0x54, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xe1, 0x04, 0xcf, 0x1d, 0x03, 0x98, 0x06, 0x02, 0x20, 0x01, 0x00, 0x05,
0x90, 0xde, 0x04, 0xcf, 0x1d, 0x02, 0x10, 0x04, 0x09, 0x00, 0x05, 0x90,
0xb1, 0x04, 0xf2, 0x5e, 0x03, 0xf6, 0x79, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xe1, 0x04, 0xcf, 0x1d, 0x03, 0x8a, 0x06, 0x02, 0x10,
0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0xf6,
0x79, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xe1, 0x04, 0xcf,
0x1d, 0x03, 0x8a, 0x06, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0xb1, 0x04, 0xf2, 0x5e, 0x03, 0x86, 0x7a, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xe1, 0x04, 0xcf, 0x1d, 0x03, 0xfa, 0x05, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0xde, 0x04, 0xcf, 0x1d, 0x02, 0x10, 0x04, 0x09,
0x00, 0x05, 0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0x86, 0x7a, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xde, 0x04, 0xcf, 0x1d, 0x03, 0xfa,
0x05, 0x02, 0x10, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x91, 0x01, 0xe4,
0x8e, 0x01, 0x03, 0xb0, 0x76, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xde, 0x04, 0xcf, 0x1d, 0x03, 0xd0, 0x09, 0x02, 0x10, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0x94, 0x7a, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xe1, 0x04, 0xcf, 0x1d, 0x03,
0xec, 0x05, 0x02, 0x10, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x91, 0x01,
0xe4, 0x8e, 0x01, 0x03, 0xb3, 0x76, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00,
0x05, 0x90, 0xb1, 0x04, 0xf2, 0x5e, 0x03, 0xe1, 0x03, 0x02, 0x10, 0x01,
0x04, 0x0c, 0x00, 0x06, 0x90, 0xd5, 0x03, 0xb5, 0xc0, 0x01, 0x03, 0xfd,
0x7c, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xf8, 0x04, 0xcf,
0x1d, 0x03, 0xef, 0x08, 0x01, 0x00, 0x05, 0x90, 0xe1, 0x04, 0xcf, 0x1d,
0x02, 0x10, 0x00, 0x05, 0x90, 0xf8, 0x04, 0xcf, 0x1d, 0x02, 0x10, 0x04,
0x0c, 0x00, 0x06, 0x90, 0xd5, 0x03, 0xb5, 0xc0, 0x01, 0x03, 0x92, 0x77,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xfa, 0x04, 0xcf, 0x1d,
0x03, 0xee, 0x08, 0x01, 0x00, 0x05, 0x90, 0xf8, 0x04, 0xcf, 0x1d, 0x02,
0x10, 0x00, 0x05, 0x90, 0xe1, 0x04, 0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05,
0x90, 0xf8, 0x04, 0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05, 0x90, 0xfa, 0x04,
0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05, 0x90, 0xde, 0x04, 0xcf, 0x1d, 0x02,
0x10, 0x00, 0x05, 0x90, 0xfa, 0x04, 0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05,
0x90, 0xe1, 0x04, 0xcf, 0x1d, 0x02, 0x20, 0x00, 0x05, 0x90, 0xfa, 0x04,
0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05, 0x90, 0xde, 0x04, 0xcf, 0x1d, 0x02,
0x20, 0x00, 0x05, 0x90, 0xfa, 0x04, 0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05,
0x90, 0xf8, 0x04, 0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05, 0x90, 0xfa, 0x04,
0xcf, 0x1d, 0x02, 0x30, 0x04, 0x0c, 0x00, 0x06, 0x90, 0xd5, 0x03, 0xb5,
0xc0, 0x01, 0x03, 0x92, 0x77, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xfc, 0x04, 0xcf, 0x1d, 0x03, 0xee, 0x08, 0x01, 0x00, 0x05, 0x90,
0xf8, 0x04, 0xcf, 0x1d, 0x02, 0x20, 0x04, 0x0c, 0x00, 0x06, 0x90, 0xd5,
0x03, 0xb5, 0xc0, 0x01, 0x03, 0x91, 0x77, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xfe, 0x04, 0xcf, 0x1d, 0x03, 0xef, 0x08, 0x01, 0x00,
0x05, 0x90, 0xfa, 0x04, 0xcf, 0x1d, 0x02, 0x20, 0x00, 0x05, 0x90, 0xfc,
0x04, 0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05, 0x90, 0xf8, 0x04, 0xcf, 0x1d,
0x02, 0x20, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x91, 0x01, 0xe4, 0x8e, 0x01,
0x03, 0xb3, 0x76, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xfa,
0x04, 0xcf, 0x1d, 0x03, 0xcd, 0x09, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90,
0xfe, 0x04, 0xcf, 0x1d, 0x02, 0x10, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02,
0xa0, 0x69, 0x03, 0xfd, 0x75, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00, 0x06,
0x90, 0x82, 0x05, 0xfb, 0xc2, 0x01, 0x03, 0xd2, 0x00, 0x01, 0x00, 0x06,
0x90, 0x83, 0x05, 0xe9, 0xc4, 0x01, 0x03, 0x9f, 0x7f, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xfc, 0x04, 0xcf, 0x1d, 0x03, 0x92, 0x0a, 0x02, 0x10,
0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0, 0x69, 0x03, 0xb0, 0x77,
0x02, 0x10, 0x01, 0x03, 0x04, 0x02, 0x20, 0x01, 0x04, 0x0c, 0x00, 0x06,
0x90, 0x87, 0x05, 0xee, 0xc1, 0x01, 0x03, 0xac, 0x7f, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0x88, 0x05, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04,
0x0f, 0x00, 0x06, 0x90, 0x83, 0x05, 0xe9, 0xc4, 0x01, 0x03, 0xb3, 0x77,
0x02, 0x10, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x87, 0x05, 0xee, 0xc1,
0x01, 0x03, 0xf2, 0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0x8b, 0x05, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x0f, 0x00, 0x06,
0x90, 0x83, 0x05, 0xe9, 0xc4, 0x01, 0x03, 0xb3, 0x77, 0x02, 0x10, 0x01,
0x04, 0x0c, 0x00, 0x06, 0x90, 0x87, 0x05, 0xee, 0xc1, 0x01, 0x03, 0xf2,
0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x8e, 0x05, 0xea,
0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x10, 0x00, 0x04, 0x90, 0x02, 0xa0,
0x69, 0x03, 0x81, 0x79, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00, 0x06, 0x90,
0x90, 0x05, 0xe1, 0xc6, 0x01, 0x03, 0xd1, 0x7e, 0x01, 0x04, 0x0c, 0x00,
0x06, 0x90, 0x87, 0x05, 0xee, 0xc1, 0x01, 0x03, 0xd3, 0x00, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x92, 0x05, 0xea, 0x20, 0x03, 0xdb,
0x07, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x87, 0x05, 0xee, 0xc1, 0x01,
0x03, 0xa5, 0x78, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x94,
0x05, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90,
0x87, 0x05, 0xee, 0xc1, 0x01, 0x03, 0xa5, 0x78, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0x96, 0x05, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01,
0x04, 0x0c, 0x00, 0x06, 0x90, 0x87, 0x05, 0xee, 0xc1, 0x01, 0x03, 0xa5,
0x78, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x98, 0x05, 0xea,
0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x87, 0x05,
0xee, 0xc1, 0x01, 0x03, 0xa5, 0x78, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0x9a, 0x05, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x0c,
0x00, 0x06, 0x90, 0x87, 0x05, 0xee, 0xc1, 0x01, 0x03, 0xa5, 0x78, 0x02,
0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x9c, 0x05, 0xea, 0x20, 0x03,
0xdb, 0x07, 0x01, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x87, 0x05, 0xee, 0xc1,
0x01, 0x03, 0xad, 0x78, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0x9e, 0x05, 0xd5, 0x62, 0x03, 0xbb, 0x03, 0x01, 0x00, 0x05, 0x90, 0x9f,
0x05, 0xb0, 0x63, 0x03, 0xbf, 0x7d, 0x01, 0x00, 0x05, 0x90, 0x9e, 0x05,
0xd5, 0x62, 0x03, 0xc2, 0x02, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa1,
0x05, 0xb0, 0x63, 0x03, 0xbe, 0x7d, 0x01, 0x00, 0x05, 0x90, 0x9e, 0x05,
0xd5, 0x62, 0x03, 0xc3, 0x02, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa3,
0x05, 0xb0, 0x63, 0x03, 0xbd, 0x7d, 0x01, 0x00, 0x05, 0x90, 0x9e, 0x05,
0xd5, 0x62, 0x03, 0xc4, 0x02, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa5,
0x05, 0xb0, 0x63, 0x03, 0xbc, 0x7d, 0x01, 0x00, 0x05, 0x90, 0x9f, 0x05,
0xb0, 0x63, 0x02, 0x10, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x87, 0x05, 0xee,
0xc1, 0x01, 0x03, 0xfe, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xa7, 0x05, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x00, 0x05, 0x90,
0xa1, 0x05, 0xb0, 0x63, 0x03, 0xa7, 0x79, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xa3, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xa5, 0x05,
0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0x9f, 0x05, 0xb0, 0x63, 0x02,
0x10, 0x00, 0x05, 0x90, 0xa1, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05,
0x90, 0xa3, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xa5, 0x05,
0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0x9f, 0x05, 0xb0, 0x63, 0x02,
0x10, 0x04, 0x0c, 0x00, 0x06, 0x90, 0x87, 0x05, 0xee, 0xc1, 0x01, 0x03,
0xfe, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xaa, 0x05,
0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x00, 0x05, 0x90, 0xa1, 0x05, 0xb0,
0x63, 0x03, 0xa7, 0x79, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa3, 0x05,
0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xa5, 0x05, 0xb0, 0x63, 0x02,
0x10, 0x00, 0x05, 0x90, 0x9f, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0c,
0x00, 0x06, 0x90, 0x87, 0x05, 0xee, 0xc1, 0x01, 0x03, 0xfe, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xad, 0x05, 0xea, 0x20, 0x03,
0xdb, 0x07, 0x01, 0x00, 0x05, 0x90, 0xa1, 0x05, 0xb0, 0x63, 0x03, 0xa7,
0x79, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa3, 0x05, 0xb0, 0x63, 0x02,
0x10, 0x00, 0x05, 0x90, 0xa5, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0c,
0x00, 0x06, 0x90, 0x87, 0x05, 0xee, 0xc1, 0x01, 0x03, 0xfe, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb0, 0x05, 0xea, 0x20, 0x03,
0xdb, 0x07, 0x01, 0x00, 0x05, 0x90, 0x9f, 0x05, 0xb0, 0x63, 0x03, 0xa7,
0x79, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa1, 0x05, 0xb0, 0x63, 0x02,
0x10, 0x00, 0x05, 0x90, 0xa3, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05,
0x90, 0xa5, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0x9f, 0x05,
0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xa1, 0x05, 0xb0, 0x63, 0x02,
0x10, 0x00, 0x05, 0x90, 0xa3, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05,
0x90, 0xa5, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0c, 0x00, 0x06, 0x90,
0x87, 0x05, 0xee, 0xc1, 0x01, 0x03, 0xfe, 0x7e, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xb3, 0x05, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01,
0x00, 0x05, 0x90, 0x9f, 0x05, 0xb0, 0x63, 0x03, 0xa7, 0x79, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0xa1, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0c,
0x00, 0x06, 0x90, 0x87, 0x05, 0xee, 0xc1, 0x01, 0x03, 0xfe, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x05, 0xea, 0x20, 0x03,
0xdb, 0x07, 0x01, 0x00, 0x05, 0x90, 0xa3, 0x05, 0xb0, 0x63, 0x03, 0xa7,
0x79, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa5, 0x05, 0xb0, 0x63, 0x02,
0x10, 0x00, 0x05, 0x90, 0x9f, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0f,
0x00, 0x06, 0x90, 0x90, 0x05, 0xe1, 0xc6, 0x01, 0x03, 0xab, 0x7e, 0x02,
0x10, 0x01, 0xf3, 0x03, 0x01, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa1,
0x05, 0xb0, 0x63, 0x03, 0xd0, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00,
0x06, 0x90, 0x90, 0x05, 0xe1, 0xc6, 0x01, 0x03, 0xb0, 0x7e, 0x02, 0x10,
0x01, 0xea, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa3, 0x05, 0xb0, 0x63, 0x03,
0xd5, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00, 0x06, 0x90, 0x90, 0x05,
0xe1, 0xc6, 0x01, 0x03, 0xb0, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xa5, 0x05, 0xb0, 0x63, 0x03, 0xd0, 0x01, 0x02, 0x20, 0x01,
0x00, 0x05, 0x90, 0x9f, 0x05, 0xb0, 0x63, 0x02, 0x20, 0x04, 0x0f, 0x00,
0x06, 0x90, 0x90, 0x05, 0xe1, 0xc6, 0x01, 0x03, 0xb0, 0x7e, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa1, 0x05, 0xb0, 0x63, 0x03, 0xd0,
0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa3, 0x05, 0xb0, 0x63, 0x02,
0x10, 0x00, 0x05, 0x90, 0xa5, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05,
0x90, 0x9f, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0f, 0x00, 0x06, 0x90,
0x90, 0x05, 0xe1, 0xc6, 0x01, 0x03, 0xb0, 0x7e, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xc4, 0x05, 0x8a, 0x69, 0x03, 0xc8, 0x09, 0x01,
0x00, 0x05, 0x90, 0xa1, 0x05, 0xb0, 0x63, 0x03, 0x88, 0x78, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0xa3, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05,
0x90, 0xa5, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0x9f, 0x05,
0xb0, 0x63, 0x02, 0x10, 0x04, 0x0f, 0x00, 0x06, 0x90, 0x90, 0x05, 0xe1,
0xc6, 0x01, 0x03, 0xab, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xa1, 0x05, 0xb0, 0x63, 0x03, 0xd5, 0x01, 0x02, 0x20, 0x01, 0x00,
0x05, 0x90, 0xa3, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xa5,
0x05, 0xb0, 0x63, 0x02, 0x20, 0x04, 0x0f, 0x00, 0x06, 0x90, 0x90, 0x05,
0xe1, 0xc6, 0x01, 0x03, 0xb0, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0x9f, 0x05, 0xb0, 0x63, 0x03, 0xd0, 0x01, 0x02, 0x10, 0x01,
0x00, 0x05, 0x90, 0xa1, 0x05, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0f, 0x00,
0x06, 0x90, 0x90, 0x05, 0xe1, 0xc6, 0x01, 0x03, 0xb0, 0x7e, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa3, 0x05, 0xb0, 0x63, 0x03, 0xd0,
0x01, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00, 0x06, 0x90, 0x90, 0x05, 0xe1,
0xc6, 0x01, 0x03, 0xb0, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xa5, 0x05, 0xb0, 0x63, 0x03, 0xd0, 0x01, 0x02, 0x10, 0x01, 0x04,
0x0f, 0x00, 0x06, 0x90, 0x90, 0x05, 0xe1, 0xc6, 0x01, 0x03, 0xb0, 0x7e,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x9f, 0x05, 0xb0, 0x63,
0x03, 0xd0, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa1, 0x05, 0xb0,
0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xa3, 0x05, 0xb0, 0x63, 0x02, 0x10,
0x04, 0x0f, 0x00, 0x06, 0x90, 0x90, 0x05, 0xe1, 0xc6, 0x01, 0x03, 0xb0,
0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa5, 0x05, 0xb0,
0x63, 0x03, 0xd0, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00, 0x06, 0x90,
0x90, 0x05, 0xe1, 0xc6, 0x01, 0x03, 0xb0, 0x7e, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xd3, 0x05, 0x8a, 0x69, 0x03, 0xc8, 0x09, 0x01,
0x04, 0x01, 0x00, 0x03, 0x90, 0x00, 0x00, 0x03, 0x8b, 0x76, 0x02, 0x10,
0x01, 0x02, 0x30, 0x00, 0x01, 0x01, 0x00, 0x09, 0x02, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x03, 0x3c, 0x01, 0x03, 0x01,
0x02, 0x20, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0x0e,
0x01, 0xf6, 0x04, 0x03, 0x00, 0x04, 0x90, 0x04, 0xe7, 0x01, 0x03, 0x19,
0x01, 0x03, 0x01, 0x02, 0x20, 0x01, 0xee, 0xf0, 0x04, 0x02, 0x00, 0x03,
0x90, 0x02, 0x00, 0x03, 0x67, 0x02, 0x10, 0x01, 0x04, 0x03, 0x00, 0x04,
0x90, 0x09, 0xd1, 0x02, 0x03, 0x1f, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90,
0x02, 0x00, 0x03, 0x61, 0x02, 0x10, 0x01, 0xeb, 0x03, 0x09, 0x02, 0x10,
0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0d, 0x9a, 0x0d, 0x03, 0xfd, 0x01,
0x01, 0x00, 0x04, 0x90, 0x0e, 0xf3, 0x0e, 0x03, 0x50, 0x01, 0x04, 0x02,
0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xb6, 0x7e, 0x02, 0x10, 0x01, 0x04,
0x04, 0x00, 0x04, 0x90, 0x10, 0x91, 0x03, 0x03, 0x22, 0x01, 0x00, 0x04,
0x90, 0x11, 0x95, 0x05, 0x03, 0x21, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90,
0x02, 0x00, 0x03, 0x4c, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90,
0x13, 0xcc, 0x10, 0x03, 0xd0, 0x00, 0x01, 0x04, 0x07, 0x00, 0x04, 0x90,
0x0e, 0xf3, 0x0e, 0x03, 0xeb, 0x00, 0x02, 0x20, 0x01, 0x04, 0x02, 0x00,
0x03, 0x90, 0x02, 0x00, 0x03, 0xb8, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x05,
0x00, 0x04, 0x90, 0x16, 0xec, 0x06, 0x03, 0x84, 0x05, 0x01, 0x00, 0x04,
0x90, 0x17, 0xfa, 0x07, 0x03, 0x89, 0x7f, 0x01, 0x00, 0x04, 0x90, 0x18,
0x8a, 0x09, 0x03, 0xa1, 0x7c, 0x01, 0x04, 0x06, 0x00, 0x04, 0x90, 0x19,
0xa4, 0x0a, 0x03, 0xe9, 0x01, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x13,
0xcc, 0x10, 0x03, 0xd1, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x02, 0x00, 0x03,
0x90, 0x02, 0x00, 0x03, 0xa7, 0x7f, 0x02, 0x80, 0x01, 0x01, 0x04, 0x04,
0x00, 0x04, 0x90, 0x1c, 0xe6, 0x14, 0x03, 0xd9, 0x00, 0x01, 0x04, 0x05,
0x00, 0x04, 0x90, 0x17, 0xfa, 0x07, 0x03, 0xba, 0x03, 0x02, 0xf0, 0x00,
0x01, 0xf0, 0xf0, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xe1,
0x7b, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x21, 0xfc, 0x0a,
0x03, 0xc7, 0x0a, 0x01, 0x00, 0x04, 0x90, 0x22, 0x8a, 0x0c, 0x03, 0x9e,
0x7f, 0x01, 0x00, 0x04, 0x90, 0x17, 0xfa, 0x07, 0x03, 0xb8, 0x7a, 0x02,
0x10, 0x01, 0x03, 0x16, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x22, 0x8a,
0x0c, 0x03, 0xb1, 0x05, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x17, 0xfa,
0x07, 0x03, 0xb8, 0x7a, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x22, 0x8a,
0x0c, 0x03, 0xc9, 0x05, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90,
0x13, 0xcc, 0x10, 0x03, 0xfa, 0x76, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00,
0x04, 0x90, 0x17, 0xfa, 0x07, 0x03, 0xbf, 0x03, 0x02, 0x10, 0x01, 0x03,
0x15, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10,
0x03, 0xac, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x22,
0x8a, 0x0c, 0x03, 0x87, 0x09, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04,
0x90, 0x11, 0x95, 0x05, 0x03, 0xc7, 0x76, 0x02, 0x10, 0x01, 0x04, 0x05,
0x00, 0x04, 0x90, 0x17, 0xfa, 0x07, 0x03, 0x86, 0x04, 0x02, 0x10, 0x01,
0x04, 0x04, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0xac, 0x7c, 0x02,
0x10, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x22, 0x8a, 0x0c, 0x03, 0x9b,
0x09, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x11, 0x95, 0x05,
0x03, 0xb3, 0x76, 0x02, 0x10, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02,
0x00, 0x03, 0xbe, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90,
0x11, 0x95, 0x05, 0x03, 0xc2, 0x00, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00,
0x04, 0x90, 0x18, 0x8a, 0x09, 0x03, 0x74, 0x02, 0x10, 0x01, 0x04, 0x04,
0x00, 0x04, 0x90, 0x11, 0x95, 0x05, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x04,
0x05, 0x00, 0x04, 0x90, 0x18, 0x8a, 0x09, 0x03, 0x72, 0x02, 0x10, 0x01,
0x04, 0x04, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0x37, 0x02, 0x10,
0x01, 0x00, 0x04, 0x90, 0x11, 0x95, 0x05, 0x03, 0x57, 0x02, 0x10, 0x01,
0x04, 0x05, 0x00, 0x04, 0x90, 0x18, 0x8a, 0x09, 0x03, 0x72, 0x02, 0x10,
0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x11, 0x95, 0x05, 0x03, 0x1e, 0x02,
0x10, 0x01, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0x24, 0x02, 0x10,
0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x18, 0x8a, 0x09, 0x03, 0x40, 0x02,
0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x11, 0x95, 0x05, 0x03, 0x19,
0x02, 0x10, 0x01, 0xf2, 0x03, 0x77, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00,
0x04, 0x90, 0x18, 0x8a, 0x09, 0x03, 0x70, 0x02, 0x10, 0x01, 0x04, 0x04,
0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0x3d, 0x02, 0x20, 0x01, 0x00,
0x04, 0x90, 0x11, 0x95, 0x05, 0x03, 0x5c, 0x02, 0x10, 0x01, 0x00, 0x04,
0x90, 0x13, 0xcc, 0x10, 0x03, 0x19, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90,
0x11, 0x95, 0x05, 0x03, 0x67, 0x02, 0x20, 0x01, 0x00, 0x04, 0x90, 0x13,
0xcc, 0x10, 0x03, 0x19, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x11, 0x95,
0x05, 0x03, 0x67, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10,
0x03, 0x19, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x11, 0x95, 0x05, 0x03,
0x67, 0x02, 0x20, 0x01, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0x20,
0x02, 0x30, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0xf6, 0x03, 0x05, 0x02,
0x20, 0x01, 0x00, 0x04, 0x90, 0x4d, 0x9e, 0x12, 0x03, 0xef, 0x7e, 0x01,
0x04, 0x08, 0x00, 0x04, 0x90, 0x4e, 0xa2, 0x14, 0x03, 0xe9, 0x07, 0x01,
0x00, 0x04, 0x90, 0x4f, 0xce, 0x14, 0x03, 0x6c, 0x01, 0x04, 0x04, 0x00,
0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0xb7, 0x79, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x04, 0x90, 0x4f, 0xce, 0x14, 0x03, 0xc9, 0x06, 0x02, 0x20,
0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0xb7, 0x79,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x04, 0x90, 0x4f, 0xce, 0x14, 0x03,
0xc9, 0x06, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x1c, 0xe6,
0x14, 0x03, 0xbb, 0x79, 0x02, 0xd0, 0x00, 0x01, 0x04, 0x02, 0x00, 0x03,
0x90, 0x02, 0x00, 0x03, 0x9b, 0x7f, 0x02, 0x20, 0x01, 0x04, 0x04, 0x00,
0x04, 0x90, 0x56, 0x91, 0x03, 0x03, 0x1d, 0x01, 0x00, 0x04, 0x90, 0x57,
0x95, 0x05, 0x03, 0x24, 0x01, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03,
0x19, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x57, 0x95, 0x05, 0x03, 0x67,
0x02, 0x20, 0x01, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0x19, 0x02,
0x10, 0x01, 0x00, 0x04, 0x90, 0x57, 0x95, 0x05, 0x03, 0x67, 0x02, 0x20,
0x01, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0x19, 0x02, 0x10, 0x01,
0x00, 0x04, 0x90, 0x57, 0x95, 0x05, 0x03, 0x67, 0x02, 0x10, 0x01, 0x00,
0x04, 0x90, 0x1c, 0xe6, 0x14, 0x03, 0x20, 0x02, 0x20, 0x01, 0x00, 0x04,
0x90, 0x57, 0x95, 0x05, 0x03, 0x60, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90,
0x13, 0xcc, 0x10, 0x03, 0x19, 0x02, 0x10, 0x01, 0x00, 0x04, 0x90, 0x1c,
0xe6, 0x14, 0xf6, 0x03, 0x05, 0x02, 0xc0, 0x00, 0x01, 0x00, 0x04, 0x90,
0x63, 0xb8, 0x16, 0x03, 0xef, 0x7e, 0x01, 0x04, 0x08, 0x00, 0x04, 0x90,
0x64, 0xa2, 0x14, 0x03, 0xe9, 0x07, 0x01, 0x00, 0x04, 0x90, 0x65, 0xce,
0x14, 0x03, 0x6c, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x1c, 0xe6, 0x14,
0x03, 0xb7, 0x79, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x04, 0x90, 0x65,
0xce, 0x14, 0x03, 0xc9, 0x06, 0x02, 0x10, 0x01, 0x04, 0x02, 0x00, 0x03,
0x90, 0x02, 0x00, 0x03, 0xe8, 0x78, 0x02, 0xc0, 0x00, 0x01, 0x04, 0x04,
0x00, 0x04, 0x90, 0x69, 0xbc, 0x18, 0x03, 0x3e, 0x01, 0x04, 0x05, 0x00,
0x04, 0x90, 0x6a, 0x90, 0x1a, 0x03, 0xde, 0x00, 0x01, 0x04, 0x08, 0x00,
0x04, 0x90, 0x6b, 0xfc, 0x1c, 0x03, 0x93, 0x09, 0x01, 0x00, 0x04, 0x90,
0x6c, 0xa3, 0x1d, 0x03, 0x63, 0x01, 0x00, 0x04, 0x90, 0x6d, 0xcf, 0x1d,
0x03, 0x77, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xff,
0x75, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x6f, 0xb8, 0x1f,
0x03, 0xbf, 0x04, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03,
0xe9, 0x7b, 0x02, 0x10, 0x01, 0x03, 0x5c, 0x02, 0x10, 0x01, 0x04, 0x05,
0x00, 0x04, 0x90, 0x72, 0x80, 0x21, 0x03, 0x83, 0x0a, 0x01, 0x04, 0x08,
0x00, 0x04, 0x90, 0x6d, 0xcf, 0x1d, 0x03, 0x7a, 0x02, 0x10, 0x01, 0x04,
0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0x8e, 0x76, 0x02, 0x10, 0x01,
0x04, 0x05, 0x00, 0x04, 0x90, 0x75, 0xb8, 0x1f, 0x03, 0xb0, 0x04, 0x01,
0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xe9, 0x7b, 0x02, 0x10,
0x01, 0x03, 0x68, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x78,
0x80, 0x21, 0x03, 0xf7, 0x09, 0x01, 0x04, 0x08, 0x00, 0x04, 0x90, 0x6d,
0xcf, 0x1d, 0x03, 0x7a, 0x02, 0x10, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90,
0x02, 0x00, 0x03, 0xaa, 0x76, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04,
0x90, 0x7b, 0x8e, 0x27, 0x03, 0x58, 0x01, 0x00, 0x04, 0x90, 0x7c, 0x9b,
0x29, 0x03, 0x21, 0x01, 0x04, 0x08, 0x00, 0x04, 0x90, 0x6d, 0xcf, 0x1d,
0x03, 0xdd, 0x09, 0x02, 0x10, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02,
0x00, 0x03, 0xf8, 0x75, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90,
0x7f, 0xe4, 0x1d, 0x03, 0x3d, 0x01, 0x04, 0x05, 0x00, 0x05, 0x90, 0x80,
0x01, 0x90, 0x1a, 0x03, 0xde, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0x81, 0x01, 0xfc, 0x1c, 0x03, 0x93, 0x09, 0x01, 0x00, 0x05, 0x90, 0x82,
0x01, 0xa3, 0x1d, 0x03, 0x63, 0x01, 0x00, 0x05, 0x90, 0x83, 0x01, 0xcf,
0x1d, 0x03, 0x77, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03,
0xfb, 0x75, 0x02, 0xc0, 0x00, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x6f,
0xb8, 0x1f, 0x03, 0xb1, 0x04, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0x86, 0x01, 0xea, 0x20, 0x03, 0x8f, 0x04, 0x01, 0x04, 0x05, 0x00,
0x04, 0x90, 0x75, 0xb8, 0x1f, 0x03, 0x81, 0x7c, 0x02, 0x10, 0x01, 0x00,
0x04, 0x90, 0x72, 0x80, 0x21, 0x03, 0xb8, 0x05, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0x89, 0x01, 0xea, 0x20, 0x03, 0xc7, 0x7e, 0x01,
0x04, 0x05, 0x00, 0x04, 0x90, 0x78, 0x80, 0x21, 0x03, 0xc9, 0x01, 0x02,
0x10, 0x01, 0x00, 0x04, 0x90, 0x72, 0x80, 0x21, 0x03, 0x70, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x8c, 0x01, 0xea, 0x20, 0x03, 0xc7,
0x7e, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x6f, 0xb8, 0x1f, 0x03, 0xf1,
0x7b, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x8e, 0x01, 0xea,
0x20, 0x03, 0x8f, 0x04, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x75, 0xb8,
0x1f, 0x03, 0xf1, 0x7b, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0x90, 0x01, 0xea, 0x20, 0x03, 0x8f, 0x04, 0x01, 0x04, 0x05, 0x00, 0x04,
0x90, 0x78, 0x80, 0x21, 0x03, 0xb9, 0x01, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0x92, 0x01, 0xea, 0x20, 0x03, 0xc7, 0x7e, 0x01, 0x04,
0x05, 0x00, 0x04, 0x90, 0x78, 0x80, 0x21, 0x03, 0xb9, 0x01, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x94, 0x01, 0xea, 0x20, 0x03, 0xc7,
0x7e, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x75, 0xb8, 0x1f, 0x03, 0xf1,
0x7b, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x96, 0x01, 0xea,
0x20, 0x03, 0x8f, 0x04, 0x01, 0x00, 0x05, 0x90, 0x94, 0x01, 0xea, 0x20,
0x02, 0x20, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xd8, 0x77,
0x02, 0x10, 0x01, 0x04, 0x0a, 0x00, 0x05, 0x90, 0x98, 0x01, 0xe1, 0x24,
0x03, 0x92, 0x7f, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x99, 0x01, 0x8e,
0x26, 0x03, 0x95, 0x04, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x03, 0x72,
0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x03, 0x72, 0x02, 0x20,
0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x03, 0x72, 0x02, 0x20, 0x01, 0x03,
0x0e, 0x02, 0x20, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x78, 0x80, 0x21,
0x03, 0xac, 0x06, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa2,
0x01, 0xea, 0x20, 0x03, 0xc7, 0x7e, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0x99, 0x01, 0x8e, 0x26, 0x03, 0xff, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x0e,
0x02, 0x20, 0x01, 0x03, 0x72, 0x02, 0x20, 0x01, 0x04, 0x05, 0x00, 0x04,
0x90, 0x75, 0xb8, 0x1f, 0x03, 0xf2, 0x00, 0x02, 0x20, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xa7, 0x01, 0xea, 0x20, 0x03, 0x8f, 0x04, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0x99, 0x01, 0x8e, 0x26, 0x03, 0x8d, 0x7b, 0x02,
0x10, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x75, 0xb8, 0x1f, 0x03, 0xe4,
0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xaa, 0x01, 0xea,
0x20, 0x03, 0x8f, 0x04, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x99, 0x01,
0x8e, 0x26, 0x03, 0x8d, 0x7b, 0x02, 0x10, 0x01, 0x03, 0x72, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa2, 0x01, 0xea, 0x20, 0x03, 0x81,
0x05, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x99, 0x01, 0x8e,
0x26, 0x03, 0xff, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01,
0x03, 0x72, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa7, 0x01,
0xea, 0x20, 0x03, 0x81, 0x05, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05,
0x90, 0x99, 0x01, 0x8e, 0x26, 0x03, 0xff, 0x7a, 0x02, 0x10, 0x01, 0x03,
0x0e, 0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x78, 0x80, 0x21,
0x03, 0xac, 0x06, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb5,
0x01, 0xea, 0x20, 0x03, 0xc7, 0x7e, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0x99, 0x01, 0x8e, 0x26, 0x03, 0xff, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x0e,
0x02, 0x20, 0x01, 0x03, 0x72, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xb5, 0x01, 0xea, 0x20, 0x03, 0x81, 0x05, 0x02, 0x10, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0x99, 0x01, 0x8e, 0x26, 0x03, 0xff, 0x7a, 0x02,
0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x03, 0x72, 0x02, 0x20, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xaa, 0x01, 0xea, 0x20, 0x03, 0x81, 0x05,
0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x99, 0x01, 0x8e, 0x26,
0x03, 0xff, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x03,
0x72, 0x02, 0x20, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x78, 0x80, 0x21,
0x03, 0xba, 0x06, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc2,
0x01, 0xea, 0x20, 0x03, 0xc7, 0x7e, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0x99, 0x01, 0x8e, 0x26, 0x03, 0xff, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x0e,
0x02, 0x10, 0x01, 0x04, 0x05, 0x00, 0x04, 0x90, 0x75, 0xb8, 0x1f, 0x03,
0xe4, 0x00, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc6, 0x01,
0xea, 0x20, 0x03, 0x8f, 0x04, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x99,
0x01, 0x8e, 0x26, 0x03, 0xff, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02,
0x20, 0x01, 0x03, 0x72, 0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01,
0x03, 0x72, 0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x03, 0x72,
0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x03, 0x72, 0x02, 0x20,
0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x03, 0x72, 0x02, 0x20, 0x01, 0x04,
0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xfe, 0x7c, 0x02, 0x20, 0x01,
0x04, 0x0d, 0x00, 0x05, 0x90, 0xd3, 0x01, 0xca, 0x34, 0x03, 0xc1, 0x0d,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd4, 0x01, 0xd0, 0x36, 0x03, 0xaf,
0x74, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x7c, 0x9b, 0x29, 0x03, 0xfb,
0x7d, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xd3, 0x01, 0xca,
0x34, 0x03, 0xd7, 0x0d, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xd7, 0x01, 0xd0, 0x36, 0x03, 0xae, 0x74, 0x01, 0x04, 0x09, 0x00, 0x05,
0x90, 0x99, 0x01, 0x8e, 0x26, 0x03, 0xa0, 0x01, 0x02, 0x10, 0x01, 0x04,
0x0d, 0x00, 0x05, 0x90, 0xd3, 0x01, 0xca, 0x34, 0x03, 0xb3, 0x0a, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xda, 0x01, 0xd0, 0x36, 0x03,
0xad, 0x74, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0x84,
0x7e, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xdc, 0x01, 0xfb,
0x2a, 0x03, 0xa2, 0x7f, 0x01, 0x04, 0x05, 0x00, 0x05, 0x90, 0xdd, 0x01,
0x9e, 0x2c, 0x03, 0xc2, 0x00, 0x01, 0x04, 0x06, 0x00, 0x05, 0x90, 0xde,
0x01, 0xa4, 0x0a, 0x03, 0xe9, 0x01, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xd3, 0x01, 0xca, 0x34, 0x03, 0x83, 0x0c, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xe0, 0x01, 0xd0, 0x36, 0x03, 0xac, 0x74, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0x99, 0x01, 0x8e, 0x26, 0x03, 0xa0, 0x01, 0x02,
0x10, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xe6, 0x7c,
0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x05, 0x90, 0xe3, 0x01, 0xb8, 0x2d,
0x03, 0x1c, 0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0d, 0x9a, 0x0d, 0x03,
0x94, 0x01, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x99, 0x01,
0x8e, 0x26, 0x03, 0xdc, 0x01, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x04,
0x90, 0x0d, 0x9a, 0x0d, 0x03, 0xa4, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x09,
0x00, 0x05, 0x90, 0x99, 0x01, 0x8e, 0x26, 0x03, 0xdc, 0x01, 0x02, 0x10,
0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0d, 0x9a, 0x0d, 0x03, 0xa4, 0x7e,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd4, 0x01, 0xd0, 0x36,
0x03, 0xca, 0x00, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0d,
0x9a, 0x0d, 0x03, 0xb9, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05,
0x90, 0x99, 0x01, 0x8e, 0x26, 0x03, 0xe7, 0x01, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xd7, 0x01, 0xd0, 0x36, 0x03, 0xe0, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0d, 0x9a, 0x0d, 0x03, 0xb6,
0x7f, 0x02, 0x10, 0x01, 0xf2, 0x04, 0x09, 0x00, 0x05, 0x90, 0x99, 0x01,
0x8e, 0x26, 0x03, 0xe7, 0x01, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04,
0x90, 0x7c, 0x9b, 0x29, 0x03, 0xde, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xda, 0x01, 0xd0, 0x36, 0x03, 0x82, 0x02, 0x02, 0x10,
0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0d, 0x9a, 0x0d, 0x03, 0xba, 0x7f,
0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x99, 0x01, 0x8e, 0x26,
0x03, 0xd8, 0x01, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0d,
0x9a, 0x0d, 0x03, 0xa7, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xe0, 0x01, 0xd0, 0x36, 0x03, 0xc7, 0x00, 0x02, 0x10, 0x01, 0x04,
0x04, 0x00, 0x04, 0x90, 0x7c, 0x9b, 0x29, 0x03, 0xfe, 0x7d, 0x02, 0x10,
0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x99, 0x01, 0x8e, 0x26, 0x03, 0x94,
0x03, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x7c, 0x9b, 0x29,
0x03, 0xec, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd4,
0x01, 0xd0, 0x36, 0x03, 0x82, 0x02, 0x02, 0x10, 0x01, 0x04, 0x04, 0x00,
0x05, 0x90, 0xe3, 0x01, 0xb8, 0x2d, 0x03, 0xa2, 0x7e, 0x02, 0x10, 0x01,
0x04, 0x09, 0x00, 0x05, 0x90, 0x99, 0x01, 0x8e, 0x26, 0x03, 0xfe, 0x02,
0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x7c, 0x9b, 0x29, 0x03,
0xde, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0d, 0x9a,
0x0d, 0x03, 0xbc, 0x01, 0x02, 0x20, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0x99, 0x01, 0x8e, 0x26, 0x03, 0xe6, 0x01, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xd7, 0x01, 0xd0, 0x36, 0x03, 0xe0, 0x7e, 0x02, 0x10,
0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x7c, 0x9b, 0x29, 0x03, 0xfe, 0x7d,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xda, 0x01, 0xd0, 0x36,
0x03, 0x82, 0x02, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0d,
0x9a, 0x0d, 0x03, 0xba, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xe0, 0x01, 0xd0, 0x36, 0x03, 0xc6, 0x00, 0x02, 0x10, 0x01, 0x04,
0x04, 0x00, 0x05, 0x90, 0xe3, 0x01, 0xb8, 0x2d, 0x03, 0xa2, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd4, 0x01, 0xd0, 0x36, 0x03,
0xde, 0x01, 0x02, 0x30, 0x01, 0x04, 0x04, 0x00, 0x05, 0x90, 0xe3, 0x01,
0xb8, 0x2d, 0x03, 0xa2, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xd7, 0x01, 0xd0, 0x36, 0x03, 0xde, 0x01, 0x02, 0x10, 0x01, 0x04,
0x04, 0x00, 0x05, 0x90, 0xe3, 0x01, 0xb8, 0x2d, 0x03, 0xa2, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xda, 0x01, 0xd0, 0x36, 0x03,
0xde, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xe0, 0x01, 0xd0, 0x36,
0x02, 0x10, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xff, 0x7d,
0x02, 0x10, 0x01, 0x04, 0x04, 0x00, 0x05, 0x90, 0xe3, 0x01, 0xb8, 0x2d,
0x03, 0x23, 0x02, 0x20, 0x01, 0xeb, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10,
0x03, 0x79, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0xe3, 0x01, 0xb8, 0x2d,
0xf6, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0x79, 0x02, 0x20, 0x01,
0x00, 0x05, 0x90, 0xe3, 0x01, 0xb8, 0x2d, 0x03, 0x07, 0x02, 0x20, 0x01,
0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0x79, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xe3, 0x01, 0xb8, 0x2d, 0x03, 0x07, 0x02, 0x30, 0x01, 0xf4,
0x00, 0x05, 0x90, 0x94, 0x02, 0x9f, 0x2f, 0x03, 0xef, 0x7e, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0x95, 0x02, 0xa2, 0x14, 0x03, 0xe9, 0x07, 0x01,
0x00, 0x05, 0x90, 0x96, 0x02, 0xce, 0x14, 0x03, 0x6c, 0x01, 0x04, 0x04,
0x00, 0x05, 0x90, 0xe3, 0x01, 0xb8, 0x2d, 0x03, 0xb7, 0x79, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x96, 0x02, 0xce, 0x14, 0x03, 0xc9,
0x06, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xd3, 0x01, 0xca,
0x34, 0x03, 0xf0, 0x06, 0x02, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0x9a, 0x02, 0xa4, 0x37, 0x03, 0xcf, 0x76, 0x01, 0x00, 0x05, 0x90,
0x9b, 0x02, 0x87, 0x38, 0x03, 0x7a, 0x01, 0x00, 0x05, 0x90, 0x9c, 0x02,
0xe5, 0x38, 0x03, 0x77, 0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0e, 0xf3,
0x0e, 0x03, 0xeb, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0x9b, 0x02, 0x87, 0x38, 0x03, 0x9e, 0x03, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0x9f, 0x02, 0xe5, 0x38, 0x03, 0x77, 0x01, 0x04, 0x07, 0x00, 0x04,
0x90, 0x0d, 0x9a, 0x0d, 0x03, 0xa3, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x0d,
0x00, 0x05, 0x90, 0xd3, 0x01, 0xca, 0x34, 0x03, 0x9e, 0x0c, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa2, 0x02, 0xa4, 0x37, 0x03, 0xce,
0x76, 0x01, 0x00, 0x05, 0x90, 0xa3, 0x02, 0x87, 0x38, 0x03, 0x7a, 0x01,
0x00, 0x05, 0x90, 0xa4, 0x02, 0xe5, 0x38, 0x03, 0x77, 0x01, 0x04, 0x07,
0x00, 0x04, 0x90, 0x0e, 0xf3, 0x0e, 0x03, 0xeb, 0x7c, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xa3, 0x02, 0x87, 0x38, 0x03, 0x9e, 0x03,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa7, 0x02, 0xe5, 0x38, 0x03, 0x77,
0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xd3, 0x01, 0xca, 0x34, 0x03, 0xc6,
0x09, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa9, 0x02, 0xc1,
0x39, 0x03, 0x8a, 0x75, 0x01, 0xed, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xab,
0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xd3, 0x01, 0xca, 0x34, 0x03, 0xb4, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xad, 0x02, 0xa4, 0x37, 0x03, 0xcd, 0x76, 0x01, 0x00,
0x05, 0x90, 0xae, 0x02, 0x87, 0x38, 0x03, 0x7a, 0x01, 0x00, 0x05, 0x90,
0xaf, 0x02, 0xe5, 0x38, 0x03, 0x77, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xd3, 0x01, 0xca, 0x34, 0x03, 0xc6, 0x09, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xb1, 0x02, 0xc1, 0x39, 0x03, 0x88, 0x75, 0x01, 0x04,
0x0e, 0x00, 0x05, 0x90, 0xb2, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xae, 0x02, 0x87, 0x38, 0x03, 0xfb, 0x00,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb4, 0x02, 0xe5, 0x38, 0x03, 0x77,
0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xd3, 0x01, 0xca, 0x34, 0x03, 0xc7,
0x09, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1,
0x39, 0x03, 0x87, 0x75, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xb7, 0x02,
0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xd3,
0x01, 0xca, 0x34, 0x03, 0xb5, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xb9, 0x02, 0xa4, 0x37, 0x03, 0xcc, 0x76, 0x01, 0x00, 0x05,
0x90, 0xba, 0x02, 0x87, 0x38, 0x03, 0x7a, 0x01, 0x00, 0x05, 0x90, 0xbb,
0x02, 0xe5, 0x38, 0x03, 0x77, 0x01, 0x00, 0x05, 0x90, 0xa9, 0x02, 0xc1,
0x39, 0x03, 0xcf, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xba, 0x02,
0x87, 0x38, 0x03, 0xba, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbe,
0x02, 0xe5, 0x38, 0x03, 0x77, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xd3,
0x01, 0xca, 0x34, 0x03, 0xc7, 0x09, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xc0, 0x02, 0xc1, 0x39, 0x03, 0x87, 0x75, 0x01, 0x04, 0x0e,
0x00, 0x05, 0x90, 0xc1, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03, 0xf2, 0x00, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xb1, 0x02, 0xc1, 0x39, 0x03, 0xcf, 0x7e,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03, 0xb1,
0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa9, 0x02, 0xc1, 0x39, 0x03,
0xd0, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38,
0x03, 0xb0, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb1, 0x02, 0xc1,
0x39, 0x03, 0xd0, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02,
0xe5, 0x38, 0x03, 0xb0, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb6,
0x02, 0xc1, 0x39, 0x03, 0xcf, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90,
0xbb, 0x02, 0xe5, 0x38, 0x03, 0xb1, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0d,
0x00, 0x05, 0x90, 0xd3, 0x01, 0xca, 0x34, 0x03, 0xc8, 0x09, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xcc, 0x02, 0xc1, 0x39, 0x03, 0x86,
0x75, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xcd, 0x02, 0x9c, 0x3a, 0x03,
0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38,
0x03, 0xf2, 0x00, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xd3,
0x01, 0xca, 0x34, 0x03, 0xc8, 0x09, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xd0, 0x02, 0xc1, 0x39, 0x03, 0x86, 0x75, 0x01, 0x04, 0x0e,
0x00, 0x05, 0x90, 0xd1, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03, 0xf2, 0x00, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xc0, 0x02, 0xc1, 0x39, 0x03, 0xcf, 0x7e,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03, 0xb1,
0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0x03,
0xd0, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38,
0x03, 0xb0, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xd3,
0x01, 0xca, 0x34, 0x03, 0xc9, 0x09, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xd8, 0x02, 0xc1, 0x39, 0x03, 0x85, 0x75, 0x01, 0x04, 0x0e,
0x00, 0x05, 0x90, 0xd9, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03, 0xf2, 0x00, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xc0, 0x02, 0xc1, 0x39, 0x03, 0xd0, 0x7e,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03, 0xb0,
0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xcc, 0x02, 0xc1, 0x39, 0x03,
0xcf, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38,
0x03, 0xb1, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xd3,
0x01, 0xca, 0x34, 0x03, 0xc9, 0x09, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xe0, 0x02, 0xc1, 0x39, 0x03, 0x85, 0x75, 0x01, 0x04, 0x0e,
0x00, 0x05, 0x90, 0xe1, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03, 0xf2, 0x00, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xd0, 0x02, 0xc1, 0x39, 0x03, 0xcf, 0x7e,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03, 0xb1,
0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xcc, 0x02, 0xc1, 0x39, 0x03,
0xd0, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38,
0x03, 0xb0, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xd0, 0x02, 0xc1,
0x39, 0x03, 0xd0, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02,
0xe5, 0x38, 0x03, 0xb0, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xd8,
0x02, 0xc1, 0x39, 0x03, 0xcf, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90,
0xbb, 0x02, 0xe5, 0x38, 0x03, 0xb1, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xd8, 0x02, 0xc1, 0x39, 0x03, 0xce, 0x7e, 0x02, 0x10, 0x01, 0x04,
0x0e, 0x00, 0x05, 0x90, 0xec, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03, 0xf2, 0x00,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb1, 0x02, 0xc1, 0x39, 0x03, 0xce,
0x7e, 0x02, 0x10, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xef, 0x02, 0x9c,
0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbb, 0x02,
0xe5, 0x38, 0x03, 0xf2, 0x00, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xe0,
0x02, 0xc1, 0x39, 0x03, 0xcf, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90,
0xbb, 0x02, 0xe5, 0x38, 0x03, 0xb1, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xd8, 0x02, 0xc1, 0x39, 0x03, 0xd0, 0x7e, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03, 0xb0, 0x01, 0x02, 0x10, 0x01,
0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0x03, 0xce, 0x7e, 0x02, 0x10,
0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xf6, 0x02, 0x9c, 0x3a, 0x03, 0xc0,
0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5, 0x38, 0x03,
0xf2, 0x00, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xe0, 0x02, 0xc1, 0x39,
0x03, 0xd0, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb, 0x02, 0xe5,
0x38, 0x03, 0xb0, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb1, 0x02,
0xc1, 0x39, 0x03, 0xcf, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbb,
0x02, 0xe5, 0x38, 0x03, 0xb1, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90,
0xb1, 0x02, 0xc1, 0x39, 0x03, 0xce, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x0e,
0x00, 0x05, 0x90, 0xfd, 0x02, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04,
0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0x9f, 0x7c, 0x02, 0x10, 0x01,
0x04, 0x0c, 0x00, 0x05, 0x90, 0xff, 0x02, 0xb8, 0x31, 0x03, 0x0a, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xb1, 0x02, 0xc1, 0x39, 0x03, 0x98, 0x03,
0x02, 0x10, 0x01, 0x04, 0x03, 0x00, 0x04, 0x90, 0x04, 0xe7, 0x01, 0x03,
0xe4, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb1, 0x02,
0xc1, 0x39, 0x03, 0x9d, 0x03, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb6,
0x02, 0xc1, 0x39, 0x03, 0x7f, 0x02, 0x20, 0x01, 0xee, 0x04, 0x0e, 0x00,
0x05, 0x90, 0x85, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xd0, 0x02, 0xc1, 0x39, 0x03, 0x40, 0x02, 0x10, 0x01,
0x04, 0x0e, 0x00, 0x05, 0x90, 0x87, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0x03, 0x41,
0x02, 0x10, 0x01, 0xf0, 0x00, 0x05, 0x90, 0xd8, 0x02, 0xc1, 0x39, 0xed,
0x04, 0x0e, 0x00, 0x05, 0x90, 0x8b, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0x03, 0x42,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xd0, 0x02, 0xc1, 0x39, 0xee, 0xee,
0x04, 0x0e, 0x00, 0x05, 0x90, 0x8f, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd0, 0x02, 0xc1, 0x39, 0x03, 0x41,
0x02, 0x10, 0x01, 0xf0, 0x00, 0x05, 0x90, 0xd8, 0x02, 0xc1, 0x39, 0x03,
0x7f, 0x02, 0x20, 0x01, 0xee, 0x04, 0x0e, 0x00, 0x05, 0x90, 0x94, 0x03,
0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb1,
0x02, 0xc1, 0x39, 0x03, 0x40, 0x02, 0x10, 0x01, 0x04, 0x0e, 0x00, 0x05,
0x90, 0x96, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xd8, 0x02, 0xc1, 0x39, 0x03, 0x41, 0x02, 0x10, 0x01, 0xf0,
0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0xed, 0x04, 0x0e, 0x00, 0x05,
0x90, 0x9a, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xd8, 0x02, 0xc1, 0x39, 0x03, 0x42, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xb1, 0x02, 0xc1, 0x39, 0xee, 0xee, 0x04, 0x0e, 0x00, 0x05,
0x90, 0x9e, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xb1, 0x02, 0xc1, 0x39, 0x03, 0x41, 0x02, 0x10, 0x01, 0xf0,
0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0x03, 0x7e, 0x02, 0x20, 0x01,
0x04, 0x0e, 0x00, 0x05, 0x90, 0xa2, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0x03, 0x41,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xd0, 0x02, 0xc1, 0x39, 0xee, 0x04,
0x0e, 0x00, 0x05, 0x90, 0xa5, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0x03, 0x41, 0x02,
0x10, 0x01, 0xf0, 0x00, 0x05, 0x90, 0xd0, 0x02, 0xc1, 0x39, 0xed, 0x04,
0x0e, 0x00, 0x05, 0x90, 0xa9, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0x03, 0x42, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xd0, 0x02, 0xc1, 0x39, 0xee, 0x00, 0x05,
0x90, 0xd8, 0x02, 0xc1, 0x39, 0xee, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xad,
0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xd0, 0x02, 0xc1, 0x39, 0x03, 0x41, 0x02, 0x10, 0x01, 0xf0, 0x00, 0x05,
0x90, 0xd8, 0x02, 0xc1, 0x39, 0x03, 0x7f, 0x02, 0x20, 0x01, 0xee, 0x04,
0x0e, 0x00, 0x05, 0x90, 0xb2, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xb1, 0x02, 0xc1, 0x39, 0x03, 0x40, 0x02,
0x10, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xb4, 0x03, 0x9c, 0x3a, 0x03,
0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd8, 0x02, 0xc1, 0x39,
0x03, 0x41, 0x02, 0x10, 0x01, 0xf0, 0x00, 0x05, 0x90, 0xb1, 0x02, 0xc1,
0x39, 0xed, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xb8, 0x03, 0x9c, 0x3a, 0x03,
0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd8, 0x02, 0xc1, 0x39,
0x03, 0x42, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xb1, 0x02, 0xc1, 0x39,
0xee, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0e, 0xf3, 0x0e, 0x03, 0x9a, 0x7e,
0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39,
0x03, 0xe5, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xbd,
0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xb1, 0x02, 0xc1, 0x39, 0x03, 0x42, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00,
0x04, 0x90, 0x0e, 0xf3, 0x0e, 0x03, 0x99, 0x7e, 0x02, 0x20, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0x03, 0xe6, 0x01, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xd0, 0x02, 0xc1, 0x39, 0xee, 0x04, 0x0e,
0x00, 0x05, 0x90, 0xc2, 0x03, 0x9c, 0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04,
0x07, 0x00, 0x04, 0x90, 0x0e, 0xf3, 0x0e, 0x03, 0xdd, 0x7d, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x02, 0xc1, 0x39, 0x03, 0xe3,
0x01, 0x02, 0x10, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xc5, 0x03, 0x9c,
0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x02,
0xc1, 0x39, 0x03, 0x41, 0x02, 0x10, 0x01, 0xf0, 0x00, 0x05, 0x90, 0xd0,
0x02, 0xc1, 0x39, 0xed, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xc9, 0x03, 0x9c,
0x3a, 0x03, 0xc0, 0x00, 0x01, 0x04, 0x07, 0x00, 0x04, 0x90, 0x0d, 0x9a,
0x0d, 0x03, 0x95, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xb6, 0x02, 0xc1, 0x39, 0x03, 0xad, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xd0, 0x02, 0xc1, 0x39, 0xee, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02,
0x00, 0x03, 0xad, 0x7d, 0x02, 0x20, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xce, 0x03, 0xa8, 0x3a, 0x03, 0xfd, 0x08, 0x01, 0x04, 0x07, 0x00, 0x05,
0x90, 0xcf, 0x03, 0xa8, 0x3c, 0x03, 0xb4, 0x78, 0x01, 0x00, 0x04, 0x90,
0x0d, 0x9a, 0x0d, 0x03, 0x76, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xd0, 0x02, 0xc1, 0x39, 0x03, 0xad, 0x01, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xd8, 0x02, 0xc1, 0x39, 0x03, 0x7f, 0x02, 0x20, 0x01, 0x04,
0x07, 0x00, 0x05, 0x90, 0xcf, 0x03, 0xa8, 0x3c, 0x03, 0xe3, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03,
0xc7, 0x07, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd8, 0x02,
0xc1, 0x39, 0x03, 0xd7, 0x79, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05,
0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xa9, 0x06, 0x02, 0x20, 0x01, 0x04,
0x07, 0x00, 0x05, 0x90, 0xd7, 0x03, 0xa8, 0x3c, 0x03, 0xb4, 0x78, 0x01,
0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xcc, 0x07,
0x02, 0x20, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xd9, 0x03, 0xa8, 0x3c,
0x03, 0xb4, 0x78, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8,
0x3a, 0x03, 0xcc, 0x07, 0x02, 0x20, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90,
0xdb, 0x03, 0xa8, 0x3c, 0x03, 0xb9, 0x78, 0x01, 0x00, 0x05, 0x90, 0xd7,
0x03, 0xa8, 0x3c, 0x02, 0x10, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03,
0xa8, 0x3a, 0x03, 0xc7, 0x07, 0x02, 0x10, 0x01, 0x02, 0x10, 0x01, 0x04,
0x07, 0x00, 0x05, 0x90, 0xde, 0x03, 0xa8, 0x3c, 0x03, 0xb6, 0x78, 0x01,
0x00, 0x05, 0x90, 0xd9, 0x03, 0xa8, 0x3c, 0xf2, 0x04, 0x0d, 0x00, 0x05,
0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07, 0x02, 0x10, 0x01, 0x04,
0x07, 0x00, 0x05, 0x90, 0xde, 0x03, 0xa8, 0x3c, 0x03, 0xb9, 0x78, 0x02,
0xc0, 0x00, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a,
0x03, 0xc7, 0x07, 0x02, 0x20, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xe3,
0x03, 0xa8, 0x3c, 0x03, 0xb6, 0x78, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xce, 0x03, 0xa8, 0x3a, 0x03, 0xca, 0x07, 0x02, 0x10, 0x01, 0x04, 0x07,
0x00, 0x05, 0x90, 0xe3, 0x03, 0xa8, 0x3c, 0x03, 0xb9, 0x78, 0x02, 0x30,
0x01, 0x00, 0x05, 0x90, 0xd7, 0x03, 0xa8, 0x3c, 0x02, 0x10, 0x04, 0x0d,
0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07, 0x02, 0x10,
0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xe7, 0x03, 0xa8, 0x3c, 0x03, 0xb6,
0x78, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03,
0xca, 0x07, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xe7, 0x03,
0xa8, 0x3c, 0x03, 0xb9, 0x78, 0x02, 0x30, 0x01, 0x04, 0x0d, 0x00, 0x05,
0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07, 0x02, 0x10, 0x01, 0x04,
0x07, 0x00, 0x05, 0x90, 0xeb, 0x03, 0xa8, 0x3c, 0x03, 0xb6, 0x78, 0x01,
0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xca, 0x07,
0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xde, 0x03, 0xa8, 0x3c,
0x03, 0xb9, 0x78, 0x02, 0x30, 0x01, 0x00, 0x05, 0x90, 0xeb, 0x03, 0xa8,
0x3c, 0x02, 0x10, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a,
0x03, 0xc7, 0x07, 0x02, 0x10, 0x01, 0x02, 0xc0, 0x00, 0x01, 0x04, 0x07,
0x00, 0x05, 0x90, 0xf0, 0x03, 0xa8, 0x3c, 0x03, 0xb9, 0x78, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xd8, 0x02, 0xc1, 0x39, 0x03, 0x9c, 0x01, 0x02,
0x10, 0x01, 0x04, 0x0e, 0x00, 0x05, 0x90, 0xf2, 0x03, 0x9c, 0x3a, 0x03,
0xc0, 0x00, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a,
0x03, 0xeb, 0x05, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xf4,
0x03, 0xa8, 0x3c, 0x03, 0xb4, 0x78, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xce, 0x03, 0xa8, 0x3a, 0x03, 0xcc, 0x07, 0x02, 0x10, 0x01, 0x04, 0x07,
0x00, 0x05, 0x90, 0xe3, 0x03, 0xa8, 0x3c, 0x03, 0xb9, 0x78, 0x02, 0x20,
0x01, 0x00, 0x05, 0x90, 0xf4, 0x03, 0xa8, 0x3c, 0x02, 0x20, 0x04, 0x0d,
0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07, 0x02, 0x10,
0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xf8, 0x03, 0xa8, 0x3c, 0x03, 0xb4,
0x78, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03,
0xcc, 0x07, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd8, 0x02,
0xc1, 0x39, 0x03, 0xd6, 0x79, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x05,
0x90, 0xf8, 0x03, 0xa8, 0x3c, 0x03, 0xe3, 0x7e, 0x02, 0x20, 0x01, 0x04,
0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07, 0x02,
0x10, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xe7, 0x03, 0xa8, 0x3c, 0x03,
0xb9, 0x78, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd8, 0x02,
0xc1, 0x39, 0x03, 0x9e, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05,
0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xa9, 0x06, 0x02, 0x10, 0x01, 0x04,
0x07, 0x00, 0x05, 0x90, 0xd9, 0x03, 0xa8, 0x3c, 0x03, 0xb9, 0x78, 0x02,
0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03,
0xc7, 0x07, 0x02, 0x20, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0x82, 0x04,
0xa8, 0x3c, 0x03, 0xb4, 0x78, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce,
0x03, 0xa8, 0x3a, 0x03, 0xcc, 0x07, 0x02, 0x20, 0x01, 0x04, 0x07, 0x00,
0x05, 0x90, 0x82, 0x04, 0xa8, 0x3c, 0x03, 0xb9, 0x78, 0x02, 0x30, 0x01,
0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07,
0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xeb, 0x03, 0xa8, 0x3c,
0x03, 0xb9, 0x78, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce,
0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07, 0x02, 0x10, 0x01, 0x02, 0x20, 0x01,
0x04, 0x07, 0x00, 0x05, 0x90, 0x89, 0x04, 0xa8, 0x3c, 0x03, 0xb6, 0x78,
0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xca,
0x07, 0x02, 0x20, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0x89, 0x04, 0xa8,
0x3c, 0x03, 0xb9, 0x78, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xce, 0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07, 0x02, 0x10, 0x01, 0x04, 0x07,
0x00, 0x05, 0x90, 0xf0, 0x03, 0xa8, 0x3c, 0x03, 0xb9, 0x78, 0x02, 0x10,
0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xc7,
0x07, 0x02, 0x20, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0x8f, 0x04, 0xa8,
0x3c, 0x03, 0xb6, 0x78, 0x01, 0x04, 0x01, 0x00, 0x03, 0x90, 0x00, 0x00,
0x03, 0xd3, 0x7d, 0x02, 0x20, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce,
0x03, 0xa8, 0x3a, 0x03, 0xf7, 0x09, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00,
0x05, 0x90, 0x8f, 0x04, 0xa8, 0x3c, 0x03, 0xb9, 0x78, 0x02, 0x10, 0x01,
0x04, 0x0d, 0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07,
0x02, 0x10, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xf4, 0x03, 0xa8, 0x3c,
0x03, 0xb9, 0x78, 0x02, 0x20, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce,
0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00,
0x05, 0x90, 0x96, 0x04, 0xa8, 0x3c, 0x03, 0xb6, 0x78, 0x01, 0x04, 0x0d,
0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0xca, 0x07, 0x02, 0x10,
0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0x96, 0x04, 0xa8, 0x3c, 0x03, 0xb9,
0x78, 0x02, 0x20, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xff, 0x02, 0xb8,
0x31, 0x03, 0x84, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xce, 0x03, 0xa8, 0x3a, 0x03, 0xc3, 0x09, 0x02, 0x10, 0x01, 0x04, 0x0b,
0x00, 0x05, 0x90, 0xdc, 0x01, 0xfb, 0x2a, 0x03, 0xb3, 0x76, 0x02, 0x10,
0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xca, 0x00, 0x02,
0x20, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0x9d, 0x04, 0xba, 0x32, 0x03,
0xeb, 0x08, 0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xf8, 0x03, 0xa8, 0x3c,
0x03, 0xd1, 0x78, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xce,
0x03, 0xa8, 0x3a, 0x03, 0xc7, 0x07, 0x02, 0x10, 0x01, 0x04, 0x07, 0x00,
0x05, 0x90, 0xa0, 0x04, 0xa8, 0x3c, 0x03, 0xb6, 0x78, 0x01, 0x04, 0x0c,
0x00, 0x05, 0x90, 0xff, 0x02, 0xb8, 0x31, 0x03, 0x87, 0x7e, 0x02, 0x10,
0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0x9d, 0x04, 0xba, 0x32, 0x03, 0xaa,
0x09, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xdc, 0x01, 0xfb,
0x2a, 0x03, 0xcc, 0x76, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xce, 0x03, 0xa8, 0x3a, 0x03, 0xcd, 0x09, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0x9d, 0x04, 0xba, 0x32, 0x03, 0x68, 0x02, 0x10, 0x01, 0x04, 0x0b,
0x00, 0x05, 0x90, 0xdc, 0x01, 0xfb, 0x2a, 0x03, 0xf5, 0x76, 0x02, 0x10,
0x01, 0x04, 0x07, 0x00, 0x05, 0x90, 0xa0, 0x04, 0xa8, 0x3c, 0x03, 0xdc,
0x01, 0x02, 0x20, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0x9d, 0x04, 0xba,
0x32, 0x03, 0xaf, 0x07, 0x02, 0x10, 0x01, 0xf5, 0x00, 0x05, 0x90, 0xce,
0x03, 0xa8, 0x3a, 0x03, 0x12, 0x02, 0x10, 0x01, 0x04, 0x02, 0x00, 0x03,
0x90, 0x02, 0x00, 0x03, 0x86, 0x77, 0x02, 0x20, 0x01, 0x04, 0x0d, 0x00,
0x05, 0x90, 0x9d, 0x04, 0xba, 0x32, 0x03, 0xe1, 0x08, 0x02, 0x10, 0x01,
0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xad, 0x77, 0x02, 0x10,
0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xae, 0x04, 0xa6, 0x3d, 0x03, 0xef,
0x0c, 0x01, 0x00, 0x05, 0x90, 0xaf, 0x04, 0xf4, 0x42, 0x03, 0x60, 0x01,
0x00, 0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0x9d, 0x7c, 0x02, 0x10,
0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xdc, 0x01, 0xfb, 0x2a, 0x03, 0xdd,
0x76, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0x9d, 0x04, 0xba,
0x32, 0x03, 0x8a, 0x09, 0x02, 0x10, 0x01, 0x03, 0x0d, 0x02, 0x20, 0x01,
0x04, 0x0c, 0x00, 0x05, 0x90, 0xff, 0x02, 0xb8, 0x31, 0x03, 0xca, 0x76,
0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0x9d, 0x04, 0xba, 0x32,
0x03, 0xb4, 0x09, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xdc,
0x01, 0xfb, 0x2a, 0x03, 0xeb, 0x76, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00,
0x05, 0x90, 0xaf, 0x04, 0xf4, 0x42, 0x03, 0x86, 0x0d, 0x02, 0x10, 0x01,
0x04, 0x0c, 0x00, 0x05, 0x90, 0xff, 0x02, 0xb8, 0x31, 0x03, 0x8e, 0x73,
0x02, 0x20, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xdc, 0x01, 0xfb, 0x2a,
0x03, 0x6c, 0x02, 0x20, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xff, 0x02,
0xb8, 0x31, 0x03, 0x14, 0x02, 0x20, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0x9d, 0x04, 0xba, 0x32, 0x03, 0x81, 0x09, 0x02, 0xc0, 0x00, 0x01, 0x00,
0x05, 0x90, 0xce, 0x03, 0xa8, 0x3a, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x04,
0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0x86, 0x77, 0x02, 0xf0, 0x00,
0x01, 0xf2, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xbf, 0x04, 0xda, 0x44, 0x03,
0xc2, 0x09, 0x01, 0x00, 0x05, 0x90, 0xc0, 0x04, 0xbd, 0x46, 0x03, 0xb3,
0x75, 0x01, 0x00, 0x05, 0x90, 0xae, 0x04, 0xa6, 0x3d, 0x03, 0xff, 0x0d,
0x02, 0x90, 0x0c, 0x01, 0x00, 0x05, 0x90, 0xc2, 0x04, 0x96, 0x3f, 0x03,
0x4f, 0x01, 0x00, 0x05, 0x90, 0xc3, 0x04, 0x83, 0x41, 0x03, 0x9e, 0x7e,
0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xa2, 0x75, 0x02,
0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xc5, 0x04, 0xdc, 0x46, 0x03,
0xf1, 0x0c, 0x01, 0x00, 0x05, 0x90, 0xc6, 0x04, 0xcc, 0x48, 0x03, 0x4f,
0x01, 0x00, 0x05, 0x90, 0xc7, 0x04, 0xb9, 0x4a, 0x03, 0xa2, 0x7e, 0x01,
0x00, 0x05, 0x90, 0xc8, 0x04, 0xaa, 0x4c, 0x03, 0x81, 0x74, 0x01, 0x00,
0x05, 0x90, 0xc7, 0x04, 0xb9, 0x4a, 0x03, 0x87, 0x0c, 0x02, 0xc0, 0x07,
0x01, 0x00, 0x05, 0x90, 0xca, 0x04, 0xaa, 0x4c, 0x03, 0xf9, 0x73, 0x01,
0x00, 0x05, 0x90, 0xc7, 0x04, 0xb9, 0x4a, 0x03, 0x87, 0x0c, 0x02, 0x10,
0x01, 0x04, 0x06, 0x00, 0x05, 0x90, 0xcc, 0x04, 0xc1, 0x4c, 0x03, 0x97,
0x77, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xca, 0x04, 0xaa, 0x4c, 0x03,
0xe2, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x06, 0x03, 0x9e, 0x03, 0x02, 0x10,
0x01, 0x04, 0x0d, 0x03, 0xe2, 0x7c, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90,
0xc7, 0x04, 0x83, 0x41, 0x03, 0x96, 0x0c, 0x02, 0xd0, 0x00, 0x01, 0x00,
0x05, 0x90, 0xca, 0x04, 0xaa, 0x4c, 0x03, 0xea, 0x73, 0x02, 0x10, 0x01,
0x00, 0x05, 0x90, 0xc5, 0x04, 0xdc, 0x46, 0x03, 0x94, 0x0e, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0xd3, 0x04, 0xf4, 0x42, 0x03, 0x5f, 0x01, 0x00,
0x05, 0x90, 0xc7, 0x04, 0xb9, 0x4a, 0x03, 0x9b, 0x7e, 0x02, 0x10, 0x01,
0x03, 0x05, 0x02, 0x20, 0x01, 0x03, 0x03, 0x02, 0x20, 0x01, 0x00, 0x05,
0x90, 0xc5, 0x04, 0xdc, 0x46, 0x03, 0xfb, 0x01, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xc7, 0x04, 0xb9, 0x4a, 0x03, 0x88, 0x7e, 0x02, 0x20, 0x01,
0x00, 0x05, 0x90, 0xd9, 0x04, 0xaa, 0x4c, 0x03, 0xe7, 0x73, 0x01, 0x00,
0x05, 0x90, 0xd3, 0x04, 0xf4, 0x42, 0x03, 0xf4, 0x0d, 0x02, 0x20, 0x01,
0xf3, 0x03, 0x05, 0x02, 0x20, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02,
0x00, 0x03, 0xa3, 0x73, 0x02, 0x20, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xde, 0x04, 0x9d, 0x4d, 0x03, 0xc7, 0x09, 0x01, 0x00, 0x05, 0x90, 0xdf,
0x04, 0xbd, 0x46, 0x03, 0xa8, 0x75, 0x01, 0x00, 0x05, 0x90, 0xd3, 0x04,
0xf4, 0x42, 0x03, 0xf2, 0x0d, 0x02, 0x80, 0x0c, 0x01, 0x00, 0x05, 0x90,
0xdf, 0x04, 0xbd, 0x46, 0x03, 0x8e, 0x72, 0x02, 0x20, 0x01, 0x00, 0x05,
0x90, 0xc7, 0x04, 0x83, 0x41, 0x03, 0xf0, 0x0b, 0x01, 0x00, 0x05, 0x90,
0xe3, 0x04, 0x85, 0x4f, 0x03, 0xf8, 0x73, 0x01, 0x00, 0x05, 0x90, 0xc7,
0x04, 0x83, 0x41, 0x03, 0x90, 0x0c, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90,
0xe5, 0x04, 0x85, 0x4f, 0x03, 0xf0, 0x73, 0x01, 0x00, 0x05, 0x90, 0xe3,
0x04, 0x85, 0x4f, 0x02, 0x10, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00,
0x03, 0xcb, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xe7,
0x04, 0xe3, 0x5b, 0x03, 0xb5, 0x7f, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xe3, 0x04, 0x85, 0x4f, 0x03, 0x80, 0x7f, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xe5, 0x04, 0x85, 0x4f, 0x02, 0x10, 0x00, 0x05, 0x90, 0xe3, 0x04,
0x85, 0x4f, 0x02, 0x10, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xff, 0x02, 0xb8,
0x31, 0x03, 0x92, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xe3, 0x04, 0x85, 0x4f, 0x03, 0xee, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xe5, 0x04, 0x85, 0x4f, 0x02, 0xa0, 0x03, 0x00, 0x05, 0x90, 0xc7,
0x04, 0x83, 0x41, 0x03, 0x9f, 0x0c, 0x02, 0x10, 0x01, 0x03, 0x71, 0x02,
0x10, 0x01, 0x04, 0x06, 0x00, 0x05, 0x90, 0xed, 0x04, 0xc1, 0x4c, 0x03,
0x97, 0x77, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xe5, 0x04, 0x85, 0x4f,
0x03, 0xd9, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02,
0x00, 0x03, 0xb7, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xf0, 0x04, 0xf1, 0x53, 0x03, 0xf0, 0x0c, 0x01, 0x04, 0x06, 0x00, 0x05,
0x90, 0xe5, 0x04, 0xc1, 0x4c, 0x03, 0x80, 0x75, 0x02, 0x10, 0x01, 0x04,
0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53, 0x03, 0x80, 0x0b, 0x02,
0x10, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xff, 0x02, 0xb8, 0x31, 0x03,
0xee, 0x72, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xe5, 0x04,
0x85, 0x4f, 0x03, 0xeb, 0x7e, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0xc7,
0x04, 0x83, 0x41, 0x03, 0x97, 0x0c, 0x02, 0x20, 0x01, 0x03, 0x05, 0x02,
0x20, 0x01, 0x03, 0x03, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0xae, 0x04,
0xa6, 0x3d, 0x03, 0xfb, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xd3,
0x04, 0xf4, 0x42, 0x03, 0x62, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0xc7,
0x04, 0x83, 0x41, 0x03, 0xa6, 0x7e, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90,
0xfb, 0x04, 0x85, 0x4f, 0x03, 0xde, 0x73, 0x01, 0x00, 0x05, 0x90, 0xd3,
0x04, 0xf4, 0x42, 0x03, 0xfd, 0x0d, 0x02, 0x10, 0x01, 0xf3, 0x03, 0x05,
0x02, 0x20, 0x01, 0x03, 0x04, 0x02, 0x20, 0x01, 0x04, 0x02, 0x00, 0x03,
0x90, 0x02, 0x00, 0x03, 0xa7, 0x73, 0x02, 0x20, 0x01, 0x04, 0x04, 0x00,
0x05, 0x90, 0x81, 0x05, 0x9c, 0x4f, 0x03, 0x66, 0x01, 0x04, 0x05, 0x00,
0x05, 0x90, 0x82, 0x05, 0x85, 0x51, 0x03, 0xde, 0x00, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0x83, 0x05, 0xfc, 0x1c, 0x03, 0x93, 0x09, 0x01, 0x00,
0x05, 0x90, 0x84, 0x05, 0xa3, 0x1d, 0x03, 0x63, 0x01, 0x00, 0x05, 0x90,
0x85, 0x05, 0xcf, 0x1d, 0x03, 0x77, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90,
0x02, 0x00, 0x03, 0xd2, 0x76, 0x02, 0xc0, 0x00, 0x01, 0x04, 0x0b, 0x00,
0x05, 0x90, 0xe7, 0x04, 0xe3, 0x5b, 0x03, 0x5b, 0x02, 0x20, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0x88, 0x05, 0xea, 0x20, 0x03, 0x8e, 0x08, 0x01,
0x04, 0x0b, 0x00, 0x05, 0x90, 0xe7, 0x04, 0xe3, 0x5b, 0x03, 0xec, 0x77,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x8a, 0x05, 0xea, 0x20,
0x03, 0x94, 0x08, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1,
0x53, 0x03, 0x8a, 0x05, 0x02, 0x10, 0x01, 0x03, 0x08, 0x02, 0xc0, 0x00,
0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xe7, 0x04, 0xe3, 0x5b, 0x03, 0xda,
0x72, 0x02, 0x30, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x8e, 0x05, 0xea,
0x20, 0x03, 0x94, 0x08, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00,
0x03, 0xa6, 0x78, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0x90,
0x05, 0xd5, 0x55, 0x03, 0xc7, 0x09, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0x91, 0x05, 0xe5, 0x57, 0x03, 0x8c, 0x79, 0x01, 0x00, 0x05, 0x90, 0x92,
0x05, 0xc4, 0x58, 0x03, 0x75, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0,
0x04, 0xf1, 0x53, 0x03, 0xa4, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00,
0x05, 0x90, 0xe7, 0x04, 0xe3, 0x5b, 0x03, 0xda, 0x72, 0x02, 0x20, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0x95, 0x05, 0xea, 0x20, 0x03, 0x94, 0x08,
0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53, 0x03, 0x92,
0x05, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x91, 0x05, 0xe5,
0x57, 0x03, 0xe8, 0x75, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0x98, 0x05,
0xc4, 0x58, 0x03, 0x74, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04,
0xf1, 0x53, 0x03, 0xa4, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00, 0x05,
0x90, 0xe7, 0x04, 0xe3, 0x5b, 0x03, 0xe0, 0x72, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0x9b, 0x05, 0xea, 0x20, 0x03, 0x8e, 0x08, 0x01,
0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53, 0x03, 0x92, 0x05,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0x90, 0x05, 0xd5, 0x55, 0x03, 0xda,
0x7c, 0x02, 0x30, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x9e, 0x05, 0xe5,
0x57, 0x03, 0x8d, 0x79, 0x01, 0x00, 0x05, 0x90, 0x9f, 0x05, 0xc4, 0x58,
0x03, 0x75, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53,
0x03, 0xa4, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x91,
0x05, 0xe5, 0x57, 0x03, 0xe9, 0x75, 0x02, 0x30, 0x01, 0x00, 0x05, 0x90,
0x9e, 0x05, 0xe5, 0x57, 0xee, 0x00, 0x05, 0x90, 0xa3, 0x05, 0xc4, 0x58,
0x03, 0x74, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xe7, 0x04, 0xe3, 0x5b,
0x03, 0x84, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa5,
0x05, 0xea, 0x20, 0x03, 0x8e, 0x08, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90,
0xf0, 0x04, 0xf1, 0x53, 0x03, 0x92, 0x05, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0x90, 0x05, 0xd5, 0x55, 0x03, 0xdc, 0x7c, 0x02, 0x30, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xa8, 0x05, 0xe5, 0x57, 0x03, 0x8b, 0x79, 0x01,
0x00, 0x05, 0x90, 0xa9, 0x05, 0xc4, 0x58, 0x03, 0x75, 0x01, 0x04, 0x0d,
0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53, 0x03, 0xa4, 0x0a, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa8, 0x05, 0xe5, 0x57, 0x03, 0xe8,
0x75, 0x02, 0xc0, 0x00, 0x01, 0x00, 0x05, 0x90, 0xac, 0x05, 0xc4, 0x58,
0x03, 0x74, 0x01, 0x00, 0x05, 0x90, 0x9e, 0x05, 0xe5, 0x57, 0x03, 0x0d,
0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53,
0x03, 0x97, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02,
0x00, 0x03, 0xa2, 0x73, 0x02, 0x20, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90,
0xb0, 0x05, 0xe3, 0x5b, 0x03, 0xbe, 0x7f, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xb1, 0x05, 0xea, 0x20, 0x03, 0x8e, 0x08, 0x01, 0x04, 0x02, 0x00,
0x03, 0x90, 0x02, 0x00, 0x03, 0xb6, 0x78, 0x02, 0x10, 0x01, 0x04, 0x0a,
0x00, 0x05, 0x90, 0xb3, 0x05, 0xa8, 0x5d, 0x03, 0xb4, 0x7e, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xc3, 0x04, 0x01,
0x04, 0x0d, 0x00, 0x05, 0x90, 0x90, 0x05, 0xd5, 0x55, 0x03, 0xc2, 0x06,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x05, 0xe5, 0x57,
0x03, 0x8a, 0x79, 0x01, 0x00, 0x05, 0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03,
0x75, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53, 0x03,
0xa4, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05,
0xf2, 0x5e, 0x03, 0x9b, 0x76, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05,
0x90, 0xf0, 0x04, 0xf1, 0x53, 0x03, 0xe5, 0x09, 0x02, 0x10, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xa9, 0x76, 0x02,
0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x05, 0xe5, 0x57, 0x03,
0xbf, 0x7f, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbd, 0x05, 0xc4, 0x58,
0x03, 0x74, 0x01, 0x00, 0x05, 0x90, 0xa8, 0x05, 0xe5, 0x57, 0x03, 0x0d,
0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53,
0x03, 0x97, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4,
0x05, 0xf2, 0x5e, 0x03, 0xa9, 0x76, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00,
0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53, 0x03, 0xd7, 0x09, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03, 0xdc, 0x75,
0x02, 0x30, 0x01, 0x00, 0x05, 0x90, 0xb6, 0x05, 0xe5, 0x57, 0x03, 0x0d,
0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53,
0x03, 0x97, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbd,
0x05, 0xc4, 0x58, 0x03, 0xdc, 0x75, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00,
0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xdd, 0x00, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03, 0xa3, 0x7f,
0x02, 0x20, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e,
0x03, 0xeb, 0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbd,
0x05, 0xc4, 0x58, 0x03, 0x95, 0x7f, 0x02, 0x20, 0x01, 0x04, 0x09, 0x00,
0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0x3f, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03, 0x41, 0x02, 0x20,
0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xcd,
0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbd, 0x05, 0xc4,
0x58, 0x03, 0xb3, 0x7f, 0x02, 0x20, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xdd, 0x00, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03, 0xa3, 0x7f, 0x02, 0x20,
0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xeb,
0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbd, 0x05, 0xc4,
0x58, 0x03, 0x95, 0x7f, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0xa8, 0x05,
0xe5, 0x57, 0x03, 0x0d, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0xb4, 0x05, 0xf2, 0x5e, 0x03, 0x32, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03, 0x41, 0x02, 0x20, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xcd, 0x00, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x05, 0xe5, 0x57, 0x03,
0x40, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0xbd, 0x05, 0xc4, 0x58, 0x03,
0x73, 0x02, 0x10, 0x01, 0x04, 0x0d, 0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1,
0x53, 0x03, 0xa4, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xb9, 0x76, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03, 0xa3, 0x7f, 0x02, 0x20,
0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xeb,
0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x9e, 0x05, 0xe5,
0x57, 0x03, 0xa2, 0x7f, 0x02, 0x20, 0x01, 0x00, 0x05, 0x90, 0xb7, 0x05,
0xc4, 0x58, 0x03, 0x73, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0x91, 0x05,
0xe5, 0x57, 0x03, 0x0d, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90,
0xb0, 0x05, 0xe3, 0x5b, 0x03, 0xf1, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xe0, 0x05, 0xea, 0x20, 0x03, 0x94, 0x08, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xad, 0x7b, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbd, 0x05, 0xc4, 0x58, 0x03,
0x41, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2,
0x5e, 0x03, 0x3f, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03, 0xb3, 0x7f, 0x02,
0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03,
0xcd, 0x00, 0x02, 0x10, 0x01, 0x03, 0x10, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xbd, 0x05, 0xc4, 0x58, 0x03, 0xa3, 0x7f, 0x02, 0x10,
0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xdd,
0x00, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03, 0x95, 0x7f, 0x02, 0x10, 0x01,
0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xeb, 0x00,
0x02, 0x10, 0x01, 0x03, 0x54, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xbd, 0x05, 0xc4, 0x58, 0x03, 0x41, 0x02, 0x10, 0x01, 0x00, 0x05,
0x90, 0xa8, 0x05, 0xe5, 0x57, 0x03, 0x0d, 0x02, 0x10, 0x01, 0x04, 0x09,
0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0x32, 0x02, 0x10, 0x01,
0x03, 0x0e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb7, 0x05,
0xc4, 0x58, 0x03, 0xb3, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05,
0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xcd, 0x00, 0x02, 0x10, 0x01, 0x03,
0x10, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb6, 0x05, 0xe5,
0x57, 0x03, 0xb0, 0x7f, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbd, 0x05,
0xc4, 0x58, 0x03, 0x73, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xdd, 0x00, 0x02, 0x10, 0x01, 0x03, 0x0e,
0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbd, 0x05, 0xc4, 0x58,
0x03, 0x95, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4,
0x05, 0xf2, 0x5e, 0x03, 0xeb, 0x00, 0x02, 0x10, 0x01, 0x03, 0x54, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbd, 0x05, 0xc4, 0x58, 0x03,
0x41, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0x91, 0x05, 0xe5, 0x57, 0x03,
0x0d, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2,
0x5e, 0x03, 0x32, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0x9e, 0x05, 0xe5, 0x57, 0x03, 0x40, 0x02, 0x20,
0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xd0,
0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x91, 0x05, 0xe5,
0x57, 0x03, 0xb0, 0x7f, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xd0, 0x00, 0x02, 0x10, 0x01, 0x04, 0x0d,
0x00, 0x05, 0x90, 0xf0, 0x04, 0xf1, 0x53, 0x03, 0xc7, 0x09, 0x02, 0x10,
0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xb0, 0x05, 0xe3, 0x5b, 0x03, 0xda,
0x72, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x86, 0x06, 0xea,
0x20, 0x03, 0x94, 0x08, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0xb4, 0x05,
0xf2, 0x5e, 0x03, 0xd9, 0x7b, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xbd, 0x05, 0xc4, 0x58, 0x03, 0x95, 0x7f, 0x02, 0x10, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0xb4, 0x05, 0xf2, 0x5e, 0x03, 0xeb, 0x00, 0x02,
0x10, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xb0, 0x05, 0xe3, 0x5b, 0x03,
0x99, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x8b, 0x06,
0xea, 0x20, 0x03, 0x8e, 0x08, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02,
0x00, 0x03, 0xbc, 0x78, 0x02, 0x10, 0x01, 0x04, 0x0a, 0x00, 0x05, 0x90,
0x8d, 0x06, 0xa8, 0x5d, 0x03, 0xae, 0x7e, 0x01, 0x04, 0x09, 0x00, 0x05,
0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0xc3, 0x04, 0x01, 0x03, 0x0e, 0x02,
0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x9e, 0x05, 0xe5, 0x57, 0x03,
0x40, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x8e, 0x06, 0xf2,
0x5e, 0x03, 0xc0, 0x00, 0x02, 0x10, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90,
0xb0, 0x05, 0xe3, 0x5b, 0x03, 0xb1, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0x93, 0x06, 0xea, 0x20, 0x03, 0x94, 0x08, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0xcb, 0x7b, 0x02,
0x10, 0x01, 0x04, 0x0b, 0x00, 0x05, 0x90, 0xb0, 0x05, 0xe3, 0x5b, 0x03,
0xa7, 0x7c, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x96, 0x06,
0xea, 0x20, 0x03, 0x8e, 0x08, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x8e,
0x06, 0xf2, 0x5e, 0x03, 0xcb, 0x7b, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02,
0x10, 0x01, 0x03, 0x54, 0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01,
0x03, 0x10, 0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x03, 0x54,
0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03, 0xb3, 0x7f, 0x02, 0x20, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0xdd, 0x00, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xb7, 0x05, 0xc4, 0x58, 0x03,
0xa3, 0x7f, 0x02, 0x20, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x8e, 0x06,
0xf2, 0x5e, 0x03, 0xeb, 0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xa8, 0x05, 0xe5, 0x57, 0x03, 0xa2, 0x7f, 0x02, 0x20, 0x01, 0x04,
0x09, 0x00, 0x05, 0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0x32, 0x02, 0x10,
0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0xa1, 0x7d, 0x02,
0x10, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xa6, 0x06, 0x8f, 0x60, 0x03,
0x08, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa7, 0x06, 0xcf, 0x1d, 0x03,
0xef, 0x08, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xa6, 0x06, 0x8f, 0x60,
0x03, 0x92, 0x77, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa9,
0x06, 0xcf, 0x1d, 0x03, 0xee, 0x08, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0x8e, 0x06, 0xf2, 0x5e, 0x03, 0xe8, 0x79, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xb6, 0x05, 0xe5, 0x57, 0x03, 0x4e, 0x02, 0x10, 0x01,
0x04, 0x09, 0x00, 0x05, 0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0xc0, 0x00,
0x02, 0x10, 0x01, 0x03, 0x10, 0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20,
0x01, 0x03, 0x54, 0x02, 0x20, 0x01, 0x03, 0x0e, 0x02, 0x20, 0x01, 0x03,
0x10, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa7, 0x06, 0xcf,
0x1d, 0x03, 0xfa, 0x05, 0x02, 0x20, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90,
0x8e, 0x06, 0xf2, 0x5e, 0x03, 0x94, 0x7a, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xa7, 0x06, 0xcf, 0x1d, 0x03, 0xec, 0x05, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0xa9, 0x06, 0xcf, 0x1d, 0x02, 0x10, 0x04, 0x09,
0x00, 0x05, 0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0x94, 0x7a, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa9, 0x06, 0xcf, 0x1d, 0x03, 0xec,
0x05, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xa7, 0x06, 0xcf, 0x1d, 0x02,
0x10, 0x04, 0x09, 0x00, 0x05, 0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0xe8,
0x79, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa7, 0x06, 0xcf,
0x1d, 0x03, 0x98, 0x06, 0x02, 0x10, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90,
0x02, 0x00, 0x03, 0x86, 0x77, 0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05,
0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0xe2, 0x02, 0x02, 0x20, 0x01, 0x04,
0x0c, 0x00, 0x05, 0x90, 0xa6, 0x06, 0x8f, 0x60, 0x03, 0xaa, 0x7d, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xbc, 0x06, 0xcf, 0x1d, 0x03,
0xee, 0x08, 0x01, 0x00, 0x05, 0x90, 0xa7, 0x06, 0xcf, 0x1d, 0x02, 0x10,
0x00, 0x05, 0x90, 0xbc, 0x06, 0xcf, 0x1d, 0x02, 0x10, 0x04, 0x09, 0x00,
0x05, 0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0xf6, 0x79, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xa9, 0x06, 0xcf, 0x1d, 0x03, 0x8a, 0x06,
0x02, 0x10, 0x01, 0x04, 0x09, 0x00, 0x05, 0x90, 0x8e, 0x06, 0xf2, 0x5e,
0x03, 0xf6, 0x79, 0x02, 0x20, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xa6,
0x06, 0x8f, 0x60, 0x03, 0x9b, 0x7d, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xc1, 0x06, 0xcf, 0x1d, 0x03, 0xef, 0x08, 0x01, 0x04, 0x09,
0x00, 0x05, 0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0x86, 0x7a, 0x02, 0x30,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xa9, 0x06, 0xcf, 0x1d, 0x03, 0xfa,
0x05, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xbc, 0x06, 0xcf, 0x1d, 0x02,
0x10, 0x00, 0x05, 0x90, 0xa9, 0x06, 0xcf, 0x1d, 0x02, 0x10, 0x04, 0x09,
0x00, 0x05, 0x90, 0x8e, 0x06, 0xf2, 0x5e, 0x03, 0x86, 0x7a, 0x02, 0x10,
0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xc1, 0x06, 0xcf, 0x1d, 0x03, 0xfa,
0x05, 0x02, 0x10, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xa6, 0x06, 0x8f,
0x60, 0x03, 0x92, 0x77, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xc7, 0x06, 0xcf, 0x1d, 0x03, 0xee, 0x08, 0x01, 0x00, 0x05, 0x90, 0xc1,
0x06, 0xcf, 0x1d, 0x02, 0x10, 0x04, 0x09, 0x00, 0x05, 0x90, 0x8e, 0x06,
0xf2, 0x5e, 0x03, 0x94, 0x7a, 0x02, 0x10, 0x01, 0x04, 0x0c, 0x00, 0x05,
0x90, 0xa6, 0x06, 0x8f, 0x60, 0x03, 0xfd, 0x7c, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xca, 0x06, 0xcf, 0x1d, 0x03, 0xef, 0x08, 0x01,
0x00, 0x05, 0x90, 0xc1, 0x06, 0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05, 0x90,
0xca, 0x06, 0xcf, 0x1d, 0x02, 0x10, 0x04, 0x09, 0x00, 0x05, 0x90, 0x8e,
0x06, 0xf2, 0x5e, 0x03, 0x94, 0x7a, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xa9, 0x06, 0xcf, 0x1d, 0x03, 0xec, 0x05, 0x02, 0x10, 0x01,
0x00, 0x05, 0x90, 0xca, 0x06, 0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05, 0x90,
0xa9, 0x06, 0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05, 0x90, 0xc7, 0x06, 0xcf,
0x1d, 0x02, 0x20, 0x00, 0x05, 0x90, 0xc1, 0x06, 0xcf, 0x1d, 0x02, 0x20,
0x00, 0x05, 0x90, 0xc7, 0x06, 0xcf, 0x1d, 0x02, 0x10, 0x00, 0x05, 0x90,
0xa9, 0x06, 0xcf, 0x1d, 0x02, 0x20, 0x00, 0x05, 0x90, 0xca, 0x06, 0xcf,
0x1d, 0x02, 0x10, 0x00, 0x05, 0x90, 0xc7, 0x06, 0xcf, 0x1d, 0x02, 0x20,
0x00, 0x05, 0x90, 0xca, 0x06, 0xcf, 0x1d, 0x02, 0x20, 0x00, 0x05, 0x90,
0xc7, 0x06, 0xcf, 0x1d, 0x02, 0x30, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xa6,
0x06, 0x8f, 0x60, 0x03, 0x92, 0x77, 0x02, 0x30, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xce, 0x06, 0xcf, 0x1d, 0x03, 0xee, 0x08, 0x01, 0x00, 0x05,
0x90, 0xca, 0x06, 0xcf, 0x1d, 0x02, 0x20, 0x04, 0x0c, 0x00, 0x05, 0x90,
0xa6, 0x06, 0x8f, 0x60, 0x03, 0x91, 0x77, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xd0, 0x06, 0xcf, 0x1d, 0x03, 0xef, 0x08, 0x01, 0x00,
0x05, 0x90, 0xc7, 0x06, 0xcf, 0x1d, 0x02, 0x20, 0x00, 0x05, 0x90, 0xce,
0x06, 0xcf, 0x1d, 0x02, 0x10, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00,
0x03, 0xea, 0x75, 0x02, 0x20, 0x01, 0x04, 0x0f, 0x00, 0x05, 0x90, 0xd2,
0x06, 0x84, 0x64, 0x03, 0xe5, 0x00, 0x01, 0x00, 0x05, 0x90, 0xd3, 0x06,
0xf2, 0x65, 0x03, 0x9f, 0x7f, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xd0,
0x06, 0xcf, 0x1d, 0x03, 0x92, 0x0a, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00,
0x05, 0x90, 0xd3, 0x06, 0xf2, 0x65, 0x03, 0xee, 0x75, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xce, 0x06, 0xcf, 0x1d, 0x03, 0x92, 0x0a,
0x02, 0x10, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00, 0x03, 0x8c,
0x77, 0x02, 0x10, 0x01, 0x03, 0x05, 0x02, 0x20, 0x01, 0x04, 0x0c, 0x00,
0x05, 0x90, 0xd9, 0x06, 0xc8, 0x61, 0x03, 0x4f, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xda, 0x06, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x0f,
0x00, 0x05, 0x90, 0xd3, 0x06, 0xf2, 0x65, 0x03, 0xb3, 0x77, 0x02, 0x10,
0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xd9, 0x06, 0xc8, 0x61, 0x03, 0xf2,
0x00, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xdd, 0x06, 0xea,
0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x02, 0x00, 0x03, 0x90, 0x02, 0x00,
0x03, 0xe0, 0x78, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00, 0x05, 0x90, 0xdf,
0x06, 0xea, 0x67, 0x03, 0xf2, 0x7e, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90,
0xd9, 0x06, 0xc8, 0x61, 0x03, 0xd3, 0x00, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xe1, 0x06, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04,
0x0c, 0x00, 0x05, 0x90, 0xd9, 0x06, 0xc8, 0x61, 0x03, 0xa5, 0x78, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xe3, 0x06, 0xea, 0x20, 0x03,
0xdb, 0x07, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xd9, 0x06, 0xc8, 0x61,
0x03, 0xa5, 0x78, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xe5,
0x06, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90,
0xd9, 0x06, 0xc8, 0x61, 0x03, 0xa5, 0x78, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xe7, 0x06, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04,
0x0c, 0x00, 0x05, 0x90, 0xd9, 0x06, 0xc8, 0x61, 0x03, 0xa5, 0x78, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xe9, 0x06, 0xea, 0x20, 0x03,
0xdb, 0x07, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xd9, 0x06, 0xc8, 0x61,
0x03, 0xa5, 0x78, 0x02, 0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xeb,
0x06, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90,
0xd9, 0x06, 0xc8, 0x61, 0x03, 0xad, 0x78, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xed, 0x06, 0xd5, 0x62, 0x03, 0xbb, 0x03, 0x01, 0x00,
0x05, 0x90, 0xee, 0x06, 0xb0, 0x63, 0x03, 0xbf, 0x7d, 0x01, 0x00, 0x05,
0x90, 0xed, 0x06, 0xd5, 0x62, 0x03, 0xc2, 0x02, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xf0, 0x06, 0xb0, 0x63, 0x03, 0xbe, 0x7d, 0x01, 0x00, 0x05,
0x90, 0xed, 0x06, 0xd5, 0x62, 0x03, 0xc3, 0x02, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xf2, 0x06, 0xb0, 0x63, 0x03, 0xbd, 0x7d, 0x01, 0x00, 0x05,
0x90, 0xed, 0x06, 0xd5, 0x62, 0x03, 0xc4, 0x02, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xf4, 0x06, 0xb0, 0x63, 0x03, 0xbc, 0x7d, 0x01, 0x00, 0x05,
0x90, 0xee, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0c, 0x00, 0x05, 0x90,
0xd9, 0x06, 0xc8, 0x61, 0x03, 0xfe, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xf6, 0x06, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x00,
0x05, 0x90, 0xf0, 0x06, 0xb0, 0x63, 0x03, 0xa7, 0x79, 0x02, 0x10, 0x01,
0x00, 0x05, 0x90, 0xf2, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90,
0xf4, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xee, 0x06, 0xb0,
0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xf0, 0x06, 0xb0, 0x63, 0x02, 0x10,
0x00, 0x05, 0x90, 0xf6, 0x06, 0xea, 0x20, 0x03, 0xd9, 0x06, 0x02, 0x10,
0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xd9, 0x06, 0xc8, 0x61, 0x03, 0xa5,
0x78, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xfa, 0x06, 0xea,
0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x0f, 0x00, 0x05, 0x90, 0xdf, 0x06,
0xea, 0x67, 0x03, 0xd2, 0x77, 0x02, 0x10, 0x01, 0xf3, 0x04, 0x0c, 0x00,
0x05, 0x90, 0xd9, 0x06, 0xc8, 0x61, 0x03, 0xcf, 0x00, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xfe, 0x06, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04,
0x0f, 0x00, 0x05, 0x90, 0xdf, 0x06, 0xea, 0x67, 0x03, 0xd7, 0x77, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xf2, 0x06, 0xb0, 0x63, 0x03,
0xd0, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xd9, 0x06,
0xc8, 0x61, 0x03, 0xfe, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0x82, 0x07, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x0f, 0x00,
0x05, 0x90, 0xdf, 0x06, 0xea, 0x67, 0x03, 0xd7, 0x77, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xf4, 0x06, 0xb0, 0x63, 0x03, 0xd0, 0x01,
0x02, 0x20, 0x01, 0x04, 0x0c, 0x00, 0x05, 0x90, 0xd9, 0x06, 0xc8, 0x61,
0x03, 0xfe, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x86,
0x07, 0xea, 0x20, 0x03, 0xdb, 0x07, 0x01, 0x04, 0x0f, 0x00, 0x05, 0x90,
0xdf, 0x06, 0xea, 0x67, 0x03, 0xd7, 0x77, 0x02, 0x10, 0x01, 0x04, 0x08,
0x00, 0x05, 0x90, 0xee, 0x06, 0xb0, 0x63, 0x03, 0xd0, 0x01, 0x02, 0x10,
0x01, 0x00, 0x05, 0x90, 0xf0, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0f,
0x00, 0x05, 0x90, 0xdf, 0x06, 0xea, 0x67, 0x03, 0xb0, 0x7e, 0x02, 0x10,
0x01, 0xea, 0xf4, 0x04, 0x08, 0x00, 0x05, 0x90, 0x8c, 0x07, 0x8a, 0x69,
0x03, 0xc8, 0x09, 0x01, 0x04, 0x0f, 0x00, 0x05, 0x90, 0xdf, 0x06, 0xea,
0x67, 0x03, 0xb3, 0x76, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90,
0xf2, 0x06, 0xb0, 0x63, 0x03, 0xd5, 0x01, 0x02, 0x10, 0x01, 0x04, 0x04,
0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0xdd, 0x7e, 0x02, 0x10, 0x01,
0x04, 0x08, 0x00, 0x05, 0x90, 0xf4, 0x06, 0xb0, 0x63, 0x03, 0xa3, 0x01,
0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xee, 0x06, 0xb0, 0x63, 0x02, 0x20,
0x00, 0x05, 0x90, 0xf4, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90,
0xf0, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0f, 0x00, 0x05, 0x90, 0xdf,
0x06, 0xea, 0x67, 0x03, 0xab, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0xf2, 0x06, 0xb0, 0x63, 0x03, 0xd5, 0x01, 0x02, 0x10, 0x01,
0x00, 0x05, 0x90, 0xf4, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90,
0xee, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xf0, 0x06, 0xb0,
0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xf2, 0x06, 0xb0, 0x63, 0x02, 0x10,
0x00, 0x05, 0x90, 0xf4, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0f, 0x00,
0x05, 0x90, 0xdf, 0x06, 0xea, 0x67, 0x03, 0xaf, 0x7e, 0x02, 0x10, 0x01,
0x03, 0x01, 0x02, 0x20, 0x01, 0x02, 0x80, 0x01, 0x01, 0x04, 0x08, 0x00,
0x05, 0x90, 0x96, 0x07, 0x8a, 0x69, 0x03, 0xc8, 0x09, 0x01, 0x00, 0x05,
0x90, 0xee, 0x06, 0xb0, 0x63, 0x03, 0x88, 0x78, 0x02, 0x20, 0x01, 0x00,
0x05, 0x90, 0xf0, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x04, 0x0f, 0x00, 0x05,
0x90, 0xdf, 0x06, 0xea, 0x67, 0x03, 0xab, 0x7e, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xf2, 0x06, 0xb0, 0x63, 0x03, 0xd5, 0x01, 0x02,
0x10, 0x01, 0x04, 0x04, 0x00, 0x04, 0x90, 0x13, 0xcc, 0x10, 0x03, 0xdd,
0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xf4, 0x06, 0xb0,
0x63, 0x03, 0xa3, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xee, 0x06,
0xb0, 0x63, 0x02, 0x20, 0x00, 0x05, 0x90, 0xf0, 0x06, 0xb0, 0x63, 0x02,
0x20, 0x00, 0x05, 0x90, 0xf4, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05,
0x90, 0xf2, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xf4, 0x06,
0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xee, 0x06, 0xb0, 0x63, 0x02,
0x10, 0x00, 0x05, 0x90, 0xf0, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05,
0x90, 0xf2, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x00, 0x05, 0x90, 0xf4, 0x06,
0xb0, 0x63, 0x02, 0x10, 0x04, 0x0f, 0x00, 0x05, 0x90, 0xdf, 0x06, 0xea,
0x67, 0x03, 0xaf, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x01, 0x02, 0x20, 0x01,
0x02, 0x80, 0x01, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0x9f, 0x07, 0x8a,
0x69, 0x03, 0xc8, 0x09, 0x01, 0x00, 0x05, 0x90, 0xee, 0x06, 0xb0, 0x63,
0x03, 0x88, 0x78, 0x02, 0x20, 0x01, 0x04, 0x0f, 0x00, 0x05, 0x90, 0xdf,
0x06, 0xea, 0x67, 0x03, 0xab, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x05, 0x02,
0x20, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xf0, 0x06, 0xb0, 0x63, 0x03,
0xd0, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00, 0x05, 0x90, 0xdf, 0x06,
0xea, 0x67, 0x03, 0xb0, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xf2, 0x06, 0xb0, 0x63, 0x03, 0xd0, 0x01, 0x02, 0x10, 0x01, 0x00,
0x05, 0x90, 0xf4, 0x06, 0xb0, 0x63, 0x02, 0x20, 0x04, 0x0f, 0x00, 0x05,
0x90, 0xdf, 0x06, 0xea, 0x67, 0x03, 0xb0, 0x7e, 0x02, 0x10, 0x01, 0x04,
0x08, 0x00, 0x05, 0x90, 0xee, 0x06, 0xb0, 0x63, 0x03, 0xd0, 0x01, 0x02,
0x10, 0x01, 0x00, 0x05, 0x90, 0xf0, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x04,
0x0f, 0x00, 0x05, 0x90, 0xdf, 0x06, 0xea, 0x67, 0x03, 0xb0, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xf2, 0x06, 0xb0, 0x63, 0x03,
0xd0, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00, 0x05, 0x90, 0xdf, 0x06,
0xea, 0x67, 0x03, 0xb0, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xf4, 0x06, 0xb0, 0x63, 0x03, 0xd0, 0x01, 0x02, 0x10, 0x01, 0x04,
0x0f, 0x00, 0x05, 0x90, 0xdf, 0x06, 0xea, 0x67, 0x03, 0xb0, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xee, 0x06, 0xb0, 0x63, 0x03,
0xd0, 0x01, 0x02, 0x10, 0x01, 0x00, 0x05, 0x90, 0xf0, 0x06, 0xb0, 0x63,
0x02, 0x10, 0x00, 0x05, 0x90, 0xf2, 0x06, 0xb0, 0x63, 0x02, 0x10, 0x04,
0x0f, 0x00, 0x05, 0x90, 0xdf, 0x06, 0xea, 0x67, 0x03, 0xb0, 0x7e, 0x02,
0x10, 0x01, 0x04, 0x08, 0x00, 0x05, 0x90, 0xf4, 0x06, 0xb0, 0x63, 0x03,
0xd0, 0x01, 0x02, 0x10, 0x01, 0x04, 0x0f, 0x00, 0x05, 0x90, 0xdf, 0x06,
0xea, 0x67, 0x03, 0xb0, 0x7e, 0x02, 0x10, 0x01, 0x04, 0x08, 0x00, 0x05,
0x90, 0xb1, 0x07, 0x8a, 0x69, 0x03, 0xc8, 0x09, 0x01, 0x04, 0x01, 0x00,
0x03, 0x90, 0x00, 0x00, 0x03, 0xe9, 0x75, 0x02, 0x10, 0x01, 0x02, 0x90,
0x01, 0x00, 0x01, 0x01, 0x5f, 0x5a, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73,
0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64,
0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30,
0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x32, 0x78, 0x32, 0x49, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65,
0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x4e, 0x53,
0x31, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d,
0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69,
0x74, 0x73, 0x45, 0x4e, 0x53, 0x31, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33,
0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b,
0x76, 0x45, 0x4e, 0x53, 0x34, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45,
0x45, 0x45, 0x4e, 0x34, 0x62, 0x65, 0x72, 0x74, 0x33, 0x35, 0x46, 0x75,
0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61,
0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f, 0x76, 0x32, 0x45, 0x45, 0x45,
0x76, 0x52, 0x4b, 0x54, 0x30, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x32, 0x35,
0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68,
0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f,
0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74,
0x61, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x34,
0x62, 0x65, 0x72, 0x74, 0x33, 0x35, 0x46, 0x75, 0x73, 0x65, 0x64, 0x5f,
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74,
0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61,
0x6d, 0x73, 0x5f, 0x76, 0x32, 0x45, 0x45, 0x45, 0x52, 0x4b, 0x54, 0x5f,
0x69, 0x69, 0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x4b, 0x32, 0x35, 0x66,
0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65,
0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e,
0x31, 0x30, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61,
0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x31, 0x30, 0x73, 0x74, 0x6f, 0x70,
0x5f, 0x65, 0x61, 0x72, 0x6c, 0x79, 0x45, 0x69, 0x00, 0x5f, 0x5a, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d,
0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49,
0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68,
0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61,
0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c,
0x69, 0x33, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65, 0x72,
0x74, 0x33, 0x35, 0x46, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c,
0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f,
0x76, 0x32, 0x45, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74,
0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e,
0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32, 0x45,
0x45, 0x45, 0x45, 0x45, 0x52, 0x4b, 0x54, 0x5f, 0x69, 0x52, 0x4b, 0x54,
0x30, 0x5f, 0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68,
0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32,
0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45,
0x43, 0x31, 0x49, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74,
0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e,
0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32, 0x45,
0x45, 0x45, 0x45, 0x45, 0x50, 0x76, 0x6d, 0x69, 0x69, 0x52, 0x4b, 0x54,
0x5f, 0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x61, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74,
0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f,
0x33, 0x52, 0x6f, 0x77, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x31,
0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x76, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x72, 0x6f, 0x77, 0x5f, 0x61, 0x49, 0x4e, 0x53,
0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d,
0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74,
0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x33,
0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77, 0x69,
0x74, 0x68, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73, 0x49,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x45, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x30, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76, 0x69, 0x00,
0x5f, 0x5a, 0x4e, 0x36, 0x34, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e,
0x41, 0x4c, 0x5f, 0x39, 0x38, 0x33, 0x36, 0x62, 0x34, 0x35, 0x39, 0x5f,
0x33, 0x33, 0x5f, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36,
0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x63, 0x75,
0x5f, 0x32, 0x64, 0x31, 0x30, 0x62, 0x66, 0x32, 0x35, 0x31, 0x31, 0x5f,
0x5f, 0x73, 0x68, 0x66, 0x6c, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x45, 0x6a,
0x69, 0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x62, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74,
0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f,
0x33, 0x43, 0x6f, 0x6c, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x31,
0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x76, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x63, 0x6f, 0x6c, 0x5f, 0x62, 0x49, 0x4e, 0x53,
0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d,
0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74,
0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x34, 0x4d,
0x61, 0x73, 0x6b, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c,
0x69, 0x33, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65, 0x72,
0x74, 0x33, 0x35, 0x46, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c,
0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f,
0x76, 0x32, 0x45, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74,
0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e,
0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32, 0x45,
0x45, 0x45, 0x45, 0x45, 0x52, 0x4b, 0x54, 0x5f, 0x52, 0x4b, 0x54, 0x30,
0x5f, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x34,
0x4d, 0x61, 0x73, 0x6b, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f,
0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e,
0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65,
0x72, 0x74, 0x33, 0x35, 0x46, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75,
0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65,
0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73,
0x5f, 0x76, 0x32, 0x45, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64,
0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61,
0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69,
0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32,
0x45, 0x45, 0x45, 0x45, 0x45, 0x52, 0x4b, 0x54, 0x5f, 0x52, 0x4b, 0x54,
0x30, 0x5f, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62,
0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x34,
0x6c, 0x6f, 0x61, 0x64, 0x49, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d,
0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x49, 0x53, 0x32,
0x5f, 0x53, 0x35, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45,
0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31,
0x45, 0x45, 0x45, 0x45, 0x45, 0x76, 0x52, 0x54, 0x5f, 0x00, 0x5f, 0x5a,
0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x4c,
0x64, 0x67, 0x73, 0x74, 0x73, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72,
0x49, 0x4c, 0x69, 0x30, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x49,
0x4e, 0x53, 0x30, 0x5f, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32,
0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45,
0x45, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x61, 0x49, 0x53, 0x35, 0x5f, 0x53, 0x38, 0x5f,
0x4e, 0x53, 0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45, 0x4c, 0x69, 0x31, 0x36,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x45, 0x45, 0x4c,
0x69, 0x34, 0x45, 0x45, 0x45, 0x76, 0x50, 0x54, 0x5f, 0x52, 0x54, 0x30,
0x5f, 0x52, 0x41, 0x54, 0x31, 0x5f, 0x5f, 0x50, 0x4b, 0x76, 0x52, 0x41,
0x54, 0x31, 0x5f, 0x5f, 0x6a, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x31, 0x31, 0x4c, 0x64, 0x67, 0x5f, 0x66, 0x75, 0x6e, 0x63,
0x74, 0x6f, 0x72, 0x49, 0x35, 0x75, 0x69, 0x6e, 0x74, 0x34, 0x4c, 0x69,
0x34, 0x45, 0x45, 0x36, 0x6c, 0x64, 0x67, 0x73, 0x74, 0x73, 0x45, 0x69,
0x62, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x33, 0x6c,
0x64, 0x67, 0x45, 0x52, 0x35, 0x75, 0x69, 0x6e, 0x74, 0x34, 0x50, 0x4b,
0x76, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76,
0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f,
0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e,
0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45,
0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45,
0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x34, 0x6c, 0x6f,
0x61, 0x64, 0x49, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x62, 0x49, 0x53, 0x32, 0x5f, 0x53,
0x35, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x43, 0x6f, 0x6c, 0x45, 0x4c, 0x69,
0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x45,
0x45, 0x45, 0x45, 0x76, 0x52, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x4c, 0x64, 0x67,
0x73, 0x74, 0x73, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x49, 0x4c,
0x69, 0x30, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x49, 0x4e, 0x53,
0x30, 0x5f, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45,
0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30,
0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x4e,
0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x62, 0x49, 0x53, 0x35, 0x5f, 0x53, 0x38, 0x5f, 0x4e, 0x53,
0x5f, 0x33, 0x43, 0x6f, 0x6c, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x34,
0x45, 0x45, 0x45, 0x76, 0x50, 0x54, 0x5f, 0x52, 0x54, 0x30, 0x5f, 0x52,
0x41, 0x54, 0x31, 0x5f, 0x5f, 0x50, 0x4b, 0x76, 0x52, 0x41, 0x54, 0x31,
0x5f, 0x5f, 0x6a, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62,
0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x36,
0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74, 0x49, 0x4e, 0x53, 0x5f, 0x31, 0x31,
0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x49,
0x53, 0x32, 0x5f, 0x53, 0x35, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x52, 0x6f,
0x77, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x62, 0x31, 0x45, 0x45, 0x45, 0x45, 0x45, 0x76, 0x52, 0x54, 0x5f, 0x00,
0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x33, 0x53, 0x6d,
0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77, 0x69, 0x74, 0x68,
0x6f, 0x75, 0x74, 0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73, 0x49, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x30, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x62, 0x31, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x45, 0x35, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x49, 0x4c, 0x69,
0x34, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x4b, 0x35,
0x75, 0x69, 0x6e, 0x74, 0x34, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x32, 0x33, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x6b,
0x65, 0x77, 0x73, 0x49, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69,
0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x30, 0x45, 0x4c,
0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x4c,
0x62, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x45, 0x32, 0x32, 0x63,
0x6f, 0x6d, 0x70, 0x75, 0x74, 0x65, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65,
0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x73, 0x49, 0x4c, 0x69,
0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54,
0x5f, 0x5f, 0x6a, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x33, 0x73, 0x74, 0x73, 0x49, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x76,
0x52, 0x41, 0x54, 0x5f, 0x5f, 0x6a, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x4b,
0x35, 0x75, 0x69, 0x6e, 0x74, 0x34, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66,
0x6d, 0x68, 0x61, 0x34, 0x73, 0x74, 0x73, 0x5f, 0x49, 0x35, 0x75, 0x69,
0x6e, 0x74, 0x34, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41,
0x54, 0x30, 0x5f, 0x5f, 0x6a, 0x52, 0x41, 0x54, 0x30, 0x5f, 0x5f, 0x4b,
0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x33,
0x73, 0x74, 0x73, 0x45, 0x6a, 0x35, 0x75, 0x69, 0x6e, 0x74, 0x34, 0x00,
0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31,
0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71,
0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43,
0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f,
0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69,
0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62,
0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x36, 0x63, 0x6f, 0x6d, 0x6d,
0x69, 0x74, 0x49, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x62, 0x49, 0x53, 0x32, 0x5f, 0x53,
0x35, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x43, 0x6f, 0x6c, 0x45, 0x4c, 0x69,
0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x45,
0x45, 0x45, 0x45, 0x76, 0x52, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x32, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x72, 0x6f,
0x77, 0x5f, 0x61, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45,
0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x52, 0x41, 0x32, 0x5f, 0x4e,
0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74,
0x5f, 0x61, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x52, 0x6f,
0x77, 0x45, 0x45, 0x45, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x33, 0x6c, 0x64, 0x73, 0x45, 0x52, 0x35, 0x75, 0x69, 0x6e,
0x74, 0x34, 0x6a, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x32, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x76, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x63, 0x6f, 0x6c, 0x5f, 0x62, 0x49,
0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68,
0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61,
0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x34, 0x6c, 0x6f,
0x61, 0x64, 0x45, 0x52, 0x41, 0x32, 0x5f, 0x4e, 0x53, 0x5f, 0x31, 0x30,
0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x62, 0x49, 0x53,
0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x43, 0x6f, 0x6c, 0x45, 0x45, 0x45,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x37,
0x43, 0x6c, 0x65, 0x61, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d, 0x75,
0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x74, 0x4c, 0x69, 0x31, 0x45, 0x45,
0x35, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x30,
0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63,
0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x4e, 0x53, 0x5f,
0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73,
0x45, 0x45, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45,
0x45, 0x76, 0x52, 0x41, 0x54, 0x30, 0x5f, 0x5f, 0x41, 0x54, 0x31, 0x5f,
0x5f, 0x54, 0x5f, 0x62, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68,
0x61, 0x35, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x49, 0x4e, 0x53, 0x5f, 0x32,
0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63,
0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x4e, 0x53,
0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d,
0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74,
0x73, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x30, 0x5f, 0x5f, 0x41, 0x54, 0x31,
0x5f, 0x5f, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68,
0x61, 0x31, 0x33, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f,
0x62, 0x61, 0x73, 0x65, 0x49, 0x74, 0x4c, 0x69, 0x38, 0x45, 0x4c, 0x69,
0x31, 0x36, 0x45, 0x4c, 0x69, 0x30, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34,
0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x62, 0x61, 0x73,
0x65, 0x5f, 0x49, 0x74, 0x4c, 0x69, 0x38, 0x45, 0x4c, 0x69, 0x31, 0x36,
0x45, 0x4c, 0x69, 0x30, 0x45, 0x45, 0x45, 0x45, 0x35, 0x63, 0x6c, 0x65,
0x61, 0x72, 0x45, 0x76, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68,
0x61, 0x34, 0x67, 0x65, 0x6d, 0x6d, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x30,
0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63,
0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x4e, 0x53, 0x5f,
0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73,
0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67,
0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x49, 0x53, 0x32, 0x5f, 0x4e, 0x53,
0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31,
0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x62, 0x49,
0x53, 0x32, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x43, 0x6f, 0x6c, 0x45, 0x45,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x76,
0x52, 0x41, 0x54, 0x32, 0x5f, 0x5f, 0x41, 0x54, 0x33, 0x5f, 0x5f, 0x54,
0x5f, 0x52, 0x41, 0x54, 0x32, 0x5f, 0x5f, 0x4b, 0x54, 0x30, 0x5f, 0x52,
0x41, 0x54, 0x33, 0x5f, 0x5f, 0x4b, 0x54, 0x31, 0x5f, 0x00, 0x5f, 0x5a,
0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x30, 0x46, 0x72, 0x61, 0x67,
0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c,
0x61, 0x74, 0x6f, 0x72, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x45, 0x33, 0x6d,
0x6d, 0x61, 0x45, 0x52, 0x4b, 0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46, 0x72,
0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x49, 0x53, 0x31, 0x5f,
0x4e, 0x53, 0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45, 0x45, 0x45, 0x52, 0x4b,
0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e,
0x74, 0x5f, 0x62, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x43,
0x6f, 0x6c, 0x45, 0x45, 0x45, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f,
0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78,
0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45,
0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30,
0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x43, 0x31,
0x49, 0x4e, 0x34, 0x62, 0x65, 0x72, 0x74, 0x33, 0x35, 0x46, 0x75, 0x73,
0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64,
0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70,
0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f, 0x76, 0x32, 0x45, 0x4e, 0x32, 0x35,
0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68,
0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f,
0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74,
0x61, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x45, 0x45, 0x52, 0x4b,
0x54, 0x5f, 0x69, 0x52, 0x4b, 0x54, 0x30, 0x5f, 0x69, 0x69, 0x00, 0x5f,
0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33,
0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b,
0x76, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31,
0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69,
0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69,
0x33, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73,
0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64,
0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30,
0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c,
0x69, 0x32, 0x45, 0x45, 0x45, 0x45, 0x45, 0x50, 0x76, 0x6d, 0x69, 0x69,
0x52, 0x4b, 0x54, 0x5f, 0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66,
0x6d, 0x68, 0x61, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74,
0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x4c, 0x4e, 0x53,
0x5f, 0x32, 0x30, 0x47, 0x6d, 0x6d, 0x61, 0x5f, 0x64, 0x65, 0x73, 0x63,
0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x45,
0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x33,
0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77, 0x69,
0x74, 0x68, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73, 0x49,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x45, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x30, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76, 0x69, 0x00,
0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31,
0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71,
0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61,
0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c,
0x69, 0x33, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x49, 0x4e, 0x53,
0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x76, 0x49, 0x53, 0x32, 0x5f, 0x53, 0x35, 0x5f, 0x4c, 0x4e, 0x53,
0x5f, 0x32, 0x30, 0x47, 0x6d, 0x6d, 0x61, 0x5f, 0x64, 0x65, 0x73, 0x63,
0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x45,
0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x45, 0x45, 0x45, 0x45, 0x76, 0x52,
0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32,
0x76, 0x32, 0x31, 0x33, 0x4c, 0x64, 0x67, 0x73, 0x74, 0x73, 0x5f, 0x68,
0x65, 0x6c, 0x70, 0x65, 0x72, 0x49, 0x4c, 0x69, 0x30, 0x45, 0x45, 0x34,
0x6c, 0x6f, 0x61, 0x64, 0x49, 0x4e, 0x53, 0x30, 0x5f, 0x31, 0x33, 0x47,
0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76,
0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f,
0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36,
0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74,
0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33,
0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x76, 0x49, 0x53, 0x35, 0x5f, 0x53,
0x38, 0x5f, 0x4c, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x47, 0x6d, 0x6d, 0x61,
0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f,
0x6d, 0x6f, 0x64, 0x65, 0x45, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x45,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x76, 0x50, 0x54, 0x5f, 0x52,
0x54, 0x30, 0x5f, 0x52, 0x41, 0x54, 0x31, 0x5f, 0x5f, 0x50, 0x4b, 0x76,
0x52, 0x41, 0x54, 0x31, 0x5f, 0x5f, 0x6a, 0x00, 0x5f, 0x5a, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f,
0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43,
0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f,
0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x45, 0x43,
0x31, 0x45, 0x50, 0x76, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x37, 0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e,
0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d,
0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69,
0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b,
0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73,
0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31,
0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71,
0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33,
0x45, 0x45, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65, 0x72,
0x74, 0x33, 0x35, 0x46, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c,
0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f,
0x76, 0x32, 0x45, 0x45, 0x45, 0x52, 0x4b, 0x54, 0x5f, 0x50, 0x76, 0x69,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53,
0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65,
0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31,
0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e,
0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45,
0x36, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x45, 0x52, 0x41, 0x32, 0x5f,
0x41, 0x32, 0x5f, 0x4b, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x46, 0x72, 0x61,
0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d, 0x75,
0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x53, 0x31, 0x5f, 0x45, 0x45, 0x00,
0x5f, 0x5a, 0x4e, 0x36, 0x34, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e,
0x41, 0x4c, 0x5f, 0x39, 0x38, 0x33, 0x36, 0x62, 0x34, 0x35, 0x39, 0x5f,
0x33, 0x33, 0x5f, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36,
0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x63, 0x75,
0x5f, 0x32, 0x64, 0x31, 0x30, 0x62, 0x66, 0x32, 0x35, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x35, 0x68, 0x6d, 0x75, 0x6c, 0x32, 0x45, 0x6a, 0x6a, 0x00,
0x5f, 0x5a, 0x4e, 0x36, 0x34, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e,
0x41, 0x4c, 0x5f, 0x39, 0x38, 0x33, 0x36, 0x62, 0x34, 0x35, 0x39, 0x5f,
0x33, 0x33, 0x5f, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36,
0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x63, 0x75,
0x5f, 0x32, 0x64, 0x31, 0x30, 0x62, 0x66, 0x32, 0x35, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x31, 0x35, 0x68, 0x61, 0x6c, 0x66, 0x32, 0x5f, 0x74, 0x6f,
0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x32, 0x45, 0x52, 0x66, 0x53, 0x31,
0x5f, 0x6a, 0x00, 0x5f, 0x5a, 0x4e, 0x36, 0x34, 0x5f, 0x49, 0x4e, 0x54,
0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f, 0x39, 0x38, 0x33, 0x36, 0x62, 0x34,
0x35, 0x39, 0x5f, 0x33, 0x33, 0x5f, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76,
0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61,
0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30,
0x5f, 0x63, 0x75, 0x5f, 0x32, 0x64, 0x31, 0x30, 0x62, 0x66, 0x32, 0x35,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x35, 0x68, 0x61, 0x6c, 0x66, 0x32,
0x5f, 0x74, 0x6f, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x32, 0x45, 0x6a,
0x00, 0x5f, 0x5a, 0x4e, 0x36, 0x34, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52,
0x4e, 0x41, 0x4c, 0x5f, 0x39, 0x38, 0x33, 0x36, 0x62, 0x34, 0x35, 0x39,
0x5f, 0x33, 0x33, 0x5f, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f,
0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x63,
0x75, 0x5f, 0x32, 0x64, 0x31, 0x30, 0x62, 0x66, 0x32, 0x35, 0x34, 0x66,
0x6d, 0x68, 0x61, 0x31, 0x33, 0x68, 0x61, 0x6c, 0x66, 0x5f, 0x74, 0x6f,
0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x74, 0x00, 0x5f, 0x5a, 0x4e,
0x36, 0x34, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f,
0x39, 0x38, 0x33, 0x36, 0x62, 0x34, 0x35, 0x39, 0x5f, 0x33, 0x33, 0x5f,
0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34,
0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x63, 0x75, 0x5f, 0x32, 0x64,
0x31, 0x30, 0x62, 0x66, 0x32, 0x35, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31,
0x31, 0x63, 0x6c, 0x61, 0x6d, 0x70, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74,
0x45, 0x52, 0x66, 0x00, 0x5f, 0x5a, 0x53, 0x74, 0x35, 0x69, 0x73, 0x69,
0x6e, 0x66, 0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x37, 0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f,
0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73,
0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72,
0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49,
0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47,
0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76,
0x45, 0x4e, 0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a,
0x33, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45,
0x45, 0x45, 0x31, 0x30, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x6d, 0x61,
0x73, 0x6b, 0x49, 0x4e, 0x53, 0x5f, 0x34, 0x4d, 0x61, 0x73, 0x6b, 0x49,
0x53, 0x31, 0x5f, 0x53, 0x34, 0x5f, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45,
0x45, 0x45, 0x76, 0x52, 0x4b, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x4b,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x34, 0x4d, 0x61, 0x73, 0x6b, 0x49, 0x4e,
0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d,
0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69,
0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x38,
0x69, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x69, 0x69, 0x69,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53,
0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65,
0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31,
0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e,
0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45,
0x36, 0x72, 0x65, 0x64, 0x75, 0x63, 0x65, 0x49, 0x4e, 0x53, 0x5f, 0x34,
0x53, 0x75, 0x6d, 0x5f, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x32, 0x5f,
0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53,
0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65,
0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31,
0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e,
0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45,
0x37, 0x72, 0x65, 0x64, 0x75, 0x63, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f,
0x34, 0x53, 0x75, 0x6d, 0x5f, 0x45, 0x45, 0x45, 0x66, 0x76, 0x00, 0x5f,
0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66, 0x74,
0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e,
0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53,
0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f,
0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x31, 0x30, 0x72,
0x65, 0x64, 0x75, 0x63, 0x65, 0x5f, 0x32, 0x78, 0x32, 0x49, 0x4e, 0x53,
0x5f, 0x34, 0x53, 0x75, 0x6d, 0x5f, 0x45, 0x45, 0x45, 0x66, 0x76, 0x00,
0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66,
0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f,
0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e,
0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45,
0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f,
0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e,
0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36,
0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x37, 0x73,
0x68, 0x75, 0x66, 0x66, 0x6c, 0x65, 0x45, 0x52, 0x41, 0x32, 0x5f, 0x66,
0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53,
0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65,
0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31,
0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e,
0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45,
0x39, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x65, 0x78, 0x70, 0x45, 0x66,
0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x30, 0x61,
0x70, 0x70, 0x6c, 0x79, 0x5f, 0x65, 0x78, 0x70, 0x5f, 0x49, 0x4c, 0x69,
0x32, 0x45, 0x45, 0x45, 0x66, 0x66, 0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78,
0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f,
0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72,
0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31,
0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69,
0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76,
0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f, 0x31, 0x31, 0x47,
0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x36, 0x72, 0x65, 0x64, 0x75, 0x63,
0x65, 0x49, 0x4e, 0x53, 0x5f, 0x34, 0x4d, 0x61, 0x78, 0x5f, 0x45, 0x45,
0x45, 0x76, 0x52, 0x41, 0x32, 0x5f, 0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78,
0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f,
0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72,
0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31,
0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69,
0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76,
0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f, 0x31, 0x31, 0x47,
0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x37, 0x72, 0x65, 0x64, 0x75, 0x63,
0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x34, 0x4d, 0x61, 0x78, 0x5f, 0x45,
0x45, 0x45, 0x66, 0x76, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68,
0x61, 0x37, 0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53,
0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d,
0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74,
0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65,
0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f,
0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33,
0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b,
0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45,
0x45, 0x45, 0x45, 0x31, 0x30, 0x72, 0x65, 0x64, 0x75, 0x63, 0x65, 0x5f,
0x32, 0x78, 0x32, 0x49, 0x4e, 0x53, 0x5f, 0x34, 0x4d, 0x61, 0x78, 0x5f,
0x45, 0x45, 0x45, 0x66, 0x76, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x34, 0x4d, 0x61, 0x78, 0x5f, 0x35, 0x61, 0x70, 0x70, 0x6c,
0x79, 0x45, 0x66, 0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x36, 0x34, 0x5f, 0x49,
0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f, 0x39, 0x38, 0x33, 0x36,
0x62, 0x34, 0x35, 0x39, 0x5f, 0x33, 0x33, 0x5f, 0x66, 0x6d, 0x68, 0x61,
0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75,
0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d,
0x37, 0x30, 0x5f, 0x63, 0x75, 0x5f, 0x32, 0x64, 0x31, 0x30, 0x62, 0x66,
0x32, 0x35, 0x31, 0x35, 0x5f, 0x5f, 0x73, 0x68, 0x66, 0x6c, 0x5f, 0x78,
0x6f, 0x72, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x45, 0x6a, 0x66, 0x69, 0x69,
0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f,
0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45,
0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f,
0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53,
0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x39,
0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x65, 0x78, 0x70, 0x45, 0x52, 0x41,
0x32, 0x5f, 0x4b, 0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68,
0x61, 0x34, 0x53, 0x75, 0x6d, 0x5f, 0x35, 0x61, 0x70, 0x70, 0x6c, 0x79,
0x45, 0x66, 0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c,
0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x36, 0x63, 0x6f, 0x6d,
0x6d, 0x69, 0x74, 0x49, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x76, 0x49, 0x53, 0x32, 0x5f,
0x53, 0x35, 0x5f, 0x4c, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x47, 0x6d, 0x6d,
0x61, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72,
0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x45, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45,
0x45, 0x45, 0x45, 0x45, 0x76, 0x52, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x33, 0x53, 0x6d, 0x65, 0x6d, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74,
0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73, 0x49, 0x4e, 0x53, 0x5f, 0x39, 0x43,
0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f,
0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x36,
0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x30, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62,
0x31, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x45,
0x35, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x49, 0x4c, 0x69, 0x34, 0x45, 0x45,
0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x4b, 0x35, 0x75, 0x69, 0x6e,
0x74, 0x34, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32,
0x33, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77,
0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73,
0x49, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x30, 0x45, 0x4c, 0x69, 0x34, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x4c, 0x62, 0x30, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x45, 0x32, 0x32, 0x63, 0x6f, 0x6d, 0x70,
0x75, 0x74, 0x65, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x70, 0x6f,
0x69, 0x6e, 0x74, 0x65, 0x72, 0x73, 0x49, 0x4c, 0x69, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x6a,
0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f,
0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45,
0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f,
0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53,
0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x35,
0x73, 0x63, 0x61, 0x6c, 0x65, 0x45, 0x52, 0x41, 0x32, 0x5f, 0x4b, 0x66,
0x00, 0x5f, 0x5a, 0x4e, 0x4b, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53,
0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65,
0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31,
0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e,
0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45,
0x34, 0x70, 0x61, 0x63, 0x6b, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x41, 0x54,
0x30, 0x5f, 0x5f, 0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67,
0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53,
0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45, 0x45, 0x45, 0x00, 0x5f, 0x5a, 0x4e,
0x36, 0x34, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f,
0x39, 0x38, 0x33, 0x36, 0x62, 0x34, 0x35, 0x39, 0x5f, 0x33, 0x33, 0x5f,
0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34,
0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x63, 0x75, 0x5f, 0x32, 0x64,
0x31, 0x30, 0x62, 0x66, 0x32, 0x35, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31,
0x35, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x32, 0x5f, 0x74, 0x6f, 0x5f, 0x68,
0x61, 0x6c, 0x66, 0x32, 0x45, 0x66, 0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x36,
0x34, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f, 0x39,
0x38, 0x33, 0x36, 0x62, 0x34, 0x35, 0x39, 0x5f, 0x33, 0x33, 0x5f, 0x66,
0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30,
0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x63, 0x75, 0x5f, 0x32, 0x64, 0x31,
0x30, 0x62, 0x66, 0x32, 0x35, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x33,
0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x74, 0x6f, 0x5f, 0x68, 0x61, 0x6c,
0x66, 0x45, 0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x31, 0x37, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x75,
0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x74, 0x4c, 0x69, 0x32,
0x45, 0x45, 0x35, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x4e, 0x53, 0x5f,
0x32, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61,
0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x4e,
0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d,
0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31,
0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45,
0x45, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45,
0x76, 0x52, 0x41, 0x54, 0x30, 0x5f, 0x5f, 0x41, 0x54, 0x31, 0x5f, 0x5f,
0x54, 0x5f, 0x62, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x35, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x30,
0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63,
0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x4e, 0x53, 0x5f,
0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78,
0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x45, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x76, 0x52,
0x41, 0x54, 0x30, 0x5f, 0x5f, 0x41, 0x54, 0x31, 0x5f, 0x5f, 0x54, 0x5f,
0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x33, 0x46,
0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x62, 0x61, 0x73, 0x65,
0x49, 0x74, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45,
0x4c, 0x69, 0x30, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x46, 0x72, 0x61,
0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x49,
0x74, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c,
0x69, 0x30, 0x45, 0x45, 0x45, 0x45, 0x35, 0x63, 0x6c, 0x65, 0x61, 0x72,
0x45, 0x76, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31,
0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x76,
0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f,
0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36,
0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74,
0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x45, 0x45, 0x4c, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x47,
0x6d, 0x6d, 0x61, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
0x6f, 0x72, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x45, 0x30, 0x45, 0x4c, 0x62,
0x30, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x52, 0x41, 0x33,
0x5f, 0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65,
0x6e, 0x74, 0x5f, 0x62, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x33,
0x52, 0x6f, 0x77, 0x45, 0x45, 0x45, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x34, 0x67, 0x65, 0x6d, 0x6d, 0x49, 0x4e, 0x53,
0x5f, 0x32, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f,
0x61, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49,
0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68,
0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78,
0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73,
0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67,
0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f,
0x31, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x62,
0x49, 0x53, 0x32, 0x5f, 0x53, 0x36, 0x5f, 0x45, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x32,
0x5f, 0x5f, 0x41, 0x54, 0x33, 0x5f, 0x5f, 0x54, 0x5f, 0x52, 0x41, 0x54,
0x32, 0x5f, 0x5f, 0x4b, 0x54, 0x30, 0x5f, 0x52, 0x41, 0x54, 0x33, 0x5f,
0x5f, 0x4b, 0x54, 0x31, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x32, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74,
0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72,
0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f,
0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36,
0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74,
0x73, 0x45, 0x45, 0x33, 0x6d, 0x6d, 0x61, 0x45, 0x52, 0x4b, 0x4e, 0x53,
0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f,
0x61, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x33, 0x52, 0x6f,
0x77, 0x45, 0x45, 0x45, 0x52, 0x4b, 0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46,
0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x62, 0x49, 0x53, 0x31,
0x5f, 0x53, 0x35, 0x5f, 0x45, 0x45, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66,
0x6d, 0x68, 0x61, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x6f, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74,
0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x45, 0x35, 0x73,
0x74, 0x6f, 0x72, 0x65, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33,
0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x41, 0x54, 0x30,
0x5f, 0x5f, 0x4b, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x46, 0x72, 0x61, 0x67,
0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c,
0x61, 0x74, 0x6f, 0x72, 0x49, 0x53, 0x31, 0x5f, 0x45, 0x45, 0x69, 0x00,
0x5f, 0x5a, 0x4e, 0x4b, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x31, 0x53,
0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x49, 0x4e,
0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d,
0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31,
0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x45, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x52, 0x41,
0x34, 0x5f, 0x35, 0x75, 0x69, 0x6e, 0x74, 0x34, 0x00, 0x5f, 0x5a, 0x4e,
0x36, 0x34, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f,
0x39, 0x38, 0x33, 0x36, 0x62, 0x34, 0x35, 0x39, 0x5f, 0x33, 0x33, 0x5f,
0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34,
0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x63, 0x75, 0x5f, 0x32, 0x64,
0x31, 0x30, 0x62, 0x66, 0x32, 0x35, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x35,
0x68, 0x61, 0x64, 0x64, 0x38, 0x45, 0x35, 0x75, 0x69, 0x6e, 0x74, 0x34,
0x53, 0x31, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x36, 0x34, 0x5f, 0x49, 0x4e,
0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f, 0x39, 0x38, 0x33, 0x36, 0x62,
0x34, 0x35, 0x39, 0x5f, 0x33, 0x33, 0x5f, 0x66, 0x6d, 0x68, 0x61, 0x5f,
0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73,
0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37,
0x30, 0x5f, 0x63, 0x75, 0x5f, 0x32, 0x64, 0x31, 0x30, 0x62, 0x66, 0x32,
0x35, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x35, 0x68, 0x61, 0x64, 0x64, 0x32,
0x45, 0x6a, 0x6a, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x32, 0x76, 0x32, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x6f, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74,
0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65, 0x72, 0x74, 0x33,
0x35, 0x46, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69,
0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f, 0x76, 0x32,
0x45, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75,
0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65,
0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e, 0x67, 0x6c,
0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45,
0x45, 0x45, 0x52, 0x4b, 0x54, 0x5f, 0x52, 0x4b, 0x54, 0x30, 0x5f, 0x69,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76,
0x32, 0x31, 0x36, 0x48, 0x6d, 0x6d, 0x61, 0x5f, 0x67, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x49, 0x4e, 0x53, 0x5f, 0x33,
0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31,
0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f,
0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e,
0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x45, 0x43, 0x31,
0x49, 0x4e, 0x34, 0x62, 0x65, 0x72, 0x74, 0x33, 0x35, 0x46, 0x75, 0x73,
0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64,
0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70,
0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f, 0x76, 0x32, 0x45, 0x4e, 0x32, 0x35,
0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68,
0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f,
0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74,
0x61, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x45, 0x45, 0x52, 0x4b,
0x54, 0x5f, 0x52, 0x4b, 0x54, 0x30, 0x5f, 0x69, 0x69, 0x00, 0x5f, 0x5a,
0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x36, 0x48,
0x6d, 0x6d, 0x61, 0x5f, 0x67, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x6f, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72,
0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x4c, 0x69, 0x31, 0x36, 0x45, 0x45, 0x35, 0x73, 0x74, 0x6f, 0x72, 0x65,
0x45, 0x52, 0x41, 0x34, 0x5f, 0x4b, 0x35, 0x75, 0x69, 0x6e, 0x74, 0x34,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x33, 0x73,
0x74, 0x67, 0x45, 0x50, 0x76, 0x35, 0x75, 0x69, 0x6e, 0x74, 0x34, 0x00,
0x5f, 0x5a, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d,
0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74,
0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x33, 0x64, 0x65, 0x76, 0x69,
0x63, 0x65, 0x5f, 0x31, 0x78, 0x4e, 0x5f, 0x6e, 0x6c, 0x49, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x4e, 0x53, 0x31,
0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d,
0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74,
0x73, 0x45, 0x4e, 0x53, 0x31, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47,
0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76,
0x45, 0x4e, 0x53, 0x34, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a,
0x33, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45,
0x45, 0x4e, 0x34, 0x62, 0x65, 0x72, 0x74, 0x33, 0x35, 0x46, 0x75, 0x73,
0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64,
0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70,
0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f, 0x76, 0x32, 0x45, 0x45, 0x45, 0x76,
0x52, 0x4b, 0x54, 0x30, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f,
0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73,
0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45,
0x45, 0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65, 0x72, 0x74, 0x33, 0x35,
0x46, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68,
0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f,
0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f, 0x76, 0x32, 0x45,
0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c,
0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e,
0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65,
0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x45,
0x45, 0x52, 0x4b, 0x54, 0x5f, 0x69, 0x52, 0x4b, 0x54, 0x30, 0x5f, 0x69,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76,
0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f,
0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e,
0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45,
0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45,
0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x43, 0x31, 0x49,
0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c,
0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e,
0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65,
0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x45,
0x45, 0x50, 0x76, 0x6d, 0x69, 0x69, 0x52, 0x4b, 0x54, 0x5f, 0x69, 0x69,
0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x31, 0x53,
0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x49, 0x4e,
0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d,
0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69,
0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x33, 0x52, 0x6f,
0x77, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x62, 0x31, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76, 0x69, 0x00, 0x5f,
0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x31, 0x53, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x74, 0x61,
0x5f, 0x72, 0x6f, 0x77, 0x5f, 0x61, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x69, 0x34, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76, 0x69, 0x00, 0x5f,
0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x33, 0x53, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x6f,
0x75, 0x74, 0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73, 0x49, 0x4e, 0x53, 0x5f,
0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e,
0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x4c, 0x69, 0x30, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x4c, 0x62, 0x31, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76, 0x69, 0x00, 0x5f, 0x5a, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x62, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4e, 0x53, 0x5f, 0x33, 0x43, 0x6f, 0x6c, 0x45, 0x4c, 0x69,
0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x45,
0x43, 0x31, 0x45, 0x50, 0x76, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66,
0x6d, 0x68, 0x61, 0x32, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x63, 0x6f, 0x6c,
0x5f, 0x62, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43,
0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f,
0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69,
0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45,
0x43, 0x31, 0x45, 0x50, 0x76, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66,
0x6d, 0x68, 0x61, 0x32, 0x33, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x5f, 0x73,
0x6b, 0x65, 0x77, 0x73, 0x49, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x30, 0x45,
0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45,
0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x45, 0x43, 0x31,
0x45, 0x50, 0x76, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68,
0x61, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61,
0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x4c, 0x4e, 0x53, 0x5f, 0x32,
0x30, 0x47, 0x6d, 0x6d, 0x61, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
0x70, 0x74, 0x6f, 0x72, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x45, 0x30, 0x45,
0x4c, 0x62, 0x30, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76, 0x69, 0x00,
0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x33, 0x53, 0x6d,
0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77, 0x69, 0x74, 0x68,
0x6f, 0x75, 0x74, 0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73, 0x49, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x30, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x62, 0x31, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76, 0x69, 0x00, 0x5f, 0x5a,
0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47,
0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76,
0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f,
0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72,
0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36,
0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45,
0x4c, 0x69, 0x33, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x49, 0x4e,
0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x61, 0x49, 0x53, 0x32, 0x5f, 0x53, 0x35, 0x5f, 0x4e, 0x53,
0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x45, 0x45, 0x45, 0x45, 0x76,
0x52, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x32, 0x76, 0x32, 0x31, 0x33, 0x4c, 0x64, 0x67, 0x73, 0x74, 0x73, 0x5f,
0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x49, 0x4c, 0x69, 0x30, 0x45, 0x45,
0x34, 0x6c, 0x6f, 0x61, 0x64, 0x49, 0x4e, 0x53, 0x30, 0x5f, 0x31, 0x33,
0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b,
0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74,
0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31,
0x36, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62, 0x30,
0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x31,
0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x49,
0x53, 0x35, 0x5f, 0x53, 0x38, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x52, 0x6f,
0x77, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x62, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x76,
0x50, 0x54, 0x5f, 0x52, 0x54, 0x30, 0x5f, 0x52, 0x41, 0x54, 0x31, 0x5f,
0x5f, 0x50, 0x4b, 0x76, 0x52, 0x41, 0x54, 0x31, 0x5f, 0x5f, 0x6a, 0x00,
0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x31, 0x4c, 0x64,
0x67, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x6f, 0x72, 0x49, 0x35, 0x75,
0x69, 0x6e, 0x74, 0x34, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x36, 0x6c, 0x64,
0x67, 0x73, 0x74, 0x73, 0x45, 0x69, 0x62, 0x00, 0x5f, 0x5a, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e,
0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d,
0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69,
0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69,
0x33, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65, 0x72, 0x74,
0x33, 0x35, 0x46, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74,
0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f, 0x76,
0x32, 0x45, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d,
0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74,
0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e, 0x67,
0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x45,
0x45, 0x45, 0x45, 0x52, 0x4b, 0x54, 0x5f, 0x69, 0x52, 0x4b, 0x54, 0x30,
0x5f, 0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62,
0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x43,
0x31, 0x49, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d,
0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74,
0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e, 0x67,
0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x45,
0x45, 0x45, 0x45, 0x50, 0x76, 0x6d, 0x69, 0x69, 0x52, 0x4b, 0x54, 0x5f,
0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32,
0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45,
0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30,
0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x34, 0x6c,
0x6f, 0x61, 0x64, 0x49, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x62, 0x49, 0x53, 0x32, 0x5f,
0x53, 0x35, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x43, 0x6f, 0x6c, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45,
0x45, 0x45, 0x45, 0x45, 0x76, 0x52, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x4c, 0x64,
0x67, 0x73, 0x74, 0x73, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x49,
0x4c, 0x69, 0x30, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x49, 0x4e,
0x53, 0x30, 0x5f, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62,
0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45,
0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x62, 0x49, 0x53, 0x35, 0x5f, 0x53, 0x38, 0x5f, 0x4e,
0x53, 0x5f, 0x33, 0x43, 0x6f, 0x6c, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69,
0x34, 0x45, 0x45, 0x45, 0x76, 0x50, 0x54, 0x5f, 0x52, 0x54, 0x30, 0x5f,
0x52, 0x41, 0x54, 0x31, 0x5f, 0x5f, 0x50, 0x4b, 0x76, 0x52, 0x41, 0x54,
0x31, 0x5f, 0x5f, 0x6a, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68,
0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x33,
0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31,
0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f,
0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e,
0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45,
0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45,
0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x34, 0x6c, 0x6f,
0x61, 0x64, 0x49, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x76, 0x49, 0x53, 0x32, 0x5f, 0x53,
0x35, 0x5f, 0x4c, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x47, 0x6d, 0x6d, 0x61,
0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f,
0x6d, 0x6f, 0x64, 0x65, 0x45, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x45,
0x45, 0x45, 0x45, 0x76, 0x52, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e,
0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d,
0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31,
0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34,
0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45,
0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65, 0x72, 0x74, 0x33, 0x35, 0x46,
0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65,
0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f, 0x76, 0x32, 0x45, 0x4e,
0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74,
0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74,
0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f,
0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x45, 0x45,
0x52, 0x4b, 0x54, 0x5f, 0x69, 0x52, 0x4b, 0x54, 0x30, 0x5f, 0x69, 0x69,
0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32,
0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72,
0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45,
0x4c, 0x69, 0x33, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x32, 0x35, 0x66,
0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65,
0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e,
0x31, 0x30, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61,
0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x45, 0x45, 0x50, 0x76, 0x6d,
0x69, 0x69, 0x52, 0x4b, 0x54, 0x5f, 0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x33, 0x4c, 0x64,
0x67, 0x73, 0x74, 0x73, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x65, 0x72, 0x49,
0x4c, 0x69, 0x30, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x49, 0x4e,
0x53, 0x30, 0x5f, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c,
0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f,
0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x76, 0x49, 0x53, 0x35, 0x5f, 0x53, 0x38, 0x5f, 0x4c, 0x4e, 0x53, 0x5f,
0x32, 0x30, 0x47, 0x6d, 0x6d, 0x61, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72,
0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x45, 0x30,
0x45, 0x4c, 0x62, 0x30, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45,
0x45, 0x76, 0x50, 0x54, 0x5f, 0x52, 0x54, 0x30, 0x5f, 0x52, 0x41, 0x54,
0x31, 0x5f, 0x5f, 0x50, 0x4b, 0x76, 0x52, 0x41, 0x54, 0x31, 0x5f, 0x5f,
0x6a, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x34, 0x4d,
0x61, 0x73, 0x6b, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c,
0x69, 0x33, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65, 0x72,
0x74, 0x33, 0x35, 0x46, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c,
0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x5f,
0x76, 0x32, 0x45, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74,
0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69, 0x6e,
0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32, 0x45,
0x45, 0x45, 0x45, 0x45, 0x52, 0x4b, 0x54, 0x5f, 0x52, 0x4b, 0x54, 0x30,
0x5f, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x34,
0x4d, 0x61, 0x73, 0x6b, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f,
0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e,
0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65,
0x72, 0x74, 0x33, 0x35, 0x46, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75,
0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65,
0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73,
0x5f, 0x76, 0x32, 0x45, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64,
0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61,
0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69,
0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32,
0x45, 0x45, 0x45, 0x45, 0x45, 0x52, 0x4b, 0x54, 0x5f, 0x52, 0x4b, 0x54,
0x30, 0x5f, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x6f, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31,
0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69,
0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x45, 0x43, 0x31, 0x45, 0x50, 0x76,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76,
0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f,
0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e,
0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45,
0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45,
0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x36, 0x63, 0x6f,
0x6d, 0x6d, 0x69, 0x74, 0x49, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d,
0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x49, 0x53, 0x32,
0x5f, 0x53, 0x35, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45,
0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31,
0x45, 0x45, 0x45, 0x45, 0x45, 0x76, 0x52, 0x54, 0x5f, 0x00, 0x5f, 0x5a,
0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x33, 0x53, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75,
0x74, 0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73, 0x49, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c,
0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31,
0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x69, 0x30, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x62, 0x31, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x45, 0x35, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x49, 0x4c, 0x69, 0x32, 0x45,
0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x4b, 0x35, 0x75, 0x69,
0x6e, 0x74, 0x34, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61,
0x32, 0x33, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x6b, 0x65, 0x77,
0x73, 0x49, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x30, 0x45, 0x4c, 0x69, 0x34,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x4c, 0x62, 0x30,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x45, 0x32, 0x32, 0x63, 0x6f, 0x6d,
0x70, 0x75, 0x74, 0x65, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x70,
0x6f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x73, 0x49, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f,
0x6a, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x33, 0x73,
0x74, 0x73, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41,
0x54, 0x5f, 0x5f, 0x6a, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x4b, 0x35, 0x75,
0x69, 0x6e, 0x74, 0x34, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68,
0x61, 0x34, 0x73, 0x74, 0x73, 0x5f, 0x49, 0x35, 0x75, 0x69, 0x6e, 0x74,
0x34, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x30,
0x5f, 0x5f, 0x6a, 0x52, 0x41, 0x54, 0x30, 0x5f, 0x5f, 0x4b, 0x54, 0x5f,
0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32,
0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c,
0x62, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x36, 0x63, 0x6f, 0x6d,
0x6d, 0x69, 0x74, 0x49, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x62, 0x49, 0x53, 0x32, 0x5f,
0x53, 0x35, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x43, 0x6f, 0x6c, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45,
0x45, 0x45, 0x45, 0x45, 0x76, 0x52, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x33, 0x53, 0x6d, 0x65, 0x6d, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74,
0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73, 0x49, 0x4e, 0x53, 0x5f, 0x39, 0x43,
0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f,
0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x36,
0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x30, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62,
0x31, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x45,
0x35, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x49, 0x4c, 0x69, 0x34, 0x45, 0x45,
0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x4b, 0x35, 0x75, 0x69, 0x6e,
0x74, 0x34, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32,
0x33, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77,
0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73,
0x49, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x30, 0x45, 0x4c, 0x69, 0x34, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x4c, 0x62, 0x30, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x45, 0x32, 0x32, 0x63, 0x6f, 0x6d, 0x70,
0x75, 0x74, 0x65, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x70, 0x6f,
0x69, 0x6e, 0x74, 0x65, 0x72, 0x73, 0x49, 0x4c, 0x69, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x6a,
0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32,
0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x71, 0x6b, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72,
0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x36,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45,
0x4c, 0x69, 0x33, 0x45, 0x45, 0x36, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
0x49, 0x4e, 0x53, 0x5f, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x76, 0x49, 0x53, 0x32, 0x5f, 0x53, 0x35, 0x5f,
0x4c, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x47, 0x6d, 0x6d, 0x61, 0x5f, 0x64,
0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x6d, 0x6f,
0x64, 0x65, 0x45, 0x30, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x45, 0x45, 0x45,
0x45, 0x76, 0x52, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x32, 0x33, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x6b,
0x65, 0x77, 0x73, 0x49, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69,
0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x30, 0x45, 0x4c,
0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x62, 0x31, 0x45, 0x4c,
0x62, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x45, 0x35, 0x73, 0x74,
0x6f, 0x72, 0x65, 0x49, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x76, 0x52,
0x41, 0x54, 0x5f, 0x5f, 0x4b, 0x35, 0x75, 0x69, 0x6e, 0x74, 0x34, 0x00,
0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x33, 0x53, 0x6d,
0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x77, 0x69, 0x74, 0x68,
0x6f, 0x75, 0x74, 0x5f, 0x73, 0x6b, 0x65, 0x77, 0x73, 0x49, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x30, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x62, 0x31, 0x45, 0x4c, 0x62, 0x30, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x45, 0x32, 0x32, 0x63, 0x6f, 0x6d, 0x70, 0x75, 0x74, 0x65,
0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74,
0x65, 0x72, 0x73, 0x49, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x6a, 0x00, 0x5f, 0x5a,
0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x31, 0x53, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x74, 0x61, 0x5f,
0x72, 0x6f, 0x77, 0x5f, 0x61, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45,
0x45, 0x4c, 0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x34, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x52, 0x41, 0x32,
0x5f, 0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65,
0x6e, 0x74, 0x5f, 0x61, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x33,
0x52, 0x6f, 0x77, 0x45, 0x45, 0x45, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x32, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x76, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x63, 0x6f,
0x6c, 0x5f, 0x62, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45,
0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x52, 0x41, 0x31, 0x5f, 0x4e,
0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74,
0x5f, 0x62, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x43, 0x6f,
0x6c, 0x45, 0x45, 0x45, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x76, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72,
0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x4c, 0x4e, 0x53, 0x5f,
0x32, 0x30, 0x47, 0x6d, 0x6d, 0x61, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72,
0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x45, 0x30,
0x45, 0x4c, 0x62, 0x30, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x45,
0x52, 0x41, 0x33, 0x5f, 0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61,
0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x62, 0x49, 0x53, 0x31, 0x5f, 0x4e,
0x53, 0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45, 0x45, 0x45, 0x69, 0x00, 0x5f,
0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66, 0x74,
0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e,
0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53,
0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f,
0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x43, 0x31, 0x49,
0x4e, 0x34, 0x62, 0x65, 0x72, 0x74, 0x33, 0x35, 0x46, 0x75, 0x73, 0x65,
0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f,
0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x73, 0x5f, 0x76, 0x32, 0x45, 0x45, 0x45, 0x52, 0x4b,
0x54, 0x5f, 0x50, 0x76, 0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66,
0x6d, 0x68, 0x61, 0x31, 0x37, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x5f, 0x61,
0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x74,
0x4c, 0x69, 0x31, 0x45, 0x45, 0x35, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x49,
0x4e, 0x53, 0x5f, 0x32, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e,
0x74, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f,
0x72, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x30, 0x5f,
0x5f, 0x41, 0x54, 0x31, 0x5f, 0x5f, 0x54, 0x5f, 0x62, 0x00, 0x5f, 0x5a,
0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x35, 0x63, 0x6c, 0x65, 0x61, 0x72,
0x49, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65,
0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74,
0x6f, 0x72, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x32,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x30,
0x5f, 0x5f, 0x41, 0x54, 0x31, 0x5f, 0x5f, 0x54, 0x5f, 0x00, 0x5f, 0x5a,
0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x34, 0x67, 0x65, 0x6d, 0x6d, 0x49,
0x4e, 0x53, 0x5f, 0x32, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e,
0x74, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f,
0x72, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31,
0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x49,
0x53, 0x32, 0x5f, 0x4e, 0x53, 0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45, 0x45,
0x45, 0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65,
0x6e, 0x74, 0x5f, 0x62, 0x49, 0x53, 0x32, 0x5f, 0x4e, 0x53, 0x5f, 0x33,
0x43, 0x6f, 0x6c, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x32, 0x5f, 0x5f, 0x41,
0x54, 0x33, 0x5f, 0x5f, 0x54, 0x5f, 0x52, 0x41, 0x54, 0x32, 0x5f, 0x5f,
0x4b, 0x54, 0x30, 0x5f, 0x52, 0x41, 0x54, 0x33, 0x5f, 0x5f, 0x4b, 0x54,
0x31, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37,
0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32,
0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e,
0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53,
0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d,
0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45,
0x4e, 0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45,
0x45, 0x36, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x45, 0x52, 0x41, 0x32,
0x5f, 0x41, 0x31, 0x5f, 0x4b, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x46, 0x72,
0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d,
0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x53, 0x31, 0x5f, 0x45, 0x45,
0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f,
0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45,
0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f,
0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53,
0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x31,
0x30, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x49,
0x4e, 0x53, 0x5f, 0x34, 0x4d, 0x61, 0x73, 0x6b, 0x49, 0x53, 0x31, 0x5f,
0x53, 0x34, 0x5f, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x45, 0x76,
0x52, 0x4b, 0x54, 0x5f, 0x00, 0x5f, 0x5a, 0x4e, 0x4b, 0x34, 0x66, 0x6d,
0x68, 0x61, 0x34, 0x4d, 0x61, 0x73, 0x6b, 0x49, 0x4e, 0x53, 0x5f, 0x32,
0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x45, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x38, 0x69, 0x73, 0x5f,
0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x69, 0x69, 0x69, 0x69, 0x00, 0x5f,
0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66, 0x74,
0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e,
0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53,
0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f,
0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x36, 0x72, 0x65,
0x64, 0x75, 0x63, 0x65, 0x49, 0x4e, 0x53, 0x5f, 0x34, 0x4d, 0x61, 0x78,
0x5f, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x32, 0x5f, 0x66, 0x00, 0x5f,
0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66, 0x74,
0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e,
0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53,
0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f,
0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x37, 0x72, 0x65,
0x64, 0x75, 0x63, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x34, 0x4d, 0x61,
0x78, 0x5f, 0x45, 0x45, 0x45, 0x66, 0x76, 0x00, 0x5f, 0x5a, 0x4e, 0x34,
0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78,
0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f,
0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72,
0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31,
0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69,
0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76,
0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f, 0x31, 0x31, 0x47,
0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x31, 0x30, 0x72, 0x65, 0x64, 0x75,
0x63, 0x65, 0x5f, 0x31, 0x78, 0x34, 0x49, 0x4e, 0x53, 0x5f, 0x34, 0x4d,
0x61, 0x78, 0x5f, 0x45, 0x45, 0x45, 0x66, 0x76, 0x00, 0x5f, 0x5a, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61,
0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74,
0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f,
0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61,
0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x32,
0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f, 0x31, 0x31,
0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x33, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x32, 0x45,
0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x37, 0x73, 0x68, 0x75, 0x66,
0x66, 0x6c, 0x65, 0x45, 0x52, 0x41, 0x32, 0x5f, 0x66, 0x66, 0x00, 0x5f,
0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66, 0x74,
0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45, 0x4e,
0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74,
0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53,
0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36, 0x5f,
0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x39, 0x61, 0x70,
0x70, 0x6c, 0x79, 0x5f, 0x65, 0x78, 0x70, 0x45, 0x52, 0x41, 0x32, 0x5f,
0x4b, 0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37,
0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32,
0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e,
0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53,
0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d,
0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45,
0x4e, 0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45,
0x45, 0x36, 0x72, 0x65, 0x64, 0x75, 0x63, 0x65, 0x49, 0x4e, 0x53, 0x5f,
0x34, 0x53, 0x75, 0x6d, 0x5f, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x32,
0x5f, 0x66, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37,
0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32,
0x32, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e,
0x65, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53,
0x31, 0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d,
0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45,
0x4e, 0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74,
0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45,
0x45, 0x37, 0x72, 0x65, 0x64, 0x75, 0x63, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x34, 0x53, 0x75, 0x6d, 0x5f, 0x45, 0x45, 0x45, 0x66, 0x76, 0x00,
0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f, 0x66,
0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f,
0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e,
0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33,
0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x45,
0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f,
0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f, 0x4e,
0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53, 0x36,
0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30,
0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45, 0x4c,
0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x31, 0x30,
0x72, 0x65, 0x64, 0x75, 0x63, 0x65, 0x5f, 0x31, 0x78, 0x34, 0x49, 0x4e,
0x53, 0x5f, 0x34, 0x53, 0x75, 0x6d, 0x5f, 0x45, 0x45, 0x45, 0x66, 0x76,
0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53, 0x6f,
0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32, 0x56,
0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53,
0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49,
0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69,
0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c,
0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45,
0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31, 0x5f,
0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65, 0x6d,
0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e, 0x53,
0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34,
0x30, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32, 0x45,
0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45, 0x35,
0x73, 0x63, 0x61, 0x6c, 0x65, 0x45, 0x52, 0x41, 0x32, 0x5f, 0x4b, 0x66,
0x00, 0x5f, 0x5a, 0x4e, 0x4b, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x37, 0x53,
0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x32,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e,
0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f,
0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c,
0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x45, 0x45, 0x4e, 0x53, 0x5f, 0x31, 0x34, 0x4b, 0x65, 0x72, 0x6e, 0x65,
0x6c, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x5f, 0x49, 0x53, 0x31,
0x5f, 0x4e, 0x53, 0x5f, 0x32, 0x76, 0x32, 0x31, 0x33, 0x47, 0x6d, 0x65,
0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x71, 0x6b, 0x76, 0x45, 0x4e,
0x53, 0x36, 0x5f, 0x31, 0x31, 0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x6f, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x34, 0x30, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x31, 0x45,
0x4c, 0x69, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x6a, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c, 0x69, 0x33, 0x45, 0x45, 0x45, 0x45,
0x34, 0x70, 0x61, 0x63, 0x6b, 0x49, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x32, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x41, 0x54,
0x30, 0x5f, 0x5f, 0x4e, 0x53, 0x5f, 0x31, 0x30, 0x46, 0x72, 0x61, 0x67,
0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x49, 0x53, 0x31, 0x5f, 0x4e, 0x53,
0x5f, 0x33, 0x52, 0x6f, 0x77, 0x45, 0x45, 0x45, 0x00, 0x5f, 0x5a, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x37, 0x43, 0x6c, 0x65, 0x61, 0x72,
0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72,
0x49, 0x74, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x35, 0x61, 0x70, 0x70, 0x6c,
0x79, 0x49, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x46, 0x72, 0x61, 0x67, 0x6d,
0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61,
0x74, 0x6f, 0x72, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c,
0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72,
0x61, 0x69, 0x74, 0x73, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x33, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x30, 0x5f, 0x5f,
0x41, 0x54, 0x31, 0x5f, 0x5f, 0x54, 0x5f, 0x62, 0x00, 0x5f, 0x5a, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x31, 0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31,
0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36,
0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39,
0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53,
0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32,
0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x45,
0x35, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x49, 0x4c, 0x69, 0x32, 0x45, 0x4c,
0x69, 0x33, 0x45, 0x45, 0x45, 0x76, 0x52, 0x41, 0x54, 0x5f, 0x5f, 0x41,
0x54, 0x30, 0x5f, 0x5f, 0x4b, 0x4e, 0x53, 0x5f, 0x32, 0x30, 0x46, 0x72,
0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x6d,
0x75, 0x6c, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x53, 0x31, 0x5f, 0x45, 0x45,
0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x4b, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x31,
0x31, 0x53, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f,
0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f,
0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36,
0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74,
0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69,
0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x69, 0x34, 0x45, 0x45, 0x45, 0x45, 0x34, 0x6c, 0x6f, 0x61, 0x64, 0x45,
0x52, 0x41, 0x32, 0x5f, 0x35, 0x75, 0x69, 0x6e, 0x74, 0x34, 0x00, 0x5f,
0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x31,
0x47, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x49,
0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68,
0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78,
0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73,
0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c,
0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61,
0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c,
0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69,
0x34, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x45, 0x43, 0x31, 0x49,
0x4e, 0x34, 0x62, 0x65, 0x72, 0x74, 0x33, 0x35, 0x46, 0x75, 0x73, 0x65,
0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f,
0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x73, 0x5f, 0x76, 0x32, 0x45, 0x4e, 0x32, 0x35, 0x66,
0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65,
0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e,
0x31, 0x30, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61,
0x49, 0x4c, 0x69, 0x32, 0x45, 0x45, 0x45, 0x45, 0x45, 0x52, 0x4b, 0x54,
0x5f, 0x52, 0x4b, 0x54, 0x30, 0x5f, 0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e,
0x34, 0x66, 0x6d, 0x68, 0x61, 0x32, 0x76, 0x32, 0x31, 0x36, 0x48, 0x6d,
0x6d, 0x61, 0x5f, 0x67, 0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x6f, 0x49, 0x4e, 0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74,
0x61, 0x5f, 0x68, 0x6d, 0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x31, 0x36, 0x78, 0x31, 0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61,
0x69, 0x74, 0x73, 0x45, 0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f,
0x74, 0x69, 0x6c, 0x65, 0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f,
0x6c, 0x74, 0x61, 0x45, 0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36,
0x34, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45,
0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x31,
0x45, 0x4c, 0x69, 0x34, 0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c,
0x69, 0x31, 0x36, 0x45, 0x45, 0x43, 0x31, 0x49, 0x4e, 0x34, 0x62, 0x65,
0x72, 0x74, 0x33, 0x35, 0x46, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75,
0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65,
0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73,
0x5f, 0x76, 0x32, 0x45, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64,
0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61,
0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x30, 0x53, 0x69,
0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x74, 0x61, 0x49, 0x4c, 0x69, 0x32,
0x45, 0x45, 0x45, 0x45, 0x45, 0x52, 0x4b, 0x54, 0x5f, 0x52, 0x4b, 0x54,
0x30, 0x5f, 0x69, 0x69, 0x00, 0x5f, 0x5a, 0x4e, 0x34, 0x66, 0x6d, 0x68,
0x61, 0x32, 0x76, 0x32, 0x31, 0x36, 0x48, 0x6d, 0x6d, 0x61, 0x5f, 0x67,
0x6d, 0x65, 0x6d, 0x5f, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6f, 0x49, 0x4e,
0x53, 0x5f, 0x33, 0x31, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x5f, 0x68, 0x6d,
0x6d, 0x61, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x31, 0x36, 0x78, 0x31,
0x36, 0x78, 0x31, 0x36, 0x5f, 0x74, 0x72, 0x61, 0x69, 0x74, 0x73, 0x45,
0x4e, 0x53, 0x5f, 0x39, 0x43, 0x74, 0x61, 0x5f, 0x74, 0x69, 0x6c, 0x65,
0x5f, 0x49, 0x4e, 0x53, 0x5f, 0x35, 0x56, 0x6f, 0x6c, 0x74, 0x61, 0x45,
0x4c, 0x69, 0x33, 0x32, 0x45, 0x4c, 0x69, 0x36, 0x34, 0x45, 0x4c, 0x69,
0x36, 0x34, 0x45, 0x4c, 0x69, 0x34, 0x30, 0x45, 0x4c, 0x69, 0x36, 0x34,
0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x34,
0x45, 0x45, 0x45, 0x4c, 0x69, 0x31, 0x45, 0x4c, 0x69, 0x31, 0x36, 0x45,
0x45, 0x35, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x45, 0x52, 0x41, 0x32, 0x5f,
0x4b, 0x35, 0x75, 0x69, 0x6e, 0x74, 0x34, 0x69, 0x00, 0x63, 0x20, 0x00,
0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x01, 0xfb, 0x0e, 0x0a,
0x00, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x09, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00,
0x03, 0xf1, 0x20, 0x01, 0x03, 0x13, 0x02, 0x20, 0x01, 0xf3, 0x03, 0x02,
0x02, 0x20, 0x01, 0xf1, 0xf3, 0xed, 0xf4, 0xf1, 0x03, 0x6d, 0x02, 0x10,
0x01, 0x03, 0x18, 0x02, 0x10, 0x01, 0x03, 0xf4, 0x00, 0x02, 0x10, 0x01,
0x03, 0x45, 0x02, 0x10, 0x01, 0x03, 0x49, 0x02, 0x10, 0x01, 0x03, 0x0c,
0x02, 0x10, 0x01, 0x03, 0x2b, 0x02, 0x20, 0x01, 0x03, 0x68, 0x02, 0x20,
0x01, 0x03, 0x23, 0x02, 0x10, 0x01, 0x03, 0xc6, 0x00, 0x02, 0xc0, 0x00,
0x01, 0x03, 0x6a, 0x02, 0xd0, 0x00, 0x01, 0x03, 0x92, 0x7f, 0x02, 0x10,
0x01, 0xf1, 0xf7, 0x03, 0xe9, 0x00, 0x02, 0x10, 0x01, 0x03, 0x99, 0x7f,
0x02, 0x10, 0x01, 0x03, 0xf8, 0x00, 0x02, 0x10, 0x01, 0x03, 0xff, 0x7e,
0x02, 0x10, 0x01, 0x03, 0x0a, 0x02, 0x10, 0x01, 0x03, 0x7a, 0x02, 0x10,
0x01, 0x03, 0xfd, 0x00, 0x02, 0x10, 0x01, 0x03, 0x8b, 0x7f, 0x02, 0x10,
0x01, 0x03, 0x26, 0x02, 0x10, 0x01, 0x03, 0x53, 0x02, 0x10, 0x01, 0xf7,
0x03, 0x2e, 0x02, 0x10, 0x01, 0x03, 0x54, 0x02, 0x10, 0x01, 0x03, 0xc8,
0x00, 0x02, 0x10, 0x01, 0x03, 0x68, 0x02, 0x10, 0x01, 0x03, 0x6e, 0x02,
0x10, 0x01, 0x03, 0x16, 0x02, 0x10, 0x01, 0x03, 0x6a, 0x02, 0x20, 0x01,
0x03, 0x2b, 0x02, 0x10, 0x01, 0x03, 0x6b, 0x02, 0x10, 0x01, 0xf0, 0xf1,
0xed, 0x03, 0x1c, 0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0x03,
0x0d, 0x02, 0x10, 0x01, 0xf1, 0x03, 0x0c, 0x02, 0x20, 0x01, 0x03, 0x7c,
0x02, 0x20, 0x01, 0xed, 0xf5, 0x03, 0x13, 0x02, 0x10, 0x01, 0xf3, 0x03,
0x35, 0x02, 0x10, 0x01, 0x03, 0x4f, 0x02, 0x10, 0x01, 0xec, 0x03, 0x35,
0x02, 0x10, 0x01, 0x03, 0x4b, 0x02, 0x10, 0x01, 0x03, 0x16, 0x02, 0x10,
0x01, 0x03, 0x6a, 0x02, 0x10, 0x01, 0xf0, 0x03, 0x17, 0x02, 0x10, 0x01,
0x03, 0x69, 0x02, 0x10, 0x01, 0x03, 0x13, 0x02, 0x10, 0x01, 0x03, 0x12,
0x02, 0x10, 0x01, 0x03, 0x6e, 0x02, 0x10, 0x01, 0x03, 0x10, 0x02, 0x10,
0x01, 0x03, 0x6c, 0x02, 0x10, 0x01, 0x03, 0x14, 0x02, 0x10, 0x01, 0x03,
0x19, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1d, 0x02,
0x10, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01,
0x03, 0x16, 0x02, 0x20, 0x01, 0x03, 0x03, 0x02, 0xb0, 0x01, 0x01, 0xf5,
0xf2, 0xeb, 0xf0, 0x03, 0x01, 0x02, 0x20, 0x01, 0x03, 0x25, 0x02, 0x20,
0x01, 0x03, 0x70, 0x02, 0x10, 0x01, 0x03, 0x7a, 0x02, 0x10, 0x01, 0xf7,
0xeb, 0x03, 0x20, 0x02, 0x20, 0x01, 0x03, 0x6c, 0x02, 0x10, 0x01, 0x03,
0x15, 0x02, 0x10, 0x01, 0x03, 0x6f, 0x02, 0x10, 0x01, 0x03, 0x13, 0x02,
0x20, 0x01, 0x03, 0x79, 0x02, 0x20, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01,
0x03, 0x14, 0x02, 0x20, 0x01, 0x03, 0x0c, 0x02, 0x10, 0x01, 0x03, 0x76,
0x02, 0x10, 0x01, 0x03, 0x1b, 0x02, 0x10, 0x01, 0x03, 0x66, 0x02, 0x10,
0x01, 0x03, 0x18, 0x02, 0x10, 0x01, 0x03, 0x69, 0x02, 0x20, 0x01, 0xf1,
0x03, 0x0e, 0x02, 0x10, 0x01, 0x03, 0x76, 0x02, 0x10, 0x01, 0x03, 0x15,
0x02, 0x10, 0x01, 0x03, 0x6b, 0x02, 0x10, 0x01, 0xf3, 0xf3, 0xf3, 0x03,
0x36, 0x02, 0x10, 0x01, 0x03, 0x4b, 0x02, 0x10, 0x01, 0x03, 0xd2, 0x00,
0x02, 0x10, 0x01, 0x03, 0x67, 0x02, 0x10, 0x01, 0x03, 0x11, 0x02, 0x10,
0x01, 0x03, 0x42, 0x02, 0x10, 0x01, 0x03, 0xc2, 0x00, 0x02, 0x10, 0x01,
0x03, 0xb4, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xd4, 0x00, 0x02, 0x10, 0x01,
0x03, 0xb9, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x18, 0x02, 0x10, 0x01, 0x03,
0xc1, 0x00, 0x02, 0x10, 0x01, 0x03, 0xda, 0x01, 0x02, 0x10, 0x01, 0x03,
0xd2, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x58, 0x02, 0x10, 0x01, 0x03, 0x31,
0x02, 0x10, 0x01, 0x03, 0x53, 0x02, 0x10, 0x01, 0xf3, 0xf3, 0x03, 0x07,
0x02, 0x20, 0x01, 0x03, 0xfa, 0x01, 0x02, 0x10, 0x01, 0x03, 0x97, 0x7e,
0x02, 0x10, 0x01, 0x03, 0x9c, 0x02, 0x02, 0x10, 0x01, 0x03, 0xfa, 0x7d,
0x02, 0x10, 0x01, 0x03, 0x60, 0x02, 0x10, 0x01, 0x03, 0x13, 0x02, 0x10,
0x01, 0x03, 0xaf, 0x01, 0x02, 0x10, 0x01, 0xf6, 0x03, 0xd3, 0x7e, 0x02,
0x10, 0x01, 0x03, 0xdb, 0x01, 0x02, 0x10, 0x01, 0x03, 0x59, 0x02, 0x10,
0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03,
0x09, 0x02, 0x20, 0x01, 0x03, 0x13, 0x02, 0x20, 0x01, 0xf4, 0x03, 0x09,
0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x15, 0x02, 0x10,
0x01, 0x03, 0x6b, 0x02, 0x10, 0x01, 0x03, 0x1c, 0x02, 0x10, 0x01, 0x03,
0x6d, 0x02, 0x10, 0x01, 0x03, 0x87, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xf9,
0x01, 0x02, 0x10, 0x01, 0x03, 0x90, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x88,
0x02, 0x02, 0x10, 0x01, 0x03, 0x27, 0x02, 0x10, 0x01, 0x03, 0x59, 0x02,
0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01,
0x03, 0x1c, 0x02, 0x10, 0x01, 0x03, 0x64, 0x02, 0x10, 0x01, 0x03, 0x92,
0x7c, 0x02, 0x10, 0x01, 0x03, 0xf7, 0x03, 0x02, 0x10, 0x01, 0x03, 0x8a,
0x7c, 0x02, 0x10, 0x01, 0x03, 0xf6, 0x03, 0x02, 0x10, 0x01, 0x03, 0xbc,
0x7e, 0x02, 0x10, 0x01, 0x03, 0xbc, 0x03, 0x02, 0x10, 0x01, 0x03, 0x93,
0x7a, 0x02, 0x10, 0x01, 0x03, 0x8d, 0x04, 0x02, 0x10, 0x01, 0x03, 0xf5,
0x7b, 0x02, 0x20, 0x01, 0xf1, 0x03, 0x92, 0x04, 0x02, 0x10, 0x01, 0x03,
0xef, 0x7b, 0x02, 0x10, 0x01, 0x03, 0x91, 0x04, 0x02, 0x10, 0x01, 0x03,
0xe3, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xa6, 0x04, 0x02, 0x10, 0x01, 0x03,
0xdc, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xa4, 0x04, 0x02, 0x10, 0x01, 0x03,
0xb8, 0x03, 0x02, 0x10, 0x01, 0x03, 0xd8, 0x78, 0x02, 0x10, 0x01, 0x03,
0xf9, 0x03, 0x02, 0x10, 0x01, 0x03, 0xba, 0x03, 0x02, 0x10, 0x01, 0x03,
0xc6, 0x7c, 0x02, 0x10, 0x01, 0x03, 0xb5, 0x03, 0x02, 0x10, 0x01, 0x03,
0x15, 0x02, 0x10, 0x01, 0x03, 0xce, 0x7c, 0x02, 0x10, 0x01, 0x03, 0xba,
0x03, 0x02, 0x10, 0x01, 0xf7, 0x03, 0xbe, 0x7c, 0x02, 0x10, 0x01, 0x03,
0xca, 0x03, 0x02, 0x10, 0x01, 0x03, 0xbf, 0x7c, 0x02, 0x10, 0x01, 0x03,
0x09, 0x02, 0x20, 0x01, 0x03, 0x32, 0x02, 0x20, 0x01, 0x03, 0xd4, 0x02,
0x02, 0x10, 0x01, 0x03, 0xb2, 0x7d, 0x02, 0x10, 0x01, 0x03, 0x51, 0x02,
0x10, 0x01, 0x03, 0x35, 0x02, 0x10, 0x01, 0x03, 0x13, 0x02, 0x10, 0x01,
0x03, 0xb8, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xdb, 0x00, 0x02, 0x10, 0x01,
0x03, 0x73, 0x02, 0x20, 0x01, 0x03, 0x13, 0x02, 0x10, 0x01, 0x03, 0x2d,
0x02, 0x10, 0x01, 0x03, 0x60, 0x02, 0x10, 0x01, 0x03, 0x22, 0x02, 0x10,
0x01, 0x03, 0xab, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xde, 0x00, 0x02, 0x10,
0x01, 0x03, 0x5b, 0x02, 0x10, 0x01, 0x03, 0x30, 0x02, 0x10, 0x01, 0x03,
0xc0, 0x00, 0x02, 0x10, 0x01, 0x03, 0x4b, 0x02, 0x10, 0x01, 0x03, 0x52,
0x02, 0x10, 0x01, 0x03, 0x1a, 0x02, 0x10, 0x01, 0x03, 0xce, 0x00, 0x02,
0x10, 0x01, 0x03, 0xa9, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xeb, 0x00, 0x02,
0x10, 0x01, 0x03, 0xbd, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xc8, 0x00, 0x02,
0x10, 0x01, 0x03, 0x9b, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xef, 0x00, 0x02,
0x10, 0x01, 0x03, 0x9a, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xc8, 0x00, 0x02,
0x10, 0x01, 0x03, 0x43, 0x02, 0x10, 0x01, 0x03, 0xe0, 0x00, 0x02, 0x10,
0x01, 0x03, 0xb4, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x2e, 0x02, 0x10, 0x01,
0x03, 0xb5, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xf3, 0x00, 0x02, 0x10, 0x01,
0x03, 0x98, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xed, 0x00, 0x02, 0x10, 0x01,
0x03, 0x9c, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x4b, 0x02, 0x10, 0x01, 0x03,
0xc9, 0x00, 0x02, 0x10, 0x01, 0x03, 0x77, 0x02, 0x10, 0x01, 0x03, 0x77,
0x02, 0x10, 0x01, 0x03, 0xf6, 0x00, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02,
0x10, 0x01, 0x03, 0x95, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x77, 0x02, 0x10,
0x01, 0x03, 0xfd, 0x00, 0x02, 0x10, 0x01, 0x03, 0x70, 0x02, 0x10, 0x01,
0x03, 0x9e, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xeb, 0x00, 0x02, 0x10, 0x01,
0x03, 0x10, 0x02, 0x10, 0x01, 0x03, 0x69, 0x02, 0x10, 0x01, 0x03, 0x10,
0x02, 0x10, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0x03, 0x17, 0x02, 0x10,
0x01, 0x03, 0x72, 0x02, 0x10, 0x01, 0xf6, 0x03, 0x39, 0x02, 0x10, 0x01,
0xf4, 0x03, 0x4b, 0x02, 0x10, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0x03,
0x3f, 0x02, 0x20, 0x01, 0x03, 0x4a, 0x02, 0x10, 0x01, 0x03, 0x29, 0x02,
0x20, 0x01, 0x03, 0x15, 0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x20, 0x01,
0x03, 0x08, 0x02, 0x20, 0x01, 0x03, 0x0d, 0x02, 0x10, 0x01, 0xea, 0x03,
0x08, 0x02, 0x20, 0x01, 0xf4, 0x03, 0x03, 0x02, 0x20, 0x01, 0xf4, 0x03,
0x03, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x05, 0x02,
0xc0, 0x00, 0x01, 0xf4, 0x03, 0x24, 0x02, 0x10, 0x01, 0x03, 0x61, 0x02,
0x10, 0x01, 0x03, 0x2d, 0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01,
0x03, 0xf4, 0x7e, 0x02, 0x20, 0x01, 0x03, 0x9a, 0x01, 0x02, 0x20, 0x01,
0x03, 0xaf, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xc4, 0x01, 0x02, 0x10, 0x01,
0x03, 0xc1, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xa3, 0x01, 0x02, 0x10, 0x01,
0x03, 0x2a, 0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0x03, 0xf4,
0x7e, 0x02, 0x10, 0x01, 0x03, 0x9a, 0x01, 0x02, 0x10, 0x01, 0x03, 0xed,
0x7e, 0x02, 0x10, 0x01, 0xea, 0x03, 0x8b, 0x01, 0x02, 0x10, 0x01, 0x03,
0x0e, 0x02, 0x20, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0x03, 0xfb, 0x7e,
0x02, 0x10, 0x01, 0x03, 0xeb, 0x00, 0x02, 0x10, 0x01, 0x03, 0x28, 0x02,
0x10, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0x03, 0xfc, 0x7e, 0x02, 0x10,
0x01, 0x03, 0x92, 0x01, 0x02, 0x20, 0x01, 0x03, 0x73, 0x02, 0x20, 0x01,
0x03, 0xe8, 0x7d, 0x02, 0x10, 0x01, 0x03, 0x81, 0x02, 0x02, 0x10, 0x01,
0x03, 0x25, 0x02, 0x10, 0x01, 0x03, 0xf2, 0x7e, 0x02, 0x10, 0x01, 0x03,
0x81, 0x01, 0x02, 0x10, 0x01, 0x03, 0x6d, 0x02, 0x10, 0x01, 0x03, 0x56,
0x02, 0x10, 0x01, 0x03, 0xcb, 0x00, 0x02, 0x10, 0x01, 0x03, 0x73, 0x02,
0x10, 0x01, 0x03, 0x45, 0x02, 0x10, 0x01, 0x03, 0xa3, 0x7e, 0x02, 0x10,
0x01, 0x03, 0xa6, 0x02, 0x02, 0x10, 0x01, 0x03, 0xf2, 0x7e, 0x02, 0x10,
0x01, 0x03, 0xea, 0x7e, 0x02, 0x20, 0x01, 0x03, 0x97, 0x02, 0x02, 0x20,
0x01, 0x03, 0x81, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x8d, 0x01, 0x02, 0x10,
0x01, 0x03, 0xb9, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x3a, 0x02, 0x10, 0x01,
0x03, 0x6f, 0x02, 0x10, 0x01, 0x03, 0x1f, 0x02, 0x10, 0x01, 0x03, 0x73,
0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x10,
0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x03, 0x0a, 0x02, 0x10, 0x01, 0x03,
0xc4, 0x77, 0x02, 0x10, 0x01, 0x03, 0xbd, 0x08, 0x02, 0x10, 0x01, 0xea,
0x03, 0xca, 0x77, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03,
0xea, 0x01, 0x02, 0x10, 0x01, 0x03, 0xc5, 0x06, 0x02, 0x10, 0x01, 0xf3,
0x03, 0x1f, 0x02, 0x10, 0x01, 0x03, 0xa7, 0x77, 0x02, 0x10, 0x01, 0xf7,
0x03, 0xb3, 0x08, 0x02, 0x10, 0x01, 0x03, 0xc6, 0x77, 0x02, 0x10, 0x01,
0x03, 0xfe, 0x01, 0x02, 0x10, 0x01, 0x03, 0x8a, 0x7e, 0x02, 0x10, 0x01,
0x03, 0xf7, 0x01, 0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0x03,
0x8f, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xff, 0x01, 0x02, 0x10, 0x01, 0x03,
0x76, 0x02, 0x10, 0x01, 0x03, 0x94, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x79,
0x02, 0x10, 0x01, 0x03, 0xc0, 0x08, 0x02, 0x10, 0x01, 0x03, 0xbf, 0x79,
0x02, 0x10, 0x01, 0x03, 0xc6, 0x06, 0x02, 0x10, 0x01, 0x03, 0xc9, 0x77,
0x02, 0x10, 0x01, 0x03, 0xbd, 0x01, 0x02, 0x10, 0x01, 0x03, 0xf6, 0x06,
0x02, 0x10, 0x01, 0x03, 0x11, 0x02, 0x10, 0x01, 0x03, 0xaf, 0x79, 0x02,
0x10, 0x01, 0x03, 0xbd, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x88, 0x07, 0x02,
0x10, 0x01, 0x03, 0x8a, 0x79, 0x02, 0x10, 0x01, 0xf6, 0x03, 0x70, 0x02,
0x10, 0x01, 0x03, 0x19, 0x02, 0x10, 0x01, 0xf6, 0x03, 0xdc, 0x06, 0x02,
0x10, 0x01, 0xf4, 0xf7, 0x03, 0x09, 0x02, 0x20, 0x01, 0xf1, 0x03, 0x16,
0x02, 0x10, 0x01, 0x03, 0x75, 0x02, 0x20, 0x01, 0xf3, 0xec, 0xf3, 0x03,
0x14, 0x02, 0x10, 0x01, 0x03, 0x6f, 0x02, 0x10, 0x01, 0xf0, 0x03, 0x80,
0x06, 0x02, 0x10, 0x01, 0x03, 0x8a, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x0a,
0x02, 0x10, 0x01, 0x03, 0x02, 0x02, 0x20, 0x01, 0xf0, 0xf7, 0xf2, 0xf2,
0xea, 0xf2, 0xf4, 0xed, 0xea, 0x03, 0x0d, 0x02, 0x10, 0x01, 0xf2, 0x03,
0x7a, 0x02, 0x10, 0x01, 0xed, 0xea, 0xf7, 0xf7, 0xea, 0xf2, 0x03, 0x75,
0x02, 0x10, 0x01, 0x03, 0x10, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10,
0x01, 0xf5, 0x03, 0x6f, 0x02, 0x10, 0x01, 0x03, 0x75, 0x02, 0x10, 0x01,
0x03, 0x2a, 0x02, 0x10, 0x01, 0x03, 0x6f, 0x02, 0x10, 0x01, 0x03, 0x77,
0x02, 0x10, 0x01, 0xf2, 0x03, 0x70, 0x02, 0x10, 0x01, 0x03, 0x28, 0x02,
0x10, 0x01, 0x03, 0x74, 0x02, 0x10, 0x01, 0xf2, 0x03, 0x6c, 0x02, 0x10,
0x01, 0x03, 0x78, 0x02, 0x10, 0x01, 0x03, 0x26, 0x02, 0x10, 0x01, 0x03,
0x68, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x6c, 0x02,
0x10, 0x01, 0x03, 0x24, 0x02, 0x10, 0x01, 0x03, 0x5f, 0x02, 0x10, 0x01,
0x03, 0x22, 0x02, 0x10, 0x01, 0x03, 0x69, 0x02, 0x10, 0x01, 0xf2, 0xf5,
0x03, 0x6f, 0x02, 0x10, 0x01, 0x03, 0x20, 0x02, 0x10, 0x01, 0x03, 0x62,
0x02, 0x10, 0x01, 0x03, 0x12, 0x02, 0x10, 0x01, 0x03, 0x0d, 0x02, 0x10,
0x01, 0x03, 0x62, 0x02, 0x10, 0x01, 0x03, 0x2b, 0x02, 0x10, 0x01, 0x03,
0x58, 0x02, 0x10, 0x01, 0xf2, 0x03, 0x19, 0x02, 0x10, 0x01, 0x03, 0x6a,
0x02, 0x10, 0x01, 0x03, 0x17, 0x02, 0x10, 0x01, 0x03, 0x15, 0x02, 0x10,
0x01, 0x03, 0x5a, 0x02, 0x10, 0x01, 0x03, 0x12, 0x02, 0x10, 0x01, 0x03,
0xbc, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x02, 0x02, 0x20, 0x01, 0x03, 0x2d,
0x02, 0x20, 0x01, 0x03, 0x16, 0x02, 0x10, 0x01, 0x03, 0x15, 0x02, 0x10,
0x01, 0x03, 0x38, 0x02, 0x10, 0x01, 0x03, 0xa3, 0x7f, 0x02, 0x10, 0x01,
0x03, 0x11, 0x02, 0x10, 0x01, 0xf0, 0xf0, 0xf7, 0x03, 0x0e, 0x02, 0x10,
0x01, 0xf1, 0xf3, 0x03, 0x05, 0x02, 0x20, 0x01, 0xf1, 0xed, 0xf1, 0x03,
0x0b, 0x02, 0x10, 0x01, 0xf2, 0x03, 0x76, 0x02, 0x10, 0x01, 0x03, 0x0d,
0x02, 0x20, 0x01, 0x03, 0x16, 0x02, 0x10, 0x01, 0x03, 0x6c, 0x02, 0x10,
0x01, 0xf3, 0x03, 0x04, 0x02, 0x20, 0x01, 0xf3, 0xf1, 0x03, 0x03, 0x02,
0x20, 0x01, 0xf4, 0xf2, 0xf2, 0x03, 0x14, 0x02, 0x10, 0x01, 0x03, 0x09,
0x02, 0x10, 0x01, 0x03, 0x0c, 0x02, 0x10, 0x01, 0xf7, 0x03, 0x69, 0x02,
0x10, 0x01, 0x03, 0x23, 0x02, 0x10, 0x01, 0xf7, 0x03, 0x0c, 0x02, 0x10,
0x01, 0xf7, 0x03, 0x48, 0x02, 0x10, 0x01, 0x03, 0xdb, 0x00, 0x02, 0x10,
0x01, 0x03, 0x69, 0x02, 0x10, 0x01, 0xf5, 0x03, 0x0b, 0x02, 0x10, 0x01,
0x03, 0xb8, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xdf, 0x00, 0x02, 0x10, 0x01,
0x03, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x11, 0x02, 0x10, 0x01, 0xf5, 0x03,
0x97, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x70, 0x02, 0x10, 0x01, 0x03, 0x1d,
0x02, 0x10, 0x01, 0xf6, 0x03, 0x70, 0x02, 0x10, 0x01, 0x03, 0xb7, 0x02,
0x02, 0x10, 0x01, 0x03, 0xe6, 0x7d, 0x02, 0x10, 0x01, 0x03, 0x9a, 0x02,
0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0xe4, 0x7d, 0x02,
0x10, 0x01, 0x03, 0x70, 0x02, 0x10, 0x01, 0x03, 0x1b, 0x02, 0x10, 0x01,
0x03, 0x79, 0x02, 0x10, 0x01, 0x03, 0x0d, 0x02, 0x10, 0x01, 0x03, 0x8b,
0x02, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0xf7, 0x7d,
0x02, 0x10, 0x01, 0x03, 0x89, 0x02, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02,
0x10, 0x01, 0x03, 0xf4, 0x7d, 0x02, 0x10, 0x01, 0x03, 0x8c, 0x02, 0x02,
0x10, 0x01, 0x03, 0xe7, 0x7d, 0x02, 0x10, 0x01, 0x03, 0xdf, 0x03, 0x02,
0x10, 0x01, 0x03, 0xb9, 0x7c, 0x02, 0x20, 0x01, 0x03, 0xc0, 0x03, 0x02,
0x10, 0x01, 0x03, 0x07, 0x02, 0x20, 0x01, 0x03, 0xc3, 0x7e, 0x02, 0x10,
0x01, 0x03, 0xbd, 0x01, 0x02, 0x10, 0x01, 0x03, 0xbf, 0x7c, 0x02, 0x10,
0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0x03, 0x91, 0x02, 0x02, 0x10, 0x01,
0x03, 0xb6, 0x01, 0x02, 0x10, 0x01, 0xf6, 0x03, 0xca, 0x7c, 0x02, 0x10,
0x01, 0xf5, 0x03, 0xfc, 0x01, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x20,
0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03,
0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02,
0x20, 0x01, 0x03, 0xc1, 0x7d, 0x02, 0x20, 0x01, 0x03, 0x11, 0x02, 0x10,
0x01, 0x03, 0xb7, 0x02, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01,
0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09,
0x02, 0x20, 0x01, 0x03, 0xdf, 0x00, 0x02, 0x10, 0x01, 0x03, 0xa1, 0x7f,
0x02, 0x10, 0x01, 0x03, 0xd8, 0x00, 0x02, 0x10, 0x01, 0x03, 0xb1, 0x7f,
0x02, 0x10, 0x01, 0x03, 0xd6, 0x00, 0x02, 0x10, 0x01, 0x03, 0xaa, 0x7f,
0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x20,
0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0xc1, 0x00, 0x02, 0x20, 0x01,
0xec, 0x03, 0x4b, 0x02, 0x10, 0x01, 0x03, 0x38, 0x02, 0x10, 0x01, 0x03,
0x48, 0x02, 0x10, 0x01, 0x03, 0x38, 0x02, 0x10, 0x01, 0x03, 0x51, 0x02,
0x10, 0x01, 0x03, 0x2f, 0x02, 0x10, 0x01, 0xf5, 0x03, 0x4b, 0x02, 0x10,
0x01, 0x03, 0x35, 0x02, 0x10, 0x01, 0x03, 0x32, 0x02, 0x10, 0x01, 0x03,
0x42, 0x02, 0x10, 0x01, 0x03, 0x60, 0x02, 0x10, 0x01, 0x03, 0x19, 0x02,
0x10, 0x01, 0x03, 0xc8, 0x00, 0x02, 0x10, 0x01, 0x03, 0x9f, 0x7f, 0x02,
0x10, 0x01, 0x03, 0xc0, 0x00, 0x02, 0x10, 0x01, 0x03, 0x69, 0x02, 0x10,
0x01, 0x03, 0x17, 0x02, 0x10, 0x01, 0xec, 0xf2, 0x03, 0x59, 0x02, 0x10,
0x01, 0x03, 0x27, 0x02, 0x10, 0x01, 0xf5, 0x03, 0x5a, 0x02, 0x10, 0x01,
0x03, 0x26, 0x02, 0x10, 0x01, 0x03, 0x74, 0x02, 0x10, 0x01, 0x03, 0x6c,
0x02, 0x10, 0x01, 0x03, 0x14, 0x02, 0x10, 0x01, 0x03, 0x0c, 0x02, 0x10,
0x01, 0x03, 0x66, 0x02, 0x10, 0x01, 0x03, 0x1a, 0x02, 0x10, 0x01, 0x03,
0x6d, 0x02, 0x10, 0x01, 0x03, 0x10, 0x02, 0x10, 0x01, 0x03, 0x70, 0x02,
0x10, 0x01, 0xf6, 0x03, 0x1a, 0x02, 0x20, 0x01, 0x03, 0x5f, 0x02, 0x20,
0x01, 0x03, 0x1a, 0x02, 0x10, 0x01, 0x03, 0x6d, 0x02, 0x20, 0x01, 0x03,
0x1a, 0x02, 0x10, 0x01, 0x03, 0x6c, 0x02, 0x20, 0x01, 0x03, 0x21, 0x02,
0x10, 0x01, 0x03, 0x65, 0x02, 0x10, 0x01, 0xf6, 0x03, 0xa5, 0x03, 0x02,
0x10, 0x01, 0x03, 0xe2, 0x7c, 0x02, 0x10, 0x01, 0xf3, 0x03, 0x0f, 0x02,
0x20, 0x01, 0x03, 0x8d, 0x03, 0x02, 0x10, 0x01, 0x03, 0xfa, 0x7c, 0x02,
0x10, 0x01, 0x03, 0x86, 0x03, 0x02, 0x10, 0x01, 0x03, 0x81, 0x7d, 0x02,
0x10, 0x01, 0x03, 0x83, 0x03, 0x02, 0x10, 0x01, 0x03, 0x84, 0x7d, 0x02,
0x10, 0x01, 0xf6, 0xf6, 0xf6, 0xf6, 0x03, 0x97, 0x01, 0x02, 0x10, 0x01,
0xf6, 0x03, 0xe9, 0x7e, 0x02, 0x10, 0x01, 0xf5, 0xf5, 0xf5, 0xf4, 0x03,
0x87, 0x01, 0x02, 0x10, 0x01, 0x03, 0xfe, 0x7e, 0x02, 0x10, 0x01, 0xf4,
0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0x03, 0xf4, 0x00, 0x02, 0x10, 0x01,
0x03, 0x91, 0x7f, 0x02, 0x10, 0x01, 0xf4, 0xf4, 0xf4, 0x03, 0xd2, 0x00,
0x02, 0x10, 0x01, 0x03, 0xb3, 0x7f, 0x02, 0x10, 0x01, 0xf4, 0xf4, 0x03,
0xca, 0x00, 0x02, 0x10, 0x01, 0x03, 0xbb, 0x7f, 0x02, 0x10, 0x01, 0xf4,
0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0x03, 0x37, 0x02, 0x10, 0x01, 0xf4,
0xf4, 0x03, 0x6f, 0x02, 0x10, 0x01, 0x03, 0x16, 0x02, 0x10, 0x01, 0xf4,
0xf4, 0x03, 0x80, 0x01, 0x02, 0x10, 0x01, 0xf2, 0x03, 0x08, 0x01, 0x03,
0xfa, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x86, 0x01, 0x02, 0x10, 0x01, 0xf7,
0x03, 0xf7, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x81, 0x01, 0x02, 0x10, 0x01,
0xf0, 0x03, 0x83, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x05, 0x02, 0x20, 0x01,
0x03, 0xf8, 0x00, 0x02, 0x10, 0x01, 0x03, 0x8d, 0x7f, 0x02, 0x10, 0x01,
0xf4, 0xf4, 0xf4, 0x03, 0xe7, 0x00, 0x02, 0x10, 0x01, 0x03, 0x9e, 0x7f,
0x02, 0x10, 0x01, 0xf4, 0xf4, 0xf4, 0x03, 0xda, 0x00, 0x02, 0x10, 0x01,
0xf5, 0x03, 0xa5, 0x7f, 0x02, 0x10, 0x01, 0xf4, 0x03, 0xd6, 0x00, 0x02,
0x10, 0x01, 0x03, 0xaf, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xd4, 0x00, 0x02,
0x10, 0x01, 0x03, 0xb1, 0x7f, 0x02, 0x10, 0x01, 0xf4, 0x03, 0xca, 0x00,
0x02, 0x10, 0x01, 0x03, 0xbb, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xc6, 0x00,
0x02, 0x10, 0x01, 0x03, 0xbf, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xc0, 0x00,
0x02, 0x10, 0x01, 0x03, 0x45, 0x02, 0x10, 0x01, 0xf4, 0xf4, 0x03, 0x32,
0x02, 0x10, 0x01, 0x03, 0x53, 0x02, 0x10, 0x01, 0x03, 0x2f, 0x02, 0x10,
0x01, 0xf3, 0x02, 0x30, 0x00, 0x01, 0x01, 0x00, 0x09, 0x02, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x03, 0x12, 0x01, 0x03,
0x16, 0x02, 0x20, 0x01, 0xf3, 0x03, 0x02, 0x02, 0x20, 0x01, 0xf1, 0xf1,
0xf4, 0xf1, 0x03, 0x6d, 0x02, 0x10, 0x01, 0x03, 0xc3, 0x00, 0x02, 0x10,
0x01, 0x03, 0x5d, 0x02, 0x10, 0x01, 0x03, 0x26, 0x02, 0x10, 0x01, 0x03,
0x7d, 0x02, 0x20, 0x01, 0x03, 0x6d, 0x02, 0x10, 0x01, 0x03, 0x2e, 0x02,
0x10, 0x01, 0x03, 0xd8, 0x00, 0x02, 0x80, 0x01, 0x01, 0x03, 0xcc, 0x00,
0x02, 0xf0, 0x00, 0x01, 0xf5, 0xeb, 0x03, 0x20, 0x02, 0x10, 0x01, 0x03,
0x79, 0x02, 0x10, 0x01, 0x03, 0x6d, 0x02, 0x10, 0x01, 0x03, 0xb4, 0x7e,
0x02, 0x10, 0x01, 0x03, 0xdb, 0x01, 0x02, 0x10, 0x01, 0x03, 0x0d, 0x02,
0x10, 0x01, 0x03, 0xa5, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xd4, 0x01, 0x02,
0x10, 0x01, 0x03, 0x6c, 0x02, 0x10, 0x01, 0x03, 0xc0, 0x7e, 0x02, 0x10,
0x01, 0x03, 0xdd, 0x01, 0x02, 0x10, 0x01, 0x03, 0xf0, 0x7d, 0x02, 0x10,
0x01, 0x03, 0x8a, 0x02, 0x02, 0x10, 0x01, 0x03, 0xa9, 0x7e, 0x02, 0x10,
0x01, 0x03, 0xe0, 0x01, 0x02, 0x10, 0x01, 0x03, 0xef, 0x7d, 0x02, 0x10,
0x01, 0x03, 0x74, 0x02, 0x10, 0x01, 0x03, 0x0d, 0x02, 0x10, 0x01, 0x03,
0xf2, 0x01, 0x02, 0x10, 0x01, 0xf1, 0x03, 0x94, 0x7e, 0x02, 0x10, 0x01,
0x03, 0xed, 0x01, 0x02, 0x10, 0x01, 0x03, 0xb6, 0x7e, 0x02, 0x10, 0x01,
0x03, 0x5e, 0x02, 0x10, 0x01, 0x03, 0xed, 0x01, 0x02, 0x10, 0x01, 0x03,
0x95, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x27, 0x02, 0x10, 0x01, 0x03, 0xc6,
0x01, 0x02, 0x10, 0x01, 0x03, 0x8e, 0x7e, 0x02, 0x10, 0x01, 0xf5, 0x03,
0x76, 0x02, 0x10, 0x01, 0x03, 0xfa, 0x01, 0x02, 0x10, 0x01, 0x03, 0xc7,
0x7e, 0x02, 0x20, 0x01, 0xf3, 0x03, 0x35, 0x02, 0x10, 0x01, 0x03, 0x71,
0x02, 0x10, 0x01, 0x03, 0x5b, 0x02, 0x10, 0x01, 0x03, 0x35, 0x02, 0x10,
0x01, 0x03, 0x4b, 0x02, 0x10, 0x01, 0xf3, 0x03, 0x13, 0x02, 0x10, 0x01,
0x03, 0x69, 0x02, 0x10, 0x01, 0xf0, 0x03, 0x14, 0x02, 0x20, 0x01, 0x03,
0x11, 0x02, 0x10, 0x01, 0x03, 0x6f, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02,
0x10, 0x01, 0x03, 0x6e, 0x02, 0x10, 0x01, 0x03, 0x12, 0x02, 0x10, 0x01,
0x03, 0x1a, 0x02, 0x10, 0x01, 0x03, 0x62, 0x02, 0x10, 0x01, 0x03, 0x1e,
0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10,
0x01, 0x03, 0x14, 0x02, 0xc0, 0x00, 0x01, 0xf2, 0xf5, 0x03, 0x34, 0x02,
0x10, 0x01, 0x03, 0x71, 0x02, 0x10, 0x01, 0x03, 0x5a, 0x02, 0x10, 0x01,
0x03, 0x36, 0x02, 0x10, 0x01, 0x03, 0x4f, 0x02, 0x10, 0x01, 0xeb, 0x03,
0x17, 0x02, 0x10, 0x01, 0x03, 0x69, 0x02, 0x10, 0x01, 0xf0, 0x03, 0x14,
0x02, 0x10, 0x01, 0x03, 0x6c, 0x02, 0x10, 0x01, 0x03, 0x25, 0x02, 0x10,
0x01, 0xec, 0x03, 0x72, 0x02, 0x10, 0x01, 0x03, 0x28, 0x02, 0x10, 0x01,
0x03, 0x66, 0x02, 0x10, 0x01, 0x03, 0x6e, 0x02, 0x10, 0x01, 0x03, 0x2c,
0x02, 0x10, 0x01, 0x03, 0x62, 0x02, 0x10, 0x01, 0x03, 0x11, 0x02, 0x10,
0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0x3d, 0x02, 0x20, 0x01, 0x03,
0x95, 0x01, 0x02, 0x10, 0x01, 0x03, 0xc1, 0x04, 0x02, 0x10, 0x01, 0x03,
0xd1, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xdd, 0x7e, 0x02, 0x10, 0x01, 0x03,
0xe4, 0x02, 0x02, 0x10, 0x01, 0x03, 0xee, 0x02, 0x02, 0x10, 0x01, 0x03,
0xa1, 0x7d, 0x02, 0x10, 0x01, 0x03, 0x91, 0x7d, 0x02, 0x10, 0x01, 0x03,
0xd2, 0x05, 0x02, 0x10, 0x01, 0x03, 0xb2, 0x7a, 0x02, 0x10, 0x01, 0x03,
0x12, 0x02, 0x10, 0x01, 0xf3, 0xf3, 0xf3, 0xf3, 0x03, 0x07, 0x02, 0x20,
0x01, 0x03, 0xcd, 0x01, 0x02, 0x10, 0x01, 0x03, 0xc3, 0x7e, 0x02, 0x10,
0x01, 0x03, 0xcc, 0x01, 0x02, 0x10, 0x01, 0x03, 0xbb, 0x7e, 0x02, 0x10,
0x01, 0x03, 0x70, 0x02, 0x10, 0x01, 0x03, 0xdf, 0x00, 0x02, 0x10, 0x01,
0x03, 0x12, 0x02, 0x10, 0x01, 0xf6, 0x03, 0x6e, 0x02, 0x10, 0x01, 0x03,
0xe4, 0x00, 0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0xa6,
0x7f, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02,
0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01,
0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09,
0x02, 0x20, 0x01, 0x03, 0x22, 0x02, 0x20, 0x01, 0xf4, 0x03, 0x09, 0x02,
0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x5a, 0x02, 0x20, 0x01,
0x03, 0x2f, 0x02, 0x10, 0x01, 0x03, 0x37, 0x02, 0x10, 0x01, 0x03, 0x49,
0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x36, 0x02, 0x10,
0x01, 0x03, 0x4a, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03,
0x09, 0x02, 0x20, 0x01, 0x03, 0x15, 0x02, 0x10, 0x01, 0x03, 0x6b, 0x02,
0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x22, 0x02, 0x20, 0x01,
0xf4, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03,
0xc8, 0x00, 0x02, 0x10, 0x01, 0x03, 0xb8, 0x7f, 0x02, 0x10, 0x01, 0x03,
0x09, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x27, 0x02,
0x10, 0x01, 0x03, 0x59, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01,
0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x2b, 0x02, 0x10, 0x01, 0x03, 0x55,
0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x13, 0x02, 0x20,
0x01, 0x03, 0x14, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03,
0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02,
0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01,
0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x27, 0x02, 0x20, 0x01, 0x03, 0x09,
0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0xc3, 0x02, 0x02,
0x20, 0x01, 0x03, 0xb3, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xd3, 0x01, 0x02,
0x10, 0x01, 0x03, 0xc0, 0x7d, 0x02, 0x10, 0x01, 0x03, 0xc6, 0x02, 0x02,
0x10, 0x01, 0x03, 0xb4, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xd2, 0x01, 0x02,
0x10, 0x01, 0x03, 0xb4, 0x7d, 0x02, 0x10, 0x01, 0x03, 0x9a, 0x01, 0x02,
0x10, 0x01, 0x03, 0xe3, 0x00, 0x02, 0x10, 0x01, 0x03, 0x8c, 0x7e, 0x02,
0x10, 0x01, 0x03, 0xfe, 0x01, 0x02, 0x10, 0x01, 0x03, 0x82, 0x7e, 0x02,
0x10, 0x01, 0x03, 0xf5, 0x01, 0x02, 0x10, 0x01, 0x03, 0xf7, 0x01, 0x02,
0x10, 0x01, 0x03, 0x94, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x89, 0x7e, 0x02,
0x10, 0x01, 0x03, 0xe8, 0x03, 0x02, 0x10, 0x01, 0x03, 0x85, 0x7e, 0x02,
0x10, 0x01, 0x03, 0x0b, 0x02, 0x10, 0x01, 0x03, 0x88, 0x7e, 0x02, 0x10,
0x01, 0x03, 0xde, 0x00, 0x02, 0x10, 0x01, 0x03, 0x8f, 0x03, 0x02, 0x10,
0x01, 0x03, 0x84, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x98, 0x7e, 0x02, 0x10,
0x01, 0x03, 0xf0, 0x01, 0x02, 0x10, 0x01, 0x03, 0xf9, 0x01, 0x02, 0x10,
0x01, 0x03, 0xed, 0x7c, 0x02, 0x10, 0x01, 0x03, 0xaa, 0x7f, 0x02, 0x10,
0x01, 0x03, 0xd6, 0x00, 0x02, 0x10, 0x01, 0x03, 0x9c, 0x04, 0x02, 0x10,
0x01, 0x03, 0x8d, 0x7c, 0x02, 0x10, 0x01, 0x03, 0x8a, 0x7f, 0x02, 0x10,
0x01, 0x03, 0xcd, 0x00, 0x02, 0x10, 0x01, 0xf0, 0x03, 0x9b, 0x01, 0x02,
0x10, 0x01, 0x03, 0x97, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xee, 0x04, 0x02,
0x10, 0x01, 0x03, 0xe0, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xa5, 0x04, 0x02,
0x10, 0x01, 0x03, 0xf6, 0x7c, 0x02, 0x10, 0x01, 0x03, 0x8f, 0x03, 0x02,
0x10, 0x01, 0x03, 0xfe, 0x7b, 0x02, 0x10, 0x01, 0x03, 0x8b, 0x05, 0x02,
0x30, 0x01, 0x03, 0xf5, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x90, 0x05, 0x02,
0x10, 0x01, 0x03, 0xf0, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x95, 0x05, 0x02,
0x10, 0x01, 0xf4, 0x03, 0xb4, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x32, 0x02,
0x20, 0x01, 0x03, 0x1c, 0x02, 0x10, 0x01, 0x03, 0x15, 0x02, 0x20, 0x01,
0x03, 0x6b, 0x02, 0x10, 0x01, 0x03, 0x13, 0x02, 0x10, 0x01, 0x03, 0x16,
0x02, 0x10, 0x01, 0x03, 0x6d, 0x02, 0x10, 0x01, 0xec, 0x03, 0x57, 0x02,
0x10, 0x01, 0x03, 0x18, 0x02, 0x10, 0x01, 0x03, 0x28, 0x02, 0x10, 0x01,
0xf1, 0x03, 0x74, 0x02, 0x10, 0x01, 0x03, 0x0c, 0x02, 0x10, 0x01, 0x03,
0x4b, 0x02, 0x10, 0x01, 0x03, 0x13, 0x02, 0x10, 0x01, 0x03, 0x2a, 0x02,
0x10, 0x01, 0x03, 0xef, 0x00, 0x02, 0x20, 0x01, 0x03, 0xc0, 0x76, 0x02,
0x10, 0x01, 0x03, 0xc6, 0x09, 0x02, 0x10, 0x01, 0x03, 0xa2, 0x7f, 0x02,
0x10, 0x01, 0x03, 0xf1, 0x00, 0x02, 0x10, 0x01, 0x03, 0x86, 0x7f, 0x02,
0x10, 0x01, 0x03, 0xf4, 0x00, 0x02, 0x10, 0x01, 0x03, 0x37, 0x02, 0x10,
0x01, 0xeb, 0x03, 0x60, 0x02, 0x10, 0x01, 0x03, 0x2b, 0x02, 0x10, 0x01,
0x03, 0x5b, 0x02, 0x10, 0x01, 0x03, 0x3b, 0x02, 0x10, 0x01, 0x03, 0x58,
0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x71, 0x02, 0x10,
0x01, 0x03, 0x23, 0x02, 0x10, 0x01, 0x03, 0xd9, 0x00, 0x02, 0x10, 0x01,
0x03, 0x9e, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xe7, 0x00, 0x02, 0x10, 0x01,
0x03, 0x90, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xff, 0x00, 0x02, 0x10, 0x01,
0x03, 0x8c, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xef, 0x00, 0x02, 0x10, 0x01,
0x03, 0xa5, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xea, 0x00, 0x02, 0x10, 0x01,
0x03, 0x9f, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xe6, 0x00, 0x02, 0x10, 0x01,
0x03, 0xa5, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xea, 0x00, 0x02, 0x10, 0x01,
0x03, 0xf7, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x84, 0x01, 0x02, 0x10, 0x01,
0x03, 0x89, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xe2, 0x01, 0x02, 0x10, 0x01,
0x03, 0xc6, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xbf, 0x01, 0x02, 0x10, 0x01,
0x03, 0x8e, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x81, 0x02, 0x02, 0x10, 0x01,
0x03, 0x93, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xe8, 0x01, 0x02, 0x10, 0x01,
0x03, 0xac, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xe3, 0x01, 0x02, 0x10, 0x01,
0x03, 0x94, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xf1, 0x01, 0x02, 0x10, 0x01,
0x03, 0x86, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x84, 0x02, 0x02, 0x10, 0x01,
0x03, 0x87, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xfe, 0x01, 0x02, 0x10, 0x01,
0x03, 0x96, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xd0, 0x02, 0x02, 0x10, 0x01,
0x03, 0x87, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xfe, 0x01, 0x02, 0x10, 0x01,
0x03, 0x8b, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xff, 0x01, 0x02, 0x10, 0x01,
0x03, 0x96, 0x7d, 0x02, 0x10, 0x01, 0x03, 0xef, 0x02, 0x02, 0x10, 0x01,
0x03, 0x9e, 0x7d, 0x02, 0x10, 0x01, 0x03, 0xf1, 0x02, 0x02, 0x10, 0x01,
0x03, 0xff, 0x7d, 0x02, 0x10, 0x01, 0x03, 0xfc, 0x01, 0x02, 0x10, 0x01,
0x03, 0x89, 0x7d, 0x02, 0x10, 0x01, 0x03, 0x86, 0x03, 0x02, 0x10, 0x01,
0x03, 0xdc, 0x7d, 0x02, 0x10, 0x01, 0x03, 0xa9, 0x02, 0x02, 0x10, 0x01,
0x03, 0xe7, 0x7d, 0x02, 0x10, 0x01, 0x03, 0xc2, 0x7d, 0x02, 0x10, 0x01,
0x03, 0xb7, 0x02, 0x02, 0x10, 0x01, 0x03, 0xb8, 0x7c, 0x02, 0x10, 0x01,
0x03, 0xc1, 0x03, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03,
0x10, 0x02, 0x10, 0x01, 0xf6, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x67,
0x02, 0x10, 0x01, 0x03, 0x0b, 0x02, 0x10, 0x01, 0x03, 0x20, 0x02, 0x10,
0x01, 0x03, 0x57, 0x02, 0x10, 0x01, 0x03, 0x10, 0x02, 0x10, 0x01, 0x03,
0x10, 0x02, 0x10, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0x03, 0x79, 0x02,
0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x10, 0x02, 0x10, 0x01,
0x03, 0xd7, 0x00, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03,
0x97, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x0b, 0x02, 0x10, 0x01, 0x03, 0xf0,
0x00, 0x02, 0x10, 0x01, 0x03, 0x87, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xe0,
0x00, 0x02, 0x10, 0x01, 0x03, 0x10, 0x02, 0x10, 0x01, 0x03, 0x79, 0x02,
0x10, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01,
0x03, 0x17, 0x02, 0x10, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0x03, 0x10,
0x02, 0x10, 0x01, 0x03, 0x67, 0x02, 0x10, 0x01, 0x03, 0x0b, 0x02, 0x10,
0x01, 0x03, 0x17, 0x02, 0x10, 0x01, 0x03, 0x60, 0x02, 0x10, 0x01, 0x03,
0x10, 0x02, 0x10, 0x01, 0x03, 0x19, 0x02, 0x10, 0x01, 0x03, 0x70, 0x02,
0x10, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01,
0xf6, 0x03, 0xe0, 0x00, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01,
0x03, 0xa0, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0x03,
0xf0, 0x00, 0x02, 0x10, 0x01, 0x03, 0x99, 0x7f, 0x02, 0x10, 0x01, 0x03,
0xd7, 0x00, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0xf3,
0x7a, 0x02, 0x10, 0x01, 0x03, 0x9d, 0x05, 0x02, 0x10, 0x01, 0x03, 0x69,
0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0xf2, 0x7a, 0x02,
0x10, 0x01, 0x03, 0x95, 0x05, 0x02, 0x10, 0x01, 0x03, 0x19, 0x02, 0x10,
0x01, 0x03, 0x1b, 0x02, 0x10, 0x01, 0x03, 0x5c, 0x02, 0x10, 0x01, 0x03,
0x79, 0x02, 0x10, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0x03, 0x20, 0x02,
0x10, 0x01, 0x03, 0xd7, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x92, 0x05, 0x02,
0x10, 0x01, 0x03, 0x10, 0x02, 0x10, 0x01, 0x03, 0x77, 0x02, 0x10, 0x01,
0x03, 0x2c, 0x02, 0x10, 0x01, 0x03, 0xc7, 0x7a, 0x02, 0x10, 0x01, 0x03,
0x98, 0x05, 0x02, 0x10, 0x01, 0x03, 0x77, 0x02, 0x10, 0x01, 0x03, 0x10,
0x02, 0x10, 0x01, 0x03, 0x1d, 0x02, 0x10, 0x01, 0x03, 0xf3, 0x00, 0x02,
0x10, 0x01, 0x03, 0xf2, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x28, 0x02, 0x20,
0x01, 0x03, 0x78, 0x02, 0x20, 0x01, 0x03, 0x73, 0x02, 0x20, 0x01, 0x03,
0x18, 0x02, 0x10, 0x01, 0x03, 0xed, 0x00, 0x02, 0x10, 0x01, 0x03, 0x98,
0x7f, 0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0xea, 0x03, 0x15,
0x02, 0xc0, 0x00, 0x01, 0x03, 0x05, 0x02, 0x20, 0x01, 0x03, 0x76, 0x02,
0x10, 0x01, 0x03, 0xef, 0x00, 0x02, 0x20, 0x01, 0x03, 0x9e, 0x7f, 0x02,
0x10, 0x01, 0x03, 0x70, 0x02, 0x10, 0x01, 0x03, 0x15, 0x02, 0x10, 0x01,
0x03, 0x76, 0x02, 0x10, 0x01, 0x03, 0x0d, 0x02, 0x30, 0x01, 0xf4, 0x03,
0x76, 0x02, 0x10, 0x01, 0x03, 0xe4, 0x00, 0x02, 0x10, 0x01, 0x03, 0x91,
0x7f, 0x02, 0x20, 0x01, 0x03, 0x18, 0x02, 0x10, 0x01, 0xf3, 0x03, 0x77,
0x02, 0x10, 0x01, 0x03, 0x0c, 0x02, 0x30, 0x01, 0x03, 0xb3, 0x7f, 0x02,
0x10, 0x01, 0x03, 0xd2, 0x00, 0x02, 0x10, 0x01, 0x03, 0xd0, 0x00, 0x02,
0x10, 0x01, 0x03, 0xa7, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x6d, 0x02, 0x10,
0x01, 0x03, 0x1f, 0x02, 0x20, 0x01, 0xf4, 0x03, 0x76, 0x02, 0x20, 0x01,
0x03, 0xb2, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xdb, 0x00, 0x02, 0x20, 0x01,
0x03, 0xca, 0x00, 0x02, 0x10, 0x01, 0x03, 0x97, 0x7f, 0x02, 0x10, 0x01,
0x03, 0x46, 0x02, 0x10, 0x01, 0x03, 0xd4, 0x00, 0x02, 0x10, 0x01, 0x03,
0x46, 0x02, 0x10, 0x01, 0x03, 0xc4, 0x00, 0x02, 0x20, 0x01, 0x03, 0xaf,
0x7f, 0x02, 0x20, 0x01, 0x03, 0xcf, 0x00, 0x02, 0x20, 0x01, 0xf4, 0x03,
0xc7, 0x00, 0x02, 0x10, 0x01, 0x03, 0x9a, 0x7f, 0x02, 0x10, 0x01, 0x03,
0x5b, 0x02, 0x10, 0x01, 0x03, 0xc9, 0x00, 0x02, 0x20, 0x01, 0x03, 0x7e,
0x02, 0x20, 0x01, 0xf4, 0x03, 0xc4, 0x00, 0x02, 0x10, 0x01, 0x03, 0x9c,
0x7f, 0x02, 0x10, 0x01, 0x03, 0x25, 0x02, 0x20, 0x01, 0x03, 0xa8, 0x70,
0x02, 0x20, 0x01, 0x03, 0xd6, 0x0f, 0x02, 0x10, 0x01, 0xf4, 0x03, 0xc1,
0x00, 0x02, 0x10, 0x01, 0x03, 0x9f, 0x7f, 0x02, 0x20, 0x01, 0x03, 0x25,
0x02, 0x10, 0x01, 0xed, 0x03, 0x05, 0x02, 0x20, 0x01, 0x03, 0xe0, 0x79,
0x02, 0x10, 0x01, 0x03, 0xde, 0x06, 0x02, 0x10, 0x01, 0x03, 0x90, 0x78,
0x02, 0x10, 0x01, 0x03, 0xad, 0x01, 0x02, 0x20, 0x01, 0x03, 0xe5, 0x05,
0x02, 0x10, 0x01, 0x03, 0x25, 0x02, 0x10, 0x01, 0x03, 0xdd, 0x79, 0x02,
0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0xde, 0x7e, 0x02, 0x10,
0x01, 0x03, 0xb4, 0x07, 0x02, 0x10, 0x01, 0x03, 0xf9, 0x79, 0x02, 0x10,
0x01, 0x03, 0xd5, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xb7, 0x07, 0x02, 0x20,
0x01, 0x03, 0xf5, 0x79, 0x02, 0x10, 0x01, 0x03, 0x76, 0x02, 0x10, 0x01,
0x03, 0xd0, 0x06, 0x02, 0x10, 0x01, 0x03, 0x25, 0x02, 0x20, 0x01, 0x03,
0x8d, 0x79, 0x02, 0x10, 0x01, 0x03, 0xf0, 0x06, 0x02, 0x10, 0x01, 0x03,
0xa6, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xc7, 0x78, 0x02, 0x10, 0x01, 0x03,
0xa4, 0x01, 0x02, 0x10, 0x01, 0x03, 0x0d, 0x02, 0x20, 0x01, 0x03, 0x67,
0x02, 0x10, 0x01, 0x03, 0x15, 0x02, 0x10, 0x01, 0x03, 0xd4, 0x7e, 0x02,
0x10, 0x01, 0x03, 0x93, 0x08, 0x02, 0x10, 0x01, 0x03, 0x87, 0x79, 0x02,
0x20, 0x01, 0x03, 0xe8, 0x7e, 0x02, 0x20, 0x01, 0x03, 0x98, 0x01, 0x02,
0x20, 0x01, 0x03, 0x13, 0x02, 0xc0, 0x00, 0x01, 0x03, 0x91, 0x06, 0x02,
0x10, 0x01, 0x03, 0x37, 0x02, 0x20, 0x01, 0xf4, 0xf4, 0xf4, 0xf4, 0x03,
0x0d, 0x02, 0x10, 0x01, 0xf7, 0xf5, 0x03, 0x36, 0x02, 0x10, 0x01, 0x03,
0x4b, 0x02, 0x10, 0x01, 0x03, 0x36, 0x02, 0x10, 0x01, 0x03, 0x61, 0x02,
0x10, 0x01, 0x03, 0x21, 0x02, 0x10, 0x01, 0x03, 0x49, 0x02, 0x10, 0x01,
0x03, 0x17, 0x02, 0x10, 0x01, 0x03, 0x61, 0x02, 0x10, 0x01, 0xf2, 0xf5,
0x03, 0x35, 0x02, 0x10, 0x01, 0x03, 0x4e, 0x02, 0x10, 0x01, 0xf2, 0xf2,
0xf2, 0x03, 0x0b, 0x02, 0x10, 0x01, 0x03, 0x78, 0x02, 0x10, 0x01, 0xf2,
0xf5, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x03, 0x09, 0x02,
0x10, 0x01, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x03,
0xa7, 0x7f, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0xf2, 0xf2,
0x03, 0x5d, 0x02, 0x10, 0x01, 0x03, 0x35, 0x02, 0x10, 0x01, 0x03, 0x47,
0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0xf2, 0x03, 0x16, 0x02,
0x10, 0x01, 0x03, 0x6d, 0x02, 0x10, 0x01, 0xf2, 0xf2, 0xf2, 0x03, 0x0d,
0x02, 0x10, 0x01, 0x03, 0x76, 0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10,
0x01, 0xf2, 0xf2, 0x03, 0x78, 0x02, 0x10, 0x01, 0x03, 0x0b, 0x02, 0x10,
0x01, 0xf2, 0x03, 0x09, 0x02, 0x10, 0x01, 0xf2, 0x03, 0x78, 0x02, 0x10,
0x01, 0x03, 0x0b, 0x02, 0x10, 0x01, 0xf2, 0xf2, 0xf2, 0x03, 0xb3, 0x7f,
0x02, 0x10, 0x01, 0x03, 0xd0, 0x00, 0x02, 0x10, 0x01, 0xf2, 0xf2, 0xf2,
0x03, 0xb0, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xd3, 0x00, 0x02, 0x10, 0x01,
0x03, 0xb0, 0x7f, 0x02, 0x10, 0x01, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x03,
0x0f, 0x02, 0x10, 0x01, 0xf2, 0xf2, 0xf2, 0xf2, 0x03, 0x09, 0x02, 0x10,
0x01, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf1,
0x03, 0x0c, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63,
0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10,
0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03,
0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02,
0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01,
0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63,
0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10,
0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03,
0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02,
0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01,
0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63,
0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10,
0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03,
0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02,
0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01,
0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63,
0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10,
0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03,
0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02,
0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01,
0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63,
0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10,
0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03,
0x1e, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02,
0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01,
0x03, 0x17, 0x02, 0x10, 0x01, 0x03, 0x70, 0x02, 0x10, 0x01, 0x03, 0x11,
0x02, 0x10, 0x01, 0x03, 0x78, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10,
0x01, 0xf0, 0x03, 0x72, 0x02, 0x10, 0x01, 0xf7, 0x03, 0x79, 0x02, 0x10,
0x01, 0x03, 0x19, 0x02, 0x10, 0x01, 0x03, 0x6f, 0x02, 0x10, 0x01, 0x03,
0x1c, 0x02, 0x10, 0x01, 0x03, 0x6e, 0x02, 0x10, 0x01, 0xf0, 0x03, 0x0a,
0x02, 0x10, 0x01, 0x03, 0x02, 0x02, 0x20, 0x01, 0xf1, 0x03, 0x08, 0x02,
0x20, 0x01, 0xf0, 0xf1, 0xf3, 0x03, 0x02, 0x02, 0x20, 0x01, 0xf0, 0xf5,
0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2,
0xf2, 0xf2, 0xf2, 0x03, 0x5a, 0x02, 0x10, 0x01, 0x03, 0x27, 0x02, 0x10,
0x01, 0x03, 0x11, 0x02, 0x10, 0x01, 0x03, 0x60, 0x02, 0x10, 0x01, 0x03,
0x69, 0x02, 0x10, 0x01, 0x03, 0x38, 0x02, 0x10, 0x01, 0x03, 0x79, 0x02,
0x10, 0x01, 0x03, 0x77, 0x02, 0x10, 0x01, 0xf2, 0xeb, 0xf6, 0x03, 0x0c,
0x02, 0x10, 0x01, 0xf2, 0xf2, 0x03, 0x58, 0x02, 0x10, 0x01, 0x03, 0x1c,
0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0x72, 0x02, 0x10,
0x01, 0x03, 0x11, 0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0x03,
0x10, 0x02, 0x10, 0x01, 0xf2, 0xf2, 0xf5, 0x03, 0x61, 0x02, 0x10, 0x01,
0x03, 0x46, 0x02, 0x10, 0x01, 0x03, 0x1e, 0x02, 0x10, 0x01, 0xf2, 0xf2,
0x03, 0x5d, 0x02, 0x10, 0x01, 0x03, 0xd5, 0x00, 0x02, 0x10, 0x01, 0x03,
0x60, 0x02, 0x10, 0x01, 0x03, 0x47, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02,
0x10, 0x01, 0x03, 0x19, 0x02, 0x10, 0x01, 0x03, 0x6a, 0x02, 0x10, 0x01,
0xf2, 0xf2, 0xf2, 0x03, 0x10, 0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x10,
0x01, 0xf2, 0x03, 0x0f, 0x02, 0x10, 0x01, 0xf5, 0x03, 0x78, 0x02, 0x10,
0x01, 0x03, 0x0b, 0x02, 0x10, 0x01, 0xf2, 0x03, 0x0c, 0x02, 0x10, 0x01,
0xf2, 0x03, 0x75, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0xf2,
0xf2, 0xf2, 0x03, 0xb0, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xd3, 0x00, 0x02,
0x10, 0x01, 0xf2, 0xf2, 0xf2, 0x03, 0xad, 0x7f, 0x02, 0x10, 0x01, 0xf2,
0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0x03, 0x0f, 0x02, 0x10, 0x01, 0xf5, 0xf2,
0xf2, 0x03, 0x0c, 0x02, 0x10, 0x01, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2,
0xf2, 0xf2, 0xf2, 0x03, 0x9d, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xe3, 0x00,
0x02, 0x20, 0x01, 0x03, 0x09, 0x01, 0x03, 0x32, 0x02, 0x10, 0x01, 0x03,
0x5d, 0x02, 0x10, 0x01, 0x03, 0x80, 0x05, 0x02, 0x10, 0x01, 0x03, 0xf2,
0x7a, 0x02, 0x10, 0x01, 0x03, 0x32, 0x02, 0x10, 0x01, 0x03, 0x5d, 0x02,
0x10, 0x01, 0x03, 0xda, 0x09, 0x02, 0x10, 0x01, 0x03, 0x98, 0x76, 0x02,
0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0x72, 0x02, 0x10, 0x01,
0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0x72, 0x02, 0x10, 0x01, 0x03, 0x0f,
0x02, 0x10, 0x01, 0x03, 0x72, 0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10,
0x01, 0x03, 0x72, 0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03,
0x72, 0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0x72, 0x02,
0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0x72, 0x02, 0x10, 0x01,
0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0x72, 0x02, 0x10, 0x01, 0x03, 0x0f,
0x02, 0x10, 0x01, 0x03, 0x72, 0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10,
0x01, 0x03, 0x72, 0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03,
0x72, 0x02, 0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0x72, 0x02,
0x10, 0x01, 0x03, 0x0f, 0x02, 0x10, 0x01, 0x03, 0x17, 0x02, 0x10, 0x01,
0x03, 0x0d, 0x02, 0x10, 0x01, 0x03, 0x63, 0x02, 0x10, 0x01, 0x03, 0x11,
0x02, 0x10, 0x01, 0x03, 0xca, 0x00, 0x02, 0x10, 0x01, 0x03, 0xad, 0x7f,
0x02, 0x10, 0x01, 0x03, 0xd3, 0x00, 0x02, 0x10, 0x01, 0x03, 0xee, 0x08,
0x02, 0x10, 0x01, 0x03, 0xbc, 0x76, 0x02, 0x20, 0x01, 0xf6, 0x03, 0x0a,
0x02, 0x10, 0x01, 0xf0, 0x03, 0x0a, 0x02, 0x10, 0x01, 0x03, 0x02, 0x02,
0x20, 0x01, 0xf1, 0x03, 0x02, 0x02, 0x20, 0x01, 0xf4, 0xf1, 0xf3, 0x03,
0x02, 0x02, 0x20, 0x01, 0xf0, 0xf1, 0x03, 0x0e, 0x02, 0x20, 0x01, 0xf3,
0xf3, 0xf3, 0xf3, 0x03, 0x92, 0x04, 0x02, 0x20, 0x01, 0x03, 0x19, 0x02,
0x10, 0x01, 0x03, 0xd8, 0x7b, 0x02, 0x10, 0x01, 0xf4, 0xf2, 0xf2, 0x03,
0x2a, 0x02, 0x10, 0x01, 0xf7, 0x03, 0x6c, 0x02, 0x10, 0x01, 0x03, 0xdd,
0x03, 0x02, 0x10, 0x01, 0x03, 0xb4, 0x7c, 0x02, 0x10, 0x01, 0x03, 0x2b,
0x02, 0x10, 0x01, 0x03, 0x0c, 0x02, 0x10, 0x01, 0x03, 0xa7, 0x03, 0x02,
0x10, 0x01, 0x03, 0x88, 0x7c, 0x02, 0x10, 0x01, 0x03, 0x21, 0x02, 0x10,
0x01, 0x03, 0xf4, 0x00, 0x02, 0x10, 0x01, 0x03, 0xea, 0x02, 0x02, 0x10,
0x01, 0x03, 0xaa, 0x7c, 0x02, 0x10, 0x01, 0xf7, 0x03, 0x0c, 0x02, 0x10,
0x01, 0x03, 0x49, 0x02, 0x10, 0x01, 0x03, 0x95, 0x01, 0x02, 0x10, 0x01,
0x03, 0x22, 0x02, 0x10, 0x01, 0x03, 0x0b, 0x02, 0x10, 0x01, 0x03, 0xdd,
0x7e, 0x02, 0x10, 0x01, 0x03, 0x68, 0x02, 0x10, 0x01, 0x03, 0x82, 0x04,
0x02, 0x10, 0x01, 0x03, 0xbf, 0x7d, 0x02, 0x10, 0x01, 0x03, 0x89, 0x7f,
0x02, 0x10, 0x01, 0x03, 0x0b, 0x02, 0x10, 0x01, 0x03, 0x4c, 0x02, 0x10,
0x01, 0x03, 0xab, 0x01, 0x02, 0x10, 0x01, 0x03, 0x8f, 0x7f, 0x02, 0x10,
0x01, 0x03, 0x0b, 0x02, 0x10, 0x01, 0xf5, 0x03, 0xbc, 0x7f, 0x02, 0x10,
0x01, 0x03, 0x5c, 0x02, 0x10, 0x01, 0x03, 0xd9, 0x01, 0x02, 0x10, 0x01,
0xf5, 0x03, 0xb2, 0x02, 0x02, 0x10, 0x01, 0x03, 0x23, 0x02, 0x10, 0x01,
0x03, 0xfd, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xc2, 0x00, 0x02, 0x10, 0x01,
0x03, 0xc1, 0x03, 0x02, 0x10, 0x01, 0x03, 0xc5, 0x7c, 0x02, 0x10, 0x01,
0x03, 0xf7, 0x00, 0x02, 0x10, 0x01, 0x03, 0xcd, 0x02, 0x02, 0x10, 0x01,
0x03, 0xfb, 0x7b, 0x02, 0x10, 0x01, 0x03, 0x70, 0x02, 0x10, 0x01, 0x03,
0xf3, 0x00, 0x02, 0x10, 0x01, 0x03, 0xa2, 0x03, 0x02, 0x10, 0x01, 0x03,
0xbe, 0x7d, 0x02, 0x10, 0x01, 0xf5, 0x03, 0x94, 0x7f, 0x02, 0x10, 0x01,
0x03, 0x72, 0x02, 0x10, 0x01, 0x03, 0xb5, 0x7f, 0x02, 0x10, 0x01, 0x03,
0xea, 0x00, 0x02, 0x10, 0x01, 0x03, 0x67, 0x02, 0x10, 0x01, 0x03, 0xb9,
0x03, 0x02, 0x10, 0x01, 0x03, 0xd2, 0x7c, 0x02, 0x20, 0x01, 0x03, 0xb7,
0x03, 0x02, 0x10, 0x01, 0x03, 0xcf, 0x7c, 0x02, 0x20, 0x01, 0x03, 0xba,
0x03, 0x02, 0x10, 0x01, 0x03, 0xd1, 0x7c, 0x02, 0x20, 0x01, 0x03, 0xb8,
0x03, 0x02, 0x10, 0x01, 0x03, 0xce, 0x7c, 0x02, 0x20, 0x01, 0x03, 0xbb,
0x03, 0x02, 0x10, 0x01, 0x03, 0xd0, 0x7c, 0x02, 0x20, 0x01, 0x03, 0xb9,
0x03, 0x02, 0x10, 0x01, 0x03, 0xcd, 0x7c, 0x02, 0x20, 0x01, 0x03, 0x73,
0x02, 0x10, 0x01, 0x03, 0xc9, 0x03, 0x02, 0x10, 0x01, 0x03, 0xc7, 0x7b,
0x02, 0x20, 0x01, 0x03, 0xc2, 0x04, 0x02, 0x10, 0x01, 0x03, 0xbf, 0x7c,
0x02, 0x20, 0x01, 0x03, 0x85, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xa1, 0x01,
0x02, 0x10, 0x01, 0x03, 0xa4, 0x03, 0x02, 0x10, 0x01, 0x03, 0xc6, 0x7b,
0x02, 0x20, 0x01, 0x03, 0xc3, 0x04, 0x02, 0x10, 0x01, 0x03, 0xfa, 0x7b,
0x02, 0x20, 0x01, 0x03, 0x3a, 0x02, 0x10, 0x01, 0x03, 0x57, 0x02, 0x10,
0x01, 0x03, 0xe6, 0x02, 0x02, 0x10, 0x01, 0x03, 0x98, 0x01, 0x02, 0x10,
0x01, 0x03, 0xba, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xc6, 0x04, 0x02, 0x10,
0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0xbc, 0x7b, 0x02, 0x10, 0x01,
0x03, 0xc4, 0x04, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03,
0xb9, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xc7, 0x04, 0x02, 0x10, 0x01, 0x03,
0x09, 0x02, 0x10, 0x01, 0x03, 0xbb, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xc5,
0x04, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0xb8, 0x7b,
0x02, 0x10, 0x01, 0x03, 0x73, 0x02, 0x10, 0x01, 0x03, 0xd5, 0x04, 0x02,
0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x8f, 0x7c, 0x02, 0x10,
0x01, 0x03, 0xf1, 0x03, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01,
0x03, 0xaa, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xe2, 0x00, 0x02, 0x10, 0x01,
0x03, 0xf4, 0x03, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03,
0x94, 0x7c, 0x02, 0x10, 0x01, 0x03, 0xec, 0x03, 0x02, 0x10, 0x01, 0x03,
0x09, 0x02, 0x10, 0x01, 0x03, 0x9c, 0x7c, 0x02, 0x10, 0x01, 0x03, 0x62,
0x02, 0x10, 0x01, 0x03, 0x82, 0x04, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02,
0x10, 0x01, 0x03, 0xdc, 0x7a, 0x02, 0x20, 0x01, 0x03, 0xad, 0x05, 0x02,
0x10, 0x01, 0x03, 0xe4, 0x7a, 0x02, 0x10, 0x01, 0x03, 0x9c, 0x05, 0x02,
0x10, 0x01, 0x03, 0xd4, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xca, 0x02, 0x02,
0x10, 0x01, 0x03, 0xeb, 0x01, 0x02, 0x10, 0x01, 0x03, 0xce, 0x7b, 0x02,
0x10, 0x01, 0x03, 0xb2, 0x04, 0x02, 0x10, 0x01, 0x03, 0x9c, 0x7e, 0x02,
0x10, 0x01, 0x03, 0xef, 0x01, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x20,
0x01, 0x03, 0xbe, 0x7b, 0x02, 0x10, 0x01, 0x03, 0xc2, 0x04, 0x02, 0x10,
0x01, 0x03, 0x8f, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xfa, 0x01, 0x02, 0x10,
0x01, 0x03, 0x8d, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xf3, 0x01, 0x02, 0x10,
0x01, 0x03, 0x09, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03,
0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02,
0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01,
0x03, 0x8e, 0x7b, 0x02, 0x20, 0x01, 0x03, 0xfb, 0x04, 0x02, 0x10, 0x01,
0x03, 0x96, 0x7b, 0x02, 0x20, 0x01, 0x03, 0xf3, 0x04, 0x02, 0x10, 0x01,
0x03, 0x86, 0x7b, 0x02, 0x20, 0x01, 0x03, 0x83, 0x05, 0x02, 0x10, 0x01,
0x03, 0xf3, 0x00, 0x02, 0x10, 0x01, 0x03, 0x15, 0x02, 0x10, 0x01, 0x03,
0xf8, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x8e, 0x7b, 0x02, 0x10, 0x01, 0x03,
0xfb, 0x04, 0x02, 0x10, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09,
0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x09, 0x02, 0x20,
0x01, 0x03, 0x09, 0x02, 0x20, 0x01, 0x03, 0x3a, 0x02, 0x20, 0x01, 0x03,
0x4f, 0x02, 0x10, 0x01, 0x03, 0x31, 0x02, 0x10, 0x01, 0x03, 0x21, 0x02,
0x10, 0x01, 0x03, 0xae, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xd2, 0x00, 0x02,
0x10, 0x01, 0x03, 0x5f, 0x02, 0x10, 0x01, 0x03, 0x58, 0x02, 0x10, 0x01,
0x03, 0x28, 0x02, 0x10, 0x01, 0xea, 0x03, 0x5d, 0x02, 0x20, 0x01, 0x03,
0x2f, 0x02, 0x10, 0x01, 0x03, 0x79, 0x02, 0x10, 0x01, 0xf6, 0x03, 0x5a,
0x02, 0x10, 0x01, 0x03, 0x34, 0x02, 0x10, 0x01, 0x03, 0x4c, 0x02, 0x20,
0x01, 0x03, 0x2d, 0x02, 0x10, 0x01, 0x03, 0x10, 0x02, 0x10, 0x01, 0x03,
0x70, 0x02, 0x10, 0x01, 0x03, 0x5c, 0x02, 0x10, 0x01, 0x03, 0x2b, 0x02,
0x10, 0x01, 0x03, 0x72, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01,
0x03, 0x55, 0x02, 0x10, 0x01, 0x03, 0x31, 0x02, 0x10, 0x01, 0x03, 0x17,
0x02, 0x10, 0x01, 0x03, 0x69, 0x02, 0x10, 0x01, 0x03, 0x58, 0x02, 0x10,
0x01, 0x03, 0xc2, 0x00, 0x02, 0x10, 0x01, 0x03, 0x59, 0x02, 0x10, 0x01,
0x03, 0x27, 0x02, 0x10, 0x01, 0x03, 0xbe, 0x7f, 0x02, 0x10, 0x01, 0x03,
0x2e, 0x02, 0x10, 0x01, 0x03, 0x17, 0x02, 0x10, 0x01, 0x03, 0x69, 0x02,
0x10, 0x01, 0x03, 0x74, 0x02, 0x10, 0x01, 0x03, 0x1a, 0x02, 0x10, 0x01,
0x03, 0x6c, 0x02, 0x20, 0x01, 0x03, 0x20, 0x02, 0x10, 0x01, 0x03, 0x66,
0x02, 0x20, 0x01, 0xf6, 0x03, 0x07, 0x02, 0x20, 0x01, 0x03, 0x06, 0x02,
0x20, 0x01, 0x03, 0x73, 0x02, 0x20, 0x01, 0x03, 0x13, 0x02, 0x10, 0x01,
0x03, 0x74, 0x02, 0x20, 0x01, 0x03, 0x1a, 0x02, 0x10, 0x01, 0x03, 0x6c,
0x02, 0x20, 0x01, 0x03, 0x0d, 0x02, 0x10, 0x01, 0x03, 0x79, 0x02, 0x20,
0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x03, 0xf3, 0x02, 0x02, 0x20, 0x01,
0x03, 0x86, 0x7d, 0x02, 0x10, 0x01, 0x03, 0xfc, 0x02, 0x02, 0x10, 0x01,
0x03, 0x8b, 0x7d, 0x02, 0x10, 0x01, 0xf3, 0x03, 0x0e, 0x02, 0x20, 0x01,
0x03, 0xe3, 0x02, 0x02, 0x10, 0x01, 0x03, 0xa4, 0x7d, 0x02, 0x10, 0x01,
0x03, 0xe0, 0x02, 0x02, 0x10, 0x01, 0x03, 0xa7, 0x7d, 0x02, 0x10, 0x01,
0xf6, 0x03, 0xc7, 0x00, 0x02, 0x10, 0x01, 0xf6, 0xf6, 0xf6, 0x03, 0xc2,
0x00, 0x02, 0x10, 0x01, 0x03, 0x0e, 0x02, 0x10, 0x01, 0x03, 0xdb, 0x7e,
0x02, 0x10, 0x01, 0xf5, 0xf5, 0xf5, 0xf4, 0x03, 0xd7, 0x01, 0x02, 0x10,
0x01, 0x03, 0xae, 0x7e, 0x02, 0x10, 0x01, 0xf4, 0xf4, 0xf4, 0xf4, 0x03,
0xfc, 0x00, 0x02, 0x10, 0x01, 0x03, 0x72, 0x02, 0x10, 0x01, 0x03, 0xae,
0x01, 0x02, 0x10, 0x01, 0xf2, 0x03, 0xa6, 0x7f, 0x01, 0x03, 0xe0, 0x00,
0x02, 0x10, 0x01, 0x03, 0xe0, 0x7d, 0x02, 0x10, 0x01, 0x03, 0xc7, 0x01,
0x02, 0x10, 0x01, 0x03, 0xd9, 0x00, 0x02, 0x10, 0x01, 0xf0, 0x03, 0xe4,
0x7d, 0x02, 0x10, 0x01, 0x03, 0xc9, 0x01, 0x02, 0x10, 0x01, 0x03, 0xd2,
0x00, 0x02, 0x10, 0x01, 0x03, 0x85, 0x7e, 0x02, 0x10, 0x01, 0xf4, 0x03,
0xf7, 0x01, 0x02, 0x10, 0x01, 0xf6, 0xeb, 0xf4, 0x03, 0x86, 0x7e, 0x02,
0x10, 0x01, 0x03, 0x8b, 0x02, 0x02, 0x10, 0x01, 0x03, 0xfa, 0x7d, 0x02,
0x10, 0x01, 0x03, 0x28, 0x02, 0x10, 0x01, 0x03, 0x5d, 0x02, 0x10, 0x01,
0x03, 0x23, 0x02, 0x10, 0x01, 0x03, 0x62, 0x02, 0x10, 0x01, 0x03, 0xfe,
0x01, 0x02, 0x10, 0x01, 0x03, 0x87, 0x7e, 0x02, 0x10, 0x01, 0xf4, 0xf4,
0xf4, 0xf4, 0xf4, 0x03, 0xd0, 0x01, 0x02, 0x10, 0x01, 0xf3, 0xf2, 0x03,
0x7d, 0x02, 0x20, 0x01, 0xf2, 0x03, 0x01, 0x02, 0x20, 0x01, 0xee, 0xf0,
0xf1, 0x03, 0xc6, 0x7e, 0x02, 0x20, 0x01, 0xf4, 0x03, 0xbc, 0x01, 0x02,
0x10, 0x01, 0x03, 0xc9, 0x7e, 0x02, 0x10, 0x01, 0x03, 0xc8, 0x01, 0x02,
0x10, 0x01, 0x03, 0xbd, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x28, 0x02, 0x10,
0x01, 0x03, 0x5d, 0x02, 0x10, 0x01, 0x03, 0x05, 0x02, 0x20, 0x01, 0x03,
0x1e, 0x02, 0x10, 0x01, 0x03, 0x67, 0x02, 0x10, 0x01, 0xf4, 0xf4, 0xf4,
0xf4, 0xf4, 0x03, 0x8d, 0x01, 0x02, 0x10, 0x01, 0xf3, 0xf2, 0x03, 0x7d,
0x02, 0x20, 0x01, 0xf2, 0x03, 0x01, 0x02, 0x20, 0x01, 0xee, 0xf0, 0xf1,
0x03, 0x89, 0x7f, 0x02, 0x20, 0x01, 0x03, 0xff, 0x00, 0x02, 0x10, 0x01,
0xf3, 0xf2, 0x03, 0xff, 0x7e, 0x02, 0x10, 0x01, 0x03, 0x81, 0x01, 0x02,
0x10, 0x01, 0x03, 0x84, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xf9, 0x00, 0x02,
0x10, 0x01, 0x03, 0x8c, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xf7, 0x00, 0x02,
0x10, 0x01, 0x03, 0x8e, 0x7f, 0x02, 0x10, 0x01, 0xf4, 0x03, 0xed, 0x00,
0x02, 0x10, 0x01, 0x03, 0x98, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xe9, 0x00,
0x02, 0x10, 0x01, 0x03, 0x9c, 0x7f, 0x02, 0x10, 0x01, 0x03, 0xe3, 0x00,
0x02, 0x10, 0x01, 0x03, 0xa2, 0x7f, 0x02, 0x10, 0x01, 0xf4, 0xf4, 0x03,
0xd5, 0x00, 0x02, 0x10, 0x01, 0x03, 0xb0, 0x7f, 0x02, 0x10, 0x01, 0x03,
0xd2, 0x00, 0x02, 0x10, 0x01, 0xf3, 0x02, 0x90, 0x01, 0x00, 0x01, 0x01,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x76, 0x65, 0x72,
0x73, 0x69, 0x6f, 0x6e, 0x20, 0x38, 0x2e, 0x31, 0x00, 0x2e, 0x74, 0x61,
0x72, 0x67, 0x65, 0x74, 0x20, 0x73, 0x6d, 0x5f, 0x37, 0x30, 0x00, 0x2e,
0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x5f, 0x73, 0x69, 0x7a, 0x65,
0x20, 0x36, 0x34, 0x00, 0x00, 0x00, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x72,
0x6e, 0x20, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x20, 0x2e, 0x61,
0x6c, 0x69, 0x67, 0x6e, 0x20, 0x31, 0x36, 0x20, 0x2e, 0x62, 0x38, 0x20,
0x5f, 0x5a, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d,
0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74,
0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x35, 0x73, 0x6d, 0x65, 0x6d, 0x5f,
0x45, 0x5b, 0x5d, 0x3b, 0x00, 0x00, 0x2e, 0x76, 0x69, 0x73, 0x69, 0x62,
0x6c, 0x65, 0x20, 0x2e, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x66, 0x6d,
0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43,
0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f,
0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x28,
0x00, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x20, 0x2e, 0x61, 0x6c, 0x69,
0x67, 0x6e, 0x20, 0x38, 0x20, 0x2e, 0x62, 0x38, 0x20, 0x66, 0x6d, 0x68,
0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61,
0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73,
0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x70,
0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x5b, 0x31, 0x31, 0x32, 0x5d, 0x00,
0x29, 0x00, 0x7b, 0x00, 0x2e, 0x72, 0x65, 0x67, 0x20, 0x2e, 0x70, 0x72,
0x65, 0x64, 0x20, 0x09, 0x25, 0x70, 0x3c, 0x32, 0x32, 0x30, 0x3e, 0x3b,
0x00, 0x2e, 0x72, 0x65, 0x67, 0x20, 0x2e, 0x62, 0x31, 0x36, 0x20, 0x09,
0x25, 0x72, 0x73, 0x3c, 0x31, 0x33, 0x39, 0x3e, 0x3b, 0x00, 0x2e, 0x72,
0x65, 0x67, 0x20, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x3c,
0x35, 0x34, 0x31, 0x3e, 0x3b, 0x00, 0x2e, 0x72, 0x65, 0x67, 0x20, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x3c, 0x32, 0x34, 0x31, 0x38,
0x3e, 0x3b, 0x00, 0x2e, 0x72, 0x65, 0x67, 0x20, 0x2e, 0x62, 0x36, 0x34,
0x20, 0x09, 0x25, 0x72, 0x64, 0x3c, 0x36, 0x38, 0x3e, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e, 0x76,
0x32, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x32, 0x30,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x35, 0x7d, 0x2c, 0x20, 0x5b,
0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34,
0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65,
0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x34, 0x38,
0x5d, 0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e,
0x76, 0x32, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x32,
0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x39, 0x7d, 0x2c, 0x20,
0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f,
0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e,
0x65, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x36,
0x34, 0x5d, 0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d,
0x2e, 0x76, 0x34, 0x2e, 0x75, 0x38, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x73,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x73,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x39, 0x7d, 0x2c, 0x20, 0x5b, 0x66,
0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30,
0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x38, 0x38, 0x5d,
0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e, 0x75,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x32, 0x35, 0x2c, 0x20, 0x5b,
0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34,
0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65,
0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x38, 0x30,
0x5d, 0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e,
0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x32, 0x32, 0x2c, 0x20,
0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f,
0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e,
0x65, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x32,
0x34, 0x5d, 0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d,
0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x32, 0x31, 0x2c,
0x20, 0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70,
0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34,
0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72,
0x6e, 0x65, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b,
0x31, 0x36, 0x5d, 0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61,
0x6d, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x39,
0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36,
0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65,
0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30,
0x5d, 0x3b, 0x00, 0x63, 0x76, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x39, 0x3b, 0x00,
0x63, 0x76, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x2e, 0x67, 0x6c, 0x6f, 0x62,
0x61, 0x6c, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x32,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x35, 0x3b, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x2c, 0x20, 0x25, 0x74, 0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x31,
0x32, 0x2c, 0x20, 0x25, 0x63, 0x74, 0x61, 0x69, 0x64, 0x2e, 0x79, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x77, 0x69, 0x64, 0x65, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x64, 0x32, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x31, 0x32, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x32, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x32, 0x38, 0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62,
0x61, 0x6c, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x31,
0x33, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x32, 0x39, 0x2b, 0x34, 0x5d,
0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x64, 0x32, 0x39, 0x5d, 0x3b, 0x00, 0x00, 0x73, 0x75, 0x62,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x3b, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34,
0x2c, 0x20, 0x25, 0x63, 0x74, 0x61, 0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x2c,
0x20, 0x31, 0x3b, 0x00, 0x00, 0x40, 0x25, 0x70, 0x36, 0x20, 0x62, 0x72,
0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x35,
0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x73, 0x68, 0x72, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x30, 0x2c, 0x20, 0x32, 0x39, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x31, 0x3b, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x2c, 0x20,
0x33, 0x3b, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x73, 0x36, 0x34, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x64, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x36, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x6c, 0x6f, 0x2e, 0x73,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x3b, 0x00, 0x00,
0x6d, 0x75, 0x6c, 0x2e, 0x6c, 0x6f, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x33, 0x3b,
0x00, 0x6d, 0x61, 0x64, 0x2e, 0x6c, 0x6f, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x3b, 0x00, 0x00,
0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x32, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x2c, 0x20,
0x2d, 0x38, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x33, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x73,
0x36, 0x34, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35, 0x2c,
0x20, 0x33, 0x31, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x2c, 0x20, 0x30, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x33, 0x36, 0x2c, 0x20, 0x2d, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e,
0x69, 0x64, 0x78, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x30, 0x7c, 0x25, 0x70, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x36, 0x3b,
0x00, 0x00, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63,
0x2e, 0x69, 0x64, 0x78, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x31, 0x7c, 0x25, 0x70, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x36,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e,
0x73, 0x79, 0x6e, 0x63, 0x2e, 0x69, 0x64, 0x78, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x7c, 0x25, 0x70, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x68, 0x66, 0x6c,
0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x69, 0x64, 0x78, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x7c, 0x25, 0x70, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x36, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x2c, 0x20, 0x38, 0x3b, 0x00,
0x6d, 0x69, 0x6e, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x2c, 0x20, 0x31, 0x36,
0x3b, 0x00, 0x63, 0x76, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x2e, 0x67, 0x6c,
0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72,
0x64, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x31, 0x3b, 0x00, 0x00,
0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x2c, 0x20, 0x31, 0x3b, 0x00,
0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72,
0x64, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x32, 0x2c, 0x20, 0x34,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x2c, 0x20, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x34, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x34, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x34, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x33, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x33, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34,
0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x33, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37,
0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x33, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x33, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x36, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x36, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x40, 0x25, 0x70,
0x37, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42,
0x42, 0x30, 0x5f, 0x31, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x77, 0x69, 0x64, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x64, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x2c, 0x20, 0x38,
0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09,
0x25, 0x72, 0x64, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x33, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x33, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72,
0x64, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x33, 0x32, 0x3b, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x75, 0x33, 0x32,
0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x33, 0x35, 0x30, 0x2c, 0x20, 0x30, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x33, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35,
0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x33, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x35, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x33, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x35, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x35, 0x30, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x38, 0x20, 0x62,
0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f,
0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f,
0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x7b, 0x25, 0x72, 0x32, 0x33, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x34, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x34, 0x39, 0x7d, 0x2c, 0x20, 0x5b, 0x25,
0x72, 0x64, 0x37, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42,
0x42, 0x30, 0x5f, 0x34, 0x3a, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x35, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x35, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x30, 0x3b, 0x00, 0x40, 0x25, 0x70,
0x39, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42,
0x42, 0x30, 0x5f, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x7b, 0x25, 0x72, 0x32, 0x33, 0x35, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x33, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x64, 0x38, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x42, 0x42, 0x30, 0x5f, 0x36, 0x3a, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36, 0x3b, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x2c, 0x20, 0x31,
0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x35, 0x38, 0x2c, 0x20, 0x30, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x38, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x38, 0x3b, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x35,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x38, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x38, 0x3b, 0x00,
0x40, 0x25, 0x70, 0x31, 0x30, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24,
0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x32, 0x33, 0x35,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35,
0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x39, 0x5d, 0x3b, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x38, 0x3a, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x2c, 0x20, 0x33,
0x32, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x3b, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x33, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x38, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x33, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x38,
0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x33, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35,
0x38, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x31, 0x20, 0x62, 0x72, 0x61,
0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x31, 0x30,
0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20,
0x09, 0x25, 0x72, 0x64, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x64, 0x36, 0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e,
0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x32, 0x33, 0x35, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x36, 0x31, 0x7d, 0x2c,
0x20, 0x5b, 0x25, 0x72, 0x64, 0x33, 0x33, 0x5d, 0x3b, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x31, 0x30, 0x3a, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x33, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34,
0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37,
0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x33, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x33, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x38, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x33, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x33, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34,
0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x33, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37,
0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x33, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x37, 0x34, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x37, 0x20, 0x62, 0x72, 0x61,
0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x31, 0x39,
0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x30, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x77, 0x69, 0x64, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x64, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x39,
0x32, 0x2c, 0x20, 0x38, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x64, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64,
0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x33, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x64, 0x33, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34,
0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x33, 0x36, 0x3b, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x75, 0x33, 0x32, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x32, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x3b, 0x00,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x39,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x37, 0x38,
0x2c, 0x20, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x38, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x37, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x38, 0x3b, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x37,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x38, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x38, 0x3b, 0x00,
0x40, 0x25, 0x70, 0x31, 0x33, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24,
0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x31, 0x33, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e,
0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x32,
0x33, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x37, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x31, 0x30,
0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f,
0x31, 0x33, 0x3a, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34,
0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x37, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x37, 0x38, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x38, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x38, 0x3b, 0x00, 0x40, 0x25,
0x70, 0x31, 0x34, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f,
0x5f, 0x42, 0x42, 0x30, 0x5f, 0x31, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x32, 0x33, 0x37, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38, 0x31,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x31, 0x31, 0x5d, 0x3b, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x31, 0x35, 0x3a,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x36, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x31, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x37, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x31, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38, 0x36, 0x2c, 0x20, 0x30,
0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x33, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x38, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x33, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x38, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x38, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x38, 0x36, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x35,
0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42,
0x30, 0x5f, 0x31, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x7b, 0x25, 0x72, 0x32, 0x33, 0x38, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38, 0x35, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x64, 0x31, 0x32, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x31, 0x37, 0x3a, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x31,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x2c, 0x20, 0x33, 0x32, 0x3b,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x31,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x3b, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x38,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38, 0x36, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38, 0x36, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x33, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38, 0x36, 0x3b,
0x00, 0x40, 0x25, 0x70, 0x31, 0x36, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09,
0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x31, 0x39, 0x3b, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x36, 0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x7b, 0x25, 0x72, 0x32, 0x33, 0x38, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38, 0x39, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x64, 0x33, 0x37, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x31, 0x39, 0x3a, 0x00, 0x00, 0x61,
0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31,
0x30, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x2c, 0x20, 0x31, 0x36,
0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20,
0x09, 0x25, 0x72, 0x31, 0x30, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x2c, 0x20, 0x33, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x34, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x2c, 0x20, 0x32, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x2c, 0x20, 0x37, 0x3b, 0x00, 0x00, 0x73,
0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30,
0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x2c, 0x20, 0x34, 0x3b, 0x00,
0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x31, 0x30, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x34, 0x32,
0x2c, 0x20, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x34, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x36, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x73, 0x68, 0x72,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x34, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x34, 0x34, 0x2c, 0x20, 0x33, 0x30,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x30, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x34, 0x35, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x34, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x34, 0x36, 0x2c, 0x20, 0x32, 0x36,
0x38, 0x34, 0x33, 0x35, 0x34, 0x35, 0x32, 0x3b, 0x00, 0x73, 0x75, 0x62,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x34, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x34,
0x37, 0x3b, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x3b, 0x00, 0x00,
0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x30, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x34, 0x39, 0x2c,
0x20, 0x34, 0x3b, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x30, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x36,
0x2c, 0x20, 0x37, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x35, 0x31,
0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20,
0x09, 0x25, 0x72, 0x31, 0x30, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x35, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x35, 0x33, 0x2c, 0x20, 0x31, 0x3b, 0x00, 0x00, 0x73,
0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30,
0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x33, 0x39, 0x2c, 0x20,
0x31, 0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x31, 0x30, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x38, 0x3b, 0x00, 0x00,
0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31,
0x30, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x35, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x35, 0x34, 0x3b, 0x00, 0x00, 0x73, 0x68,
0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x35,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x35, 0x37, 0x2c, 0x20, 0x37,
0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25,
0x72, 0x31, 0x30, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x35,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x34, 0x33, 0x3b, 0x00, 0x00,
0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x31, 0x30, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x2c, 0x20, 0x32,
0x34, 0x3b, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x30, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x36, 0x30, 0x2c, 0x20, 0x31, 0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x36, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x34, 0x30, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x34, 0x31,
0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x36, 0x33, 0x2c, 0x20, 0x37, 0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x36, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x34, 0x33, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x30, 0x36, 0x36, 0x2c, 0x20, 0x5f, 0x5a, 0x4e,
0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74,
0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74,
0x69, 0x6f, 0x6e, 0x35, 0x73, 0x6d, 0x65, 0x6d, 0x5f, 0x45, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x35, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x36, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x32, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x33, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x33,
0x32, 0x34, 0x2c, 0x20, 0x32, 0x30, 0x34, 0x38, 0x3b, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x33, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x33, 0x32, 0x34, 0x2c, 0x20, 0x34, 0x30, 0x39,
0x36, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x33, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x32, 0x34,
0x2c, 0x20, 0x36, 0x31, 0x34, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x32, 0x34,
0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x33, 0x34, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x34, 0x39, 0x7d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72,
0x33, 0x32, 0x39, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x33, 0x35,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35,
0x33, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x5b, 0x25, 0x72, 0x33, 0x33, 0x34, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72,
0x32, 0x33, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x35, 0x37, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x33, 0x39, 0x5d, 0x2c, 0x20,
0x7b, 0x25, 0x72, 0x32, 0x33, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x36, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x36, 0x31, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x30, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x36, 0x2c,
0x20, 0x38, 0x31, 0x39, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x36, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x36, 0x37, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x33, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x33, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x34, 0x34, 0x2c,
0x20, 0x32, 0x30, 0x34, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x35, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x34, 0x34, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33,
0x35, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x34, 0x34, 0x2c, 0x20, 0x36,
0x31, 0x34, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x34, 0x34, 0x5d, 0x2c, 0x20,
0x7b, 0x25, 0x72, 0x32, 0x33, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x37, 0x37, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x34, 0x39,
0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x33, 0x37, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38, 0x31, 0x7d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72,
0x33, 0x35, 0x34, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x33, 0x38,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38,
0x35, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x5b, 0x25, 0x72, 0x33, 0x35, 0x39, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72,
0x32, 0x33, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x38, 0x39, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x62, 0x61,
0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30,
0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x35, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x36, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x36, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x33, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x36, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x33, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33,
0x36, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x36, 0x38, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x33, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x33,
0x36, 0x38, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x33, 0x36, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x33, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x37,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x37, 0x32, 0x7d, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x33, 0x37, 0x33, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x37,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x36, 0x37, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x37, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x33, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x37, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x37,
0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x37, 0x38, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x33, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x37,
0x38, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x33, 0x37, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x33, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x38, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x33, 0x38, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25,
0x72, 0x33, 0x38, 0x33, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x34, 0x33, 0x32, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x34, 0x33,
0x33, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x30, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x34, 0x35, 0x38, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x34, 0x35,
0x39, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x30, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x25, 0x72, 0x34, 0x38, 0x33, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x35, 0x30, 0x34, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x35, 0x30,
0x35, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x36, 0x3b, 0x00,
0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25,
0x72, 0x31, 0x30, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x35,
0x39, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x30, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37,
0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x34, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x30, 0x34,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x30, 0x34, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x34, 0x30, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x30, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x38, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x34, 0x30, 0x39, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30,
0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x36, 0x37, 0x3b, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x37, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x35, 0x2c, 0x20, 0x31, 0x36, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x34, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x34, 0x31, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x33, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x34, 0x31, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34,
0x31, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x34, 0x2c, 0x20, 0x34,
0x30, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x34, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x31, 0x38, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x31, 0x39,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x33, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x36, 0x35, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x33, 0x37, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x36, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x33, 0x36, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x37, 0x37,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x36, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x36, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33,
0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x38, 0x30, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x35, 0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x33, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x36,
0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x38, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x33, 0x38, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35,
0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x33, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x37, 0x30, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x33, 0x37, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x38, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x37, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x33, 0x37, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x37, 0x37,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35,
0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x36, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x37, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33,
0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x38, 0x30, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35,
0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x30, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x30, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x33, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x37,
0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x38, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x33, 0x38, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30,
0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x37, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x35, 0x39, 0x2c, 0x20, 0x33, 0x32,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x35, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x35, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x39, 0x7d, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x35, 0x32, 0x30, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x35, 0x32,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x32, 0x30, 0x2c, 0x20, 0x34, 0x30,
0x39, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x35, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x32, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x35, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35,
0x32, 0x34, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x35, 0x32, 0x35, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x37, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x36, 0x35, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x35, 0x33,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x37, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e,
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x7b, 0x25, 0x72, 0x35, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x32, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x32, 0x39, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x35,
0x33, 0x30, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x35, 0x33, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x33, 0x30, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b,
0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x35,
0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x33, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x33, 0x34, 0x7d,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x35, 0x33, 0x35, 0x5d, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x30, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x30, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x31, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x33, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x34, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30,
0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x31, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x31, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33,
0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x35, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x34, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x31, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x31, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x35, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x30, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x38,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x33, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x30, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x30, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x31, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x38, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x34, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30,
0x38, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x31, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x31, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38,
0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x34, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x36, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x31, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x30,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35,
0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x30, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x38, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x38,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x30, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x31, 0x30, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x35, 0x39, 0x2c, 0x20, 0x34, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x36, 0x33, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x37, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x36, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x33, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x36, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x36,
0x33, 0x35, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x36, 0x33, 0x36, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x36, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x36,
0x33, 0x36, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x36, 0x33, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x36, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x33,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x30, 0x7d, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x36, 0x34, 0x31, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x78,
0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31,
0x30, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x35, 0x2c,
0x20, 0x34, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x36, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x38, 0x3b,
0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x36,
0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x36, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x35, 0x7d,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x36, 0x34, 0x36, 0x5d, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x36, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x36, 0x2c,
0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e,
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x7b, 0x25, 0x72, 0x36, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x36, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x36, 0x35, 0x30, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x36,
0x35, 0x31, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x35, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x37, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x32, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x35, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x32, 0x39,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x31, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35,
0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x33, 0x32, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x35, 0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x35, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x33, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x33, 0x34, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35,
0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x35, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x32, 0x32, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x32, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x38, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x32, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x35, 0x32, 0x34, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x35, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x32, 0x39,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35,
0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x32, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x32, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35,
0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x33, 0x32, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35,
0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x30, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x30, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x35, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x32,
0x34, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x33, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x33, 0x34, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30,
0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x37, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x35, 0x39, 0x2c, 0x20, 0x36, 0x34, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x37, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x37, 0x34, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x37, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x35, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x37, 0x35, 0x31, 0x7d, 0x2c, 0x20, 0x5b, 0x25,
0x72, 0x37, 0x35, 0x32, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x37, 0x35, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x37, 0x35, 0x32, 0x2c, 0x20, 0x34, 0x30, 0x39,
0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x37, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x35, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x37, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x35,
0x36, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x37, 0x35, 0x37, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20,
0x09, 0x25, 0x72, 0x31, 0x30, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x36, 0x35, 0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x37, 0x36, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x38, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x37, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x35,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x37, 0x36, 0x31, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x37, 0x36, 0x32,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x37, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x37, 0x36, 0x32, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x37, 0x36, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x37,
0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x36, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x37, 0x36, 0x37, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x36, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x36,
0x33, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x36, 0x34, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x33, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d,
0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x36, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x33, 0x35, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x36, 0x34, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x36, 0x34, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e,
0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63,
0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x35, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x36, 0x33,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x33, 0x33, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x36, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34,
0x38, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x7d, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e,
0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x36, 0x33, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x36, 0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x36, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x35, 0x30, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x35, 0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x36, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x36,
0x33, 0x38, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x36, 0x34, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x38, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d,
0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x36, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x30, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x36, 0x34, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x36, 0x34, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x33, 0x7d,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e,
0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63,
0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x36, 0x33,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x33, 0x38, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x36, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34,
0x38, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x30, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x7d, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e,
0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x36, 0x33, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x36, 0x34, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x36, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x35, 0x30, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x30, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x31, 0x30, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x35, 0x39,
0x2c, 0x20, 0x38, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x38, 0x31,
0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72,
0x38, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x37,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x38, 0x36, 0x38, 0x5d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x38, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x38,
0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x38, 0x36, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x37, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x37, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x38, 0x37, 0x33, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x38,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x35, 0x2c, 0x20, 0x38,
0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x38, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x38, 0x32, 0x3b, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x38, 0x37, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x37, 0x37, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x38, 0x37, 0x38, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38,
0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x37, 0x38, 0x2c, 0x20, 0x34,
0x30, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x38, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x38,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x38, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x38, 0x38, 0x33,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e,
0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63,
0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x37, 0x34,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x34, 0x39, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x37, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x35,
0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e,
0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x37, 0x35, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x37, 0x35, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x37, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x31, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x33, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x37, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x37,
0x34, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x37, 0x36, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x34, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x35, 0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d,
0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x37, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x35, 0x31, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x37, 0x36, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x37, 0x36, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x7d,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e,
0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63,
0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x38, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x37, 0x35,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x35, 0x34, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x37, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x35,
0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e,
0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x33,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x37, 0x35, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x37, 0x35, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x37, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x31, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x38, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x30, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35,
0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x37, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x37,
0x35, 0x34, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x37, 0x36, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x34, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35,
0x30, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d,
0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x37, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x35, 0x36, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x37, 0x36, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x37, 0x36, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35,
0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x30, 0x37, 0x7d,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x38, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x35, 0x39, 0x2c, 0x20, 0x39, 0x36, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39,
0x38, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x38, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x39, 0x38, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x38, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x38, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x39, 0x38, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x38, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x38, 0x34, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36,
0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72,
0x39, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x38, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x39, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x38, 0x38,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x39, 0x38, 0x39, 0x5d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20,
0x09, 0x25, 0x72, 0x31, 0x30, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x36, 0x35, 0x2c, 0x20, 0x39, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x39, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x38, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x39, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x39,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x39, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x39, 0x39, 0x34,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x39, 0x34, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x39, 0x39, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x39, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x39, 0x38, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x39, 0x39, 0x39, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x31, 0x30, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x35, 0x39,
0x2c, 0x20, 0x31, 0x31, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x30, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x38, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x31, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x30, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x30, 0x30, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x30,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x30, 0x34, 0x2c, 0x20, 0x34,
0x30, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x31, 0x30, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x30, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x30, 0x38, 0x7d, 0x2c, 0x20, 0x5b, 0x25,
0x72, 0x31, 0x30, 0x30, 0x39, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x78,
0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31,
0x30, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x35, 0x2c,
0x20, 0x31, 0x31, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x31, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x38,
0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x31, 0x30, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x31, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31,
0x30, 0x31, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x31, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x34, 0x2c, 0x20, 0x34, 0x30,
0x39, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x31, 0x30, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x31, 0x38, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x30, 0x31, 0x39, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x62, 0x61,
0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x30, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x2c, 0x20,
0x32, 0x3b, 0x00, 0x6d, 0x61, 0x64, 0x2e, 0x6c, 0x6f, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x38, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x3b, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x77, 0x69, 0x64, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x64, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x38, 0x38, 0x2c,
0x20, 0x38, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34,
0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x3b, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x64, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x33, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09,
0x25, 0x72, 0x64, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x34, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x38, 0x39, 0x2c,
0x20, 0x33, 0x31, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x30, 0x32, 0x2c, 0x20, 0x30, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x30, 0x39, 0x30, 0x2c, 0x20, 0x2d, 0x31, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e,
0x69, 0x64, 0x78, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x30, 0x39, 0x31, 0x7c, 0x25, 0x70, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x39, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x68, 0x66, 0x6c,
0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x69, 0x64, 0x78, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x36, 0x7c, 0x25, 0x70, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x38, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x39, 0x30, 0x3b, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30,
0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x34, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x39, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x34,
0x31, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x30, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x39, 0x33, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x39, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x39, 0x34, 0x2c, 0x20, 0x34, 0x38,
0x3b, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x31, 0x30, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x39, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x33, 0x39, 0x3b, 0x00,
0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x30, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x39, 0x33, 0x2c,
0x20, 0x37, 0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20,
0x09, 0x25, 0x72, 0x31, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x39, 0x37, 0x3b, 0x00,
0x00, 0x6d, 0x61, 0x64, 0x2e, 0x6c, 0x6f, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x34, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34,
0x30, 0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x34, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x34, 0x30, 0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x30, 0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x30, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x34, 0x30, 0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x30, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x34, 0x30, 0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x30, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x30, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x32, 0x3b, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x31,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x32, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34,
0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x32, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x34, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x32, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x34, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x32,
0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x34, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30,
0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x34, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34,
0x30, 0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x34, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x34, 0x30, 0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x30, 0x32, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x37, 0x20, 0x62,
0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f,
0x32, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x69, 0x6e, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x33, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x75, 0x33, 0x32, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x31,
0x31, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x30,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x33, 0x30, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34,
0x30, 0x36, 0x2c, 0x20, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x30,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x36, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34,
0x30, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x36, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x34, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x36, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x34, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x36,
0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x39, 0x20, 0x62, 0x72, 0x61, 0x20,
0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x32, 0x32, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61,
0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25,
0x72, 0x32, 0x34, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x34, 0x30, 0x35, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64,
0x31, 0x33, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42,
0x30, 0x5f, 0x32, 0x32, 0x3a, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64,
0x36, 0x33, 0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c,
0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f,
0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d,
0x5f, 0x30, 0x2b, 0x32, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c,
0x2e, 0x62, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x36, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x36, 0x33, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x6d,
0x69, 0x6e, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x2c, 0x20, 0x36, 0x34, 0x3b,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x36, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x32, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x33, 0x31, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x30, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x34, 0x30, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x30, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x30, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x36, 0x3b, 0x00, 0x40, 0x25,
0x70, 0x32, 0x30, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f,
0x5f, 0x42, 0x42, 0x30, 0x5f, 0x32, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x32, 0x34, 0x30, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x39,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x31, 0x34, 0x5d, 0x3b, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x32, 0x34, 0x3a,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e, 0x75,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x36, 0x35, 0x2c, 0x20, 0x5b,
0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36,
0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34,
0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65,
0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x32, 0x34,
0x5d, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x36, 0x34, 0x20,
0x09, 0x25, 0x72, 0x64, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36,
0x35, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x6d, 0x69, 0x6e, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x33, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36,
0x34, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x31, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x37, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x33, 0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x31, 0x34, 0x2c, 0x20, 0x30,
0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x34, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34,
0x31, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x34, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x34, 0x31, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x31, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x31, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x34, 0x31, 0x34, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x32, 0x31,
0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42,
0x30, 0x5f, 0x32, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x7b, 0x25, 0x72, 0x32, 0x34, 0x31, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x34, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x31,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x31, 0x33, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x64, 0x31, 0x35, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x32, 0x36, 0x3a, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e, 0x75, 0x36, 0x34, 0x20,
0x09, 0x25, 0x72, 0x64, 0x36, 0x37, 0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68,
0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61,
0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73,
0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x70,
0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x32, 0x34, 0x5d, 0x3b, 0x00,
0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72,
0x64, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36, 0x37, 0x2c, 0x20,
0x34, 0x3b, 0x00, 0x6d, 0x69, 0x6e, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x33, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x2c,
0x20, 0x36, 0x34, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x31, 0x32, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x37, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x32, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x33, 0x33, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36,
0x36, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x34, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x34, 0x31, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x31, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x34, 0x31, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x34, 0x31, 0x34, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x32, 0x32,
0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42,
0x30, 0x5f, 0x32, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x7b, 0x25, 0x72, 0x32, 0x34, 0x31, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x34, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x31,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x31, 0x37, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x64, 0x31, 0x36, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x32, 0x38, 0x3a, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x32, 0x37, 0x2c, 0x20, 0x25, 0x74, 0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00,
0x00, 0x73, 0x68, 0x72, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x33, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x37,
0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x32, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x32, 0x36, 0x2c, 0x20, 0x32, 0x36, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x33, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x35, 0x3b, 0x00, 0x73, 0x68, 0x72,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x32, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x34, 0x2c, 0x20, 0x36, 0x3b,
0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x32, 0x33, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x32, 0x37, 0x2c, 0x20, 0x38, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x32, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x37, 0x2c, 0x20, 0x38, 0x3b, 0x00,
0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x33, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x31, 0x2c,
0x20, 0x31, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x31, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x32, 0x37, 0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00, 0x00,
0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x31, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x36, 0x2c,
0x20, 0x32, 0x37, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x31, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x39, 0x38,
0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31,
0x39, 0x39, 0x2c, 0x20, 0x2d, 0x33, 0x32, 0x3b, 0x00, 0x73, 0x75, 0x62,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x30, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x30, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x31, 0x2c, 0x20, 0x31, 0x36, 0x3b,
0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x32,
0x2c, 0x20, 0x31, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x30, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x30, 0x31, 0x2c, 0x20, 0x37, 0x3b, 0x00, 0x00, 0x73,
0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32,
0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x39, 0x39, 0x2c, 0x20,
0x33, 0x31, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x39, 0x39, 0x2c, 0x20, 0x35, 0x3b, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x30,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x30, 0x35, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x30, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x37, 0x2c, 0x20, 0x2d, 0x32, 0x3b,
0x00, 0x73, 0x75, 0x62, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x62,
0x66, 0x69, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x30, 0x34, 0x2c, 0x20, 0x34, 0x2c, 0x20, 0x32,
0x38, 0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x33, 0x3b, 0x00,
0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x32, 0x37, 0x2c, 0x20, 0x34, 0x38, 0x3b, 0x00, 0x73, 0x68, 0x72, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x31, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x32, 0x2c, 0x20, 0x31, 0x3b, 0x00,
0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31,
0x32, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x31, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x34, 0x2c, 0x20, 0x39, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x36, 0x3b, 0x00, 0x00, 0x73,
0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32,
0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x31, 0x2c, 0x20,
0x31, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x38, 0x3b, 0x00, 0x73,
0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32,
0x32, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x39, 0x2c, 0x20,
0x33, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x31, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x32, 0x30, 0x3b, 0x00,
0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x32, 0x31,
0x2c, 0x20, 0x34, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x32, 0x32, 0x3b,
0x00, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x32, 0x36, 0x2c, 0x20, 0x32, 0x35, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x32, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x32, 0x33, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x32, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x32, 0x34, 0x2c, 0x20, 0x31, 0x3b, 0x00, 0x00, 0x61,
0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31,
0x32, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x32, 0x35, 0x2c,
0x20, 0x35, 0x33, 0x36, 0x38, 0x37, 0x30, 0x38, 0x34, 0x38, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x32, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x32, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x68,
0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x32,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x32, 0x37, 0x2c, 0x20, 0x31,
0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x32, 0x33, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x33, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x32, 0x39, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x33, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x33, 0x30, 0x2c, 0x20, 0x31, 0x30, 0x37, 0x33, 0x37,
0x34, 0x31, 0x38, 0x32, 0x32, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x33, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x33, 0x31, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x32,
0x3b, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x32, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33,
0x33, 0x2c, 0x20, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x34,
0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x31, 0x31, 0x2c, 0x20, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x37, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33,
0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x33, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x30, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x33,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31,
0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x73,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x31, 0x7d, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x31, 0x33, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x25, 0x66, 0x31, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31,
0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x34,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x31, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x73, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31,
0x35, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x33, 0x36, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x34, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x73, 0x31, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x25, 0x66, 0x31, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x35,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x31, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x73, 0x31, 0x39, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31,
0x33, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74,
0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31,
0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x38, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x34, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x73, 0x31, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x73,
0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x32, 0x33, 0x7d, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x31, 0x34, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x25, 0x66, 0x31, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x32,
0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x35,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x32, 0x33, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x35, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x34, 0x33, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e,
0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x35, 0x2c,
0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x34, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x34, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x36,
0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46,
0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46,
0x2c, 0x20, 0x25, 0x70, 0x32, 0x34, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x37,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x37, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x32, 0x33, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x34, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x32, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x38, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x34, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x39, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x32, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x39,
0x2c, 0x20, 0x25, 0x70, 0x32, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61,
0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x35,
0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x37,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x37,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x34, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x32, 0x2c, 0x20, 0x30, 0x66,
0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66,
0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70,
0x32, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x32, 0x2c, 0x20,
0x25, 0x70, 0x32, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x31, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x36, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x39, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x38, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x36,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x31, 0x38, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x31, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34,
0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x70,
0x32, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38,
0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x37, 0x3b, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x38, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67,
0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x37, 0x2c, 0x20,
0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00,
0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x38, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46,
0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46,
0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x32, 0x3b, 0x00,
0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x31,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x34, 0x38, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39,
0x30, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x33,
0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x38, 0x2c, 0x20, 0x30, 0x66,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31,
0x39, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x34, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31,
0x39, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x38, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x33, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x34, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e,
0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39, 0x33, 0x2c,
0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x33, 0x36, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x34, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x34,
0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46,
0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46,
0x2c, 0x20, 0x25, 0x70, 0x33, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x35,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x39, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x35, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x35, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x33, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39, 0x36, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x33, 0x38, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x35, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x37, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x33, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x38, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39, 0x37,
0x2c, 0x20, 0x25, 0x70, 0x33, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31,
0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31,
0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31,
0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31,
0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x32, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x73, 0x32, 0x37, 0x7d, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x34, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66,
0x31, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x32, 0x36, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x35, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x73, 0x32, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x33, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x31, 0x7d, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x35, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66,
0x31, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x30, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x35, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x73, 0x33, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x33, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x35, 0x7d, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x35, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66,
0x31, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x34, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x35, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x73, 0x33, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x33, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x39, 0x7d, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x35, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66,
0x31, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x38, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x35, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x73, 0x33, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x31, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x31, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x33, 0x39, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x39, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x31,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x30, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x70,
0x33, 0x39, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x30, 0x32, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x35, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30,
0x32, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x34,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x32, 0x2c, 0x20, 0x30, 0x66,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x30, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x32, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x30, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x31, 0x3b, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x35, 0x33, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x34, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x35, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x34, 0x34, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x35, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x30, 0x36, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x34, 0x34, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x30, 0x37, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x36,
0x2c, 0x20, 0x25, 0x70, 0x34, 0x33, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x32, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x34, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x34, 0x35, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x30, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x34,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x30, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x36,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35,
0x34, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x70,
0x34, 0x35, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x31, 0x31, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x35, 0x35, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31,
0x31, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x34,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x35, 0x2c, 0x20, 0x30, 0x66,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x31, 0x32, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x31, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x35, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x37, 0x3b, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x35, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x34, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x34, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x35, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x35, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x31, 0x35, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x35, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x31, 0x36, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x35,
0x2c, 0x20, 0x25, 0x70, 0x34, 0x39, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x32, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x37, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x35, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x31, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x37,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x31, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x32,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35,
0x37, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x70,
0x35, 0x31, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x32, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x35, 0x38, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32,
0x30, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x35,
0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x38, 0x2c, 0x20, 0x30, 0x66,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x32, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x34, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x32, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x38, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x33, 0x3b, 0x00,
0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x31, 0x31, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x31, 0x31, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x31, 0x31, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x31, 0x31, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x73, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x34, 0x33, 0x7d,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x36, 0x35, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x25, 0x66, 0x31, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x73,
0x34, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x36,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x34, 0x33, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x73, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x34, 0x37, 0x7d,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x36, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x25, 0x66, 0x31, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x73,
0x34, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x36,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x34, 0x37, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x73, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x35, 0x31, 0x7d,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x37, 0x31, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x25, 0x66, 0x31, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x73,
0x35, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x36,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x35, 0x31, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x73, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x35, 0x35, 0x7d,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x37, 0x34, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x25, 0x66, 0x31, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x73,
0x35, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x36,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x35, 0x35, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x35, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x35, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x33, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x35, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x35, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x32, 0x34, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x35, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x32, 0x35, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x34,
0x2c, 0x20, 0x25, 0x70, 0x35, 0x35, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x32, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x30, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x35, 0x37, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x32, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x30,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x32, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x38,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x70,
0x35, 0x37, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x32, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x36, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32,
0x39, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x36,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x31, 0x2c, 0x20, 0x30, 0x66,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x33, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x31, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x39, 0x3b, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x36, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x36, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x32, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x36, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x36, 0x32, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x33, 0x33, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x36, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x33, 0x34, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x33,
0x2c, 0x20, 0x25, 0x70, 0x36, 0x31, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x32, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x33, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x36, 0x33, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x33, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x33,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x33, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x34,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36,
0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x70,
0x36, 0x33, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x33, 0x38, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x36, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33,
0x38, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x36,
0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x34, 0x2c, 0x20, 0x30, 0x66,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x33, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x36, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x34, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x35, 0x3b, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x36, 0x35, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x36, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x34, 0x31, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x36, 0x38, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x36, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x34, 0x32, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x36, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x34, 0x33, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x34, 0x32,
0x2c, 0x20, 0x25, 0x70, 0x36, 0x37, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x32, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x36, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x36, 0x39, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x34, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x36,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x34, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36,
0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x70,
0x36, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x38, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x38, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x38, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x39, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x73, 0x35, 0x39, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x38, 0x31,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33,
0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x36, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x35, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x25, 0x66, 0x31, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x35, 0x39,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x73, 0x36, 0x33, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x38, 0x34,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33,
0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x36, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x36, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x25, 0x66, 0x31, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x36, 0x33,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x73, 0x36, 0x37, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x38, 0x37,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33,
0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x37, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x36, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x25, 0x66, 0x31, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x36, 0x37,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x73, 0x37, 0x31, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x39, 0x30,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33,
0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x31, 0x37, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x37, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x25, 0x66, 0x31, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x37, 0x31,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x34, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x36, 0x37, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x34,
0x37, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x37,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x37, 0x2c, 0x20, 0x30, 0x66,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x34, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x32, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x34, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x37, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x31, 0x3b, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x36, 0x38, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x37, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x35, 0x30, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x37, 0x34, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x36, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x35, 0x31, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x37, 0x34, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x35, 0x32, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x35, 0x31,
0x2c, 0x20, 0x25, 0x70, 0x37, 0x33, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x32, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x39, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x37, 0x35, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x35, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x39,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x35, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x36,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x70,
0x37, 0x35, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x35, 0x36, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x37, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x35,
0x36, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x37,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x30, 0x2c, 0x20, 0x30, 0x66,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x35, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x38, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x35, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x37, 0x3b, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x37, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x37, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x35, 0x39, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x38, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x37, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x36, 0x30, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x38, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x36, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x36, 0x30,
0x2c, 0x20, 0x25, 0x70, 0x37, 0x39, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x32, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x32, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x38, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x36, 0x32, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x32,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x36, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x38, 0x32,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x70,
0x38, 0x31, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x36, 0x35, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x37, 0x33, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x36,
0x35, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x38,
0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x33, 0x2c, 0x20, 0x30, 0x66,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x36, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x38, 0x34, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x36, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x38, 0x33, 0x3b, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x37, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x38, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x36, 0x38, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x38, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x37, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x36, 0x39, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x38, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x37, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x36, 0x39,
0x2c, 0x20, 0x25, 0x70, 0x38, 0x35, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x33, 0x2c, 0x20, 0x34, 0x3b,
0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x30, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x37, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x38, 0x39, 0x2c,
0x20, 0x25, 0x70, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x38, 0x38, 0x3b,
0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30,
0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x37, 0x2c, 0x20, 0x25,
0x70, 0x38, 0x39, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x33, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x33, 0x37, 0x2c, 0x20, 0x31, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x6c, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x37, 0x3b, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x39, 0x32, 0x2c, 0x20, 0x25,
0x70, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x31, 0x3b, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x39,
0x32, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x32, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x33, 0x37, 0x2c, 0x20, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x33, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x39,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64,
0x20, 0x20, 0x09, 0x25, 0x70, 0x39, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x39,
0x33, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x35, 0x3b,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x32, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33,
0x37, 0x2c, 0x20, 0x33, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x39, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x34, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67,
0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x39, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x33,
0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20,
0x09, 0x25, 0x70, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x36, 0x2c,
0x20, 0x25, 0x70, 0x39, 0x37, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x2c, 0x20, 0x30, 0x66,
0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x38, 0x3b, 0x00, 0x00,
0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31,
0x32, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x37, 0x2c,
0x20, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x39, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x34, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x3b,
0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09,
0x25, 0x70, 0x31, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x39, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x30, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x2c, 0x20, 0x30,
0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x31, 0x3b,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x32, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33,
0x37, 0x2c, 0x20, 0x39, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x34, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64,
0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x33, 0x3b, 0x00,
0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x36, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x30, 0x34, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x34, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x33, 0x37, 0x2c, 0x20, 0x31, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x31, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x33, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x31, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x34, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30,
0x37, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x30, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39,
0x35, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x37, 0x3b, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32,
0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x37, 0x2c, 0x20,
0x31, 0x31, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x34, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33,
0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20,
0x09, 0x25, 0x70, 0x31, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30,
0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x39, 0x3b, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x38, 0x2c,
0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x31,
0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x33, 0x37, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x35, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x31, 0x33, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x31, 0x32,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x31, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x31, 0x33, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x34, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x37, 0x2c, 0x20, 0x33, 0x33, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x36,
0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x00,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70,
0x31, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x31, 0x34, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x31, 0x35, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x30, 0x2c, 0x20, 0x30,
0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x31, 0x36, 0x3b,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x32, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33,
0x37, 0x2c, 0x20, 0x33, 0x34, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31,
0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x34, 0x37, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31,
0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65,
0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x31, 0x39, 0x2c, 0x20, 0x25,
0x70, 0x31, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x31, 0x38, 0x3b,
0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x37, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x31, 0x39, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x34, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x37, 0x2c, 0x20, 0x33, 0x35, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x38,
0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x00,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70,
0x31, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x32, 0x30, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x32, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x32, 0x2c, 0x20, 0x30,
0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x32, 0x32, 0x3b,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x32, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33,
0x37, 0x2c, 0x20, 0x34, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31,
0x32, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x34, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31,
0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65,
0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x32, 0x35, 0x2c, 0x20, 0x25,
0x70, 0x31, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x32, 0x34, 0x3b,
0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x33, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x32, 0x35, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x35, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x37, 0x2c, 0x20, 0x34, 0x31, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x30,
0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x00,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70,
0x31, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x32, 0x36, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x32, 0x37, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x34, 0x2c, 0x20, 0x30,
0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x32, 0x38, 0x3b,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x32, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33,
0x37, 0x2c, 0x20, 0x34, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31,
0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x35, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31,
0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65,
0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x33, 0x31, 0x2c, 0x20, 0x25,
0x70, 0x31, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x33, 0x30, 0x3b,
0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x39, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x33, 0x31, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x35, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x37, 0x2c, 0x20, 0x34, 0x33, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x32,
0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x00,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70,
0x31, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x33, 0x32, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x33, 0x33, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x36, 0x2c, 0x20, 0x30,
0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x33, 0x34, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x31,
0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x33,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x33, 0x37, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x33, 0x36, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x38, 0x38,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30,
0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x35, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x33, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x6c, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x37, 0x3b, 0x00, 0x00, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x33,
0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x70,
0x39, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32,
0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x33, 0x38, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x31, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x33, 0x39, 0x3b, 0x00, 0x00,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70,
0x31, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x33, 0x39, 0x2c, 0x20,
0x25, 0x70, 0x39, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x2c, 0x20, 0x30, 0x66,
0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x34, 0x30, 0x3b, 0x00,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x30, 0x3b,
0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09,
0x25, 0x70, 0x31, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x34, 0x31,
0x2c, 0x20, 0x25, 0x70, 0x39, 0x37, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x30, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x34, 0x32,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x34, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34,
0x31, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20,
0x20, 0x09, 0x25, 0x70, 0x31, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x31,
0x34, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x30, 0x3b, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x31, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x34, 0x34, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c,
0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x34, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x34, 0x32, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x34, 0x36, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x33,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x32, 0x32, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30,
0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x34, 0x30, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x34, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x34,
0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x30, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x46,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x34, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x34, 0x38, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x31, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x34, 0x3b, 0x00,
0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25,
0x70, 0x31, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x34, 0x39, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x30, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x34, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x35, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x35, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34,
0x35, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20,
0x20, 0x09, 0x25, 0x70, 0x31, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x70, 0x31,
0x35, 0x31, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x31, 0x32, 0x3b, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x35, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x35, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c,
0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x35, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x34, 0x36, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x35, 0x34, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x31, 0x35,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x32, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30,
0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x35, 0x32, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x35, 0x34, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x37, 0x3b, 0x00, 0x00, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x35,
0x36, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x31, 0x38, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x46,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x35, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x35, 0x36, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x31, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34, 0x38, 0x3b, 0x00,
0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25,
0x70, 0x31, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x35, 0x37, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x32, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x38, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x35, 0x38,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x35, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x34,
0x39, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20,
0x20, 0x09, 0x25, 0x70, 0x31, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x31,
0x35, 0x39, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x32, 0x34, 0x3b, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x39, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x36, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c,
0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x36, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x35, 0x30, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x36, 0x32, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x32, 0x37,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30,
0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x36, 0x34, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x36, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x31, 0x3b, 0x00, 0x00, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x31, 0x36,
0x34, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x33, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x46,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x36, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x36, 0x34, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x31, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x32, 0x3b, 0x00,
0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25,
0x70, 0x31, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x36, 0x35, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x33, 0x33, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x32, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x36, 0x36,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x35, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x32, 0x37, 0x2c, 0x20, 0x33, 0x3b, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x37, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x35, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x35, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x37, 0x2c, 0x20, 0x32, 0x3b, 0x00,
0x73, 0x75, 0x62, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x37, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x35, 0x35, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x65, 0x71, 0x2e, 0x73, 0x31, 0x36, 0x20, 0x09, 0x25, 0x70, 0x31,
0x36, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x39, 0x2c, 0x20, 0x30, 0x3b,
0x00, 0x40, 0x25, 0x70, 0x31, 0x36, 0x37, 0x20, 0x62, 0x72, 0x61, 0x20,
0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x33, 0x30, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x32, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38,
0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x37, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x34, 0x36, 0x37, 0x43, 0x30,
0x34, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x75, 0x62, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x37, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x37, 0x34, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x37, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42,
0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61,
0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x37, 0x34, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x37, 0x35, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x37, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41,
0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72,
0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x35, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x36,
0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x32, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x37, 0x2c,
0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b,
0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35,
0x30, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x38, 0x3b, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x32, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x38,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x39, 0x2c, 0x20, 0x30, 0x66,
0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78,
0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x31, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x38, 0x30, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x38, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x38, 0x32, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x38, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42,
0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61,
0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x38, 0x32, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x38, 0x33, 0x2c,
0x20, 0x25, 0x66, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x38, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41,
0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72,
0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x35, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x38, 0x34,
0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x66,
0x37, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x32, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x38, 0x35, 0x2c,
0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b,
0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35,
0x31, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x38, 0x36, 0x3b, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x32, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x38, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x38,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x38, 0x37, 0x2c, 0x20, 0x30, 0x66,
0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78,
0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x31, 0x34, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x38, 0x38, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x38, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x39, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x38, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42,
0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61,
0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x39, 0x30, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x39, 0x31, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32,
0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x39, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41,
0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x35, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x39,
0x32, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x39, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00,
0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x39,
0x33, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33,
0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f,
0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x35, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x39, 0x34, 0x3b,
0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x39, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x32, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x39, 0x35, 0x2c,
0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b,
0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35,
0x31, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x39, 0x36, 0x3b, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x32, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x39, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x39, 0x37, 0x2c, 0x20, 0x30,
0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65,
0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x31, 0x39,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x39, 0x38, 0x3b, 0x00, 0x73, 0x75, 0x62,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x32, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x30, 0x30,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x39, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x33,
0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32,
0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x32, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x30, 0x30, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x30,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x30, 0x32, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x30, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42,
0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61,
0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x30, 0x32, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x30, 0x33, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32,
0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x30, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41,
0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x35, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x30,
0x34, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x30, 0x35, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00,
0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x30,
0x35, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33,
0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f,
0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x35, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x30, 0x36, 0x3b,
0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x33, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x30, 0x37, 0x2c,
0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b,
0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35,
0x32, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x30, 0x38, 0x3b, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x30, 0x39, 0x2c, 0x20, 0x30,
0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65,
0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x32, 0x35,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x31, 0x30, 0x3b, 0x00, 0x73, 0x75, 0x62,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x31, 0x32,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x31, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x33,
0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32,
0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x32, 0x36, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x31, 0x32, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x31,
0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x31, 0x34, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x31, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42,
0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61,
0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x31, 0x34, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x31, 0x35, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32,
0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x31, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41,
0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x35, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x31,
0x36, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x31, 0x37, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00,
0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x31,
0x37, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33,
0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f,
0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x35, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x31, 0x38, 0x3b,
0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x34, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x33, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x31, 0x39, 0x2c,
0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b,
0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35,
0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x32, 0x30, 0x3b, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x35, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33,
0x32, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x32, 0x31, 0x2c, 0x20, 0x30,
0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65,
0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x31,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x32, 0x32, 0x3b, 0x00, 0x73, 0x75, 0x62,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x32, 0x34,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x32, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x33,
0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32,
0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x32, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x32, 0x34, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x32,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x32, 0x36, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x32, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42,
0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61,
0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x32, 0x36, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x32, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32,
0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x32, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41,
0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x35, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x32,
0x38, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x32, 0x39, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00,
0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x32,
0x39, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33,
0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f,
0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x35, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x33, 0x30, 0x3b,
0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x33, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x33, 0x31, 0x2c,
0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b,
0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35,
0x33, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x33, 0x32, 0x3b, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x31, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33,
0x33, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x33, 0x33, 0x2c, 0x20, 0x30,
0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65,
0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x37,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x33, 0x34, 0x3b, 0x00, 0x73, 0x75, 0x62,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x33, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x33,
0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32,
0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x38, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x33, 0x36, 0x3b, 0x00, 0x00, 0x62, 0x72, 0x61, 0x2e,
0x75, 0x6e, 0x69, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30,
0x5f, 0x33, 0x35, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42,
0x30, 0x5f, 0x33, 0x30, 0x3a, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x32, 0x39, 0x2c, 0x20,
0x25, 0x74, 0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x32, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x39, 0x2c, 0x20, 0x33, 0x31,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x31, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x36,
0x38, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x36,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x33,
0x37, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x36,
0x39, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x37,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x66,
0x34, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x33,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x37,
0x30, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x37,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x33,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x37,
0x31, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x37,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x36, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x37,
0x32, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x37,
0x33, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x66,
0x37, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x37,
0x33, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x37,
0x34, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x66,
0x38, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x37,
0x34, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x37,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x66,
0x39, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34,
0x33, 0x2c, 0x20, 0x25, 0x66, 0x39, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x37,
0x35, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x37,
0x36, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x34, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x37, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x35, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x34, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x31, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x37, 0x37, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x31, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x36,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x34, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x32,
0x2c, 0x20, 0x25, 0x70, 0x31, 0x37, 0x38, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x34, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x3b, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x34,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x37, 0x39, 0x3b, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x38, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x3b, 0x00,
0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x38, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x38, 0x30, 0x3b,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x38, 0x31, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x39,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x38,
0x31, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x38,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x35, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x38, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x38, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x38, 0x33, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x32, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x35, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x38, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x31, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x33,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x35, 0x34, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30,
0x2c, 0x20, 0x25, 0x70, 0x31, 0x38, 0x35, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x35, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x3b, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x35,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x31, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x38, 0x36, 0x3b, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x38, 0x37, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x3b, 0x00,
0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x35, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x38, 0x37, 0x3b,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x38, 0x38, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x36,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x38,
0x38, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x38,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x35, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x38, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x38, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x35, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x35, 0x39, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x35, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x39, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x31, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x39,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x36, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x36,
0x2c, 0x20, 0x25, 0x70, 0x31, 0x39, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x36, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x37, 0x3b, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x36,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x39, 0x32, 0x3b, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x39, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x38, 0x3b, 0x00,
0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x39, 0x33, 0x3b,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x39, 0x34, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x39,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x32,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x39,
0x34, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x39,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x36, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x39, 0x35, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x34, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x36, 0x35, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x31, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x39, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x31, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x35,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x36, 0x36, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x32,
0x2c, 0x20, 0x25, 0x70, 0x31, 0x39, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32,
0x35, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x31, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32,
0x35, 0x37, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x35, 0x38, 0x2c,
0x20, 0x38, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x32, 0x35, 0x39, 0x2c, 0x20, 0x2d, 0x31, 0x3b,
0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x62,
0x66, 0x6c, 0x79, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x32, 0x36, 0x30, 0x7c, 0x25, 0x70, 0x31, 0x39, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x35, 0x39, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x36, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x36, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x37, 0x3b, 0x00,
0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x36, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x31, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x39, 0x39, 0x3b,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x32, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x36,
0x3b, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e,
0x62, 0x66, 0x6c, 0x79, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x36, 0x32, 0x7c, 0x25, 0x70, 0x32, 0x30, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x35, 0x39, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x36, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x38, 0x3b, 0x00,
0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x36, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x32, 0x30, 0x31, 0x3b,
0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x38,
0x2c, 0x20, 0x32, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x36, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36,
0x34, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20,
0x09, 0x25, 0x72, 0x31, 0x32, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x36, 0x35, 0x2c, 0x20, 0x2d, 0x31, 0x36, 0x3b, 0x00, 0x73, 0x75,
0x62, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x36,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x32, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x36, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x30,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x37, 0x2c, 0x20, 0x37,
0x3b, 0x00, 0x00, 0x40, 0x25, 0x70, 0x32, 0x30, 0x32, 0x20, 0x62, 0x72,
0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x33,
0x32, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x5b, 0x25, 0x72, 0x31,
0x37, 0x35, 0x5d, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x35, 0x3b, 0x00, 0x73,
0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x5b, 0x25, 0x72, 0x31, 0x37, 0x35, 0x2b, 0x32, 0x35, 0x36,
0x5d, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x36, 0x3b, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x33, 0x32, 0x3a, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x30, 0x32, 0x2c, 0x20, 0x25, 0x74, 0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00,
0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x33, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x30, 0x32,
0x2c, 0x20, 0x33, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x30, 0x30, 0x2c, 0x20, 0x5f, 0x5a,
0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c,
0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e,
0x74, 0x69, 0x6f, 0x6e, 0x35, 0x73, 0x6d, 0x65, 0x6d, 0x5f, 0x45, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x32, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x30, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x30, 0x31, 0x3b, 0x00, 0x00, 0x62,
0x61, 0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x32, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x66, 0x33, 0x36,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x30, 0x7d, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x32, 0x32, 0x39, 0x39, 0x5d, 0x3b, 0x00, 0x00, 0x62, 0x61,
0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x32, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x30, 0x32, 0x2c, 0x20, 0x36, 0x33, 0x3b, 0x00, 0x40, 0x25, 0x70,
0x32, 0x30, 0x33, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f,
0x5f, 0x42, 0x42, 0x30, 0x5f, 0x33, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x30, 0x34, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x30,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x39,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x32,
0x30, 0x34, 0x3b, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x5b, 0x25, 0x72, 0x31,
0x37, 0x38, 0x5d, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x31, 0x3b, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x33, 0x34, 0x3a,
0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x09,
0x30, 0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x37, 0x32,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x37, 0x36, 0x5d, 0x3b, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x37, 0x33, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x37, 0x36, 0x2b, 0x31, 0x32, 0x38, 0x5d, 0x3b, 0x00, 0x00, 0x62,
0x61, 0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x37, 0x34, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x34,
0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42,
0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x35, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x35, 0x3b, 0x00,
0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33,
0x37, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x30,
0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65,
0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x30, 0x38,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x37, 0x3b, 0x00, 0x73, 0x75, 0x62,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x37, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x37, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46,
0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x30, 0x39, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x37, 0x39, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x38, 0x30,
0x2c, 0x20, 0x25, 0x66, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x32,
0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x38, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41,
0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x35, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x38,
0x31, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x38, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x38, 0x32,
0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42,
0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x35, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x38, 0x33, 0x3b, 0x00,
0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33,
0x38, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x38, 0x34, 0x2c, 0x20, 0x30,
0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65,
0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x31, 0x32,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x38, 0x35, 0x3b, 0x00, 0x73, 0x75, 0x62,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x38, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x38, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46,
0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x38, 0x37, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x38, 0x38,
0x2c, 0x20, 0x25, 0x66, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x32,
0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x38, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41,
0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x38,
0x39, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x39, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x33, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x39, 0x30,
0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42,
0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x39, 0x31, 0x3b, 0x00,
0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x33, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x30,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x39, 0x32, 0x2c, 0x20,
0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00,
0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x31,
0x36, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x39, 0x33, 0x3b, 0x00, 0x73, 0x75,
0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x33, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x39,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x39, 0x34, 0x2c, 0x20, 0x30, 0x66,
0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78,
0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x31, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x39, 0x35, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33,
0x39, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x39, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x39, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46,
0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x31, 0x38, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x39, 0x37, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x39, 0x38,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37,
0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x39, 0x39, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x39, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38,
0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70,
0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x35, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x39, 0x39, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x30, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x32, 0x3b,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x30, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41,
0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72,
0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x35, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x30, 0x31,
0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x34, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x30, 0x32,
0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42,
0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x35, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x30, 0x33, 0x3b, 0x00,
0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x34, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x30, 0x34, 0x2c, 0x20,
0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00,
0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x32,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x30, 0x35, 0x3b, 0x00, 0x73, 0x75,
0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x34, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x37, 0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x30,
0x37, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x30, 0x36, 0x2c, 0x20, 0x30, 0x66,
0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78,
0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x32, 0x33, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x30, 0x37, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34,
0x30, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x37, 0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x30, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x30, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46,
0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x32, 0x34, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x30, 0x39, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x31, 0x30,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37,
0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x31, 0x31, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x31, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38,
0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70,
0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x35, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x31, 0x31, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x31, 0x32, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x33, 0x3b,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x31, 0x32, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41,
0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72,
0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x35, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x31, 0x33,
0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x33, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x34, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x31, 0x34,
0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42,
0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x35, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x31, 0x35, 0x3b, 0x00,
0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x34, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x31, 0x36, 0x2c, 0x20,
0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00,
0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x32,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x31, 0x37, 0x3b, 0x00, 0x73, 0x75,
0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x34, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x37, 0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x31,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x31, 0x38, 0x2c, 0x20, 0x30, 0x66,
0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78,
0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x32, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x31, 0x39, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34,
0x32, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x37, 0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x32, 0x31, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x32, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46,
0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x32, 0x31, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x32, 0x32,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37,
0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x32, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x32, 0x32, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38,
0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70,
0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x32, 0x33, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x32, 0x34, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x33, 0x3b,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x32, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41,
0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72,
0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x35, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x32, 0x35,
0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x33, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x34, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x32, 0x36,
0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42,
0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x35, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x32, 0x37, 0x3b, 0x00,
0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x34, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x38,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x32, 0x38, 0x2c, 0x20,
0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00,
0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33,
0x34, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x32, 0x39, 0x3b, 0x00, 0x73, 0x75,
0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x34, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x39, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x37, 0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x33,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x33, 0x30, 0x2c, 0x20, 0x30, 0x66,
0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78,
0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x35, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x33, 0x31, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34,
0x33, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x37, 0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x33, 0x33, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x33, 0x32, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46,
0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x33, 0x33, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x33, 0x34,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37,
0x33, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x33, 0x35, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38,
0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70,
0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x33, 0x35, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x33, 0x36, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x33, 0x3b,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x33, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41,
0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72,
0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x35, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x33, 0x37,
0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x33,
0x35, 0x3a, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x33, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x74, 0x69,
0x64, 0x2e, 0x78, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x30, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x33, 0x30, 0x34, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x35,
0x30, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x30, 0x38, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x34, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x33, 0x38,
0x2c, 0x20, 0x25, 0x66, 0x35, 0x30, 0x39, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x33, 0x39, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x31, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x34,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x31, 0x31, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x34, 0x32, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x31,
0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x34, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x31, 0x33, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x34, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x31, 0x34, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x34, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x34, 0x34,
0x2c, 0x20, 0x25, 0x66, 0x35, 0x31, 0x35, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x34, 0x35, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x31, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x34,
0x37, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x31, 0x37, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x34, 0x38, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x31,
0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x34, 0x39, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x31, 0x39, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x34, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x32, 0x30, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x34, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x35, 0x30,
0x2c, 0x20, 0x25, 0x66, 0x35, 0x32, 0x31, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x35, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x32, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x35,
0x33, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x32, 0x34, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x35, 0x34, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x32,
0x35, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x35, 0x35, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x32, 0x36, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x35, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x32, 0x37, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x34, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x35, 0x36,
0x2c, 0x20, 0x25, 0x66, 0x35, 0x32, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x35, 0x37, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x32, 0x39, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x35,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x33, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x36, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33,
0x31, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x36, 0x31, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x32, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x36, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x33, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x34, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x36, 0x32,
0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x34, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x36, 0x33, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x33, 0x35, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x36,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x33, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x36, 0x36, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33,
0x37, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x36, 0x37, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x38, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x35,
0x32, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x32, 0x36, 0x39, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x32, 0x37, 0x30, 0x2c, 0x20, 0x38, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x37, 0x31, 0x2c,
0x20, 0x2d, 0x31, 0x3b, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79,
0x6e, 0x63, 0x2e, 0x62, 0x66, 0x6c, 0x79, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x32, 0x37, 0x32, 0x7c, 0x25, 0x70, 0x32, 0x30,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x37, 0x31, 0x3b, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34,
0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x37, 0x32, 0x3b, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x66,
0x34, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x36, 0x38, 0x3b, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x36, 0x37, 0x3b,
0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x62,
0x66, 0x6c, 0x79, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x32, 0x37, 0x34, 0x7c, 0x25, 0x70, 0x32, 0x30, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x37,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x37, 0x31, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x36, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x37, 0x34, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x31, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x36, 0x37, 0x2c, 0x20,
0x25, 0x66, 0x34, 0x36, 0x39, 0x3b, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x37, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x30, 0x33, 0x2c, 0x20, 0x32, 0x38, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x32, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x30, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x37, 0x36, 0x3b, 0x00, 0x61, 0x6e, 0x64,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x37,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x37, 0x37, 0x2c, 0x20, 0x2d,
0x31, 0x36, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x32, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x33, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x37, 0x38, 0x3b,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x32, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x37, 0x39, 0x2c, 0x20, 0x37, 0x3b, 0x00, 0x00, 0x40, 0x25, 0x70,
0x32, 0x30, 0x37, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f,
0x5f, 0x42, 0x42, 0x30, 0x5f, 0x33, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x73,
0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x5b, 0x25, 0x72, 0x31, 0x37, 0x35, 0x5d, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x33, 0x33, 0x3b, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x5b, 0x25, 0x72,
0x31, 0x37, 0x35, 0x2b, 0x32, 0x35, 0x36, 0x5d, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x33, 0x34, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42,
0x30, 0x5f, 0x33, 0x37, 0x3a, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x30, 0x38, 0x2c, 0x20,
0x25, 0x74, 0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x30, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x30, 0x38, 0x2c, 0x20, 0x33, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x33, 0x30, 0x36, 0x2c, 0x20, 0x5f, 0x5a, 0x4e, 0x32, 0x35, 0x66,
0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65,
0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e,
0x35, 0x73, 0x6d, 0x65, 0x6d, 0x5f, 0x45, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x30, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x30, 0x37, 0x3b, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73,
0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e,
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x32, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x7b, 0x25, 0x66, 0x34, 0x37, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x37, 0x31, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x33,
0x30, 0x35, 0x5d, 0x3b, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x79,
0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32,
0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x30, 0x38, 0x2c, 0x20,
0x36, 0x33, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x32, 0x30, 0x38, 0x20, 0x62,
0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f,
0x33, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x37,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x34, 0x37, 0x31, 0x3b, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x5b, 0x25, 0x72,
0x31, 0x37, 0x38, 0x5d, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x37, 0x32, 0x3b,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x33, 0x39,
0x3a, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20,
0x09, 0x30, 0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x33,
0x37, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x37, 0x36, 0x5d, 0x3b, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x33, 0x38, 0x2c, 0x20, 0x5b, 0x25,
0x72, 0x31, 0x37, 0x36, 0x2b, 0x31, 0x32, 0x38, 0x5d, 0x3b, 0x00, 0x00,
0x62, 0x61, 0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x32, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x38, 0x30, 0x2c,
0x20, 0x32, 0x30, 0x34, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x39, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x38, 0x30, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x32, 0x39, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x38,
0x30, 0x2c, 0x20, 0x36, 0x31, 0x34, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x32,
0x38, 0x30, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x34, 0x30, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x35,
0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b,
0x25, 0x72, 0x31, 0x32, 0x38, 0x35, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72,
0x32, 0x34, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x30, 0x39, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x32, 0x39, 0x30, 0x5d, 0x2c,
0x20, 0x7b, 0x25, 0x72, 0x32, 0x34, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x31, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x31, 0x33, 0x7d, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x32,
0x39, 0x35, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x34, 0x31, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x34, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x34, 0x31, 0x37,
0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x79,
0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x65, 0x71, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x33, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x35, 0x34, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x33,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x35, 0x34, 0x30, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x32,
0x30, 0x39, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f,
0x42, 0x42, 0x30, 0x5f, 0x34, 0x31, 0x3b, 0x00, 0x00, 0x72, 0x63, 0x70,
0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x33, 0x39, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x33, 0x37, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x42, 0x42, 0x30, 0x5f, 0x34, 0x31, 0x3a, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x65, 0x71, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x32, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x33, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x32, 0x31, 0x30, 0x20, 0x62,
0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f,
0x34, 0x33, 0x3b, 0x00, 0x00, 0x72, 0x63, 0x70, 0x2e, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x35, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33,
0x38, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f,
0x34, 0x33, 0x3a, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x74,
0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x31, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x31, 0x38, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00,
0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x33, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x37, 0x2c,
0x20, 0x32, 0x39, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x36,
0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x33, 0x31, 0x34, 0x2c, 0x20, 0x5f, 0x5a, 0x4e, 0x32, 0x35,
0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68,
0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f,
0x6e, 0x35, 0x73, 0x6d, 0x65, 0x6d, 0x5f, 0x45, 0x3b, 0x00, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33,
0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x33, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x31, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x35, 0x2c, 0x20, 0x33, 0x3b, 0x00,
0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25,
0x72, 0x32, 0x33, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x31,
0x35, 0x2c, 0x20, 0x2d, 0x38, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x31, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33,
0x31, 0x31, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x33, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x31, 0x30, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x63, 0x76, 0x74,
0x2e, 0x73, 0x36, 0x34, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x64, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x30, 0x39, 0x3b,
0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x30, 0x37, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x37,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x37, 0x35, 0x3b, 0x00, 0x00, 0x00,
0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x34, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x37, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x37, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x30, 0x2c,
0x20, 0x7b, 0x25, 0x72, 0x73, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x73,
0x37, 0x36, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34,
0x37, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x30, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x25, 0x72, 0x73, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x37,
0x37, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x37, 0x38, 0x2c,
0x20, 0x25, 0x66, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x31,
0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73,
0x38, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x37, 0x38, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72,
0x31, 0x33, 0x30, 0x31, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x37, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x73, 0x38, 0x30, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35,
0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x31, 0x31, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x38, 0x33, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x37, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x34, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x35, 0x31, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x63,
0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x25, 0x72, 0x73, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x38, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x32, 0x2c, 0x20, 0x7b,
0x25, 0x72, 0x73, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x38, 0x34,
0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x38, 0x31,
0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35,
0x31, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25,
0x72, 0x73, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x38, 0x31, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x31, 0x34, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x38, 0x38,
0x2c, 0x20, 0x25, 0x66, 0x34, 0x38, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33,
0x30, 0x33, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x38, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x73, 0x38, 0x38, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x34, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x39,
0x2c, 0x20, 0x25, 0x66, 0x35, 0x31, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x63,
0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x25, 0x72, 0x73, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x38, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x38, 0x34,
0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35,
0x31, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73,
0x39, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x38, 0x34, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72,
0x31, 0x33, 0x30, 0x34, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x39, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x73, 0x39, 0x32, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x35,
0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x31, 0x37, 0x3b, 0x00, 0x00,
0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x39, 0x35, 0x2c, 0x20, 0x25,
0x66, 0x34, 0x38, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34,
0x38, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x31, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25,
0x72, 0x73, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x38, 0x36, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x25, 0x72, 0x31, 0x33, 0x30, 0x35, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73,
0x39, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x39, 0x36, 0x7d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x38, 0x37, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x31, 0x39, 0x3b,
0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x39, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x38, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x34, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x35, 0x32, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x25, 0x72, 0x73, 0x31, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x38, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x36, 0x2c, 0x20, 0x7b,
0x25, 0x72, 0x73, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x30,
0x30, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x38,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x32, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72,
0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72,
0x73, 0x31, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x38, 0x39, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x32, 0x32, 0x3b,
0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x31, 0x30, 0x34,
0x2c, 0x20, 0x25, 0x66, 0x34, 0x39, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33,
0x30, 0x37, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x31, 0x30, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x31, 0x30, 0x34, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x35,
0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x32, 0x33, 0x3b, 0x00, 0x00,
0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x31, 0x30, 0x37, 0x2c, 0x20,
0x25, 0x66, 0x34, 0x39, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x34, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x32, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74,
0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x25, 0x72, 0x73, 0x31, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x39,
0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x38, 0x2c, 0x20, 0x7b, 0x25,
0x72, 0x73, 0x31, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x30,
0x38, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x39,
0x33, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x32, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72,
0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72,
0x73, 0x31, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x39, 0x33, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x39, 0x34, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x32, 0x36, 0x3b,
0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x31, 0x31, 0x32,
0x2c, 0x20, 0x25, 0x66, 0x34, 0x39, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33,
0x30, 0x39, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x31, 0x31, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x31, 0x31, 0x32, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x39, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x35,
0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x32, 0x37, 0x3b, 0x00, 0x00,
0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x31, 0x31, 0x35, 0x2c, 0x20,
0x25, 0x66, 0x34, 0x39, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x34, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x32, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74,
0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x25, 0x72, 0x73, 0x31, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x39,
0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x30, 0x2c, 0x20, 0x7b, 0x25,
0x72, 0x73, 0x31, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x31,
0x36, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x39,
0x37, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x32, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72,
0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72,
0x73, 0x31, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x39, 0x37, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x39, 0x38, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x30, 0x3b,
0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x31, 0x32, 0x30,
0x2c, 0x20, 0x25, 0x66, 0x34, 0x39, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33,
0x31, 0x31, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x31, 0x31, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x31, 0x32, 0x30, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x35,
0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x31, 0x3b, 0x00, 0x00,
0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x31, 0x32, 0x33, 0x2c, 0x20,
0x25, 0x66, 0x34, 0x39, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x35, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x34, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74,
0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x25, 0x72, 0x73, 0x31, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x32, 0x2c, 0x20, 0x7b, 0x25,
0x72, 0x73, 0x31, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x32,
0x34, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x30,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x33, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72,
0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72,
0x73, 0x31, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x30, 0x31, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x30, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x34, 0x3b,
0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x31, 0x32, 0x38,
0x2c, 0x20, 0x25, 0x66, 0x35, 0x30, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33,
0x31, 0x33, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x31, 0x32, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x31, 0x32, 0x38, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x35, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x35,
0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x35, 0x3b, 0x00, 0x00,
0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x31, 0x33, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x30, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x35, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x34, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x33, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74,
0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x25, 0x72, 0x73, 0x31, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x30,
0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x34, 0x2c, 0x20, 0x7b, 0x25,
0x72, 0x73, 0x31, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x33,
0x32, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x30,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x35, 0x33, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72,
0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72,
0x73, 0x31, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x30, 0x35, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x33, 0x38, 0x3b,
0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x31, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x66, 0x35, 0x30, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33,
0x31, 0x35, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x31, 0x33, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x31, 0x33, 0x36, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x25, 0x72, 0x31, 0x34, 0x34, 0x38, 0x2c, 0x20, 0x30, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x25, 0x72, 0x31, 0x34, 0x34, 0x39, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25,
0x72, 0x31, 0x34, 0x35, 0x30, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x31, 0x34, 0x35, 0x31, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31,
0x34, 0x36, 0x30, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34,
0x36, 0x31, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36,
0x32, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x33,
0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x36, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x37, 0x2c, 0x20,
0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x38, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x39, 0x2c, 0x20, 0x30, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x38, 0x2c, 0x20, 0x30, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x25, 0x72, 0x31, 0x35, 0x30, 0x39, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25,
0x72, 0x31, 0x35, 0x31, 0x30, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x31, 0x35, 0x31, 0x31, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31,
0x35, 0x34, 0x34, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35,
0x34, 0x35, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34,
0x36, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x37,
0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x36, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x37, 0x2c, 0x20,
0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x38, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x39, 0x2c, 0x20, 0x30, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x32, 0x2c, 0x20, 0x30, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x25, 0x72, 0x31, 0x35, 0x39, 0x33, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25,
0x72, 0x31, 0x35, 0x39, 0x34, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x31, 0x35, 0x39, 0x35, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31,
0x36, 0x30, 0x34, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x36,
0x30, 0x35, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30,
0x36, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x37,
0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x31, 0x2c, 0x20,
0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x32, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x33, 0x2c, 0x20, 0x30, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x32, 0x2c, 0x20, 0x30, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x25, 0x72, 0x31, 0x36, 0x35, 0x33, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25,
0x72, 0x31, 0x36, 0x35, 0x34, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x31, 0x36, 0x35, 0x35, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31,
0x36, 0x38, 0x38, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x36,
0x38, 0x39, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x36, 0x39,
0x30, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x36, 0x39, 0x31,
0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x30, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x31, 0x2c, 0x20,
0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x32, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x33, 0x2c, 0x20, 0x30, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x36, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x34,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x31, 0x33, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x36, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31,
0x33, 0x36, 0x38, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x38, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x34, 0x2c, 0x20, 0x31, 0x30,
0x32, 0x34, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x33, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x35, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31,
0x33, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x37, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x37,
0x33, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x38, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x37, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x33, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x34, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x37, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x37,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x37, 0x38, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x33, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x32, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x35, 0x3b,
0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31,
0x33, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x38, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x38,
0x33, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x38, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x37, 0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x33, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x38, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x37, 0x7d,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x38, 0x38, 0x5d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x33, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32,
0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x35, 0x3b, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33,
0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x39, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x39, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x39, 0x33,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x38, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x31, 0x34, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x33, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x39,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x39, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x39,
0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x39, 0x38, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x33, 0x31, 0x34, 0x2c, 0x20, 0x35, 0x31, 0x32, 0x30, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x34, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x32, 0x38, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x39, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x32, 0x7d,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x34, 0x30, 0x33, 0x5d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x34, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32,
0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x38, 0x3b, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x34,
0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x30, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x34, 0x30, 0x38,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x34, 0x31, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x32, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38,
0x39, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x31, 0x34, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x31, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31,
0x34, 0x31, 0x33, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x34, 0x31, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x32, 0x38, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73,
0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x37, 0x7d, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x31, 0x34, 0x31, 0x38, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x34, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x31, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x32, 0x32, 0x7d,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x34, 0x32, 0x33, 0x5d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x34, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x35, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x33, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30,
0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x36, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36, 0x35, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x34, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x34, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x36, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33,
0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x31, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x36, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x36, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x34, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x36, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x34, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x31,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x33, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x37, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x34,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x34, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35,
0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x36, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x33, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x33, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x32, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x36, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x36, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x33, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x34, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x39, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x39, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x33, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30,
0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x37, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x35, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x34, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x35, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x31, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33,
0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x31, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x37, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x35, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x31, 0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x39, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x39,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x33, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x38, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x39,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39,
0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x30, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x31, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x33, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x32, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x30, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x35, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x31, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x35, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35,
0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x35, 0x34, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x33, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30,
0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x38, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x35, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x35, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x35, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x35, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33,
0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x31, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x38, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x38, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x35, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x35, 0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x34, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x37,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x33, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x39, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x34,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34,
0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x35, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x39, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x33, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x39, 0x32, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x35, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x35, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35,
0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x39, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x35, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35,
0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x35, 0x39, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x33, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30,
0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x36, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36, 0x35, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x35, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x36, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33,
0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x39, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x36, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x36, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x36, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x30, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x39, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x35,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x33, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x37, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x39,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39,
0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x30, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x37, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x31, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x33, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x32, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x30, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x37, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x34, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x33, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30,
0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x37, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x35, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x36, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x35, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33,
0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x39, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x37, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x36, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x35, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x34, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x33,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x33, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x38, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x34,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34,
0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x35, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x35, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x31, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x33, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x32, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x35, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x35, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x36, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x39, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x39, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x33, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30,
0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x38, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x35, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x36, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x39, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x39, 0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x37, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x37, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33,
0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x39, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x38, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x38, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x37, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x37, 0x30, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x38, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x39, 0x31,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x33, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x39, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x38,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x38, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x39,
0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x37, 0x30, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x37, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x33, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x31, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x33, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x39, 0x32, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x37, 0x30, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x37, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37,
0x30, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x33, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61,
0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x31, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x30, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33,
0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x39, 0x35, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x34, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x31, 0x7d, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38,
0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x34, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x36, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x33, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x35,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x39, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x39, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x34, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x36, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b,
0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34,
0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x34, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x35, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x37, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x30, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x34, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x34, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x35, 0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f,
0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x36, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x33, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x34, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x30,
0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x36, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x33,
0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61,
0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x39, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x30, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34,
0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x35, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x39, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x39, 0x7d, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38,
0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x35, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x30,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x31, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x33, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x35,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x30, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x35, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35,
0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x35, 0x31, 0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b,
0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34,
0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x39, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x37, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x31, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x34, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x39, 0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f,
0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x30, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x31, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x34, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31,
0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x30, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x31,
0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61,
0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x37, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x30, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34,
0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x35, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x34, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x37, 0x7d, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38,
0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x35, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x35, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x33, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x35,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x31, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x35, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35,
0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x35, 0x35, 0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b,
0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35,
0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x35, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35,
0x34, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x37, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x32, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x35, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x34, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f,
0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x35, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x39, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x30, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x34, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x32,
0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x35, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x39,
0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61,
0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x35, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x31, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33,
0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x39, 0x35, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x39, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x35, 0x7d, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38,
0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x36, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x33, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x33,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x39, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x39, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x36, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x30, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b,
0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x35,
0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x35, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35,
0x39, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x35, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x30, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x35, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x39, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f,
0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x30, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x37, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x31, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x34, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x30,
0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x30, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x37,
0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61,
0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x33, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x31, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34,
0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x35, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x33, 0x7d, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38,
0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x36, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x35, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x33, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x33,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x30, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x36, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x35, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b,
0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36,
0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x34, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x35, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x31, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x36, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x34, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f,
0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x35, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x35, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x31, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x34, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31,
0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x35, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x35,
0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61,
0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x39, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x39, 0x31, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x31, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34,
0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x35, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x38, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x39,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x39, 0x31, 0x7d, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38,
0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x37, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x37, 0x30, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x33, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x33,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x31, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x37, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37,
0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x37, 0x30, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b,
0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x36,
0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x38, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x39, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x35, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x32, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x36, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x38, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x39, 0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f,
0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x37, 0x30, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x37, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x33, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x31, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x31, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x34, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x32,
0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x37, 0x30, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x37, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x33,
0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73,
0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x37, 0x34, 0x5d,
0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x34, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x31, 0x7d, 0x3b, 0x00,
0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x32, 0x30, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37,
0x34, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x30, 0x35, 0x5d, 0x2c,
0x20, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x33, 0x7d, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x30, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x34,
0x2c, 0x20, 0x31, 0x36, 0x33, 0x38, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x73,
0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x31, 0x30, 0x5d,
0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x39, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x35, 0x7d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x30, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x30, 0x35, 0x2c, 0x20, 0x31, 0x36, 0x33, 0x38, 0x34, 0x3b, 0x00, 0x00,
0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x31,
0x35, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x39, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x37, 0x7d,
0x3b, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x37, 0x34, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x73,
0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x32, 0x30, 0x5d,
0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x39, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x30,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x39, 0x7d, 0x3b, 0x00,
0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x32, 0x30, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37,
0x34, 0x2c, 0x20, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e,
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x32, 0x35, 0x5d, 0x2c, 0x20,
0x7b, 0x25, 0x72, 0x31, 0x34, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x31, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x30, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x32, 0x30,
0x2c, 0x20, 0x31, 0x36, 0x33, 0x38, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x73,
0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x33, 0x30, 0x5d,
0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x33, 0x7d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x30, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x32, 0x35, 0x2c, 0x20, 0x31, 0x36, 0x33, 0x38, 0x34, 0x3b, 0x00, 0x00,
0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x33,
0x35, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x34, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x35, 0x7d,
0x3b, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x37, 0x34, 0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x73,
0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x34, 0x30, 0x5d,
0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x35, 0x34, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x37, 0x7d, 0x3b, 0x00,
0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x32, 0x30, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37,
0x34, 0x2c, 0x20, 0x38, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e,
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x34, 0x35, 0x5d, 0x2c, 0x20,
0x7b, 0x25, 0x72, 0x31, 0x35, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x39, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x30, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x34, 0x30,
0x2c, 0x20, 0x31, 0x36, 0x33, 0x38, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x73,
0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x35, 0x30, 0x5d,
0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x38, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x31, 0x7d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x30, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x34, 0x35, 0x2c, 0x20, 0x31, 0x36, 0x33, 0x38, 0x34, 0x3b, 0x00, 0x00,
0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x30, 0x35,
0x35, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x39, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x37, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x30, 0x33, 0x7d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x79, 0x6e,
0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x39, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x31, 0x32, 0x2c, 0x20, 0x39, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32,
0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x39, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x33, 0x31, 0x34, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x39,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x32, 0x2c, 0x20, 0x37,
0x3b, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x32, 0x32, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32,
0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x33, 0x31, 0x30, 0x3b, 0x00,
0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x32, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x39, 0x33,
0x2c, 0x20, 0x34, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x32, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x39, 0x34,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x32, 0x30, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x30, 0x36, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x32, 0x30, 0x36, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x36,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x31,
0x32, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x32, 0x30, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x30, 0x36, 0x38, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x32, 0x30, 0x36, 0x39, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x37,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x32,
0x35, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x32, 0x30, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x37, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x30, 0x37, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x32, 0x30, 0x37, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x37,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x33,
0x38, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x32, 0x30, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x37, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x30, 0x37, 0x38, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x32, 0x30, 0x37, 0x39, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25,
0x72, 0x32, 0x30, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x35, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78,
0x32, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x30, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x36,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x30, 0x36, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x30,
0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x30, 0x36, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72,
0x32, 0x30, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x37, 0x30, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x32, 0x30, 0x39, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x37, 0x31, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78,
0x32, 0x20, 0x25, 0x72, 0x32, 0x30, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x30, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x37, 0x32,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x31, 0x30, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x30, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x37, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x31, 0x30, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x30, 0x37, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x31,
0x30, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x39, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x30, 0x37, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72,
0x32, 0x31, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x39, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x37, 0x37, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x32, 0x31, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31,
0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x37, 0x38, 0x3b, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x31, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36,
0x34, 0x2c, 0x20, 0x38, 0x31, 0x39, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x31, 0x31, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x31, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x31, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x31, 0x39, 0x7d,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x31, 0x32, 0x30, 0x5d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x32, 0x31, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x36, 0x34, 0x2c, 0x20, 0x38, 0x33, 0x32, 0x30, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x31, 0x32, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x31, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x32, 0x34,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x31, 0x32, 0x35, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x31, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x30, 0x36, 0x34, 0x2c, 0x20, 0x38, 0x34, 0x34, 0x38, 0x3b, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x31, 0x32,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x32, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x31, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x32,
0x39, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x31, 0x33, 0x30, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x31, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x38, 0x35, 0x37, 0x36, 0x3b, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x31,
0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x33, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x31, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31,
0x33, 0x34, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x31, 0x33, 0x35,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x31, 0x33, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x31, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x31, 0x32, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x31, 0x33,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x31, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x31, 0x32, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32,
0x31, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x31, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x31, 0x32, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25,
0x72, 0x32, 0x31, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x31,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x32, 0x34, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32,
0x20, 0x25, 0x72, 0x32, 0x31, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x31, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x32, 0x36, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36,
0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x31, 0x35, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x31, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x32,
0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x31, 0x35, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x31, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x31, 0x32, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x31, 0x35,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x34, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x31, 0x32, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32,
0x31, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x34, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x31, 0x33, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25,
0x72, 0x32, 0x31, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x35,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x33, 0x32, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32,
0x20, 0x25, 0x72, 0x32, 0x31, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x31, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x33, 0x33, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36,
0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x31, 0x36, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x31, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x33,
0x34, 0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x31, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x31, 0x36, 0x33, 0x38, 0x34, 0x3b,
0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x32,
0x31, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x37, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x31, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x31, 0x37, 0x35, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x31, 0x37,
0x36, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x31, 0x38, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x31, 0x36, 0x35, 0x31,
0x32, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x32, 0x31, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x37,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x37, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x31, 0x38, 0x30, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x32,
0x31, 0x38, 0x31, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x31, 0x38, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x31, 0x36,
0x36, 0x34, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x32, 0x31, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x31, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x38, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x31, 0x38, 0x35, 0x7d, 0x2c, 0x20, 0x5b, 0x25,
0x72, 0x32, 0x31, 0x38, 0x36, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x31,
0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x34, 0x2c, 0x20,
0x31, 0x36, 0x37, 0x36, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e,
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x31, 0x38, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x31, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x38,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x39, 0x30, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x32, 0x31, 0x39, 0x31, 0x5d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x32, 0x31, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31,
0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x37, 0x37, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78,
0x32, 0x20, 0x25, 0x72, 0x32, 0x31, 0x39, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x31, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x37, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x31, 0x39, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x31, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31,
0x37, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32, 0x30, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x31, 0x38, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32,
0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x39, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x31, 0x38, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72,
0x32, 0x32, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x39, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x38, 0x33, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x32, 0x32, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31,
0x39, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x38, 0x34, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78,
0x32, 0x20, 0x25, 0x72, 0x32, 0x32, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x32, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x38, 0x35,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32, 0x31, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x32, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31,
0x38, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32, 0x31, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x31, 0x38, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32,
0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x31, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x31, 0x38, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72,
0x32, 0x32, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x31, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x39, 0x30, 0x3b, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x32, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x34, 0x2c,
0x20, 0x32, 0x34, 0x35, 0x37, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x32, 0x32, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x32, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32,
0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x33, 0x31, 0x7d, 0x2c,
0x20, 0x5b, 0x25, 0x72, 0x32, 0x32, 0x33, 0x32, 0x5d, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x32, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x36,
0x34, 0x2c, 0x20, 0x32, 0x34, 0x37, 0x30, 0x34, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x32, 0x33, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x32, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x33, 0x36,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x32, 0x33, 0x37, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x32, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x30, 0x36, 0x34, 0x2c, 0x20, 0x32, 0x34, 0x38, 0x33, 0x32, 0x3b, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x32,
0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x33, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x32, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32,
0x34, 0x31, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x32, 0x34, 0x32,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x34, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x30, 0x36, 0x34, 0x2c, 0x20, 0x32, 0x34, 0x39, 0x36, 0x30,
0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72,
0x32, 0x32, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x34, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x32, 0x34, 0x36, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x32, 0x32,
0x34, 0x37, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32, 0x34,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x32, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x32, 0x33, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32,
0x32, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x32, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x32, 0x33, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25,
0x72, 0x32, 0x32, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x33,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x33, 0x35, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32,
0x20, 0x25, 0x72, 0x32, 0x32, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x32, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x33, 0x36, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36,
0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32, 0x36, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x32, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x33,
0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32, 0x36, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x32, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x32, 0x33, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32, 0x36,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x35, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x32, 0x34, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32,
0x32, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x35, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x32, 0x34, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25,
0x72, 0x32, 0x32, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x36,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x34, 0x33, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32,
0x20, 0x25, 0x72, 0x32, 0x32, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x32, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x34, 0x34, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36,
0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32, 0x37, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x32, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x34,
0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x32, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x32, 0x34, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x6c, 0x6f, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x32, 0x39, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x38, 0x2c,
0x20, 0x38, 0x30, 0x3b, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x73, 0x36, 0x34,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x32, 0x39, 0x35, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35,
0x37, 0x3b, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x75, 0x33, 0x32, 0x2e, 0x75,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x39, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32,
0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x39, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x33, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x32, 0x31, 0x31, 0x20,
0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30,
0x5f, 0x35, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x40, 0x25, 0x70, 0x37, 0x20,
0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30,
0x5f, 0x34, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64,
0x36, 0x31, 0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c,
0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f,
0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d,
0x5f, 0x30, 0x2b, 0x34, 0x30, 0x5d, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x6c, 0x6f, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x32, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34,
0x20, 0x09, 0x25, 0x72, 0x64, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x32, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x34, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x67, 0x6c, 0x6f,
0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x5b, 0x25, 0x72, 0x64, 0x34, 0x34, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72,
0x32, 0x31, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x30, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x31, 0x31, 0x33, 0x7d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x42, 0x42, 0x30, 0x5f, 0x34, 0x36, 0x3a, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x32, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x32, 0x31, 0x33, 0x20, 0x62,
0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f,
0x35, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x40, 0x25, 0x70, 0x37, 0x20, 0x62,
0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f,
0x34, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72,
0x61, 0x6d, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x36,
0x30, 0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f,
0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f,
0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b,
0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f,
0x30, 0x2b, 0x34, 0x30, 0x5d, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x64, 0x32, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x6c, 0x6f, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64,
0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x64, 0x36, 0x30, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x64, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x36, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72,
0x64, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x64, 0x34, 0x37, 0x3b, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x67, 0x6c,
0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x5b, 0x25, 0x72, 0x64, 0x34, 0x38, 0x5d, 0x2c, 0x20, 0x7b, 0x25,
0x72, 0x32, 0x31, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x36,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x31, 0x36, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x31, 0x36, 0x39, 0x7d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x42, 0x42, 0x30, 0x5f, 0x34, 0x39, 0x3a, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x39,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x37, 0x2c, 0x20, 0x31, 0x36, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x32, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x40,
0x25, 0x70, 0x32, 0x31, 0x35, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24,
0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x35, 0x34, 0x3b, 0x00, 0x00,
0x00, 0x40, 0x25, 0x70, 0x37, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24,
0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x35, 0x32, 0x3b, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e, 0x75, 0x36,
0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x35, 0x39, 0x2c, 0x20, 0x5b, 0x66,
0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30,
0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x34, 0x30, 0x5d,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x2c, 0x20,
0x33, 0x32, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x6c, 0x6f, 0x2e, 0x73,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x35, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x64, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x39, 0x3b,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x35, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x35, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x31, 0x3b,
0x00, 0x00, 0x73, 0x74, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e,
0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x5b, 0x25, 0x72, 0x64,
0x35, 0x32, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x32, 0x31, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x32, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x32, 0x35,
0x7d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f,
0x35, 0x32, 0x3a, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x37, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x32, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x39, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65,
0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x32, 0x31, 0x39, 0x2c, 0x20, 0x25,
0x70, 0x32, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x3b, 0x00, 0x40,
0x25, 0x70, 0x32, 0x31, 0x39, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24,
0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f, 0x35, 0x34, 0x3b, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e, 0x75, 0x36,
0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x35, 0x38, 0x2c, 0x20, 0x5b, 0x66,
0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30,
0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x34, 0x30, 0x5d,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x2c, 0x20,
0x34, 0x38, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x6c, 0x6f, 0x2e, 0x73,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x35, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x64, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x38, 0x3b,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x35, 0x34, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x35, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x35, 0x3b,
0x00, 0x00, 0x73, 0x74, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e,
0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x5b, 0x25, 0x72, 0x64,
0x35, 0x36, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x32, 0x32, 0x37, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x32, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x38, 0x31,
0x7d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x30, 0x5f,
0x35, 0x34, 0x3a, 0x00, 0x00, 0x72, 0x65, 0x74, 0x3b, 0x00, 0x00, 0x7d,
0x00, 0x00, 0x2e, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x20, 0x2e,
0x65, 0x6e, 0x74, 0x72, 0x79, 0x20, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76,
0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61,
0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30,
0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x28, 0x00,
0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x20, 0x2e, 0x61, 0x6c, 0x69, 0x67,
0x6e, 0x20, 0x38, 0x20, 0x2e, 0x62, 0x38, 0x20, 0x66, 0x6d, 0x68, 0x61,
0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75,
0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d,
0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c,
0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x5b, 0x31, 0x31, 0x32,
0x5d, 0x00, 0x29, 0x00, 0x7b, 0x00, 0x2e, 0x72, 0x65, 0x67, 0x20, 0x2e,
0x70, 0x72, 0x65, 0x64, 0x20, 0x09, 0x25, 0x70, 0x3c, 0x31, 0x32, 0x39,
0x3e, 0x3b, 0x00, 0x2e, 0x72, 0x65, 0x67, 0x20, 0x2e, 0x62, 0x31, 0x36,
0x20, 0x09, 0x25, 0x72, 0x73, 0x3c, 0x37, 0x34, 0x3e, 0x3b, 0x00, 0x2e,
0x72, 0x65, 0x67, 0x20, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x3c, 0x32, 0x33, 0x32, 0x3e, 0x3b, 0x00, 0x2e, 0x72, 0x65, 0x67, 0x20,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x3c, 0x31, 0x36, 0x38,
0x30, 0x3e, 0x3b, 0x00, 0x2e, 0x72, 0x65, 0x67, 0x20, 0x2e, 0x62, 0x36,
0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x3c, 0x35, 0x37, 0x3e, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e,
0x76, 0x32, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x31,
0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x38, 0x34, 0x7d, 0x2c, 0x20,
0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f,
0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e,
0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f,
0x30, 0x2b, 0x34, 0x38, 0x5d, 0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x2e, 0x76, 0x32, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x7b, 0x25, 0x72, 0x31, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x38,
0x38, 0x7d, 0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c,
0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f,
0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x5f, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x36, 0x34, 0x5d, 0x3b, 0x00, 0x6c,
0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e, 0x75, 0x36, 0x34, 0x20,
0x09, 0x25, 0x72, 0x64, 0x32, 0x34, 0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68,
0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61,
0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73,
0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e,
0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x38, 0x30,
0x5d, 0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e,
0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x32, 0x31, 0x2c, 0x20,
0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31,
0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f,
0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e,
0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f,
0x30, 0x2b, 0x32, 0x34, 0x5d, 0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64,
0x31, 0x38, 0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c,
0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f,
0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x5f, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x5f, 0x30, 0x5d, 0x3b, 0x00, 0x63, 0x76, 0x74, 0x61,
0x2e, 0x74, 0x6f, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x75,
0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x32, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x64, 0x32, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x25, 0x74,
0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x39, 0x31, 0x2c, 0x20, 0x25,
0x63, 0x74, 0x61, 0x69, 0x64, 0x2e, 0x79, 0x3b, 0x00, 0x00, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x77, 0x69, 0x64, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x64, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x39,
0x31, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36,
0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x37, 0x3b, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x39, 0x32, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x64, 0x32, 0x38, 0x2b, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x33, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x32,
0x38, 0x5d, 0x3b, 0x00, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x39, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x33, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x35, 0x2c, 0x20, 0x25, 0x63,
0x74, 0x61, 0x69, 0x64, 0x2e, 0x7a, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x6c, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35,
0x3b, 0x00, 0x00, 0x40, 0x25, 0x70, 0x38, 0x20, 0x62, 0x72, 0x61, 0x20,
0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x34, 0x35, 0x3b,
0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x38, 0x3b, 0x00,
0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x6c, 0x6f, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x38, 0x34, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x2c, 0x20, 0x25, 0x63, 0x74,
0x61, 0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x68,
0x72, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x73,
0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x30,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x31, 0x2c, 0x20, 0x32, 0x39,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x32, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x32, 0x30, 0x32, 0x3b, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x33, 0x2c, 0x20, 0x33, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x2c, 0x20, 0x35, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x3b, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x73, 0x36, 0x34, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x64, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x34, 0x3b, 0x00,
0x00, 0x6d, 0x61, 0x64, 0x2e, 0x6c, 0x6f, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x2c, 0x20,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x33, 0x2c, 0x20, 0x2d, 0x38, 0x3b,
0x00, 0x73, 0x75, 0x62, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x30, 0x35, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x73, 0x36,
0x34, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x64, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x30, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x75, 0x62,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x30, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32,
0x30, 0x38, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x2c,
0x20, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x32, 0x30, 0x39, 0x2c, 0x20, 0x2d, 0x31, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79,
0x6e, 0x63, 0x2e, 0x69, 0x64, 0x78, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x33, 0x7c, 0x25, 0x70, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x30, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73,
0x79, 0x6e, 0x63, 0x2e, 0x69, 0x64, 0x78, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x34, 0x7c, 0x25, 0x70, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x30, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x68,
0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x69, 0x64, 0x78, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x7c, 0x25, 0x70,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x39, 0x3b, 0x00, 0x00, 0x00,
0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x69, 0x64,
0x78, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x7c,
0x25, 0x70, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x39, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63,
0x2e, 0x69, 0x64, 0x78, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x32, 0x31, 0x30, 0x7c, 0x25, 0x70, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x30, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73,
0x79, 0x6e, 0x63, 0x2e, 0x69, 0x64, 0x78, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x37, 0x7c, 0x25, 0x70, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x30, 0x39, 0x3b, 0x00, 0x6d, 0x69, 0x6e, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30,
0x37, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6c,
0x2e, 0x62, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x32, 0x31, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x2c, 0x20,
0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x36, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x36, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x31, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x32, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x32, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x32, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x32,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x40,
0x25, 0x70, 0x31, 0x32, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c,
0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x77, 0x69, 0x64, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x64, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31,
0x2c, 0x20, 0x38, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36,
0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x3b, 0x00, 0x00,
0x6d, 0x75, 0x6c, 0x2e, 0x6c, 0x6f, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09,
0x25, 0x72, 0x64, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x32, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x33,
0x31, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09,
0x25, 0x72, 0x64, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x38,
0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x36, 0x32, 0x30, 0x2c, 0x20, 0x30, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x36, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x32, 0x30,
0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x36, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x32,
0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x36, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x32, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x36, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x32, 0x30, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x33, 0x20, 0x62,
0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f,
0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f,
0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x7b, 0x25, 0x72, 0x31, 0x36, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x31, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x31, 0x39, 0x7d, 0x2c, 0x20, 0x5b, 0x25,
0x72, 0x64, 0x37, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42,
0x42, 0x31, 0x5f, 0x34, 0x3a, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x32, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x38, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x32, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x32, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x32, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x32, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x32, 0x30, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x31,
0x34, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42,
0x42, 0x31, 0x5f, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36, 0x3b, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76,
0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x31, 0x36,
0x32, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x32, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x32, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x33, 0x33, 0x5d,
0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x36,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x73, 0x36, 0x34,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x6c, 0x6f,
0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x33, 0x34,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x38, 0x34, 0x3b, 0x00, 0x6d, 0x69, 0x6e, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x3b, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36,
0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x36, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36,
0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x36, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33,
0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x36, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36,
0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x36, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36,
0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x32, 0x20, 0x62, 0x72, 0x61, 0x20,
0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x31, 0x35, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x77, 0x69, 0x64, 0x65, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x33, 0x39, 0x2c, 0x20, 0x38, 0x30, 0x3b, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x64, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x35, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09,
0x25, 0x72, 0x64, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x64, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x64, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x33, 0x37, 0x3b, 0x00,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x2c, 0x20,
0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x34, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x33, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x33, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x33, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x3b, 0x00, 0x40, 0x25,
0x70, 0x31, 0x36, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f,
0x5f, 0x42, 0x42, 0x31, 0x5f, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x39,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x39, 0x5d, 0x3b, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x39, 0x3a, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x36, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x30, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x34, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x34, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x34, 0x30, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x37,
0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42,
0x31, 0x5f, 0x31, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x34, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x33, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x64, 0x31, 0x30, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x31, 0x31, 0x3a, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x31,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x34, 0x38, 0x2c, 0x20, 0x30, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x38, 0x3b, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x34,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x38, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36,
0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x38, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x38, 0x3b,
0x00, 0x40, 0x25, 0x70, 0x31, 0x38, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09,
0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x31, 0x33, 0x3b, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e,
0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x31,
0x36, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x34, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x31, 0x31,
0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f,
0x31, 0x33, 0x3a, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x32, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x31, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x32, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x30, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x36, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x34, 0x38, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x34, 0x38, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x35, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x34, 0x38, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x39,
0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42,
0x31, 0x5f, 0x31, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36, 0x3b,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e,
0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x31,
0x36, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x35, 0x31, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x33, 0x38,
0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f,
0x31, 0x35, 0x3a, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x36, 0x34, 0x2c, 0x20, 0x30, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x36, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x36, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x36, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x36, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x36, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x36, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x36, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x36, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x36, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x34, 0x3b, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x37,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x34, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36,
0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x34, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x34, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x36, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x34,
0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x36, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36,
0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x36, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x36, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x36, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x36, 0x34, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x32, 0x20,
0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31,
0x5f, 0x32, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x32, 0x39, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x38, 0x34, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x77, 0x69, 0x64, 0x65, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x64, 0x33, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x39, 0x38, 0x2c, 0x20, 0x38, 0x30, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x35, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20,
0x09, 0x25, 0x72, 0x64, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x34,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x31,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x36, 0x38,
0x2c, 0x20, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x36, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x38, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x36, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x38, 0x3b, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x36,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x38, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36,
0x36, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x38, 0x3b, 0x00,
0x40, 0x25, 0x70, 0x32, 0x31, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24,
0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x31, 0x38, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e,
0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x31,
0x36, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x36, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x31, 0x32,
0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f,
0x31, 0x38, 0x3a, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34,
0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36, 0x3b, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x30,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x30,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x3b, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x36,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x38, 0x3b, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36,
0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x38, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x38, 0x3b,
0x00, 0x40, 0x25, 0x70, 0x32, 0x32, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09,
0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x32, 0x30, 0x3b, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e,
0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x72, 0x31,
0x36, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x37, 0x31, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x64, 0x31, 0x33,
0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f,
0x32, 0x30, 0x3a, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34,
0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x36, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x36, 0x2c, 0x20, 0x30,
0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x36, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x37, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x37, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x37, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x37, 0x36, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x32, 0x33,
0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42,
0x31, 0x5f, 0x32, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x37, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x37,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x37, 0x35, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x64, 0x31, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x32, 0x32, 0x3a, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x32,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x2c, 0x20, 0x31, 0x36, 0x3b,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x32,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x3b, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x64, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x36, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x37, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x37, 0x36, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x37, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x37, 0x36, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x32, 0x34,
0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42,
0x31, 0x5f, 0x32, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x37, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x37,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x37, 0x39, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x64, 0x31, 0x35, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x32, 0x34, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x38, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x31, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x38, 0x31, 0x30, 0x2c, 0x20, 0x38, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x31, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x30, 0x39, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x00,
0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38,
0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x30, 0x31, 0x2c, 0x20, 0x32,
0x37, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x38, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x31, 0x33, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x31, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x31, 0x34, 0x2c, 0x20, 0x2d, 0x33, 0x32, 0x3b, 0x00,
0x73, 0x75, 0x62, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38,
0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x31, 0x35, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x31, 0x36, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x73, 0x68, 0x72,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x31, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x31, 0x37, 0x2c, 0x20, 0x31, 0x3b, 0x00, 0x61,
0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38,
0x31, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x31, 0x36, 0x2c, 0x20, 0x37,
0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25,
0x72, 0x31, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x31, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x31, 0x39, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x32, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x73, 0x68,
0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x32, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x32, 0x30, 0x2c, 0x20, 0x33, 0x30, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x38, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x32, 0x31, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x32, 0x32, 0x2c, 0x20, 0x32, 0x36, 0x38, 0x34, 0x33, 0x35, 0x34,
0x35, 0x32, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x38, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x32, 0x33, 0x3b, 0x00, 0x00, 0x78, 0x6f, 0x72,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x32, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x38, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x32,
0x35, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x2c, 0x20, 0x37, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x32, 0x37, 0x3b, 0x00,
0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25,
0x72, 0x38, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x31,
0x36, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x38, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x2c, 0x20, 0x37, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x32, 0x39, 0x2c, 0x20, 0x31, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x33, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x33,
0x30, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x38, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x2c, 0x20, 0x33, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x33, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x33, 0x34, 0x2c, 0x20, 0x34, 0x38, 0x3b, 0x00, 0x73, 0x68,
0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x33, 0x32, 0x2c, 0x20, 0x37, 0x3b, 0x00,
0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38,
0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x33, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x33, 0x35, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x33, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x2c, 0x20, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x61, 0x6e,
0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x33,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x32, 0x34, 0x3b, 0x00,
0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38,
0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x33, 0x39, 0x2c, 0x20, 0x31,
0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25,
0x72, 0x38, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x34, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x33, 0x33, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x34, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x33, 0x38, 0x2c, 0x20, 0x31, 0x3b, 0x00, 0x00,
0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38,
0x34, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x34, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x34, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x34, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x34, 0x33, 0x2c, 0x20, 0x37, 0x3b, 0x00, 0x6f, 0x72, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x34, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x33,
0x35, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20,
0x09, 0x25, 0x72, 0x38, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x31,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x33, 0x33, 0x3b, 0x00, 0x61, 0x6e,
0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x34,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x32, 0x32, 0x34, 0x3b,
0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x38, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x34, 0x37, 0x2c, 0x20,
0x31, 0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x38, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x34, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x68,
0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x35, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x34, 0x39, 0x2c, 0x20, 0x34, 0x3b, 0x00,
0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x38, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x35, 0x30, 0x2c, 0x20,
0x34, 0x38, 0x3b, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x38, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x32, 0x39, 0x3b, 0x00, 0x73,
0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x35,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x34, 0x39, 0x2c, 0x20, 0x37, 0x3b,
0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x38, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x35, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x35, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6c,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x35, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x32, 0x3b, 0x00, 0x61, 0x6e, 0x64,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x35, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x35, 0x35, 0x2c, 0x20, 0x33, 0x32, 0x3b,
0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x38, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x35, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x33, 0x30, 0x3b, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x35, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x33, 0x38, 0x2c, 0x20, 0x32, 0x3b, 0x00, 0x6f, 0x72, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x35, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x35,
0x38, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x38, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x35,
0x39, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x33, 0x32, 0x2c, 0x20, 0x31, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x36, 0x32, 0x2c,
0x20, 0x5f, 0x5a, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74,
0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x35, 0x73, 0x6d, 0x65, 0x6d,
0x5f, 0x45, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x38, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36,
0x32, 0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x36, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36,
0x33, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x36, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36,
0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x33, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33,
0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x32, 0x39, 0x2c, 0x20, 0x32,
0x30, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x32, 0x39, 0x5d, 0x2c, 0x20,
0x7b, 0x25, 0x72, 0x31, 0x36, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x31, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x31, 0x39, 0x7d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x33, 0x34,
0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x32, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x32, 0x33, 0x7d, 0x3b,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x38, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x32, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x33, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x33, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x33, 0x33, 0x39, 0x2c, 0x20, 0x32, 0x30, 0x34, 0x38, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x34,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x33, 0x39, 0x2c, 0x20, 0x34, 0x30,
0x39, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x33, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x33,
0x39, 0x2c, 0x20, 0x36, 0x31, 0x34, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x33,
0x39, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x33, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x33, 0x39, 0x7d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25,
0x72, 0x33, 0x34, 0x34, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x36,
0x34, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x34, 0x33, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73,
0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x5b, 0x25, 0x72, 0x33, 0x34, 0x39, 0x5d, 0x2c, 0x20, 0x7b, 0x25,
0x72, 0x31, 0x36, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x34, 0x37, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73,
0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x35, 0x34, 0x5d, 0x2c,
0x20, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x35, 0x31, 0x7d, 0x3b, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x38, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x32, 0x2c, 0x20,
0x31, 0x32, 0x32, 0x38, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x36, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x37, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x33, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x36, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x33, 0x35, 0x39, 0x2c, 0x20, 0x32, 0x30, 0x34,
0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x33, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x35, 0x39,
0x2c, 0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x37, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x33, 0x35, 0x39, 0x2c, 0x20, 0x36, 0x31, 0x34, 0x34, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b,
0x25, 0x72, 0x33, 0x35, 0x39, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31,
0x36, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x36, 0x37, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e,
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x36, 0x34, 0x5d, 0x2c, 0x20, 0x7b,
0x25, 0x72, 0x31, 0x36, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x37, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x36, 0x37, 0x31, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x36, 0x39, 0x5d,
0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x37, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x37,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x37, 0x35, 0x7d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x33,
0x37, 0x34, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x36, 0x37, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x37, 0x39,
0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x79,
0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x36, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x32, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x33, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x33, 0x37, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x38, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x33, 0x38, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x33, 0x38, 0x33, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x38, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x33, 0x38, 0x33, 0x2c, 0x20, 0x32, 0x30, 0x34, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72,
0x33, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x38, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x33, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x38, 0x37,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x38, 0x38, 0x5d, 0x3b, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x38, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x36, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x39, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x34,
0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x33, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x39, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x33, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x33,
0x39, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x39, 0x33, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x34, 0x35, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x33, 0x39, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x37, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x33, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x39, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x33, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33,
0x39, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x33, 0x39, 0x38, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x34, 0x35, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x30, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x37, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x33, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x30, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x30, 0x33, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x34, 0x35, 0x2c, 0x20, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x30, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x37, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x34, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x30, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x30, 0x38, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x38, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x34, 0x35, 0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x31, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x37,
0x34, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x34, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31,
0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x31, 0x33, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x38, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x34, 0x35, 0x2c, 0x20, 0x38, 0x30, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x31, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x37,
0x35, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x34, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31,
0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x31, 0x38, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x38, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x34, 0x35, 0x2c, 0x20, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x32, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x37,
0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x34, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x32, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x32,
0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x32, 0x33, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x38, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x34, 0x35, 0x2c, 0x20, 0x31, 0x31, 0x32, 0x3b, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x32, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x37, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x34, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x32, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x32, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x32, 0x38, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x37, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x34,
0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x32, 0x7d,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x33, 0x33, 0x5d, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x38, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x32, 0x2c,
0x20, 0x31, 0x33, 0x33, 0x31, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x33, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x37, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33,
0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x33, 0x38, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x20, 0x09, 0x25, 0x72, 0x38, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x35, 0x34, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x34, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x36,
0x37, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x34, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x34, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x34,
0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x34, 0x33, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x34, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x37,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x37, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x34, 0x34, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x34,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x34, 0x37, 0x7d, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x34, 0x34, 0x38, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6f,
0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x38,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x35, 0x34, 0x2c, 0x20, 0x36, 0x34,
0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x34, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x38, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x36, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x34, 0x34, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25,
0x72, 0x34, 0x35, 0x33, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x35, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x37, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x34, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x35, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x35, 0x38, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x32, 0x30, 0x31, 0x2c, 0x20, 0x32, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x38, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x38, 0x31, 0x3b,
0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x38, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x38, 0x32, 0x2c,
0x20, 0x31, 0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x38, 0x33, 0x2c, 0x20, 0x32, 0x31, 0x34, 0x37, 0x34, 0x38, 0x33,
0x36, 0x31, 0x36, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x38, 0x34, 0x3b, 0x00,
0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x38, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x38, 0x35, 0x2c, 0x20,
0x31, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x38, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x31,
0x34, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x38, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x31, 0x34, 0x2c, 0x20, 0x35, 0x3b, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x38,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x38, 0x37, 0x3b, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x38, 0x39, 0x2c, 0x20, 0x31, 0x30, 0x37, 0x33, 0x37, 0x34, 0x31,
0x38, 0x32, 0x32, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x38, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x39, 0x30, 0x3b, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x38,
0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x38, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x39, 0x31, 0x3b, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x38, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x39, 0x32, 0x2c, 0x20, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x39, 0x33,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x30, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25,
0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x34,
0x39, 0x32, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x35, 0x31, 0x33,
0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20,
0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x30, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x38, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x36, 0x32, 0x3b, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x39, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x33, 0x37, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34,
0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x39, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x39, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x34, 0x36, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x36, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x37, 0x30, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x34, 0x37, 0x31, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x34, 0x37, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x37, 0x31, 0x2c, 0x20, 0x32, 0x30, 0x34, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72,
0x34, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x37, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x37, 0x35,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x34, 0x37, 0x36, 0x5d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x39, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x37, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x33, 0x38, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x33, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x39, 0x30,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x38, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x33, 0x38, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33,
0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x39, 0x32, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x39, 0x32, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x33, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x38,
0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x38, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x33, 0x39, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x36, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x33, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x38, 0x37, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x33, 0x39, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x33, 0x37, 0x2c, 0x20, 0x33, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x35, 0x32, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x39,
0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25,
0x72, 0x35, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x32, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x32,
0x38, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x35, 0x32, 0x39, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x35, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x32,
0x39, 0x2c, 0x20, 0x32, 0x30, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x35, 0x33, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x33, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x35, 0x33, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25,
0x72, 0x35, 0x33, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f,
0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x36, 0x38,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x39, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x33, 0x39, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32,
0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61,
0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x39, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x37, 0x30, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x33, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x33,
0x39, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32, 0x7d, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38,
0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x37, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x37, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x33, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x39, 0x35, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b,
0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x37, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x39,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x33, 0x39, 0x37, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x31, 0x36, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f,
0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x39,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x33, 0x37, 0x2c, 0x20, 0x34, 0x38,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x35, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x39, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x39, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x35, 0x38, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x38, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x38, 0x36, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x35, 0x38, 0x37, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x35, 0x39, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x38, 0x37, 0x2c, 0x20, 0x32, 0x30, 0x34, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72,
0x35, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x38, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x39, 0x31,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x35, 0x39, 0x32, 0x5d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e,
0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x32, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x32, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x33, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x30, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x39, 0x32, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x35, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x35,
0x32, 0x38, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x30, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x39, 0x32, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d,
0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x35, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x33, 0x31, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x33, 0x39, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x30, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35,
0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x7d,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e,
0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63,
0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x31, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x33,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x33, 0x33, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x34, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30,
0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x38, 0x39, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x33, 0x37,
0x2c, 0x20, 0x36, 0x34, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x36, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x39, 0x38, 0x3b, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x36, 0x34,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x36, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x34, 0x7d, 0x2c,
0x20, 0x5b, 0x25, 0x72, 0x36, 0x34, 0x35, 0x5d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x36, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x35, 0x2c, 0x20,
0x32, 0x30, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73,
0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x7b, 0x25, 0x72, 0x36, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x36,
0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x38, 0x2c, 0x20, 0x25,
0x72, 0x36, 0x34, 0x39, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x36, 0x35,
0x30, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61,
0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x39, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35,
0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x38, 0x34, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x34, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x30, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32, 0x7d, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38,
0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39,
0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x38, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x38, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x34, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x37, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x39, 0x32, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b,
0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x38, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x30,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x30, 0x35, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x31, 0x36, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f,
0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x35, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x39, 0x31,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x30, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x30, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x36,
0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x38, 0x39, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x38, 0x33, 0x37, 0x2c, 0x20, 0x38, 0x30, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x37, 0x30,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x39, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x36, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x30,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x37, 0x30, 0x32, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x37, 0x30, 0x33,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x37, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x37, 0x30, 0x33, 0x2c, 0x20, 0x32, 0x30, 0x34, 0x38, 0x3b, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x37, 0x30, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x37, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x37,
0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x30, 0x37, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x37, 0x30, 0x38, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x36, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x36,
0x34, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x30, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x39, 0x32, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d,
0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x39, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x36, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x34, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x31, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x31, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32, 0x7d,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e,
0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63,
0x6f, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x31, 0x36, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x36, 0x34,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x36, 0x34, 0x37, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x34, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31,
0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e,
0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x63, 0x6f, 0x6c, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x36,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x36, 0x34, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x36, 0x34, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x34, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x31, 0x32, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x31, 0x36, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x39, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x33, 0x37, 0x2c, 0x20,
0x39, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x37, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x39,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x37, 0x35, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x37, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x35,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x30, 0x7d, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x37, 0x36, 0x31, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x37, 0x36,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x31, 0x2c, 0x20, 0x32, 0x30,
0x34, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x37, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x37,
0x36, 0x35, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x37, 0x36, 0x36, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x39, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x33, 0x37, 0x2c, 0x20, 0x31, 0x31, 0x32, 0x3b, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x37, 0x37, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x38, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x30, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x37, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x37, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x37,
0x37, 0x30, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x37, 0x37, 0x31, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x37, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x37,
0x37, 0x31, 0x2c, 0x20, 0x32, 0x30, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x37, 0x37, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x37, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x37,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x37, 0x35, 0x7d, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x37, 0x37, 0x36, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x37, 0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x38, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x38, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x37, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x38, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x37, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x38, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x37, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x39, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x38, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x73, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x31,
0x7d, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x37, 0x37, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x25, 0x66, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x73,
0x31, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74,
0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x36,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x31, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x73, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31,
0x35, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x38, 0x30, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x73, 0x31, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66,
0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x35, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x7b, 0x25, 0x72, 0x73, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x73,
0x31, 0x39, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x38, 0x33, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x36, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x73, 0x31, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63,
0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25,
0x66, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x31, 0x39, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x73, 0x32, 0x33, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x38, 0x36, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33,
0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x36, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x73, 0x32, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x25, 0x66, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x32, 0x33, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x37, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x36, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x37, 0x2c,
0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x36, 0x2c,
0x20, 0x25, 0x66, 0x36, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x37, 0x38, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x32, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x37, 0x39, 0x2c, 0x20, 0x25,
0x66, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x38, 0x2c, 0x20, 0x25,
0x70, 0x32, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x38,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x38,
0x30, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x32, 0x2c, 0x20, 0x30, 0x66, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x38, 0x31,
0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46,
0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46,
0x2c, 0x20, 0x25, 0x70, 0x32, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x38, 0x32, 0x2c,
0x20, 0x25, 0x66, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x38, 0x31, 0x2c,
0x20, 0x25, 0x70, 0x32, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62,
0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x33, 0x3b, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x32, 0x39, 0x2c, 0x20, 0x25,
0x66, 0x38, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67,
0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x33, 0x2c, 0x20, 0x30,
0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x38, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46,
0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x38,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x38,
0x34, 0x2c, 0x20, 0x25, 0x70, 0x32, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x34, 0x3b,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x33, 0x31, 0x2c,
0x20, 0x25, 0x66, 0x38, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x34, 0x2c,
0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x38, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46,
0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46,
0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x32, 0x3b, 0x00,
0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x34, 0x2c, 0x20, 0x25,
0x66, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x31, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x36,
0x35, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x33,
0x33, 0x2c, 0x20, 0x25, 0x66, 0x38, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x37,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x36,
0x35, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x39, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x34,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x35, 0x2c,
0x20, 0x25, 0x66, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x33, 0x33, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x39, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x36, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65,
0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x39, 0x32, 0x2c, 0x20, 0x30,
0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x33, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x36, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x39, 0x33, 0x2c, 0x20, 0x30, 0x66,
0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66,
0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70,
0x33, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x36,
0x36, 0x2c, 0x20, 0x25, 0x66, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x33,
0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x39, 0x35, 0x2c,
0x20, 0x25, 0x66, 0x36, 0x37, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x39, 0x35, 0x2c,
0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x33, 0x38, 0x2c,
0x20, 0x25, 0x66, 0x36, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x39, 0x36, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x33, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x39, 0x37, 0x2c, 0x20, 0x25,
0x66, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x39, 0x36, 0x2c, 0x20, 0x25,
0x70, 0x33, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x39,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x38, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x39,
0x38, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x34,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x39, 0x39,
0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46,
0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46,
0x2c, 0x20, 0x25, 0x70, 0x34, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x30, 0x30,
0x2c, 0x20, 0x25, 0x66, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x39, 0x39,
0x2c, 0x20, 0x25, 0x70, 0x33, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x37, 0x39,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x38, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x37, 0x39, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x35, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x38, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x37, 0x39, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x38,
0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x38, 0x30, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x35, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x38, 0x37,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x73, 0x32, 0x37, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x39, 0x33, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x36, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x73, 0x32, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66,
0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x32, 0x37, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x73, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x31,
0x7d, 0x2c, 0x20, 0x25, 0x72, 0x37, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x25, 0x66, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x33,
0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66,
0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x37, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x33, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x73,
0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x35, 0x7d, 0x2c, 0x20,
0x25, 0x72, 0x37, 0x39, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63,
0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25,
0x66, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x34, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x73, 0x33, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x33, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x33, 0x39, 0x7d, 0x2c, 0x20, 0x25, 0x72, 0x38,
0x30, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x25, 0x66, 0x37, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x63, 0x76, 0x74, 0x2e, 0x66, 0x33, 0x32, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x25, 0x66, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x33, 0x39,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x30, 0x31, 0x2c,
0x20, 0x25, 0x66, 0x36, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x30, 0x31,
0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x34, 0x32,
0x2c, 0x20, 0x25, 0x66, 0x36, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x30, 0x32,
0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46,
0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46,
0x2c, 0x20, 0x25, 0x70, 0x34, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x30, 0x33,
0x2c, 0x20, 0x25, 0x66, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x30,
0x32, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x31, 0x3b, 0x00, 0x00, 0x61, 0x62,
0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x30, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x34, 0x33, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x30, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x30, 0x2c,
0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x30, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37,
0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37,
0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x34, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x33,
0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x30, 0x37, 0x2c, 0x20, 0x25,
0x66, 0x37, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65,
0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x30, 0x37, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x34, 0x36, 0x2c, 0x20,
0x25, 0x66, 0x37, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x30, 0x38, 0x2c, 0x20,
0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20,
0x25, 0x70, 0x34, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x30, 0x39, 0x2c, 0x20,
0x25, 0x66, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x30, 0x38, 0x2c,
0x20, 0x25, 0x70, 0x34, 0x35, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x32, 0x3b, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x31, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67,
0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x32, 0x2c, 0x20, 0x30,
0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x31, 0x31, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46,
0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46,
0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x38, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x31, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x70, 0x34, 0x37, 0x3b, 0x00,
0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x31, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x37,
0x33, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x34,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x31, 0x33, 0x2c, 0x20, 0x30, 0x66,
0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x37, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x31, 0x34, 0x2c, 0x20, 0x30, 0x66,
0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66,
0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70,
0x35, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x66,
0x37, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x31, 0x34, 0x2c, 0x20, 0x25,
0x70, 0x34, 0x39, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x31, 0x36,
0x2c, 0x20, 0x25, 0x66, 0x37, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x31,
0x36, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30,
0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x35,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x31,
0x37, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46,
0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46,
0x46, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x31,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x31, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x31, 0x3b, 0x00, 0x00, 0x61,
0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x35, 0x3b,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e, 0x65, 0x75, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x35, 0x33, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x31, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x35,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x31, 0x32, 0x30, 0x2c, 0x20, 0x30, 0x66, 0x37, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46,
0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x34,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x31, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x35,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x35,
0x33, 0x3b, 0x00, 0x00, 0x61, 0x62, 0x73, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x32, 0x32, 0x2c, 0x20,
0x25, 0x66, 0x37, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6e,
0x65, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x32, 0x2c,
0x20, 0x30, 0x66, 0x37, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x35, 0x36, 0x2c,
0x20, 0x25, 0x66, 0x37, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x32, 0x33, 0x2c,
0x20, 0x30, 0x66, 0x37, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c,
0x20, 0x30, 0x66, 0x46, 0x46, 0x37, 0x46, 0x46, 0x46, 0x46, 0x46, 0x2c,
0x20, 0x25, 0x70, 0x35, 0x36, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x6c, 0x70,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x32, 0x34, 0x2c,
0x20, 0x25, 0x66, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x33,
0x2c, 0x20, 0x25, 0x70, 0x35, 0x35, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x30, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x38, 0x38, 0x38, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x6f,
0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x39, 0x30,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x38, 0x31, 0x31, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x39, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x33, 0x3b, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65,
0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x35, 0x39, 0x2c, 0x20, 0x25, 0x70,
0x35, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x38, 0x3b, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x2c,
0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x39, 0x3b,
0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25,
0x72, 0x39, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x33, 0x2c,
0x20, 0x31, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x65,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x36, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x39, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x33,
0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x3b, 0x00, 0x00, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x36, 0x32,
0x2c, 0x20, 0x25, 0x70, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x31,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x32, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x38, 0x32, 0x2c, 0x20, 0x25,
0x70, 0x36, 0x32, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x39, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x30, 0x33, 0x2c, 0x20, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x36, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x30, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67,
0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x36, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x3b,
0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09,
0x25, 0x70, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x33, 0x2c, 0x20,
0x25, 0x70, 0x36, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x46,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x38,
0x35, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x35, 0x3b, 0x00, 0x00, 0x6f, 0x72,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x39, 0x30, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x33, 0x2c, 0x20, 0x33, 0x3b, 0x00,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x37, 0x3b, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65,
0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x70,
0x36, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x37, 0x3b, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x2c,
0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x38, 0x3b,
0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25,
0x72, 0x39, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x33, 0x2c,
0x20, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x36, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x39, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x38,
0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x3b, 0x00, 0x00, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x37, 0x31,
0x2c, 0x20, 0x25, 0x70, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x30,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x39, 0x31, 0x2c, 0x20, 0x25,
0x70, 0x37, 0x31, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x20, 0x09, 0x25, 0x72, 0x39, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x30, 0x33, 0x2c, 0x20, 0x39, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x30, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67,
0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x37, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x3b,
0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09,
0x25, 0x70, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x32, 0x2c, 0x20,
0x25, 0x70, 0x37, 0x33, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x36, 0x2c, 0x20, 0x30, 0x66, 0x46,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x39,
0x34, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x34, 0x3b, 0x00, 0x00, 0x6f, 0x72,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x39, 0x31, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x33, 0x2c, 0x20, 0x31, 0x30, 0x3b,
0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x30, 0x3b, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x37, 0x37, 0x2c, 0x20, 0x25,
0x70, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x36, 0x3b, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x37,
0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30,
0x2c, 0x20, 0x25, 0x66, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x37,
0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x39, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x33,
0x2c, 0x20, 0x31, 0x31, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x37, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x31, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x37, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x3b, 0x00, 0x00,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70,
0x38, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x70,
0x37, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x38, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38,
0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x30, 0x30,
0x2c, 0x20, 0x25, 0x70, 0x38, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x31, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x39, 0x30, 0x34, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x38, 0x32,
0x2c, 0x20, 0x25, 0x70, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x70, 0x35, 0x38,
0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x30, 0x33, 0x2c, 0x20,
0x25, 0x70, 0x38, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x6c, 0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x38, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x30, 0x33, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64,
0x20, 0x20, 0x09, 0x25, 0x70, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x38,
0x33, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x30, 0x2c,
0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x38, 0x34,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x36, 0x3b, 0x00,
0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25,
0x70, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x38, 0x35, 0x2c, 0x20, 0x25,
0x70, 0x36, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x46,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x30, 0x39, 0x2c, 0x20, 0x25, 0x70, 0x38, 0x36, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x30, 0x37, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x38, 0x38, 0x2c,
0x20, 0x25, 0x70, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x70, 0x36, 0x37, 0x3b,
0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x32, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x31, 0x32, 0x2c, 0x20,
0x25, 0x70, 0x38, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x38, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x30, 0x38, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64,
0x20, 0x20, 0x09, 0x25, 0x70, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x70, 0x38,
0x39, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x33, 0x2c,
0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x30,
0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x30, 0x39, 0x3b, 0x00,
0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25,
0x70, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x31, 0x2c, 0x20, 0x25,
0x70, 0x37, 0x33, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x34, 0x2c, 0x20, 0x30, 0x66, 0x46,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x31, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x32, 0x3b, 0x00, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x31, 0x30, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x65, 0x64, 0x20, 0x20, 0x09, 0x25, 0x70, 0x39, 0x34, 0x2c,
0x20, 0x25, 0x70, 0x39, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x36, 0x3b,
0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30,
0x30, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x31, 0x2c, 0x20,
0x25, 0x70, 0x39, 0x34, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x6c, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x39, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x31, 0x31, 0x3b, 0x00, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64,
0x20, 0x20, 0x09, 0x25, 0x70, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x70, 0x39,
0x35, 0x2c, 0x20, 0x25, 0x70, 0x37, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x36, 0x2c,
0x20, 0x30, 0x66, 0x46, 0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x36,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x70, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x31, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x37, 0x3b,
0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x39, 0x38, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x3b, 0x00,
0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x31, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x35, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x38, 0x3b, 0x00, 0x73,
0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x39, 0x39, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x3b, 0x00, 0x73, 0x65,
0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x32,
0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x66,
0x34, 0x2c, 0x20, 0x25, 0x70, 0x39, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x32, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x3b, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x32, 0x38,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x35,
0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x32, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x32, 0x39,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x36,
0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x32, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x3b, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x33, 0x30,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x37,
0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x38, 0x3b, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x38, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x30, 0x33, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x31, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x30, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x33, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x30, 0x2c, 0x20, 0x25,
0x70, 0x31, 0x30, 0x34, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67,
0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x31, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x31, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x31, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x33, 0x32, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x31, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x30, 0x35, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70,
0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x31, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x32, 0x3b, 0x00, 0x73, 0x65, 0x6c,
0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x33, 0x33,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x32, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x36, 0x3b, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x3b, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31,
0x33, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x37, 0x3b, 0x00,
0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x38, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x3b,
0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x34, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x30, 0x38,
0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x30, 0x39,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x35, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x31, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x70, 0x31,
0x30, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x33, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x70,
0x31, 0x31, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x31, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x37, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x39, 0x31, 0x34, 0x2c, 0x20, 0x33, 0x31, 0x3b,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x39, 0x31, 0x35, 0x2c, 0x20, 0x2d, 0x31, 0x3b, 0x00, 0x73, 0x68, 0x66,
0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x62, 0x66, 0x6c, 0x79, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x38, 0x7c, 0x25,
0x70, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x38, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x31, 0x35, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x31, 0x36, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x38, 0x3b, 0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73,
0x79, 0x6e, 0x63, 0x2e, 0x62, 0x66, 0x6c, 0x79, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x39, 0x7c, 0x25, 0x70, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x38, 0x31,
0x30, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x31, 0x35, 0x3b, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x39, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x30, 0x31, 0x2c, 0x20, 0x32, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x31, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x37, 0x3b, 0x00,
0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72,
0x39, 0x31, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x38, 0x2c, 0x20,
0x2d, 0x31, 0x36, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x31, 0x39, 0x3b, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x2c, 0x20,
0x37, 0x3b, 0x00, 0x00, 0x40, 0x25, 0x70, 0x31, 0x31, 0x31, 0x20, 0x62,
0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f,
0x32, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x38, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x31, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67,
0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x70, 0x31, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x33, 0x37, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x33, 0x39, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x37, 0x2c,
0x20, 0x25, 0x70, 0x31, 0x31, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x74, 0x2e,
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x5b, 0x25, 0x72, 0x31, 0x35, 0x37, 0x5d, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x33, 0x39, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x33, 0x38, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x34, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x33, 0x38, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x31, 0x33, 0x3b, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73,
0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x5b,
0x25, 0x72, 0x31, 0x35, 0x37, 0x2b, 0x31, 0x32, 0x38, 0x5d, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x34, 0x30, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x42, 0x42, 0x31, 0x5f, 0x32, 0x36, 0x3a, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x39, 0x38,
0x2c, 0x20, 0x5f, 0x5a, 0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64,
0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61,
0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x35, 0x73, 0x6d, 0x65,
0x6d, 0x5f, 0x45, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x39, 0x37, 0x2c, 0x20, 0x25,
0x74, 0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e,
0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x68,
0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x32, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x37, 0x2c, 0x20, 0x33, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x32, 0x30, 0x3b, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70,
0x31, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x37, 0x2c,
0x20, 0x33, 0x31, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x31, 0x34, 0x20,
0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31,
0x5f, 0x32, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x32, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x7b, 0x25, 0x66, 0x32, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x32, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x36, 0x31, 0x2b,
0x34, 0x30, 0x39, 0x36, 0x5d, 0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73,
0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x32, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x7b, 0x25, 0x66, 0x32, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x32, 0x39, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x36, 0x31,
0x2b, 0x34, 0x33, 0x35, 0x32, 0x5d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x42, 0x42, 0x31, 0x5f, 0x32, 0x38, 0x3a, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x30,
0x31, 0x2c, 0x20, 0x25, 0x74, 0x69, 0x64, 0x2e, 0x78, 0x3b, 0x00, 0x00,
0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x31, 0x2c,
0x20, 0x32, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x39, 0x39, 0x2c, 0x20, 0x5f, 0x5a,
0x4e, 0x32, 0x35, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c,
0x74, 0x69, 0x68, 0x65, 0x61, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e,
0x74, 0x69, 0x6f, 0x6e, 0x35, 0x73, 0x6d, 0x65, 0x6d, 0x5f, 0x45, 0x3b,
0x00, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x31,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x32, 0x37, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x37, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x31, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x65, 0x74,
0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x70, 0x31, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x32, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x39, 0x3b, 0x00, 0x73,
0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x32, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x34, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x31, 0x36, 0x3b,
0x00, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x74, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x31,
0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x32, 0x38, 0x3b, 0x00, 0x73, 0x65, 0x6c, 0x70, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x38, 0x2c, 0x20,
0x25, 0x70, 0x31, 0x31, 0x37, 0x3b, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e,
0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x30, 0x30, 0x3b, 0x00, 0x00, 0x40, 0x25, 0x70, 0x31,
0x31, 0x34, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f,
0x42, 0x42, 0x31, 0x5f, 0x33, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x74,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x5b, 0x25, 0x72, 0x31, 0x36, 0x32, 0x2b, 0x34, 0x30, 0x39, 0x36,
0x5d, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x36, 0x3b, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x33, 0x30, 0x3a, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x30, 0x32, 0x2c, 0x20, 0x5f, 0x5a, 0x4e, 0x32, 0x35, 0x66, 0x75,
0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61,
0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x35,
0x73, 0x6d, 0x65, 0x6d, 0x5f, 0x45, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x32, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x31, 0x2c, 0x20, 0x32, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x32,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x32, 0x34, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x32, 0x37, 0x2c, 0x20, 0x38, 0x3b,
0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x09,
0x30, 0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x34, 0x37,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x39, 0x32, 0x36, 0x2b, 0x34, 0x30, 0x39,
0x36, 0x5d, 0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x34, 0x38,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x39, 0x32, 0x36, 0x2b, 0x34, 0x31, 0x36,
0x30, 0x5d, 0x3b, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x79, 0x6e,
0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73,
0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x34, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x34, 0x37, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x35,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x39, 0x2c, 0x20, 0x30, 0x66,
0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78,
0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x39, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x35, 0x30, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x35,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34,
0x37, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x35, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x35, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38,
0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70,
0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35,
0x32, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x35, 0x33, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x37, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x33,
0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42,
0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x34, 0x3b, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x34, 0x37, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x35,
0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x35, 0x2c, 0x20, 0x30, 0x66,
0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78,
0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x32, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x35, 0x36, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x35,
0x37, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34,
0x37, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x35, 0x38, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x35, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38,
0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70,
0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35,
0x38, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x35, 0x39, 0x2c, 0x20, 0x25,
0x66, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x37, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x39,
0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42,
0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x30, 0x3b, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x37, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x34, 0x37, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x36,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x31, 0x2c, 0x20, 0x30, 0x66,
0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78,
0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x35, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x36, 0x32, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x36,
0x33, 0x2c, 0x20, 0x25, 0x66, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34,
0x37, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x36, 0x34, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x36, 0x33, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38,
0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70,
0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36,
0x34, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x36, 0x35, 0x2c, 0x20, 0x25,
0x66, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x38, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x35,
0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42,
0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x33, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x36, 0x3b, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x36, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x34, 0x38, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31,
0x36, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x36, 0x37, 0x2c, 0x20, 0x30,
0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65,
0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x38, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x36, 0x38, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31,
0x36, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x34, 0x38, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x36, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46,
0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x37, 0x30, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x31, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x38,
0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x37, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41,
0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x34, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x32,
0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x38, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x33,
0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42,
0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x34, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x34, 0x3b, 0x00, 0x73,
0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x31, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x34, 0x38, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31,
0x37, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x37, 0x35, 0x2c, 0x20, 0x30,
0x66, 0x33, 0x46, 0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65,
0x78, 0x32, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x32, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x37, 0x36, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31,
0x37, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x34, 0x38, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x38, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x37, 0x37, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46,
0x42, 0x38, 0x41, 0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x37, 0x38, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x37, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x34, 0x38,
0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x31, 0x37, 0x39, 0x2c, 0x20, 0x30, 0x66, 0x33, 0x46, 0x42, 0x38, 0x41,
0x41, 0x33, 0x42, 0x3b, 0x00, 0x65, 0x78, 0x32, 0x2e, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x34, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x30,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x31, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x31, 0x38, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x38,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x31, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x33, 0x2c, 0x20,
0x25, 0x66, 0x33, 0x33, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x35,
0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x34, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x38, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x35, 0x3b, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x36,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x36, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31,
0x38, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x66,
0x33, 0x38, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x38, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x39, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x31, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x38, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x30, 0x3b, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x31, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x38, 0x39, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x31, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x66,
0x34, 0x32, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x32, 0x2c, 0x20,
0x25, 0x66, 0x31, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x33, 0x3b,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x32,
0x38, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x35, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39, 0x32, 0x39, 0x2c,
0x20, 0x33, 0x31, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x39, 0x33, 0x30, 0x2c, 0x20, 0x2d, 0x31, 0x3b,
0x00, 0x73, 0x68, 0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x62,
0x66, 0x6c, 0x79, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x34, 0x7c, 0x25, 0x70, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x32,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x30, 0x3b, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x39,
0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x36, 0x3b, 0x00, 0x73, 0x68,
0x66, 0x6c, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x62, 0x66, 0x6c, 0x79,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x35, 0x7c,
0x25, 0x70, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x39, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x32, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x30, 0x3b, 0x00, 0x00, 0x40, 0x25,
0x70, 0x31, 0x31, 0x31, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c,
0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x33, 0x32, 0x3b, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31,
0x39, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x34, 0x3b, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x34,
0x35, 0x2c, 0x20, 0x25, 0x66, 0x31, 0x39, 0x33, 0x3b, 0x00, 0x00, 0x73,
0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x5b, 0x25, 0x72, 0x31, 0x35, 0x37, 0x5d, 0x2c, 0x20, 0x25,
0x66, 0x31, 0x39, 0x34, 0x3b, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x35, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x31, 0x39,
0x36, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x39, 0x35, 0x3b, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x5b, 0x25, 0x72, 0x31,
0x35, 0x37, 0x2b, 0x31, 0x32, 0x38, 0x5d, 0x2c, 0x20, 0x25, 0x66, 0x31,
0x39, 0x36, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31,
0x5f, 0x33, 0x32, 0x3a, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x79,
0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x40, 0x25, 0x70, 0x31,
0x31, 0x34, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f,
0x42, 0x42, 0x31, 0x5f, 0x33, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x32, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x66, 0x32, 0x32, 0x36, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x32, 0x37, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31,
0x36, 0x31, 0x2b, 0x34, 0x30, 0x39, 0x36, 0x5d, 0x3b, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x32, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x7b, 0x25, 0x66, 0x32, 0x32, 0x38, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x32, 0x39, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x36, 0x31, 0x2b, 0x34, 0x33, 0x35, 0x32, 0x5d, 0x3b, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x33, 0x34, 0x3a, 0x00,
0x00, 0x62, 0x61, 0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30,
0x3b, 0x00, 0x00, 0x00, 0x40, 0x25, 0x70, 0x31, 0x31, 0x34, 0x20, 0x62,
0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f,
0x33, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x30,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x32, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x30,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x32, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x30,
0x33, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x31, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x30, 0x32, 0x3b, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x5b, 0x25, 0x72,
0x31, 0x36, 0x32, 0x2b, 0x34, 0x30, 0x39, 0x36, 0x5d, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x30, 0x33, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42,
0x42, 0x31, 0x5f, 0x33, 0x36, 0x3a, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e,
0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x39,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x32, 0x36, 0x2c, 0x20, 0x34, 0x30,
0x39, 0x36, 0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x35, 0x35,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x35, 0x39, 0x35, 0x5d, 0x3b, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x35, 0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x32, 0x36, 0x2c,
0x20, 0x34, 0x30, 0x39, 0x36, 0x3b, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73,
0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x35, 0x36, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x35, 0x39, 0x36,
0x2b, 0x36, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x62, 0x61, 0x72, 0x2e, 0x73,
0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x65,
0x74, 0x70, 0x2e, 0x65, 0x71, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x32, 0x32, 0x2c, 0x20, 0x25,
0x66, 0x35, 0x35, 0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30,
0x30, 0x30, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x09, 0x25, 0x66, 0x32, 0x33, 0x31, 0x2c, 0x20, 0x30, 0x66, 0x33,
0x46, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3b, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x33, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x33, 0x31, 0x3b, 0x00, 0x40, 0x25, 0x70, 0x31,
0x32, 0x32, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f,
0x42, 0x42, 0x31, 0x5f, 0x33, 0x38, 0x3b, 0x00, 0x00, 0x72, 0x63, 0x70,
0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x33, 0x30, 0x2c, 0x20,
0x25, 0x66, 0x35, 0x35, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42,
0x42, 0x31, 0x5f, 0x33, 0x38, 0x3a, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e,
0x65, 0x71, 0x75, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x70, 0x31, 0x32, 0x33, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x36,
0x2c, 0x20, 0x30, 0x66, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30,
0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x32, 0x33, 0x20, 0x62, 0x72, 0x61,
0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x34, 0x30,
0x3b, 0x00, 0x00, 0x72, 0x63, 0x70, 0x2e, 0x61, 0x70, 0x70, 0x72, 0x6f,
0x78, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x32, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x35, 0x36, 0x3b, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x34, 0x30, 0x3a,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x36, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x74, 0x69, 0x64, 0x2e,
0x78, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x36, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x31, 0x31, 0x2c, 0x20, 0x33, 0x31, 0x3b, 0x00, 0x73, 0x68, 0x72,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x30, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x31, 0x30, 0x2c, 0x20, 0x32, 0x39,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x36, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x31,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x39, 0x3b, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x36, 0x30, 0x37, 0x2c, 0x20, 0x5f, 0x5a, 0x4e, 0x32, 0x35, 0x66, 0x75,
0x73, 0x65, 0x64, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x68, 0x65, 0x61,
0x64, 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x35,
0x73, 0x6d, 0x65, 0x6d, 0x5f, 0x45, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x72,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x30, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x38, 0x2c, 0x20, 0x33, 0x3b,
0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09,
0x25, 0x72, 0x31, 0x36, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36,
0x30, 0x38, 0x2c, 0x20, 0x2d, 0x38, 0x3b, 0x00, 0x73, 0x75, 0x62, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x30, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x36, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x30, 0x35, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x36, 0x30, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x36, 0x30, 0x34, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x73, 0x36, 0x34, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x64, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x33,
0x3b, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x30, 0x36, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x39, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x34,
0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x36, 0x3b, 0x00, 0x00, 0x00,
0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x30, 0x37, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33,
0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x30, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x39, 0x33, 0x32, 0x2c, 0x20, 0x7b,
0x25, 0x72, 0x73, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x73, 0x34, 0x33,
0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x30, 0x38,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x31, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72,
0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72,
0x73, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x30, 0x38, 0x3b, 0x00,
0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x66,
0x32, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x32, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x34, 0x37, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x30, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x39, 0x33, 0x33, 0x2c,
0x20, 0x7b, 0x25, 0x72, 0x73, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x73,
0x34, 0x37, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32,
0x31, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x30, 0x2c, 0x20, 0x25,
0x66, 0x33, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74,
0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x25, 0x72, 0x73, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x30,
0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x31, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x34, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x35, 0x31,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x39, 0x33,
0x34, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x35, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x73, 0x35, 0x31, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x32, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x30, 0x2c,
0x20, 0x25, 0x66, 0x33, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63,
0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x25, 0x72, 0x73, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x31, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x31, 0x33,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73,
0x35, 0x35, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x33, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72,
0x39, 0x33, 0x35, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x35, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x73, 0x35, 0x35, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x09, 0x25, 0x66, 0x32, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33,
0x31, 0x2c, 0x20, 0x25, 0x66, 0x33, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x63,
0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33,
0x32, 0x20, 0x25, 0x72, 0x73, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32,
0x31, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74,
0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x31, 0x35,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x33,
0x38, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x35,
0x39, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x35, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x39,
0x33, 0x36, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x35, 0x38, 0x2c, 0x20,
0x25, 0x72, 0x73, 0x35, 0x39, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09,
0x25, 0x66, 0x32, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x31,
0x2c, 0x20, 0x25, 0x66, 0x33, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76,
0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32,
0x20, 0x25, 0x72, 0x73, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31,
0x36, 0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x31, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x30,
0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x36, 0x33,
0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x39, 0x33,
0x37, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x36, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x73, 0x36, 0x33, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75,
0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25,
0x66, 0x32, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x31, 0x2c,
0x20, 0x25, 0x66, 0x34, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74,
0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20,
0x25, 0x72, 0x73, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x31, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e,
0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x31, 0x39, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x32, 0x3b,
0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x36, 0x37, 0x2c,
0x20, 0x25, 0x66, 0x32, 0x31, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x39, 0x33, 0x38,
0x2c, 0x20, 0x7b, 0x25, 0x72, 0x73, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x73, 0x36, 0x37, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c,
0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x09, 0x25, 0x66,
0x32, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x33, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x34, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x63, 0x76, 0x74, 0x2e,
0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x33, 0x32, 0x20, 0x25,
0x72, 0x73, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x66, 0x32, 0x32, 0x30, 0x3b,
0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x66, 0x74, 0x7a, 0x2e, 0x66,
0x33, 0x32, 0x20, 0x09, 0x25, 0x66, 0x32, 0x32, 0x31, 0x2c, 0x20, 0x25,
0x66, 0x32, 0x33, 0x31, 0x2c, 0x20, 0x25, 0x66, 0x34, 0x34, 0x3b, 0x00,
0x00, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x72, 0x6e, 0x2e, 0x66, 0x31, 0x36,
0x2e, 0x66, 0x33, 0x32, 0x20, 0x25, 0x72, 0x73, 0x37, 0x31, 0x2c, 0x20,
0x25, 0x66, 0x32, 0x32, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x25, 0x72, 0x39, 0x33, 0x39, 0x2c,
0x20, 0x7b, 0x25, 0x72, 0x73, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x73,
0x37, 0x31, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x30,
0x31, 0x32, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31,
0x33, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x34,
0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x35, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x30, 0x32, 0x34, 0x2c, 0x20,
0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x30, 0x32, 0x35, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x30, 0x32, 0x36, 0x2c, 0x20, 0x30, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x25, 0x72, 0x31, 0x30, 0x32, 0x37, 0x2c, 0x20, 0x30, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x25, 0x72, 0x31, 0x30, 0x36, 0x30, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25,
0x72, 0x31, 0x30, 0x36, 0x31, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x31, 0x30, 0x36, 0x32, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31,
0x30, 0x36, 0x33, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x30,
0x37, 0x32, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37,
0x33, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x34,
0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x35, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x30, 0x38, 0x2c, 0x20,
0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x30, 0x39, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x31, 0x30, 0x2c, 0x20, 0x30, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x25, 0x72, 0x31, 0x31, 0x31, 0x31, 0x2c, 0x20, 0x30, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x25, 0x72, 0x31, 0x31, 0x32, 0x30, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25,
0x72, 0x31, 0x31, 0x32, 0x31, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x31, 0x31, 0x32, 0x32, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31,
0x31, 0x32, 0x33, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31,
0x35, 0x36, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35,
0x37, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35, 0x38,
0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35, 0x39, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x36, 0x38, 0x2c, 0x20,
0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x36, 0x39, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x31, 0x37, 0x30, 0x2c, 0x20, 0x30, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x25, 0x72, 0x31, 0x31, 0x37, 0x31, 0x2c, 0x20, 0x30, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x25, 0x72, 0x31, 0x32, 0x30, 0x34, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25,
0x72, 0x31, 0x32, 0x30, 0x35, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x31, 0x32, 0x30, 0x36, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31,
0x32, 0x30, 0x37, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x32,
0x31, 0x36, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d,
0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31,
0x37, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f,
0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x38,
0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76,
0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x39, 0x2c,
0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e,
0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x32, 0x2c, 0x20,
0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c, 0x20, 0x30,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33,
0x32, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x34, 0x2c, 0x20, 0x30, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32,
0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x35, 0x2c, 0x20, 0x30, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20,
0x25, 0x72, 0x31, 0x32, 0x36, 0x34, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25,
0x72, 0x31, 0x32, 0x36, 0x35, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72,
0x31, 0x32, 0x36, 0x36, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x6d, 0x6f, 0x76, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x25, 0x72, 0x31,
0x32, 0x36, 0x37, 0x2c, 0x20, 0x30, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x30, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x33, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x31, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x33, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x34, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33,
0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x31, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x35,
0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61,
0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x32, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x32, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x32, 0x37, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x39, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33,
0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x33, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x30, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x32,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x32, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x32, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x31,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31,
0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x31, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x31, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x31, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x35, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x30, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x32, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x32, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x32, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x39, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x35, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x33, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x30, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x32, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x32, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f,
0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x36, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x33, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x32, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x33, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x34, 0x30, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x33, 0x7d, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e,
0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x30, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x37, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39,
0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x33, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x34, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x34, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x37,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37,
0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x36, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x33, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x34, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x34, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x30, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x36, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x36, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b,
0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x30,
0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x37, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x34, 0x37,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x37, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x30, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x35, 0x7d,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e,
0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x31, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x31, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x31, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x31, 0x31, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x39, 0x33, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x33,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x34, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x35, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x31, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x30, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x31, 0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x31, 0x32, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x32, 0x33,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x39, 0x33, 0x33, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x34, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x32, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x31, 0x32, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x31, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x32,
0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x32, 0x33, 0x7d, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38,
0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x31, 0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x30,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x31, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x31, 0x31, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x39, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x35, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x35, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x31,
0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x30, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x31, 0x31, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31,
0x31, 0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d,
0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x31, 0x32, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x31, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31,
0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x32, 0x33, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x33, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x31, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x31, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x32, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x31, 0x32, 0x33, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38,
0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66,
0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x31, 0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35, 0x37, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x31, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x31, 0x35, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x37, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x34, 0x32, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33,
0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x31, 0x35, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35, 0x39,
0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61,
0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x31, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x37, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x37, 0x31, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x39, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33,
0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x34, 0x33, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x31, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x36,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x37, 0x30, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x31, 0x37, 0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00,
0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36,
0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x31, 0x35,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x31, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35,
0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x39, 0x33, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x34, 0x33, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x33, 0x35, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x31, 0x35, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x31, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31,
0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35, 0x39, 0x7d, 0x3b,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d,
0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x31, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31,
0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x37, 0x30, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x31, 0x37, 0x31, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x39, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x39, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x33, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x34, 0x33, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31,
0x31, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x36, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x31, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x31, 0x37, 0x31, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f,
0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66,
0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x32, 0x30, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x37, 0x7d,
0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x39, 0x33, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34,
0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x34, 0x30, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x31, 0x32, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x37, 0x7d, 0x3b, 0x20, 0x00,
0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e,
0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e,
0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x32, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x31, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39,
0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x37, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x34, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x34, 0x32, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x32, 0x31,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31,
0x39, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d,
0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x32, 0x30, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x37, 0x7d, 0x2c, 0x20,
0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x39,
0x33, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x34, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x34, 0x34, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x31, 0x32, 0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x30, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x30, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b,
0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31,
0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x32,
0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x31, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x34, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x34, 0x37,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x32, 0x31, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x39, 0x7d,
0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e,
0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72,
0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x32, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b,
0x25, 0x72, 0x39, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x37,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x34, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x34, 0x35, 0x30, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x31, 0x32, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x35, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e,
0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e,
0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x32, 0x36, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x37,
0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x39, 0x33, 0x37, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x34, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x32, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x32, 0x36, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x37, 0x7d, 0x3b, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d, 0x6d, 0x61, 0x2e, 0x6d, 0x38,
0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x72, 0x6f, 0x77,
0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31, 0x36, 0x20, 0x00, 0x7b, 0x25,
0x72, 0x31, 0x32, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x35, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72,
0x39, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x39, 0x33, 0x39, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x35, 0x35, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x32,
0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x35, 0x35, 0x7d, 0x3b, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5f, 0x6d,
0x6d, 0x61, 0x2e, 0x6d, 0x38, 0x6e, 0x38, 0x6b, 0x34, 0x2e, 0x72, 0x6f,
0x77, 0x2e, 0x72, 0x6f, 0x77, 0x2e, 0x66, 0x31, 0x36, 0x2e, 0x66, 0x31,
0x36, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x31, 0x32, 0x36, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x37, 0x7d, 0x2c,
0x20, 0x00, 0x7b, 0x25, 0x72, 0x39, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x39, 0x33, 0x39, 0x7d, 0x2c, 0x20, 0x00, 0x7b, 0x25, 0x72, 0x34, 0x35,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x35, 0x37, 0x7d, 0x2c, 0x20, 0x00,
0x7b, 0x25, 0x72, 0x31, 0x32, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x32, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x37, 0x7d, 0x3b, 0x20, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72,
0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25,
0x72, 0x31, 0x33, 0x32, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x30,
0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x32, 0x35, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x38, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x32, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x31,
0x32, 0x38, 0x31, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x31,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x31, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x30, 0x32, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x32,
0x37, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x38, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x32, 0x2c, 0x20, 0x31, 0x36, 0x33, 0x38, 0x34,
0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x32, 0x38, 0x36, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x31,
0x35, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x31, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31,
0x36, 0x39, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x39, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x32, 0x38, 0x31, 0x2c, 0x20, 0x31, 0x36, 0x33,
0x38, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b,
0x25, 0x72, 0x31, 0x32, 0x39, 0x31, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72,
0x31, 0x31, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x35, 0x39,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x37, 0x31, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x32, 0x39,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x32, 0x2c, 0x20, 0x33, 0x32,
0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x32, 0x39, 0x36, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x30,
0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x30, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30,
0x37, 0x33, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x30, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x32, 0x2c, 0x20, 0x34, 0x38, 0x3b, 0x00,
0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33,
0x30, 0x31, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x30, 0x36, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x30, 0x37, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x30, 0x37, 0x35,
0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x30, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x32, 0x39, 0x36, 0x2c, 0x20, 0x31, 0x36, 0x33, 0x38, 0x34,
0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x33, 0x30, 0x36, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x32,
0x30, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x31, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x31, 0x37, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x31, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x30, 0x31, 0x2c, 0x20, 0x31, 0x36, 0x33,
0x38, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b,
0x25, 0x72, 0x31, 0x33, 0x31, 0x31, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72,
0x31, 0x32, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x30, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x31, 0x39, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x31,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x32, 0x2c, 0x20, 0x36, 0x34,
0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x33, 0x31, 0x36, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x31,
0x30, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x30, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x31, 0x32, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31,
0x32, 0x31, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x78, 0x6f, 0x72, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x32, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x32, 0x2c, 0x20, 0x38, 0x30, 0x3b, 0x00,
0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33,
0x32, 0x31, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x31, 0x31, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x31, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x31, 0x32, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x31, 0x32, 0x33,
0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x32, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x31, 0x36, 0x2c, 0x20, 0x31, 0x36, 0x33, 0x38, 0x34,
0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x33, 0x32, 0x36, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x32,
0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x32, 0x36, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32,
0x36, 0x35, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x33, 0x31, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x32, 0x31, 0x2c, 0x20, 0x31, 0x36, 0x33,
0x38, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x5b,
0x25, 0x72, 0x31, 0x33, 0x33, 0x31, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72,
0x31, 0x32, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x35, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x32, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x32, 0x36, 0x37, 0x7d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x62, 0x61,
0x72, 0x2e, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x09, 0x30, 0x3b, 0x00, 0x00,
0x73, 0x68, 0x6c, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x35, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x36, 0x2c,
0x20, 0x31, 0x30, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x38, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x36, 0x30, 0x37,
0x3b, 0x00, 0x00, 0x61, 0x6e, 0x64, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x20,
0x09, 0x25, 0x72, 0x31, 0x35, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x36, 0x30, 0x36, 0x2c, 0x20, 0x37, 0x3b, 0x00, 0x78, 0x6f, 0x72, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x38, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x36, 0x30, 0x34, 0x3b, 0x00, 0x00, 0x73, 0x68, 0x6c, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x35, 0x38, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x35, 0x38, 0x38, 0x2c, 0x20, 0x34, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x35,
0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x38, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x35, 0x38, 0x39, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x34, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x30, 0x2c, 0x20, 0x34, 0x30, 0x39,
0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68,
0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20,
0x7b, 0x25, 0x72, 0x31, 0x33, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x33, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x33, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x33, 0x39, 0x7d, 0x2c, 0x20, 0x5b, 0x25,
0x72, 0x31, 0x33, 0x34, 0x30, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x33,
0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x30, 0x2c, 0x20,
0x34, 0x32, 0x32, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73,
0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x34, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x34, 0x33,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x34, 0x34, 0x7d, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x31, 0x33, 0x34, 0x35, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x33, 0x35, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x30, 0x2c,
0x20, 0x34, 0x33, 0x35, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e,
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33,
0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x34, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x34, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x34,
0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x34, 0x39, 0x7d, 0x2c, 0x20,
0x5b, 0x25, 0x72, 0x31, 0x33, 0x35, 0x30, 0x5d, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x33, 0x35, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x30,
0x2c, 0x20, 0x34, 0x34, 0x38, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x35, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x35, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x35, 0x34, 0x7d, 0x2c,
0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x35, 0x35, 0x5d, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x33, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39,
0x30, 0x2c, 0x20, 0x34, 0x36, 0x30, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e,
0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x35, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x33, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x35, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x35, 0x39, 0x7d,
0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x36, 0x30, 0x5d, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09,
0x25, 0x72, 0x31, 0x33, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35,
0x39, 0x30, 0x2c, 0x20, 0x34, 0x37, 0x33, 0x36, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x36, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36, 0x34,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x36, 0x35, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x33, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x39, 0x30, 0x2c, 0x20, 0x34, 0x38, 0x36, 0x34, 0x3b, 0x00, 0x00,
0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76,
0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33, 0x36,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x36, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36,
0x39, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x37, 0x30, 0x5d,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32,
0x20, 0x09, 0x25, 0x72, 0x31, 0x33, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x39, 0x30, 0x2c, 0x20, 0x34, 0x39, 0x39, 0x32, 0x3b, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x33,
0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x32, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x37, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x37, 0x34, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x33, 0x37, 0x35,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37,
0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x33, 0x36, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x33, 0x34, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72,
0x31, 0x33, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x33, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x34, 0x32, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32,
0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x33, 0x33, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x34, 0x33, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x34, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x34, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x33,
0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x34, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72,
0x31, 0x33, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x38, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x31, 0x33, 0x39, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x38, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x34, 0x39, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78,
0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x38, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x35, 0x31,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x35, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x35, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34,
0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x39, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x35, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72,
0x31, 0x34, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x30, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x35, 0x36, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x31, 0x34, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x30, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x35, 0x37, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78,
0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x35, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x32, 0x31, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x30, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x35, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x32, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x36, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34,
0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x36, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72,
0x31, 0x34, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x31, 0x38,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36, 0x33, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x31, 0x34, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36, 0x34, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78,
0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x36, 0x36,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x33, 0x39, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x32, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x36, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x34, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x33, 0x36, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34,
0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x33, 0x33, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x33, 0x36, 0x39, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72,
0x31, 0x34, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x33, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x31, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20,
0x25, 0x72, 0x31, 0x34, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x32, 0x3b, 0x00,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78,
0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33, 0x37, 0x33,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31,
0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x33,
0x37, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x34, 0x36, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x39, 0x30, 0x2c, 0x20, 0x32, 0x30, 0x34, 0x38, 0x30,
0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72,
0x31, 0x34, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x36, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x34,
0x36, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x34, 0x36, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x30, 0x2c, 0x20, 0x32, 0x30, 0x36,
0x30, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x31, 0x34, 0x36, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x36, 0x38, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x34, 0x36, 0x39, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64,
0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x34, 0x37,
0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x30, 0x2c, 0x20, 0x32,
0x30, 0x37, 0x33, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73,
0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32,
0x20, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x37, 0x30, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x37, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x37, 0x32,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x37, 0x33, 0x7d, 0x2c, 0x20, 0x5b,
0x25, 0x72, 0x31, 0x34, 0x37, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31,
0x34, 0x37, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x30, 0x2c,
0x20, 0x32, 0x30, 0x38, 0x36, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64,
0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62,
0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x37, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x37, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x37, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x37, 0x38, 0x7d, 0x2c,
0x20, 0x5b, 0x25, 0x72, 0x31, 0x34, 0x37, 0x39, 0x5d, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25,
0x72, 0x31, 0x34, 0x38, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39,
0x30, 0x2c, 0x20, 0x32, 0x30, 0x39, 0x39, 0x32, 0x3b, 0x00, 0x00, 0x00,
0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x76, 0x34,
0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x38, 0x30,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x38, 0x31, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x38, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x38, 0x33,
0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x34, 0x38, 0x34, 0x5d, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20,
0x09, 0x25, 0x72, 0x31, 0x34, 0x38, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x39, 0x30, 0x2c, 0x20, 0x32, 0x31, 0x31, 0x32, 0x30, 0x3b, 0x00,
0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x2e,
0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72, 0x31, 0x34,
0x38, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x38, 0x36, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x38, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x38, 0x38, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x34, 0x38, 0x39,
0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x34, 0x39, 0x34, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x39, 0x30, 0x2c, 0x20, 0x32, 0x31, 0x32, 0x34, 0x38,
0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b, 0x25, 0x72,
0x31, 0x34, 0x39, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x31,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x39, 0x33, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72, 0x31, 0x34,
0x39, 0x34, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x34, 0x39, 0x39, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x30, 0x2c, 0x20, 0x32, 0x31, 0x33,
0x37, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x2e, 0x76, 0x34, 0x2e, 0x62, 0x33, 0x32, 0x20, 0x7b,
0x25, 0x72, 0x31, 0x34, 0x39, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34,
0x39, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x37, 0x2c, 0x20,
0x25, 0x72, 0x31, 0x34, 0x39, 0x38, 0x7d, 0x2c, 0x20, 0x5b, 0x25, 0x72,
0x31, 0x34, 0x39, 0x39, 0x5d, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31,
0x35, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25,
0x72, 0x31, 0x35, 0x30, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x36, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32,
0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x36, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36, 0x37, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36,
0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x36, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x36,
0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x37, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x31,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x37, 0x31, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31,
0x35, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x30, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x37, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25,
0x72, 0x31, 0x35, 0x32, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x30,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x37, 0x33, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32,
0x20, 0x25, 0x72, 0x31, 0x35, 0x32, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x31, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x37, 0x35, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36,
0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x32, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x31, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x37,
0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x33, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x31, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x37, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x33,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x32, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x37, 0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31,
0x35, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x32, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x38, 0x30, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25,
0x72, 0x31, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x32,
0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x38, 0x31, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32,
0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x33, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x38, 0x32, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36,
0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x35, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x33, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x38,
0x33, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x38, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x33, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x38, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35,
0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x33, 0x39, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x38, 0x36, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31,
0x35, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34, 0x32, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x38, 0x37, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25,
0x72, 0x31, 0x35, 0x35, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x34,
0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x38, 0x38, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32,
0x20, 0x25, 0x72, 0x31, 0x35, 0x36, 0x30, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x30, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36,
0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x36, 0x33, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39,
0x31, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66,
0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x36, 0x36, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x34, 0x39, 0x32, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64,
0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x36,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x35, 0x37, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x34, 0x39, 0x33, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25, 0x72, 0x31,
0x35, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x36, 0x30, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32, 0x20, 0x25,
0x72, 0x31, 0x35, 0x37, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x36,
0x33, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x36, 0x3b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36, 0x78, 0x32,
0x20, 0x25, 0x72, 0x31, 0x35, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x31,
0x35, 0x36, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39, 0x37, 0x3b,
0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x66, 0x31, 0x36,
0x78, 0x32, 0x20, 0x25, 0x72, 0x31, 0x35, 0x38, 0x31, 0x2c, 0x20, 0x25,
0x72, 0x31, 0x35, 0x36, 0x39, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x39,
0x38, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x75, 0x6c, 0x2e,
0x6c, 0x6f, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72, 0x31, 0x35,
0x39, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x34, 0x32, 0x2c, 0x20, 0x38, 0x30,
0x3b, 0x00, 0x63, 0x76, 0x74, 0x2e, 0x73, 0x36, 0x34, 0x2e, 0x73, 0x33,
0x32, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x39, 0x31, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36,
0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x34, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x30, 0x3b, 0x00,
0x63, 0x76, 0x74, 0x2e, 0x75, 0x33, 0x32, 0x2e, 0x75, 0x36, 0x34, 0x20,
0x09, 0x25, 0x72, 0x31, 0x35, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x34, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67, 0x65,
0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x32, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x34,
0x3b, 0x00, 0x40, 0x25, 0x70, 0x31, 0x32, 0x34, 0x20, 0x62, 0x72, 0x61,
0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x34, 0x35,
0x3b, 0x00, 0x00, 0x00, 0x40, 0x25, 0x70, 0x31, 0x32, 0x20, 0x62, 0x72,
0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x34,
0x33, 0x3b, 0x00, 0x00, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61,
0x6d, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x35, 0x36,
0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66,
0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36,
0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65,
0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61,
0x6d, 0x5f, 0x30, 0x2b, 0x31, 0x36, 0x5d, 0x3b, 0x00, 0x63, 0x76, 0x74,
0x61, 0x2e, 0x74, 0x6f, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e,
0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x35, 0x35, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x35, 0x36, 0x3b, 0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64,
0x35, 0x34, 0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32,
0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61, 0x75, 0x73, 0x61, 0x6c,
0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f,
0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e, 0x6c, 0x5f, 0x70, 0x61,
0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x34, 0x30, 0x5d, 0x3b, 0x00, 0x6d,
0x75, 0x6c, 0x2e, 0x6c, 0x6f, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x34, 0x33, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x34, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x34, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e,
0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34, 0x34, 0x2c, 0x20,
0x25, 0x72, 0x64, 0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x33,
0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x34, 0x35, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x35, 0x2c,
0x20, 0x25, 0x72, 0x64, 0x34, 0x34, 0x3b, 0x00, 0x00, 0x00, 0x73, 0x74,
0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75,
0x33, 0x32, 0x20, 0x09, 0x5b, 0x25, 0x72, 0x64, 0x34, 0x35, 0x5d, 0x2c,
0x20, 0x7b, 0x25, 0x72, 0x31, 0x34, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x34, 0x35, 0x31, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x34,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x34, 0x35, 0x37, 0x7d, 0x3b, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x42, 0x42, 0x31, 0x5f, 0x34, 0x33, 0x3a, 0x00,
0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x72,
0x31, 0x35, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x32,
0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x73, 0x65, 0x74, 0x70, 0x2e, 0x67,
0x65, 0x2e, 0x73, 0x33, 0x32, 0x20, 0x09, 0x25, 0x70, 0x31, 0x32, 0x36,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x39, 0x34, 0x2c, 0x20, 0x25, 0x72,
0x34, 0x3b, 0x00, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x65, 0x64, 0x20, 0x20,
0x09, 0x25, 0x70, 0x31, 0x32, 0x38, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x32,
0x36, 0x2c, 0x20, 0x25, 0x70, 0x31, 0x32, 0x3b, 0x00, 0x40, 0x25, 0x70,
0x31, 0x32, 0x38, 0x20, 0x62, 0x72, 0x61, 0x20, 0x09, 0x24, 0x4c, 0x5f,
0x5f, 0x42, 0x42, 0x31, 0x5f, 0x34, 0x35, 0x3b, 0x00, 0x00, 0x00, 0x6c,
0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e, 0x75, 0x36, 0x34, 0x20,
0x09, 0x25, 0x72, 0x64, 0x35, 0x33, 0x2c, 0x20, 0x5b, 0x66, 0x6d, 0x68,
0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f, 0x43, 0x61,
0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30, 0x5f, 0x73,
0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x6e,
0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b, 0x31, 0x36,
0x5d, 0x3b, 0x00, 0x63, 0x76, 0x74, 0x61, 0x2e, 0x74, 0x6f, 0x2e, 0x67,
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x75, 0x36, 0x34, 0x20, 0x09, 0x25,
0x72, 0x64, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x33, 0x3b,
0x00, 0x6c, 0x64, 0x2e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x2e, 0x75, 0x36,
0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x35, 0x31, 0x2c, 0x20, 0x5b, 0x66,
0x6d, 0x68, 0x61, 0x5f, 0x76, 0x32, 0x5f, 0x66, 0x70, 0x31, 0x36, 0x5f,
0x43, 0x61, 0x75, 0x73, 0x61, 0x6c, 0x5f, 0x36, 0x34, 0x5f, 0x34, 0x30,
0x5f, 0x73, 0x6d, 0x37, 0x30, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c,
0x5f, 0x6e, 0x6c, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x5f, 0x30, 0x2b,
0x34, 0x30, 0x5d, 0x3b, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34,
0x20, 0x09, 0x25, 0x72, 0x64, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x34, 0x2c, 0x20, 0x31, 0x36, 0x3b, 0x00, 0x6d, 0x75, 0x6c, 0x2e, 0x6c,
0x6f, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34, 0x37,
0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x36, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x35, 0x31, 0x3b, 0x00, 0x00, 0x61, 0x64, 0x64, 0x2e, 0x73, 0x36, 0x34,
0x20, 0x09, 0x25, 0x72, 0x64, 0x34, 0x38, 0x2c, 0x20, 0x25, 0x72, 0x64,
0x31, 0x37, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x34, 0x37, 0x3b, 0x00, 0x61,
0x64, 0x64, 0x2e, 0x73, 0x36, 0x34, 0x20, 0x09, 0x25, 0x72, 0x64, 0x34,
0x39, 0x2c, 0x20, 0x25, 0x72, 0x64, 0x35, 0x32, 0x2c, 0x20, 0x25, 0x72,
0x64, 0x34, 0x38, 0x3b, 0x00, 0x00, 0x73, 0x74, 0x2e, 0x67, 0x6c, 0x6f,
0x62, 0x61, 0x6c, 0x2e, 0x76, 0x34, 0x2e, 0x75, 0x33, 0x32, 0x20, 0x09,
0x5b, 0x25, 0x72, 0x64, 0x34, 0x39, 0x5d, 0x2c, 0x20, 0x7b, 0x25, 0x72,
0x31, 0x35, 0x37, 0x32, 0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x37, 0x35,
0x2c, 0x20, 0x25, 0x72, 0x31, 0x35, 0x37, 0x38, 0x2c, 0x20, 0x25, 0x72,
0x31, 0x35, 0x38, 0x31, 0x7d, 0x3b, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x42, 0x42, 0x31, 0x5f, 0x34, 0x35, 0x3a, 0x00, 0x00, 0x72, 0x65, 0x74,
0x3b, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x73, 0x65,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x09, 0x2e, 0x64, 0x65, 0x62, 0x75, 0x67,
0x5f, 0x73, 0x74, 0x72, 0x00, 0x7b, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x30, 0x3a,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x3a,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x3a, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x33, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x34, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x35, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x36, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x37, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x38, 0x3a,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x39, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x30, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x31, 0x31, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x32, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x33, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x34, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e,
0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x35, 0x3a,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x36, 0x3a, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x31, 0x37, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x31, 0x38, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x39, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x30, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x31, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x32, 0x3a, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x32, 0x33, 0x3a, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32,
0x34, 0x3a, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x35, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x36, 0x3a, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x32, 0x37, 0x3a, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x32, 0x38, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x32, 0x39, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x33, 0x30, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x33, 0x31, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x33,
0x32, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x33,
0x33, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x33, 0x34,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x33, 0x35, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x33, 0x36, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x33, 0x37, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x33, 0x38, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x33, 0x39, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x34, 0x30, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x34, 0x31, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x34, 0x32, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x34, 0x33, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x34, 0x34, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x34, 0x35, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x34, 0x36, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x34,
0x37, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e,
0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x34, 0x38, 0x3a,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x34, 0x39, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x35, 0x30, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x35, 0x31, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x35, 0x32, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x35, 0x33, 0x3a, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x35, 0x34,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x35,
0x35, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x35, 0x36, 0x3a, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x35, 0x37, 0x3a, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e,
0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x35, 0x38, 0x3a,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x35, 0x39,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x36, 0x30, 0x3a, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x36, 0x31, 0x3a, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x36, 0x32, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x36, 0x33, 0x3a, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x36, 0x34, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x36, 0x35, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x36, 0x36, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x36, 0x37, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x36, 0x38, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x36, 0x39, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x37, 0x30, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x37, 0x31, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x37, 0x32, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x37, 0x33, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x37, 0x34,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x37, 0x35,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x37,
0x36, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x37, 0x37,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x37, 0x38,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e,
0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x37, 0x39, 0x3a,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x38, 0x30, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x38, 0x31, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x38, 0x32, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x38, 0x33, 0x3a, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x38, 0x34, 0x3a, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x38, 0x35, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x38, 0x36, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x38, 0x37, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x38, 0x38, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x38, 0x39, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x39, 0x30, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x39, 0x31, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x39, 0x32, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x39, 0x33, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x39, 0x34, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x39, 0x35, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x39, 0x36, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x39, 0x37, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x39, 0x38, 0x3a, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x39, 0x39, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x31, 0x30, 0x30, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x31, 0x30, 0x31, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x30, 0x32, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e,
0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x30, 0x33,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31,
0x30, 0x34, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x31, 0x30, 0x35, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x31, 0x30, 0x36, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x30, 0x37, 0x3a,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x30,
0x38, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x31, 0x30, 0x39, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x31, 0x31, 0x30, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x31, 0x31, 0x31, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x31, 0x31, 0x32, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x31, 0x31, 0x33, 0x3a, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x31, 0x31, 0x34, 0x3a, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31,
0x31, 0x35, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x31, 0x31, 0x36, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x31, 0x31, 0x37, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x31, 0x31, 0x38, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x31, 0x39, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x32, 0x30, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x32, 0x31, 0x3a, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x32, 0x32, 0x3a,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e,
0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x32, 0x33,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x32,
0x34, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x31, 0x32, 0x35, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x31, 0x32, 0x36, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x31, 0x32, 0x37, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x31, 0x32, 0x38, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x31, 0x32, 0x39, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x33, 0x30, 0x3a, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x33, 0x31, 0x3a, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e,
0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x33, 0x32,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31,
0x33, 0x33, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24,
0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69,
0x6e, 0x67, 0x31, 0x33, 0x34, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x31, 0x33, 0x35, 0x3a, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x33, 0x36, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x33, 0x37, 0x3a,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x33,
0x38, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c,
0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x31, 0x33, 0x39, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x31, 0x34, 0x30, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x34, 0x31, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f,
0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x34, 0x32, 0x3a, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x34, 0x33, 0x3a, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x34, 0x34, 0x3a, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f, 0x5f, 0x69, 0x6e,
0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x31, 0x34, 0x35,
0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x4c, 0x5f,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x31, 0x34, 0x36, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0x00,
0x04, 0x2f, 0x08, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00,
0x04, 0x12, 0x08, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x04, 0x11, 0x08, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x04, 0x2f, 0x08, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00,
0x04, 0x12, 0x08, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x04, 0x11, 0x08, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x04, 0x36, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x37, 0x04, 0x00,
0x79, 0x00, 0x00, 0x00, 0x04, 0x0a, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00,
0x60, 0x01, 0x70, 0x00, 0x03, 0x19, 0x70, 0x00, 0x04, 0x17, 0x0c, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0xc1, 0x01,
0x03, 0x1b, 0xff, 0x00, 0x04, 0x31, 0x04, 0x00, 0x10, 0x00, 0x00, 0x00,
0x04, 0x28, 0x10, 0x00, 0x40, 0x18, 0x00, 0x00, 0x80, 0x18, 0x00, 0x00,
0xd0, 0x1e, 0x00, 0x00, 0x20, 0x20, 0x00, 0x00, 0x04, 0x1c, 0x10, 0x00,
0xa0, 0x00, 0x00, 0x00, 0x40, 0x2e, 0x00, 0x00, 0x90, 0x2f, 0x00, 0x00,
0xd0, 0x30, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x04, 0x1e, 0x04, 0x00,
0x00, 0x00, 0x00, 0x00, 0x04, 0x36, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00,
0x04, 0x37, 0x04, 0x00, 0x79, 0x00, 0x00, 0x00, 0x04, 0x0a, 0x08, 0x00,
0x04, 0x00, 0x00, 0x00, 0x60, 0x01, 0x70, 0x00, 0x03, 0x19, 0x70, 0x00,
0x04, 0x17, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xf0, 0xc1, 0x01, 0x03, 0x1b, 0xff, 0x00, 0x04, 0x31, 0x04, 0x00,
0x10, 0x00, 0x00, 0x00, 0x04, 0x28, 0x10, 0x00, 0xd0, 0x2d, 0x00, 0x00,
0xf0, 0x2d, 0x00, 0x00, 0xc0, 0x37, 0x00, 0x00, 0xf0, 0x37, 0x00, 0x00,
0x04, 0x1c, 0x18, 0x00, 0x90, 0x00, 0x00, 0x00, 0x10, 0x4b, 0x00, 0x00,
0x00, 0x4c, 0x00, 0x00, 0xd0, 0x4d, 0x00, 0x00, 0x90, 0x4f, 0x00, 0x00,
0xf0, 0x50, 0x00, 0x00, 0x04, 0x1e, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
0x8d, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
0x0b, 0x00, 0x00, 0x00, 0x8a, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x02, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x19, 0x0c, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
0x0a, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x02, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x24, 0x76, 0x01, 0xff, 0x00, 0x0a, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00, 0x89, 0xf3, 0xff, 0xff,
0xff, 0x00, 0x00, 0x00, 0xff, 0x00, 0x0e, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x19, 0x79, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00,
0x00, 0x22, 0x0e, 0x00, 0x24, 0x74, 0x1d, 0xff, 0x04, 0x00, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xc8, 0x0f, 0x00, 0x25, 0x76, 0x04, 0x04,
0x00, 0x6c, 0x00, 0x00, 0x1d, 0x02, 0x8e, 0x07, 0x00, 0xd0, 0x1f, 0x00,
0x81, 0x73, 0x3a, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0xe9, 0x1e, 0x00,
0x00, 0xa8, 0x0e, 0x00, 0x81, 0x73, 0x07, 0x04, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe9, 0x1e, 0x00, 0x00, 0xa8, 0x0e, 0x00, 0x19, 0x79, 0x03, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00,
0x24, 0x78, 0x3a, 0x3a, 0x01, 0x00, 0x00, 0x00, 0x07, 0x0a, 0x8e, 0x07,
0x00, 0xca, 0x4f, 0x00, 0x0c, 0x72, 0x00, 0x3a, 0x03, 0x00, 0x00, 0x00,
0x70, 0x42, 0xf0, 0x03, 0x00, 0xd8, 0x1f, 0x00, 0x4d, 0x89, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00,
0x19, 0x79, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00,
0x00, 0x22, 0x0e, 0x00, 0x24, 0x7a, 0x07, 0x07, 0x00, 0x65, 0x00, 0x00,
0xff, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x0c, 0x78, 0x00, 0x3a,
0x40, 0x00, 0x00, 0x00, 0x70, 0x12, 0xf2, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x76, 0x00, 0xff, 0x00, 0x5e, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x19, 0x79, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x25, 0x00, 0x00, 0x00, 0x62, 0x0e, 0x00, 0x55, 0x73, 0xff, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x45, 0x79, 0x00, 0x00, 0xd0, 0x02, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x2f, 0x00, 0x10, 0x00, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04, 0x19, 0x76, 0x2e, 0x00,
0x00, 0x5f, 0x00, 0x00, 0x1d, 0x02, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x12, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x16, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x04, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x07, 0x78, 0x30, 0x3a, 0x40, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x19, 0x78, 0x32, 0xff,
0x1f, 0x00, 0x00, 0x00, 0x02, 0x14, 0x01, 0x00, 0x00, 0xc8, 0x1f, 0x00,
0x11, 0x72, 0x3b, 0x32, 0x02, 0x00, 0x00, 0x00, 0xff, 0x18, 0x8f, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x1f, 0x07, 0x03, 0x00, 0x00, 0x00,
0x38, 0x02, 0x8e, 0x07, 0x00, 0xe4, 0x2f, 0x14, 0x24, 0x78, 0x38, 0x07,
0x01, 0x00, 0x00, 0x00, 0x38, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x19, 0x3b, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x19, 0x78, 0x3b, 0xff,
0x03, 0x00, 0x00, 0x00, 0x3b, 0x14, 0x01, 0x00, 0x00, 0xc6, 0x0f, 0x00,
0x24, 0x78, 0x34, 0x02, 0x01, 0x00, 0x00, 0x00, 0x19, 0x0a, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x78, 0x39, 0x03, 0x20, 0x00, 0x00, 0x00,
0x3b, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x18, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x3c, 0x34, 0x10, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x04, 0x0c, 0x78, 0x00, 0x34, 0x04, 0x00, 0x00, 0x00,
0x70, 0x42, 0xf0, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x19, 0x78, 0x00, 0xff,
0x1f, 0x00, 0x00, 0x00, 0x39, 0x14, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x19, 0x78, 0x3d, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x3c, 0x14, 0x01, 0x00,
0x00, 0xd0, 0x0f, 0x00, 0x47, 0x09, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00, 0x24, 0x78, 0x1e, 0x03,
0xe0, 0xff, 0xff, 0xff, 0x3a, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x10, 0x78, 0x21, 0x3b, 0x10, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x25, 0x78, 0x1c, 0x1f, 0x50, 0x00, 0x00, 0x00,
0x3c, 0x02, 0x8e, 0x07, 0x00, 0xc6, 0x0f, 0x00, 0x0c, 0x78, 0x00, 0x1e,
0x20, 0x00, 0x00, 0x00, 0x70, 0x12, 0xf2, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x7a, 0x20, 0x00, 0x00, 0x5e, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x25, 0x7a, 0x1c, 0x39, 0x00, 0x5e, 0x00, 0x00,
0x1c, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x07, 0x78, 0x1e, 0x1e,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0xc8, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x21, 0x1e, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf4, 0x03,
0x00, 0xe2, 0x0f, 0x08, 0x24, 0x7a, 0x21, 0x39, 0x00, 0x5f, 0x00, 0x00,
0x20, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x10, 0x7a, 0x1c, 0x1c,
0x00, 0x58, 0x00, 0x00, 0xff, 0xe0, 0xf7, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x3b, 0x1e, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x7a, 0x1d, 0x1d, 0x00, 0x59, 0x00, 0x00,
0x21, 0xe4, 0xff, 0x01, 0x00, 0xcc, 0x0f, 0x00, 0x10, 0xa2, 0x20, 0x1c,
0x2f, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xf7, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x81, 0x93, 0x10, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00,
0x00, 0x22, 0x01, 0x00, 0x24, 0xa8, 0x21, 0x1d, 0x01, 0x00, 0x00, 0x00,
0x2e, 0x06, 0x8e, 0x01, 0x00, 0xd0, 0x0f, 0x00, 0x81, 0xa3, 0x0c, 0x20,
0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00, 0x00, 0x24, 0x01, 0x00,
0x41, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xea, 0x0f, 0x00, 0x55, 0x73, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x10, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x45, 0x79, 0x00, 0x00,
0xb0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x10, 0x7a, 0x2c, 0x1f, 0x00, 0x65, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x19, 0x78, 0x33, 0xff, 0x1f, 0x00, 0x00, 0x00,
0x3b, 0x14, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x31, 0x3b,
0x20, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x47, 0x09, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xea, 0x0f, 0x00, 0x25, 0x78, 0x1c, 0x2c, 0x50, 0x00, 0x00, 0x00,
0x3c, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x1f, 0x00, 0x10, 0x78, 0x1f, 0x3b,
0x30, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x04,
0x0c, 0x72, 0x00, 0x3b, 0x30, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf8, 0x03,
0x00, 0xe2, 0x0f, 0x08, 0x24, 0x7a, 0x1e, 0x33, 0x00, 0x5e, 0x00, 0x00,
0xff, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x1f,
0x30, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x25, 0x7a, 0x1c, 0x3b, 0x00, 0x5e, 0x00, 0x00, 0x1c, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x04, 0x10, 0x78, 0x1f, 0x3b, 0x10, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xc6, 0x0f, 0x00, 0x24, 0x7a, 0x21, 0x3b,
0x00, 0x5f, 0x00, 0x00, 0x1e, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x10, 0x7a, 0x22, 0x1c, 0x00, 0x58, 0x00, 0x00, 0xff, 0xe0, 0xf5, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x1f, 0x30, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf6, 0x03, 0x00, 0xe4, 0x0f, 0x08, 0x10, 0x7a, 0x23, 0x1d,
0x00, 0x59, 0x00, 0x00, 0x21, 0xe4, 0x7f, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x10, 0x72, 0x20, 0x22, 0x2f, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xfb, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x31, 0x30, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf4, 0x03, 0x00, 0xc6, 0x0f, 0x00, 0x24, 0x78, 0x21, 0x23,
0x01, 0x00, 0x00, 0x00, 0x2e, 0x06, 0x8e, 0x02, 0x00, 0xe2, 0x0f, 0x10,
0x10, 0x72, 0x1c, 0x20, 0x2f, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xfb, 0x07,
0x00, 0xe2, 0x0f, 0x08, 0x81, 0xc3, 0x14, 0x22, 0x00, 0x00, 0x00, 0x00,
0x00, 0xed, 0x1e, 0x00, 0x00, 0x28, 0x01, 0x00, 0x24, 0x78, 0x1d, 0x21,
0x01, 0x00, 0x00, 0x00, 0x2e, 0x06, 0x8e, 0x02, 0x00, 0xe2, 0x0f, 0x10,
0x10, 0x92, 0x1e, 0x1c, 0x2f, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xfb, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x81, 0xb3, 0x08, 0x20, 0x00, 0x00, 0x00, 0x00,
0x00, 0xed, 0x1e, 0x00, 0x00, 0x28, 0x01, 0x00, 0x24, 0x98, 0x1f, 0x1d,
0x01, 0x00, 0x00, 0x00, 0x2e, 0x06, 0x8e, 0x02, 0x00, 0xc4, 0x0f, 0x00,
0x81, 0xa3, 0x04, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00,
0x00, 0x2c, 0x01, 0x00, 0x81, 0x93, 0x18, 0x1e, 0x00, 0x00, 0x00, 0x00,
0x00, 0xed, 0x1e, 0x00, 0x00, 0x24, 0x01, 0x00, 0x41, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00,
0x55, 0x73, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x45, 0x79, 0x00, 0x00, 0x10, 0x02, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x1c, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x1f, 0x00,
0x05, 0x78, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x22, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x28, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x47, 0x09, 0x00, 0x00, 0x70, 0x01, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00, 0x10, 0x7a, 0x2d, 0x2c,
0x00, 0x65, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x7a, 0x36, 0x33, 0x00, 0x5e, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x3b, 0x30, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf4, 0x03, 0x00, 0xc6, 0x0f, 0x00, 0x25, 0x78, 0x2c, 0x2d,
0x50, 0x00, 0x00, 0x00, 0x3c, 0x02, 0x8e, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x24, 0x7a, 0x33, 0x3b, 0x00, 0x5f, 0x00, 0x00, 0x36, 0x02, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x04, 0x25, 0x7a, 0x2c, 0x3b, 0x00, 0x5e, 0x00, 0x00,
0x2c, 0x00, 0x8e, 0x07, 0x00, 0xca, 0x0f, 0x00, 0x10, 0x7a, 0x2c, 0x2c,
0x00, 0x58, 0x00, 0x00, 0xff, 0xe0, 0xf3, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x10, 0x7a, 0x2d, 0x33, 0x00, 0x59, 0x00, 0x00, 0x2d, 0xe4, 0xff, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x31, 0x30, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf2, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x31, 0x3b,
0x10, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x81, 0xa3, 0x1c, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00,
0x00, 0x22, 0x01, 0x00, 0x0c, 0x72, 0x00, 0x31, 0x30, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf6, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x10, 0x72, 0x2c, 0x2c,
0x2f, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xf5, 0x07, 0x00, 0xca, 0x1f, 0x00,
0x24, 0x78, 0x2d, 0x2d, 0x01, 0x00, 0x00, 0x00, 0x2e, 0x06, 0x0e, 0x01,
0x00, 0xe2, 0x0f, 0x00, 0x10, 0x78, 0x31, 0x3b, 0x30, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xce, 0x0f, 0x00, 0x81, 0xb3, 0x20, 0x2c,
0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00, 0x00, 0x22, 0x01, 0x00,
0x0c, 0x72, 0x00, 0x31, 0x30, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf6, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x72, 0x2c, 0x2c, 0x2f, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xf5, 0x07, 0x00, 0xca, 0x1f, 0x00, 0x24, 0x78, 0x2d, 0x2d,
0x01, 0x00, 0x00, 0x00, 0x2e, 0x06, 0x0e, 0x01, 0x00, 0xe2, 0x0f, 0x00,
0x10, 0x72, 0x30, 0x2c, 0x2f, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xf5, 0x07,
0x00, 0xca, 0x0f, 0x00, 0x24, 0x78, 0x31, 0x2d, 0x01, 0x00, 0x00, 0x00,
0x2e, 0x06, 0x0e, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x81, 0x93, 0x24, 0x2c,
0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00, 0x00, 0x2c, 0x01, 0x00,
0x81, 0xb3, 0x28, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00,
0x00, 0x24, 0x01, 0x00, 0x41, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00, 0x19, 0x78, 0x2c, 0xff,
0x1f, 0x00, 0x00, 0x00, 0x3b, 0x14, 0x01, 0x00, 0x00, 0xe4, 0x1f, 0x00,
0x12, 0x78, 0x31, 0x02, 0x10, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xc4, 0x0f, 0x00, 0x11, 0x72, 0x2c, 0x2c, 0x3b, 0x00, 0x00, 0x00,
0xff, 0x10, 0x8f, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x2e, 0x02,
0x18, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x12, 0x78, 0x2c, 0x2c, 0xfc, 0xff, 0xff, 0x0f, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x33, 0x02, 0x60, 0x00, 0x00, 0x00,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x03, 0x78, 0x30, 0xff,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x2d, 0x3b, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0a, 0x8e, 0x07,
0x00, 0xca, 0x0f, 0x00, 0x12, 0x72, 0x2c, 0x2d, 0x34, 0x00, 0x00, 0x00,
0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x2d, 0x02,
0x03, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07, 0x00, 0xc6, 0x0f, 0x00,
0x24, 0x78, 0x2c, 0x3b, 0x08, 0x00, 0x00, 0x00, 0x2c, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x11, 0x72, 0x2e, 0x2e, 0x2d, 0x00, 0x00, 0x00,
0xff, 0xf8, 0x8f, 0x07, 0x00, 0xc6, 0x0f, 0x00, 0x24, 0x78, 0x35, 0x2c,
0x10, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x2c, 0x02, 0x07, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xc8, 0x0f, 0x00, 0x11, 0x72, 0x31, 0x31, 0x2c, 0x00, 0x00, 0x00,
0xff, 0xf8, 0x8f, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x2c, 0x02,
0x10, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x35, 0x10, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe6, 0x01, 0x01, 0x12, 0x78, 0x2c, 0x2c, 0x30, 0x00, 0x00, 0x00,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x35,
0x04, 0x00, 0x20, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00,
0x88, 0x73, 0x00, 0x35, 0x0c, 0x00, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x35, 0x14, 0x00, 0x10, 0x00,
0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x11, 0x72, 0x11, 0x33,
0x2e, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x8f, 0x07, 0x00, 0xc6, 0x1f, 0x00,
0x88, 0x73, 0x00, 0x35, 0x08, 0x00, 0x18, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x06, 0x31, 0x80, 0x00, 0x00, 0x00,
0x2c, 0x02, 0x8e, 0x07, 0x00, 0xc6, 0x2f, 0x00, 0x88, 0x73, 0x00, 0x35,
0x18, 0x00, 0x28, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x07, 0x11, 0x80, 0x00, 0x00, 0x00, 0x2c, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x11, 0x78, 0x31, 0x31, 0x00, 0x10, 0x00, 0x00,
0xff, 0x50, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x35,
0x1c, 0x00, 0x30, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x37, 0x06, 0x10, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x36, 0x07, 0x10, 0x00, 0x00, 0x00,
0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04, 0x88, 0x73, 0x00, 0x35,
0x20, 0x00, 0x38, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x10, 0x07, 0x20, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07,
0x00, 0xc6, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x35, 0x24, 0x00, 0x40, 0x00,
0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x35,
0x28, 0x00, 0x48, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00, 0x84, 0x79, 0x18, 0x06,
0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x24, 0x06, 0x20, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07,
0x00, 0xc6, 0x0f, 0x00, 0x84, 0x79, 0x0c, 0x07, 0x00, 0x00, 0x10, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00, 0x12, 0x78, 0x25, 0x06,
0x30, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x12, 0x78, 0x35, 0x07, 0x30, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x84, 0x79, 0x14, 0x06, 0x00, 0x00, 0x08, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x68, 0x0e, 0x00, 0x84, 0x79, 0x20, 0x36,
0x00, 0x00, 0x10, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x84, 0x79, 0x2c, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xa8, 0x0e, 0x00, 0x84, 0x79, 0x08, 0x37, 0x00, 0x00, 0x08, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0e, 0x00, 0x84, 0x79, 0x10, 0x10,
0x00, 0x00, 0x10, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x84, 0x79, 0x28, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xa2, 0x0e, 0x00, 0x36, 0x72, 0x1c, 0x18, 0x0c, 0x00, 0x00, 0x00,
0xff, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x1f, 0x0c, 0x36, 0x72, 0x1e, 0x18,
0x0c, 0x00, 0x00, 0x00, 0xff, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x1c, 0x1a, 0x0e, 0x00, 0x00, 0x00, 0x1c, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x1e, 0x1a, 0x0e, 0x00, 0x00, 0x00,
0x1e, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x18, 0x14,
0x0c, 0x00, 0x00, 0x00, 0xff, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x2f, 0x0c,
0x36, 0x72, 0x1a, 0x14, 0x0c, 0x00, 0x00, 0x00, 0xff, 0x84, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x18, 0x16, 0x0e, 0x00, 0x00, 0x00,
0x18, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x1a, 0x16,
0x0e, 0x00, 0x00, 0x00, 0x1a, 0x84, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00,
0x84, 0x79, 0x14, 0x24, 0x00, 0x00, 0x08, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0x24, 0x0e, 0x02, 0x36, 0x72, 0x1c, 0x2c, 0x20, 0x00, 0x00, 0x00,
0x1c, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x4f, 0x0c, 0x36, 0x72, 0x1e, 0x2c,
0x20, 0x00, 0x00, 0x00, 0x1e, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x2c, 0x2e, 0x22, 0x00, 0x00, 0x00, 0x1c, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x2e, 0x2e, 0x22, 0x00, 0x00, 0x00,
0x1e, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0b, 0x00, 0x36, 0x72, 0x0c, 0x08,
0x20, 0x00, 0x00, 0x00, 0x18, 0x04, 0x00, 0x00, 0x00, 0xe2, 0x8f, 0x0c,
0x84, 0x79, 0x1c, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xe6, 0x0f, 0x02, 0x36, 0x72, 0x0e, 0x08, 0x20, 0x00, 0x00, 0x00,
0x1a, 0x84, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x00, 0x84, 0x79, 0x24, 0x25,
0x00, 0x00, 0x08, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x00,
0x36, 0x72, 0x20, 0x0a, 0x22, 0x00, 0x00, 0x00, 0x0c, 0x04, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0e, 0x84, 0x79, 0x18, 0x35, 0x00, 0x00, 0x10, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x66, 0x0e, 0x00, 0x36, 0x72, 0x22, 0x0a,
0x22, 0x00, 0x00, 0x00, 0x0e, 0x84, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00,
0x84, 0x79, 0x08, 0x07, 0x00, 0x40, 0x10, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xe4, 0x05, 0x02, 0x36, 0x72, 0x2c, 0x28, 0x10, 0x00, 0x00, 0x00,
0x2c, 0x04, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x0c, 0x84, 0x79, 0x0c, 0x06,
0x00, 0x40, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe4, 0x0e, 0x00,
0x36, 0x72, 0x2e, 0x28, 0x10, 0x00, 0x00, 0x00, 0x2e, 0x84, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x28, 0x2a, 0x12, 0x00, 0x00, 0x00,
0x2c, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x2a, 0x2a,
0x12, 0x00, 0x00, 0x00, 0x2e, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0b, 0x00,
0x36, 0x72, 0x20, 0x14, 0x10, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00,
0x00, 0xe2, 0x1f, 0x0c, 0x84, 0x79, 0x2c, 0x06, 0x00, 0x40, 0x08, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe6, 0x00, 0x02, 0x36, 0x72, 0x22, 0x14,
0x10, 0x00, 0x00, 0x00, 0x22, 0x84, 0x00, 0x00, 0x00, 0x64, 0x0b, 0x00,
0x11, 0x72, 0x10, 0x32, 0x02, 0x00, 0x00, 0x00, 0xff, 0x28, 0x8f, 0x07,
0x00, 0xc4, 0x0f, 0x02, 0x36, 0x72, 0x20, 0x16, 0x12, 0x00, 0x00, 0x00,
0x20, 0x04, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x0c, 0x12, 0x78, 0x07, 0x10,
0xe0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe4, 0x4f, 0x00,
0x36, 0x72, 0x22, 0x16, 0x12, 0x00, 0x00, 0x00, 0x22, 0x84, 0x00, 0x00,
0x00, 0xe2, 0x0b, 0x00, 0x19, 0x78, 0x11, 0xff, 0x05, 0x00, 0x00, 0x00,
0x10, 0x14, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x74, 0x12, 0xff,
0xff, 0xff, 0x7f, 0x7f, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x02,
0x24, 0x78, 0x07, 0x02, 0x01, 0x00, 0x00, 0x00, 0x07, 0x0a, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x28, 0x1c, 0x18, 0x00, 0x00, 0x00,
0x28, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x2f, 0x0c, 0x36, 0x72, 0x2a, 0x1c,
0x18, 0x00, 0x00, 0x00, 0x2a, 0x84, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x00,
0x12, 0x78, 0x06, 0x07, 0x10, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xc4, 0x1f, 0x00, 0x12, 0x78, 0x07, 0x07, 0x07, 0x00, 0x00, 0x00,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x28, 0x1e,
0x1a, 0x00, 0x00, 0x00, 0x28, 0x04, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x0e,
0x11, 0x72, 0x06, 0x06, 0x07, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x8f, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x2a, 0x1e, 0x1a, 0x00, 0x00, 0x00,
0x2a, 0x84, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x19, 0x78, 0x07, 0xff,
0x01, 0x00, 0x00, 0x00, 0x02, 0x16, 0x01, 0x00, 0x00, 0xc6, 0x0f, 0x00,
0x36, 0x72, 0x20, 0x24, 0x18, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x07, 0x07, 0x04, 0x00, 0x00, 0x00,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xc6, 0x0f, 0x00, 0x36, 0x72, 0x22, 0x24,
0x18, 0x00, 0x00, 0x00, 0x22, 0x84, 0x00, 0x00, 0x00, 0x64, 0x0f, 0x00,
0x24, 0x78, 0x13, 0x11, 0x10, 0x00, 0x00, 0x00, 0x07, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x07, 0x07, 0x03, 0x00, 0x00, 0x00,
0x02, 0xf8, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x20, 0x26,
0x1a, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x0e,
0x10, 0x78, 0x17, 0x13, 0x01, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe2, 0x0f, 0x04, 0x36, 0x72, 0x22, 0x26, 0x1a, 0x00, 0x00, 0x00,
0x22, 0x84, 0x00, 0x00, 0x00, 0xe2, 0x0b, 0x00, 0x0c, 0x72, 0x00, 0x13,
0x3a, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf0, 0x03, 0x00, 0xe4, 0x0f, 0x04,
0x10, 0x78, 0x19, 0x13, 0x03, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe2, 0x0f, 0x04, 0x36, 0x72, 0x28, 0x0c, 0x08, 0x00, 0x00, 0x00,
0x28, 0x04, 0x00, 0x00, 0x00, 0xe2, 0x8f, 0x00, 0x10, 0x78, 0x1b, 0x13,
0x08, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xc4, 0x0f, 0x02,
0x10, 0x78, 0x1d, 0x13, 0x09, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe2, 0x0f, 0x04, 0x36, 0x72, 0x2a, 0x0c, 0x08, 0x00, 0x00, 0x00,
0x2a, 0x84, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x00, 0x10, 0x78, 0x1f, 0x13,
0x0a, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xc6, 0x0f, 0x00,
0x36, 0x72, 0x28, 0x0e, 0x0a, 0x00, 0x00, 0x00, 0x28, 0x04, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x0e, 0x36, 0x72, 0x2a, 0x0e, 0x0a, 0x00, 0x00, 0x00,
0x2a, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x20, 0x2c,
0x08, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c,
0x36, 0x72, 0x22, 0x2c, 0x08, 0x00, 0x00, 0x00, 0x22, 0x84, 0x00, 0x00,
0x00, 0x64, 0x0b, 0x00, 0x32, 0x7a, 0x28, 0x28, 0x00, 0x68, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x02, 0x24, 0x78, 0x08, 0x03,
0x20, 0x00, 0x00, 0x00, 0x06, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x32, 0x7a, 0x29, 0x29, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x20, 0x2e, 0x0a, 0x00, 0x00, 0x00,
0x20, 0x04, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x00, 0x32, 0x7a, 0x2a, 0x2a,
0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x30, 0x72, 0x0e, 0x28, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x36, 0x72, 0x22, 0x2e, 0x0a, 0x00, 0x00, 0x00,
0x22, 0x84, 0x00, 0x00, 0x00, 0x62, 0x0b, 0x00, 0x30, 0x72, 0x09, 0x29,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04,
0x03, 0x78, 0x0a, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x02, 0x30, 0x72, 0x0b, 0x28, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x4c, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x0c, 0x29,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x0e, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf3, 0x03,
0x00, 0xe2, 0x0f, 0x04, 0x30, 0x72, 0x14, 0x2a, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x0e,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x32, 0x7a, 0x2b, 0x2b, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x0b, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xf9, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x0d, 0x2a,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x09, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf7, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x20, 0x20, 0x00, 0x68, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x0c,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf5, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x0f, 0x2b, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x0b, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xfb, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x21, 0x21,
0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0x98, 0x0e, 0x12, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x15, 0x20, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x78, 0x00, 0x14,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf3, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x20, 0x20, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0xc8, 0x0b, 0x12, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x80, 0x02, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x24, 0x21,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04,
0x0b, 0x72, 0x00, 0x09, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x22, 0x22, 0x00, 0x68, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x0c,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfb, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x25, 0x21, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x0d, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xf9, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x23, 0x23,
0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0xb8, 0x09, 0x12, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x03,
0x00, 0xe2, 0x0f, 0x04, 0x30, 0x72, 0x26, 0x22, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04, 0x08, 0xa8, 0x0c, 0x12,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x02, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x22, 0x22, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x14, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf7, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x2b, 0x2b,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x0f, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf5, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x0d, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xfd, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x98, 0x14, 0x12,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x15, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xfb, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x20, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x0f,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf7, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0xc8, 0x0d, 0x12, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x24, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xf9, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x15,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0xa8, 0x0f, 0x12, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x01,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x20, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf7, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x25,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0xd8, 0x15, 0x12, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x24, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xfb, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x98, 0x20, 0x12,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x26, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf7, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xc8, 0x24, 0x12, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x80, 0x02, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x25,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf9, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x17, 0x3a, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x10, 0x78, 0x17, 0x13, 0x02, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x26,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfb, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0xa8, 0x25, 0x12, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x02,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x08, 0x13, 0x00, 0x00, 0x00,
0x70, 0x16, 0x78, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x17,
0x3a, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf4, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0xb8, 0x26, 0x12, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x02,
0x00, 0xc4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x08, 0x13, 0x00, 0x00, 0x00,
0x70, 0x36, 0xfa, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x0e, 0x0e,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x06, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x19, 0x3a, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf6, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x08, 0x17, 0x00, 0x00, 0x00,
0x70, 0x16, 0x78, 0x01, 0x00, 0xe4, 0x0f, 0x04, 0x08, 0x78, 0x0b, 0x0b,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x06, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x08, 0x19, 0x00, 0x00, 0x00, 0x70, 0x16, 0xfa, 0x01,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x78, 0x09, 0x09, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x00, 0x06, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x1b,
0x3a, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf8, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x78, 0x0c, 0x0c, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x06,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x08, 0x1b, 0x00, 0x00, 0x00,
0x70, 0x16, 0x7a, 0x02, 0x00, 0xc8, 0x0f, 0x00, 0x08, 0x78, 0x14, 0x14,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x06, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x1d, 0x3a, 0x00, 0x00, 0x00, 0x70, 0x62, 0xfa, 0x03,
0x00, 0xc8, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x08, 0x1d, 0x00, 0x00, 0x00,
0x70, 0x16, 0xfc, 0x02, 0x00, 0xc8, 0x0f, 0x00, 0x08, 0x78, 0x0d, 0x0d,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x1f, 0x3a, 0x00, 0x00, 0x00, 0x70, 0x62, 0xfc, 0x03,
0x00, 0xc8, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x08, 0x1f, 0x00, 0x00, 0x00,
0x70, 0x16, 0x70, 0x03, 0x00, 0xc8, 0x0f, 0x00, 0x08, 0x78, 0x0f, 0x0f,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x04, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x0a, 0xff, 0x00, 0x00, 0x00, 0x70, 0x52, 0xf0, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x0a, 0x08, 0x10, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xc8, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x0a,
0x13, 0x00, 0x00, 0x00, 0x70, 0x16, 0x70, 0x00, 0x00, 0xe4, 0x0f, 0x0c,
0x0c, 0x72, 0x00, 0x0a, 0x13, 0x00, 0x00, 0x00, 0x70, 0x36, 0xf2, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x0c, 0x72, 0x00, 0x0a, 0x17, 0x00, 0x00, 0x00,
0x70, 0x16, 0x74, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x15, 0x15,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x04, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x78, 0x36, 0x20, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x04,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x0e, 0x0b, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf3, 0x03, 0x00, 0xc4, 0x0f, 0x00, 0x08, 0x78, 0x24, 0x24,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x05, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x15, 0x36, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x16, 0x0e, 0x0b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x0a,
0x19, 0x00, 0x00, 0x00, 0x70, 0x16, 0xf6, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x22, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf3, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x30, 0xff, 0x00, 0x00, 0x00,
0x70, 0x52, 0xf0, 0x03, 0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x19, 0x15,
0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x30, 0x23, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x16, 0x09, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf5, 0x03, 0x00, 0xe2, 0x0f, 0x0c, 0x30, 0x72, 0x23, 0x23,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0x78, 0x25, 0x25, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x05,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x19, 0x24, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf7, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x17, 0x16,
0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x22, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x16, 0x19, 0x24, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x30,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf7, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x98, 0x22, 0x12, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x01,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x17, 0x0c, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x0a,
0x1b, 0x00, 0x00, 0x00, 0x70, 0x16, 0x78, 0x02, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x16, 0x25, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x17, 0x17, 0x0c, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x30,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x78, 0x26, 0x26, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x06,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x19, 0x16, 0x25, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x17,
0x14, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf9, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0xb8, 0x30, 0x12, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x01,
0x00, 0xc4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x0a, 0x1d, 0x00, 0x00, 0x00,
0x70, 0x16, 0xfa, 0x02, 0x00, 0xe4, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x19,
0x26, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf7, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x0a, 0x1f, 0x00, 0x00, 0x00, 0x70, 0x16, 0x7c, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x16, 0x17, 0x14, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x02, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x2b,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x78, 0x27, 0x22, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x06,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x18, 0x19, 0x26, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x23,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf9, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x16, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf7, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x30, 0x30, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x00, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x13, 0x13,
0x0b, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x18, 0x27, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x16, 0x16, 0x0d, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x13,
0x3a, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x2b, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf7, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x17, 0x18, 0x27, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x23,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x08, 0x13, 0x00, 0x00, 0x00, 0x70, 0x16, 0xfa, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0xa8, 0x2b, 0x12, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x80, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x0a,
0x13, 0x00, 0x00, 0x00, 0x70, 0x16, 0xf2, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x16, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xc8, 0x23, 0x12, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x17,
0x30, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf7, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x78, 0x37, 0x2b, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x06,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x12, 0x16, 0x0f, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x35, 0x23,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x04, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x0a, 0x17, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x01,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x12, 0x37, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x0a,
0x35, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x12, 0x12, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x0a, 0x0a, 0x35, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x11, 0x72, 0x13, 0x32,
0x02, 0x00, 0x00, 0x00, 0xff, 0x20, 0x8f, 0x07, 0x00, 0xe4, 0x0f, 0x08,
0x12, 0x78, 0x08, 0x02, 0xe0, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x19, 0x13, 0xf0, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x89, 0x7f, 0x17, 0x12,
0x00, 0x1f, 0x00, 0x0d, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x22, 0x0e, 0x00,
0x11, 0x72, 0x08, 0x08, 0x07, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x8f, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x07, 0x02, 0x04, 0x00, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x11, 0x72, 0x32, 0x32,
0x02, 0x00, 0x00, 0x00, 0xff, 0x30, 0x8f, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x89, 0x7f, 0x13, 0x0a, 0x00, 0x1f, 0x00, 0x0d, 0x00, 0x00, 0x0e, 0x00,
0x00, 0x62, 0x0e, 0x00, 0x24, 0x78, 0x19, 0x02, 0x01, 0x00, 0x00, 0x00,
0x19, 0x0a, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04, 0x0c, 0x78, 0x00, 0x02,
0x1f, 0x00, 0x00, 0x00, 0x70, 0x42, 0xf8, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x16, 0x08, 0x10, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x1b, 0x07, 0x20, 0x00, 0x00, 0x00,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00, 0x0c, 0x78, 0x00, 0x19,
0x07, 0x00, 0x00, 0x00, 0x70, 0x42, 0xf2, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x12, 0x78, 0x19, 0x16, 0x30, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x11, 0x72, 0x16, 0x10, 0x11, 0x00, 0x00, 0x00,
0xff, 0x08, 0x8f, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x10, 0x1b,
0x07, 0x00, 0x00, 0x00, 0x02, 0xf8, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x12, 0x78, 0x16, 0x16, 0xfe, 0xff, 0xff, 0x3f, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x19, 0x78, 0x1b, 0xff, 0x01, 0x00, 0x00, 0x00,
0x32, 0x16, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x12, 0x78, 0x19, 0x19,
0x10, 0x00, 0x00, 0x00, 0x02, 0x78, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x16, 0x11, 0x01, 0x00, 0x00, 0x00, 0x16, 0x0a, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x1b, 0x06, 0xe0, 0xff, 0xff, 0x7f,
0x1b, 0xf8, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x11, 0x72, 0x10, 0x33,
0x10, 0x00, 0x00, 0x00, 0xff, 0xf0, 0x8f, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x08, 0x08, 0x80, 0x00, 0x00, 0x00, 0x19, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x92, 0x00, 0x12, 0x17, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf5, 0x03, 0x00, 0xe2, 0x1f, 0x00, 0x24, 0x78, 0x16, 0x1b,
0x02, 0x00, 0x00, 0x00, 0x16, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x0b, 0x92, 0x00, 0x0a, 0x13, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf7, 0x03,
0x00, 0xe2, 0x2f, 0x00, 0x24, 0x78, 0x3e, 0x10, 0x10, 0x00, 0x00, 0x00,
0x31, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x32, 0x08,
0x20, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00,
0x08, 0x92, 0x31, 0x12, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x17, 0x02, 0x08, 0x00, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x11, 0x78, 0x16, 0x16,
0x00, 0x10, 0x00, 0x00, 0xff, 0x10, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x84, 0x79, 0x1c, 0x08, 0x00, 0x00, 0x30, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x92, 0x33, 0x0a, 0x13, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x01, 0x00, 0xc6, 0x0f, 0x00, 0x84, 0x79, 0x28, 0x32,
0x00, 0x00, 0x30, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x84, 0x79, 0x20, 0x32, 0x00, 0x00, 0x34, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x84, 0x79, 0x18, 0x08, 0x00, 0x00, 0x34, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x84, 0x79, 0x2c, 0x08,
0x00, 0x40, 0x30, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x84, 0x79, 0x10, 0x08, 0x00, 0x40, 0x34, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x88, 0x93, 0x00, 0x16, 0x31, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x88, 0x93, 0x00, 0x16,
0x33, 0x80, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00, 0x84, 0xc9, 0x04, 0x17,
0x00, 0x00, 0x10, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00,
0x84, 0xc9, 0x02, 0x17, 0x00, 0x00, 0x11, 0x00, 0x00, 0x1a, 0x00, 0x00,
0x00, 0x68, 0x0e, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x04, 0x05, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xc4, 0x1f, 0x00, 0x0b, 0x72, 0x00, 0x02, 0x03, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf7, 0x03, 0x00, 0xe4, 0x2f, 0x00, 0x08, 0x72, 0x3f, 0x04,
0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x08, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x01,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x02, 0x06, 0x04, 0x00, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xc6, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x3f,
0x08, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03, 0x00, 0xc8, 0x0f, 0x00,
0x08, 0x72, 0x0a, 0x3f, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x3f, 0x3e, 0x10, 0x00, 0x00, 0x00,
0xff, 0x3c, 0x8e, 0x07, 0x00, 0xcc, 0x0f, 0x00, 0x88, 0xc3, 0x00, 0x07,
0x0a, 0x00, 0x10, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00, 0x84, 0x79, 0x04, 0x02,
0x00, 0x00, 0x10, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00,
0x84, 0x79, 0x33, 0x02, 0x00, 0x40, 0x10, 0x00, 0x00, 0x18, 0x00, 0x00,
0x00, 0x62, 0x0e, 0x00, 0x21, 0x72, 0x0e, 0x0e, 0x04, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x1f, 0x00, 0x21, 0x72, 0x0b, 0x0b,
0x04, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x09, 0x09, 0x04, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x10, 0x20, 0x78, 0x32, 0x0e, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x0b, 0x0b,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x21, 0x72, 0x0c, 0x0c, 0x04, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x10, 0x20, 0x78, 0x0e, 0x09, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x32, 0x00,
0x32, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x21, 0x72, 0x06, 0x0d, 0x04, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x21, 0x72, 0x31, 0x0f, 0x04, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x14, 0x14,
0x04, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x20, 0x78, 0x0f, 0x0c, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x0d, 0x00, 0x0b, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x20, 0x78, 0x14, 0x14,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x21, 0x72, 0x04, 0x37, 0x04, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x37, 0x06, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x0c, 0x31,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0x73, 0x0e, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0xe2, 0x0e, 0x00, 0x21, 0x72, 0x09, 0x15, 0x33, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x2f, 0x10, 0x21, 0x72, 0x06, 0x25,
0x33, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x0b, 0x27, 0x33, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x1f, 0x00, 0x20, 0x78, 0x27, 0x04, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x0f, 0x00,
0x0f, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00,
0x21, 0x72, 0x25, 0x32, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xc4, 0x4f, 0x00, 0x21, 0x72, 0x31, 0x26, 0x33, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x36, 0x36,
0x33, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x24, 0x24, 0x33, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x14, 0x00, 0x14, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x62, 0x0e, 0x00, 0x21, 0x72, 0x04, 0x0e,
0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x8f, 0x00,
0x21, 0x72, 0x30, 0x30, 0x33, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x35, 0x35, 0x33, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x33, 0x09,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0x73, 0x15, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0xa2, 0x0e, 0x00, 0x21, 0x72, 0x25, 0x0f, 0x04, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x1f, 0x00, 0x20, 0x78, 0x24, 0x24,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x0b, 0x0b, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xc6, 0x0f, 0x00, 0x08, 0x73, 0x26, 0x00, 0x0c, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x21, 0x72, 0x04, 0x14,
0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xce, 0x2f, 0x00,
0x08, 0x73, 0x27, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x62, 0x0e, 0x00, 0x21, 0x72, 0x25, 0x15, 0x04, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x4f, 0x00, 0x20, 0x78, 0x0c, 0x06,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x1f, 0x00,
0x20, 0x78, 0x06, 0x31, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x31, 0x30, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x33, 0x00,
0x33, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x21, 0x72, 0x04, 0x26, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x8f, 0x00, 0x20, 0x78, 0x25, 0x36, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x30, 0x35,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x21, 0x72, 0x04, 0x27, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x2f, 0x00, 0x08, 0x73, 0x25, 0x00, 0x25, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x2c, 0x0e, 0x00, 0x89, 0x7f, 0x09, 0x04,
0x00, 0x1f, 0x00, 0x0d, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x64, 0x0e, 0x00,
0x08, 0x73, 0x24, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0xb0, 0x0e, 0x00, 0x08, 0x73, 0x0c, 0x00, 0x0c, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0xe2, 0x0e, 0x00, 0x21, 0x72, 0x37, 0x33,
0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xce, 0x1f, 0x00,
0x08, 0x73, 0x06, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x22, 0x0e, 0x00, 0x21, 0x72, 0x37, 0x24, 0x37, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x4f, 0x00, 0x21, 0x92, 0x09, 0x04,
0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xca, 0x2f, 0x00,
0x08, 0x73, 0x35, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0xe2, 0x03, 0x00, 0x21, 0x72, 0x37, 0x0c, 0x37, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe2, 0x8f, 0x00, 0x18, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xea, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00,
0x08, 0x73, 0x04, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0xa2, 0x0e, 0x00, 0x21, 0x72, 0x37, 0x06, 0x37, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe2, 0x1f, 0x00, 0x88, 0x93, 0x00, 0x16,
0x09, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x74, 0x31, 0xff, 0x00, 0x00, 0x80, 0x3f, 0xff, 0x00, 0x8e, 0x07,
0x00, 0xca, 0x2f, 0x00, 0x08, 0x73, 0x30, 0x00, 0x30, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00, 0x21, 0x72, 0x36, 0x04,
0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xc8, 0x4f, 0x00,
0x21, 0x72, 0x0b, 0x35, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xc8, 0x0f, 0x00, 0x21, 0x72, 0x36, 0x30, 0x0b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xd0, 0x1f, 0x00, 0x89, 0x7f, 0x09, 0x36,
0x00, 0x1f, 0x00, 0x0d, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x24, 0x0e, 0x00,
0x21, 0x92, 0x37, 0x36, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xd0, 0x1f, 0x00, 0x88, 0x93, 0x00, 0x16, 0x37, 0x80, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xea, 0x0f, 0x00, 0x84, 0xc9, 0x0a, 0x17, 0x00, 0x00, 0x10, 0x00,
0x00, 0x1a, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00, 0x84, 0xc9, 0x08, 0x17,
0x00, 0x00, 0x11, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x62, 0x0e, 0x00,
0x24, 0xc2, 0x05, 0xff, 0xff, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x8e, 0x07,
0x00, 0xc4, 0x1f, 0x00, 0x24, 0xc2, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00,
0x09, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x2f, 0x00, 0x21, 0xc2, 0x05, 0x0a,
0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x21, 0xc2, 0x08, 0x08, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00,
0x21, 0xc2, 0x0a, 0x05, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x24, 0x74, 0x08, 0xff, 0x00, 0x00, 0x80, 0x3f,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xcc, 0x0f, 0x00, 0x88, 0xc3, 0x00, 0x07,
0x0a, 0x00, 0x10, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00, 0x84, 0x79, 0x03, 0x02,
0x00, 0x00, 0x10, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00,
0x84, 0x79, 0x05, 0x02, 0x00, 0x40, 0x10, 0x00, 0x00, 0x18, 0x00, 0x00,
0x00, 0x68, 0x0e, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x03, 0xff, 0x00, 0x00, 0x00, 0x00, 0x50, 0xf3, 0x03,
0x00, 0xd8, 0x1f, 0x00, 0x08, 0x13, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00,
0x00, 0x10, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00, 0x0b, 0x72, 0x00, 0x05,
0xff, 0x00, 0x00, 0x00, 0x00, 0x50, 0xf3, 0x03, 0x00, 0xd8, 0x2f, 0x00,
0x08, 0x13, 0x31, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00,
0x00, 0xa2, 0x02, 0x00, 0x20, 0x72, 0x32, 0x32, 0x08, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x1f, 0x08, 0x20, 0x72, 0x07, 0x0d,
0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x08,
0x20, 0x72, 0x0b, 0x0e, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x08, 0x20, 0x72, 0x16, 0x0f, 0x08, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x08, 0x04, 0x73, 0x0a, 0x00,
0x32, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x20, 0x72, 0x02, 0x14, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x08, 0x20, 0x72, 0x03, 0x15, 0x08, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x20, 0x72, 0x05, 0x26,
0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x2f, 0x08,
0x20, 0x72, 0x0e, 0x27, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x04, 0x73, 0x07, 0x00, 0x07, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0x22, 0x0e, 0x00, 0x20, 0x72, 0x27, 0x0c,
0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x4f, 0x08,
0x20, 0x72, 0x09, 0x33, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x08, 0x20, 0x72, 0x26, 0x25, 0x31, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x08, 0x20, 0x72, 0x08, 0x24,
0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x08,
0x04, 0x73, 0x0b, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x20, 0x72, 0x25, 0x04, 0x31, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x20, 0x72, 0x24, 0x06,
0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x08,
0x20, 0x72, 0x35, 0x35, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x08, 0x20, 0x72, 0x36, 0x30, 0x31, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x04, 0x73, 0x16, 0x00,
0x16, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0x62, 0x0e, 0x00,
0x16, 0x78, 0x0a, 0x0a, 0x10, 0x54, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
0x00, 0xce, 0x1f, 0x00, 0x04, 0x73, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xf0, 0x0f, 0x00, 0x04, 0x73, 0x03, 0x00,
0x03, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0x22, 0x0e, 0x00,
0x16, 0x78, 0x0b, 0x0b, 0x10, 0x54, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
0x00, 0xcc, 0x2f, 0x00, 0x36, 0x72, 0x14, 0x0a, 0x1c, 0x00, 0x00, 0x00,
0xff, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x0c, 0x04, 0x73, 0x05, 0x00,
0x05, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe6, 0x0f, 0x00,
0x36, 0x72, 0x16, 0x0a, 0x1c, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x04, 0x36, 0x72, 0x0c, 0x0a, 0x1e, 0x00, 0x00, 0x00,
0xff, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x04, 0x73, 0x0e, 0x00,
0x0e, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0x62, 0x0e, 0x00,
0x16, 0x78, 0x02, 0x02, 0x10, 0x54, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
0x00, 0xce, 0x1f, 0x00, 0x04, 0x73, 0x09, 0x00, 0x09, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x16, 0x78, 0x03, 0x05,
0x10, 0x54, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0xce, 0x2f, 0x00,
0x04, 0x73, 0x26, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0x22, 0x0e, 0x00, 0x36, 0x72, 0x0e, 0x0a, 0x1e, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x14, 0x02,
0x18, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x0e,
0x04, 0x73, 0x08, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x16, 0x02, 0x18, 0x00, 0x00, 0x00,
0x16, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x04, 0x36, 0x72, 0x0c, 0x02,
0x1a, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x66, 0x0f, 0x0c,
0x04, 0x73, 0x27, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0x62, 0x0e, 0x00, 0x36, 0x72, 0x0e, 0x02, 0x1a, 0x00, 0x00, 0x00,
0x0e, 0x80, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x00, 0x16, 0x78, 0x26, 0x09,
0x10, 0x54, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x1f, 0x00,
0x24, 0x72, 0x04, 0xff, 0xff, 0x00, 0x00, 0x00, 0x16, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x02, 0x24, 0x72, 0x05, 0xff, 0xff, 0x00, 0x00, 0x00,
0x17, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x04, 0x73, 0x24, 0x00,
0x24, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x72, 0x16, 0xff, 0xff, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x17, 0xff, 0xff, 0x00, 0x00, 0x00,
0x0d, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x06, 0xff,
0xff, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x0c, 0x0a, 0x28, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0c, 0x24, 0x72, 0x07, 0xff, 0xff, 0x00, 0x00, 0x00,
0x0f, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x04, 0x73, 0x25, 0x00,
0x25, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0x22, 0x0e, 0x00,
0x16, 0x78, 0x27, 0x08, 0x10, 0x54, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x2f, 0x00, 0x36, 0x72, 0x0e, 0x0a, 0x28, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x04, 0x88, 0x73, 0x00, 0x3e,
0x14, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00,
0x88, 0x73, 0x00, 0x3f, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x05, 0x00, 0x04, 0x73, 0x35, 0x00, 0x35, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xf0, 0x0f, 0x00, 0x04, 0x73, 0x36, 0x00,
0x36, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0e, 0x00,
0x36, 0x72, 0x14, 0x0a, 0x2a, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x2f, 0x0c, 0x36, 0x72, 0x16, 0x0a, 0x2a, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x0c, 0x02,
0x20, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e,
0x36, 0x72, 0x0e, 0x02, 0x20, 0x00, 0x00, 0x00, 0x0e, 0x80, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x04, 0x36, 0x72, 0x14, 0x02, 0x22, 0x00, 0x00, 0x00,
0x14, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x16, 0x02,
0x22, 0x00, 0x00, 0x00, 0x16, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x36, 0x72, 0x04, 0x0a, 0x2c, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x4f, 0x0c, 0x36, 0x72, 0x06, 0x0a, 0x2c, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x04, 0x36, 0x72, 0x08, 0x0a,
0x2e, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c,
0x36, 0x72, 0x0a, 0x0a, 0x2e, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x04, 0x02, 0x10, 0x00, 0x00, 0x00,
0x04, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x06, 0x02,
0x10, 0x00, 0x00, 0x00, 0x06, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x04,
0x36, 0x72, 0x08, 0x02, 0x12, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x0a, 0x02, 0x12, 0x00, 0x00, 0x00,
0x0a, 0x80, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x16, 0x78, 0x02, 0x24,
0x10, 0x54, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x1f, 0x02,
0x16, 0x78, 0x03, 0x35, 0x10, 0x54, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x8f, 0x00, 0x36, 0x72, 0x30, 0x26, 0x1c, 0x00, 0x00, 0x00,
0xff, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x32, 0x26,
0x1c, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x04,
0x36, 0x72, 0x1c, 0x26, 0x1e, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x1e, 0x26, 0x1e, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x30, 0x02,
0x18, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e,
0x36, 0x72, 0x32, 0x02, 0x18, 0x00, 0x00, 0x00, 0x32, 0x80, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x04, 0x36, 0x72, 0x18, 0x02, 0x1a, 0x00, 0x00, 0x00,
0x1c, 0x00, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x0c, 0x36, 0x72, 0x1a, 0x02,
0x1a, 0x00, 0x00, 0x00, 0x1e, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x1c, 0x26, 0x28, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x35, 0xff, 0xff, 0x00, 0x00, 0x00,
0x33, 0x00, 0x8e, 0x07, 0x00, 0xc6, 0x0f, 0x02, 0x36, 0x72, 0x1e, 0x26,
0x28, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x00,
0x24, 0x72, 0x33, 0xff, 0xff, 0x00, 0x00, 0x00, 0x19, 0x00, 0x8e, 0x07,
0x00, 0xc6, 0x0f, 0x00, 0x36, 0x72, 0x28, 0x26, 0x2a, 0x00, 0x00, 0x00,
0xff, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x0c, 0x24, 0x72, 0x36, 0xff,
0xff, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x24, 0x72, 0x37, 0xff, 0xff, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x2a, 0x26, 0x2a, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x1c, 0x02,
0x20, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e,
0x36, 0x72, 0x1e, 0x02, 0x20, 0x00, 0x00, 0x00, 0x1e, 0x80, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x04, 0x36, 0x72, 0x20, 0x02, 0x22, 0x00, 0x00, 0x00,
0x28, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x22, 0x02,
0x22, 0x00, 0x00, 0x00, 0x2a, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x36, 0x72, 0x28, 0x26, 0x2c, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x2a, 0x26, 0x2c, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x64, 0x0b, 0x04, 0x24, 0x72, 0x2c, 0xff,
0xff, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x02,
0x12, 0x78, 0x0c, 0x3e, 0x20, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x24, 0x26, 0x2e, 0x00, 0x00, 0x00,
0xff, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x2d, 0xff,
0xff, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x8e, 0x07, 0x00, 0xc6, 0x0f, 0x00,
0x36, 0x72, 0x26, 0x26, 0x2e, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00,
0x00, 0x64, 0x0b, 0x00, 0x24, 0x72, 0x2e, 0xff, 0xff, 0x00, 0x00, 0x00,
0x14, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x02, 0x36, 0x72, 0x28, 0x02,
0x10, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x0c,
0x24, 0x72, 0x2f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x15, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x14, 0xff, 0xff, 0x00, 0x00, 0x00,
0x0e, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x2a, 0x02,
0x10, 0x00, 0x00, 0x00, 0x2a, 0x80, 0x00, 0x00, 0x00, 0x62, 0x0b, 0x04,
0x24, 0x72, 0x15, 0xff, 0xff, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x10, 0x34, 0x07, 0x00, 0x00, 0x00,
0x3b, 0x78, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x02, 0x24, 0x72, 0x34, 0xff,
0xff, 0x00, 0x00, 0x00, 0x32, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x24, 0x02, 0x12, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00,
0x00, 0x62, 0x0f, 0x00, 0x24, 0x72, 0x32, 0xff, 0xff, 0x00, 0x00, 0x00,
0x18, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00, 0x24, 0x78, 0x3b, 0x3b,
0x40, 0x00, 0x00, 0x00, 0x10, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x26, 0x02, 0x12, 0x00, 0x00, 0x00, 0x26, 0x80, 0x00, 0x00,
0x00, 0x62, 0x0b, 0x00, 0x24, 0x72, 0x10, 0xff, 0xff, 0x00, 0x00, 0x00,
0x04, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x03, 0x3e,
0x30, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x06,
0x24, 0x72, 0x11, 0xff, 0xff, 0x00, 0x00, 0x00, 0x05, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x02, 0x3e, 0x40, 0x00, 0x00, 0x00,
0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x12, 0xff,
0xff, 0x00, 0x00, 0x00, 0x08, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x3e, 0x30, 0x00, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x01, 0x00, 0x24, 0x72, 0x13, 0xff, 0xff, 0x00, 0x00, 0x00,
0x09, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x04, 0xff,
0xff, 0x00, 0x00, 0x00, 0x06, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x3f, 0x34, 0x00, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x05, 0xff, 0xff, 0x00, 0x00, 0x00,
0x07, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00, 0x24, 0x72, 0x08, 0xff,
0xff, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x0c, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x09, 0xff, 0xff, 0x00, 0x00, 0x00,
0x1f, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x06, 0xff,
0xff, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x03, 0x14, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x07, 0xff, 0xff, 0x00, 0x00, 0x00,
0x0b, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x1e, 0xff,
0xff, 0x00, 0x00, 0x00, 0x20, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x3e, 0x3e, 0x50, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07,
0x00, 0xe2, 0x1f, 0x00, 0x24, 0x72, 0x1f, 0xff, 0xff, 0x00, 0x00, 0x00,
0x21, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00, 0x24, 0x72, 0x0a, 0xff,
0xff, 0x00, 0x00, 0x00, 0x22, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x24, 0x72, 0x0b, 0xff, 0xff, 0x00, 0x00, 0x00, 0x23, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x18, 0xff, 0xff, 0x00, 0x00, 0x00,
0x2a, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x19, 0xff,
0xff, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x0c, 0x1c, 0x00, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x2a, 0xff, 0xff, 0x00, 0x00, 0x00,
0x24, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x2b, 0xff,
0xff, 0x00, 0x00, 0x00, 0x25, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x03, 0x08, 0x00, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x01, 0x00, 0x24, 0x72, 0x1a, 0xff, 0xff, 0x00, 0x00, 0x00,
0x26, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00, 0x24, 0x72, 0x1b, 0xff,
0xff, 0x00, 0x00, 0x00, 0x27, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x02, 0x10, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x3b, 0x3b, 0x10, 0x00, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xc6, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x3e,
0x04, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x02, 0x28, 0x00, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x03, 0x38, 0x50, 0x00, 0x00, 0x00,
0xff, 0x02, 0x8e, 0x07, 0x00, 0xc6, 0x1f, 0x00, 0x88, 0x73, 0x00, 0x3e,
0x18, 0x00, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00, 0x84, 0x79, 0x04, 0x3b,
0x00, 0x00, 0x10, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x10, 0x72, 0x02, 0x3c, 0x03, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xf3, 0x07,
0x00, 0xc6, 0x0f, 0x00, 0x84, 0x79, 0x08, 0x3b, 0x00, 0x80, 0x10, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00, 0x11, 0x72, 0x03, 0x03,
0x3d, 0x00, 0x00, 0x00, 0xff, 0x0e, 0x8f, 0x00, 0x00, 0xc6, 0x0f, 0x00,
0x84, 0x79, 0x0c, 0x3b, 0x00, 0x00, 0x11, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0x62, 0x0e, 0x00, 0x0c, 0x72, 0x00, 0x39, 0x3a, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf2, 0x03, 0x00, 0xc6, 0x0f, 0x00, 0x84, 0x79, 0x10, 0x3b,
0x00, 0x80, 0x11, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xa8, 0x0e, 0x00,
0x84, 0x79, 0x14, 0x3b, 0x00, 0x00, 0x12, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xe8, 0x0e, 0x00, 0x84, 0x79, 0x18, 0x3b, 0x00, 0x80, 0x12, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xa8, 0x0e, 0x00, 0x84, 0x79, 0x1c, 0x3b,
0x00, 0x00, 0x13, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0e, 0x00,
0x84, 0x79, 0x20, 0x3b, 0x00, 0x80, 0x13, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xe8, 0x0e, 0x00, 0x84, 0x79, 0x24, 0x3b, 0x00, 0x00, 0x50, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x84, 0x79, 0x28, 0x3b,
0x00, 0x80, 0x50, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe2, 0x0e, 0x00,
0x30, 0x72, 0x08, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc4, 0x1f, 0x00, 0x30, 0x72, 0x09, 0x05, 0x09, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x0a, 0x06,
0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x0b, 0x07, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x08, 0x08, 0x0c, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x2f, 0x00, 0x84, 0x79, 0x04, 0x3b,
0x00, 0x00, 0x51, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00,
0x30, 0x72, 0x09, 0x09, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x0a, 0x0a, 0x0e, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x30, 0x72, 0x0b, 0x0b,
0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x08, 0x08, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x4f, 0x00, 0x30, 0x72, 0x09, 0x09, 0x11, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x0a, 0x0a,
0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x0b, 0x0b, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x0c, 0x08, 0x14, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x8f, 0x00, 0x84, 0x79, 0x10, 0x3b,
0x00, 0x80, 0x52, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xa2, 0x02, 0x00,
0x30, 0x72, 0x15, 0x09, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x30, 0x72, 0x0d, 0x0a, 0x16, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x17, 0x0b,
0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x18, 0x0c, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x84, 0x79, 0x08, 0x3b, 0x00, 0x80, 0x51, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe2, 0x02, 0x00, 0x30, 0x72, 0x15, 0x15,
0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x1a, 0x0d, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x17, 0x17, 0x1b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x84, 0x79, 0x0c, 0x3b,
0x00, 0x00, 0x52, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00,
0x30, 0x72, 0x18, 0x18, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x30, 0x72, 0x15, 0x15, 0x1d, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x1a, 0x1a,
0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x17, 0x17, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x20, 0x18, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x21, 0x15,
0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x22, 0x1a, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x30, 0x72, 0x23, 0x17, 0x23, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x84, 0x79, 0x18, 0x3b,
0x00, 0x80, 0x53, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00,
0x30, 0x72, 0x24, 0x24, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x25, 0x25, 0x29, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x84, 0x79, 0x14, 0x3b,
0x00, 0x00, 0x53, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00,
0x30, 0x72, 0x26, 0x26, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x27, 0x27, 0x2b, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x24, 0x24,
0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x1f, 0x00,
0x4d, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xf0, 0x0f, 0x00, 0x24, 0x8a, 0x04, 0x00, 0x00, 0x62, 0x00, 0x00,
0xff, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x4f, 0x00, 0x30, 0x72, 0x25, 0x25,
0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x25, 0x8a, 0x1c, 0x39, 0x00, 0x62, 0x00, 0x00, 0x02, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x04, 0x10, 0x78, 0x05, 0x39, 0x10, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x26, 0x26,
0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x24, 0x8a, 0x1f, 0x39, 0x00, 0x63, 0x00, 0x00, 0x04, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x10, 0x8a, 0x04, 0x1c, 0x00, 0x5c, 0x00, 0x00,
0xff, 0xe0, 0xf5, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x27, 0x27,
0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x05, 0x3a, 0x00, 0x00, 0x00, 0x70, 0x66, 0x72, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x06, 0x24, 0x08, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x8f, 0x00, 0x10, 0x8a, 0x05, 0x1d,
0x00, 0x5d, 0x00, 0x00, 0x1f, 0xe4, 0x7f, 0x01, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x25, 0x25, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x07, 0x26, 0x0a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x27, 0x27,
0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x30, 0x72, 0x08, 0x06, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x2f, 0x00, 0x86, 0x83, 0x00, 0x04, 0x20, 0x00, 0x00, 0x00,
0x00, 0xed, 0x10, 0x00, 0x00, 0xe2, 0x01, 0x00, 0x30, 0x72, 0x25, 0x25,
0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x09, 0x07, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x27, 0x27, 0x0f, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x0a, 0x08,
0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x4d, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xf0, 0x0f, 0x00, 0x10, 0x78, 0x39, 0x39, 0x10, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xf1, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x25, 0x25,
0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x30, 0x72, 0x0b, 0x09, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00,
0x00, 0x06, 0x0e, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x27, 0x27,
0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x25, 0x7a, 0x02, 0x39, 0x00, 0x62, 0x00, 0x00, 0x02, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x04, 0x30, 0x72, 0x0c, 0x0a, 0x14, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x25, 0x25,
0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x7a, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x0d, 0x0b, 0x16, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x10, 0x7a, 0x02, 0x02,
0x00, 0x5c, 0x00, 0x00, 0xff, 0xe0, 0xf1, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x27, 0x27, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x7a, 0x39, 0x39, 0x00, 0x63, 0x00, 0x00,
0x00, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x18, 0x0c,
0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x30, 0x72, 0x19, 0x25, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x1a, 0x0d, 0x1a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x10, 0x7a, 0x03, 0x03,
0x00, 0x5d, 0x00, 0x00, 0x39, 0xe4, 0x7f, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x1b, 0x27, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xd0, 0x0f, 0x00, 0x86, 0x73, 0x00, 0x02, 0x18, 0x00, 0x00, 0x00,
0x00, 0xed, 0x10, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x4d, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00,
0x47, 0x79, 0x00, 0x00, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0x03,
0x00, 0xc0, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0f, 0x00, 0x24, 0x76, 0x01, 0xff,
0x00, 0x0a, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00,
0x89, 0xf3, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0x00, 0x0e, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x19, 0x79, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x26, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00, 0x24, 0x74, 0x39, 0xff,
0x04, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x25, 0x76, 0x02, 0x02, 0x00, 0x6c, 0x00, 0x00, 0x39, 0x02, 0x8e, 0x07,
0x00, 0xd0, 0x1f, 0x00, 0x81, 0x73, 0x0b, 0x02, 0x00, 0x04, 0x00, 0x00,
0x00, 0xe9, 0x1e, 0x00, 0x00, 0xa8, 0x0e, 0x00, 0x81, 0x73, 0x44, 0x02,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x1e, 0x00, 0x00, 0xa4, 0x0e, 0x00,
0x24, 0x78, 0x0b, 0x0b, 0x01, 0x00, 0x00, 0x00, 0x44, 0x0a, 0x8e, 0x07,
0x00, 0xca, 0x4f, 0x00, 0x0c, 0x78, 0x00, 0x0b, 0x01, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf0, 0x03, 0x00, 0xd8, 0x0f, 0x00, 0x4d, 0x89, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00,
0x19, 0x79, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00,
0x00, 0x22, 0x0e, 0x00, 0x0c, 0x78, 0x00, 0x0b, 0x40, 0x00, 0x00, 0x00,
0x70, 0x12, 0xf0, 0x03, 0x00, 0xe2, 0x0f, 0x04, 0x24, 0x78, 0x42, 0x44,
0x03, 0x00, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x55, 0x73, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x45, 0x79, 0x00, 0x00, 0xd0, 0x04, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x07, 0x78, 0x41, 0x0b,
0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x16, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x0c, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x22, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x2a, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x34, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x00, 0x04, 0x10, 0x00, 0x00, 0x00,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xc4, 0x1f, 0x00, 0x12, 0x78, 0x05, 0x04,
0x07, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x04,
0x12, 0x78, 0x09, 0x04, 0x03, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x04, 0x12, 0x78, 0x06, 0x04, 0x18, 0x00, 0x00, 0x00,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x11, 0x72, 0x03, 0x00,
0x05, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x8f, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x00, 0x04, 0x10, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x04, 0x12, 0x78, 0x40, 0x04, 0x40, 0x00, 0x00, 0x00,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x04, 0x12, 0x78, 0x02, 0x04,
0x20, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00,
0x11, 0x72, 0x07, 0x06, 0x09, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x8f, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x76, 0x06, 0xff, 0x00, 0x5e, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x11, 0x72, 0x03, 0x02,
0x03, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x8f, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x12, 0x78, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x2f, 0x06, 0x10, 0x00, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x11, 0x72, 0x07, 0x40,
0x07, 0x00, 0x00, 0x00, 0xff, 0xf0, 0x8f, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x19, 0x78, 0x43, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x04, 0x14, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x45, 0x03, 0x80, 0x00, 0x00, 0x00,
0x00, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x10, 0x19, 0x76, 0x39, 0x06,
0x00, 0x5f, 0x00, 0x00, 0x39, 0x02, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x46, 0x07, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x11, 0x72, 0x00, 0x43, 0x04, 0x00, 0x00, 0x00,
0xff, 0x18, 0x8f, 0x07, 0x00, 0xc4, 0x0f, 0x00, 0x19, 0x79, 0x07, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x24, 0x0e, 0x00,
0x19, 0x78, 0x0a, 0xff, 0x03, 0x00, 0x00, 0x00, 0x00, 0x14, 0x01, 0x00,
0x00, 0xc8, 0x0f, 0x00, 0x19, 0x78, 0x03, 0xff, 0x1f, 0x00, 0x00, 0x00,
0x0a, 0x14, 0x01, 0x00, 0x00, 0xc8, 0x0f, 0x00, 0x11, 0x72, 0x02, 0x03,
0x0a, 0x00, 0x00, 0x00, 0xff, 0x10, 0x8f, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x12, 0x78, 0x03, 0x00, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x19, 0x02, 0xfc, 0xff, 0xff, 0x0f,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x02, 0x0a,
0x10, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x03, 0x04, 0x01, 0x00, 0x00, 0x00, 0x03, 0x0a, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x78, 0x00, 0x0a, 0x01, 0x00, 0x00, 0x00,
0x19, 0x0a, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x24, 0x78, 0x54, 0x03,
0x10, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04,
0x0c, 0x78, 0x00, 0x03, 0x04, 0x00, 0x00, 0x00, 0x70, 0x42, 0xf0, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x12, 0x72, 0x19, 0x00, 0x03, 0x00, 0x00, 0x00,
0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x7a, 0x2d, 0x42,
0x00, 0x65, 0x00, 0x00, 0x07, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x1f, 0x00,
0x19, 0x78, 0x55, 0xff, 0x1f, 0x00, 0x00, 0x00, 0x54, 0x14, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x19, 0x78, 0x00, 0xff, 0x1f, 0x00, 0x00, 0x00,
0x0a, 0x14, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x08, 0x0a,
0x08, 0x00, 0x00, 0x00, 0x19, 0x02, 0x8e, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x24, 0x78, 0x08, 0x08, 0x10, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x47, 0x09, 0x00, 0x00, 0x60, 0x01, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00, 0x25, 0x78, 0x18, 0x2d,
0x50, 0x00, 0x00, 0x00, 0x54, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x10, 0x78, 0x1a, 0x0a, 0x30, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe4, 0x0f, 0x04, 0x10, 0x78, 0x1c, 0x0a, 0x20, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x7a, 0x1b, 0x00,
0x00, 0x5e, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x1a, 0x41, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03,
0x00, 0xe2, 0x0f, 0x08, 0x25, 0x7a, 0x18, 0x0a, 0x00, 0x5e, 0x00, 0x00,
0x18, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04, 0x0c, 0x72, 0x00, 0x0a,
0x41, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf8, 0x03, 0x00, 0xe4, 0x0f, 0x08,
0x0c, 0x72, 0x00, 0x02, 0x41, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf6, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x7a, 0x1b, 0x0a, 0x00, 0x5f, 0x00, 0x00,
0x1b, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x10, 0x7a, 0x18, 0x18,
0x00, 0x58, 0x00, 0x00, 0xff, 0xe0, 0xf5, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x10, 0x7a, 0x19, 0x19, 0x00, 0x59, 0x00, 0x00, 0x1b, 0xe4, 0x7f, 0x01,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x72, 0x1a, 0x18, 0x2f, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xfb, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x1c,
0x41, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf4, 0x03, 0x00, 0xc6, 0x0f, 0x00,
0x24, 0x78, 0x1b, 0x19, 0x01, 0x00, 0x00, 0x00, 0x39, 0x06, 0x8e, 0x02,
0x00, 0xe2, 0x0f, 0x10, 0x10, 0x72, 0x1c, 0x1a, 0x2f, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xfb, 0x07, 0x00, 0xe2, 0x0f, 0x08, 0x81, 0xc3, 0x14, 0x18,
0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00, 0x00, 0x28, 0x01, 0x00,
0x24, 0x78, 0x1d, 0x1b, 0x01, 0x00, 0x00, 0x00, 0x39, 0x06, 0x8e, 0x02,
0x00, 0xe2, 0x0f, 0x10, 0x10, 0x92, 0x1e, 0x1c, 0x2f, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xfb, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x81, 0xb3, 0x10, 0x1a,
0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00, 0x00, 0x28, 0x01, 0x00,
0x24, 0x98, 0x1f, 0x1d, 0x01, 0x00, 0x00, 0x00, 0x39, 0x06, 0x8e, 0x02,
0x00, 0xc4, 0x0f, 0x00, 0x81, 0xa3, 0x0c, 0x1c, 0x00, 0x00, 0x00, 0x00,
0x00, 0xed, 0x1e, 0x00, 0x00, 0x2c, 0x01, 0x00, 0x81, 0x93, 0x20, 0x1e,
0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00, 0x00, 0x24, 0x01, 0x00,
0x41, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xea, 0x0f, 0x00, 0x55, 0x73, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x10, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x45, 0x79, 0x00, 0x00,
0x90, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x47, 0x09, 0x00, 0x00, 0x70, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xea, 0x0f, 0x00, 0x10, 0x7a, 0x19, 0x2d, 0x00, 0x65, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe2, 0x1f, 0x00, 0x24, 0x7a, 0x1b, 0x00,
0x00, 0x5e, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x10, 0x78, 0x1a, 0x0a, 0x30, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xc4, 0x0f, 0x00, 0x10, 0x78, 0x1c, 0x0a, 0x20, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x25, 0x78, 0x18, 0x19,
0x50, 0x00, 0x00, 0x00, 0x54, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x1a, 0x41, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03,
0x00, 0xe4, 0x0f, 0x08, 0x0c, 0x72, 0x00, 0x0a, 0x41, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf4, 0x03, 0x00, 0xe2, 0x0f, 0x0c, 0x24, 0x7a, 0x1b, 0x0a,
0x00, 0x5f, 0x00, 0x00, 0x1b, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x02, 0x41, 0x00, 0x00, 0x00, 0x70, 0x62, 0xfa, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x25, 0x7a, 0x18, 0x0a, 0x00, 0x5e, 0x00, 0x00,
0x18, 0x00, 0x8e, 0x07, 0x00, 0xca, 0x0f, 0x00, 0x10, 0x7a, 0x18, 0x18,
0x00, 0x58, 0x00, 0x00, 0xff, 0xe0, 0xf9, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x10, 0x72, 0x1a, 0x18, 0x2f, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xf7, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x7a, 0x19, 0x1b, 0x00, 0x59, 0x00, 0x00,
0x19, 0xe4, 0x7f, 0x02, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x1c,
0x41, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf8, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x10, 0x72, 0x1c, 0x1a, 0x2f, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xfd, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x1b, 0x19, 0x01, 0x00, 0x00, 0x00,
0x39, 0x06, 0x8e, 0x01, 0x00, 0xc6, 0x0f, 0x00, 0x10, 0x92, 0x1e, 0x1c,
0x2f, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xf7, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x1d, 0x1b, 0x01, 0x00, 0x00, 0x00, 0x39, 0x06, 0x0e, 0x03,
0x00, 0xe2, 0x0f, 0x10, 0x81, 0xa3, 0x24, 0x18, 0x00, 0x00, 0x00, 0x00,
0x00, 0xed, 0x1e, 0x00, 0x00, 0x26, 0x01, 0x00, 0x24, 0x98, 0x1f, 0x1d,
0x01, 0x00, 0x00, 0x00, 0x39, 0x06, 0x8e, 0x01, 0x00, 0xe2, 0x0f, 0x00,
0x81, 0xd3, 0x28, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00,
0x00, 0x28, 0x01, 0x00, 0x81, 0xc3, 0x30, 0x1c, 0x00, 0x00, 0x00, 0x00,
0x00, 0xed, 0x1e, 0x00, 0x00, 0x28, 0x01, 0x00, 0x81, 0x93, 0x34, 0x1e,
0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00, 0x00, 0x24, 0x01, 0x00,
0x41, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xea, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x08, 0x14, 0x00, 0x00, 0x00,
0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x01, 0x12, 0x78, 0x38, 0x45,
0x10, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04,
0x55, 0x73, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x39, 0x46, 0x10, 0x00, 0x00, 0x00,
0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04, 0x88, 0x73, 0x00, 0x08,
0x10, 0x00, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x47, 0x45, 0x30, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x45, 0x79, 0x00, 0x00, 0xe0, 0x0a, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x48, 0x46,
0x30, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x08, 0x0c, 0x00, 0x10, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x10, 0x78, 0x42, 0x42, 0x02, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xc6, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x08,
0x20, 0x00, 0x18, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x08, 0x24, 0x00, 0x20, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x08, 0x28, 0x00, 0x28, 0x00,
0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x08,
0x30, 0x00, 0x30, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x08, 0x34, 0x00, 0x38, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00,
0x84, 0x79, 0x18, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xe2, 0x1f, 0x00, 0x12, 0x78, 0x30, 0x45, 0x20, 0x00, 0x00, 0x00,
0xff, 0x3c, 0x8e, 0x07, 0x00, 0xc6, 0x0f, 0x00, 0x84, 0x79, 0x1c, 0x46,
0x00, 0x00, 0x20, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00,
0x12, 0x78, 0x31, 0x46, 0x20, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07,
0x00, 0xc6, 0x0f, 0x00, 0x84, 0x79, 0x2c, 0x46, 0x00, 0x00, 0x30, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x68, 0x0e, 0x00, 0x84, 0x79, 0x14, 0x45,
0x00, 0x00, 0x10, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xa8, 0x0e, 0x00,
0x84, 0x79, 0x0c, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x84, 0x79, 0x3c, 0x39, 0x00, 0x00, 0x20, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0e, 0x00, 0x84, 0x79, 0x24, 0x39,
0x00, 0x00, 0x30, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xa8, 0x0e, 0x00,
0x84, 0x79, 0x28, 0x38, 0x00, 0x00, 0x10, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xa8, 0x0e, 0x00, 0x84, 0x79, 0x34, 0x30, 0x00, 0x00, 0x00, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x84, 0x79, 0x38, 0x31,
0x00, 0x00, 0x20, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xa2, 0x0e, 0x00,
0x36, 0x72, 0x10, 0x18, 0x1c, 0x00, 0x00, 0x00, 0xff, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x1f, 0x0c, 0x36, 0x72, 0x12, 0x18, 0x1c, 0x00, 0x00, 0x00,
0xff, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x10, 0x1a,
0x1e, 0x00, 0x00, 0x00, 0x10, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e,
0x36, 0x72, 0x12, 0x1a, 0x1e, 0x00, 0x00, 0x00, 0x12, 0x84, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x20, 0x18, 0x2c, 0x00, 0x00, 0x00,
0xff, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x2f, 0x0c, 0x36, 0x72, 0x22, 0x18,
0x2c, 0x00, 0x00, 0x00, 0xff, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x18, 0x1a, 0x2e, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x1a, 0x1a, 0x2e, 0x00, 0x00, 0x00,
0x22, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x20, 0x14,
0x1c, 0x00, 0x00, 0x00, 0xff, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x4f, 0x0c,
0x36, 0x72, 0x22, 0x14, 0x1c, 0x00, 0x00, 0x00, 0xff, 0x84, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x1c, 0x16, 0x1e, 0x00, 0x00, 0x00,
0x20, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x1e, 0x16,
0x1e, 0x00, 0x00, 0x00, 0x22, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x36, 0x72, 0x20, 0x14, 0x2c, 0x00, 0x00, 0x00, 0xff, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x22, 0x14, 0x2c, 0x00, 0x00, 0x00,
0xff, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x2c, 0x16,
0x2e, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e,
0x36, 0x72, 0x2e, 0x16, 0x2e, 0x00, 0x00, 0x00, 0x22, 0x84, 0x00, 0x00,
0x00, 0xe4, 0x0b, 0x00, 0x84, 0x79, 0x14, 0x31, 0x00, 0x00, 0x30, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x24, 0x0e, 0x02, 0x36, 0x72, 0x10, 0x0c,
0x3c, 0x00, 0x00, 0x00, 0x10, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x8f, 0x0c,
0x36, 0x72, 0x12, 0x0c, 0x3c, 0x00, 0x00, 0x00, 0x12, 0x84, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x10, 0x0e, 0x3e, 0x00, 0x00, 0x00,
0x10, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x12, 0x0e,
0x3e, 0x00, 0x00, 0x00, 0x12, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x36, 0x72, 0x20, 0x0c, 0x24, 0x00, 0x00, 0x00, 0x18, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x22, 0x0c, 0x24, 0x00, 0x00, 0x00,
0x1a, 0x84, 0x00, 0x00, 0x00, 0x64, 0x0b, 0x00, 0x84, 0x79, 0x18, 0x30,
0x00, 0x00, 0x10, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x64, 0x0e, 0x02,
0x36, 0x72, 0x0c, 0x0e, 0x26, 0x00, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x0c, 0x84, 0x79, 0x30, 0x47, 0x00, 0x00, 0x10, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x36, 0x72, 0x0e, 0x0e,
0x26, 0x00, 0x00, 0x00, 0x22, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0b, 0x00,
0x36, 0x72, 0x1c, 0x28, 0x3c, 0x00, 0x00, 0x00, 0x1c, 0x04, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0c, 0x84, 0x79, 0x20, 0x48, 0x00, 0x00, 0x20, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x02, 0x36, 0x72, 0x1e, 0x28,
0x3c, 0x00, 0x00, 0x00, 0x1e, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x3c, 0x2a, 0x3e, 0x00, 0x00, 0x00, 0x1c, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x3e, 0x2a, 0x3e, 0x00, 0x00, 0x00,
0x1e, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0b, 0x00, 0x36, 0x72, 0x2c, 0x28,
0x24, 0x00, 0x00, 0x00, 0x2c, 0x04, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x0c,
0x84, 0x79, 0x1c, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xa6, 0x0e, 0x02, 0x36, 0x72, 0x2e, 0x28, 0x24, 0x00, 0x00, 0x00,
0x2e, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x24, 0x2a,
0x26, 0x00, 0x00, 0x00, 0x2c, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e,
0x36, 0x72, 0x26, 0x2a, 0x26, 0x00, 0x00, 0x00, 0x2e, 0x84, 0x00, 0x00,
0x00, 0xe4, 0x0b, 0x00, 0x84, 0x79, 0x28, 0x48, 0x00, 0x00, 0x30, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe4, 0x0e, 0x02, 0x36, 0x72, 0x10, 0x34,
0x38, 0x00, 0x00, 0x00, 0x10, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c,
0x36, 0x72, 0x12, 0x34, 0x38, 0x00, 0x00, 0x00, 0x12, 0x84, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x2c, 0x36, 0x3a, 0x00, 0x00, 0x00,
0x10, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x2e, 0x36,
0x3a, 0x00, 0x00, 0x00, 0x12, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0b, 0x00,
0x36, 0x72, 0x0c, 0x34, 0x14, 0x00, 0x00, 0x00, 0x0c, 0x04, 0x00, 0x00,
0x00, 0xe2, 0x1f, 0x0c, 0x84, 0x79, 0x10, 0x46, 0x00, 0x40, 0x20, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x02, 0x36, 0x72, 0x0e, 0x34,
0x14, 0x00, 0x00, 0x00, 0x0e, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x34, 0x36, 0x16, 0x00, 0x00, 0x00, 0x0c, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x36, 0x36, 0x16, 0x00, 0x00, 0x00,
0x0e, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0b, 0x00, 0x36, 0x72, 0x3c, 0x18,
0x38, 0x00, 0x00, 0x00, 0x3c, 0x04, 0x00, 0x00, 0x00, 0xe2, 0x2f, 0x0c,
0x84, 0x79, 0x0c, 0x45, 0x00, 0x40, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0x26, 0x0e, 0x02, 0x36, 0x72, 0x3e, 0x18, 0x38, 0x00, 0x00, 0x00,
0x3e, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x38, 0x1a,
0x3a, 0x00, 0x00, 0x00, 0x3c, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e,
0x36, 0x72, 0x3a, 0x1a, 0x3a, 0x00, 0x00, 0x00, 0x3e, 0x84, 0x00, 0x00,
0x00, 0xe8, 0x0b, 0x00, 0x36, 0x72, 0x24, 0x18, 0x14, 0x00, 0x00, 0x00,
0x24, 0x04, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x0c, 0x84, 0x79, 0x3c, 0x46,
0x00, 0x40, 0x30, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x66, 0x0e, 0x02,
0x36, 0x72, 0x26, 0x18, 0x14, 0x00, 0x00, 0x00, 0x26, 0x84, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x24, 0x1a, 0x16, 0x00, 0x00, 0x00,
0x24, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x26, 0x1a,
0x16, 0x00, 0x00, 0x00, 0x26, 0x84, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00,
0x84, 0x79, 0x14, 0x45, 0x00, 0x40, 0x10, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0x24, 0x0e, 0x02, 0x36, 0x72, 0x18, 0x1c, 0x20, 0x00, 0x00, 0x00,
0x2c, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x4f, 0x0c, 0x36, 0x72, 0x1a, 0x1c,
0x20, 0x00, 0x00, 0x00, 0x2e, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x18, 0x1e, 0x22, 0x00, 0x00, 0x00, 0x18, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x1a, 0x1e, 0x22, 0x00, 0x00, 0x00,
0x1a, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x34, 0x1c,
0x28, 0x00, 0x00, 0x00, 0x34, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x8f, 0x0c,
0x36, 0x72, 0x36, 0x1c, 0x28, 0x00, 0x00, 0x00, 0x36, 0x84, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x34, 0x1e, 0x2a, 0x00, 0x00, 0x00,
0x34, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x36, 0x1e,
0x2a, 0x00, 0x00, 0x00, 0x36, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x36, 0x72, 0x38, 0x30, 0x20, 0x00, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x3a, 0x30, 0x20, 0x00, 0x00, 0x00,
0x3a, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x38, 0x32,
0x22, 0x00, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e,
0x36, 0x72, 0x3a, 0x32, 0x22, 0x00, 0x00, 0x00, 0x3a, 0x84, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x24, 0x30, 0x28, 0x00, 0x00, 0x00,
0x24, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x26, 0x30,
0x28, 0x00, 0x00, 0x00, 0x26, 0x84, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x24, 0x32, 0x2a, 0x00, 0x00, 0x00, 0x24, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x26, 0x32, 0x2a, 0x00, 0x00, 0x00,
0x26, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x18, 0x0c,
0x10, 0x00, 0x00, 0x00, 0x18, 0x04, 0x00, 0x00, 0x00, 0xe8, 0x1f, 0x0c,
0x36, 0x72, 0x1a, 0x0c, 0x10, 0x00, 0x00, 0x00, 0x1a, 0x84, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x18, 0x0e, 0x12, 0x00, 0x00, 0x00,
0x18, 0x04, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x0e, 0x36, 0x72, 0x1a, 0x0e,
0x12, 0x00, 0x00, 0x00, 0x1a, 0x84, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x36, 0x72, 0x34, 0x0c, 0x3c, 0x00, 0x00, 0x00, 0x34, 0x04, 0x00, 0x00,
0x00, 0xe8, 0x2f, 0x0c, 0x36, 0x72, 0x36, 0x0c, 0x3c, 0x00, 0x00, 0x00,
0x36, 0x84, 0x00, 0x00, 0x00, 0x64, 0x0b, 0x00, 0x32, 0x7a, 0x20, 0x18,
0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x02,
0x24, 0x7a, 0x0d, 0x42, 0x00, 0x65, 0x00, 0x00, 0x07, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x28, 0x19, 0x00, 0x68, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x34, 0x0e,
0x3e, 0x00, 0x00, 0x00, 0x34, 0x04, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x0c,
0x32, 0x7a, 0x29, 0x1a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x2a, 0x1b,
0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x36, 0x0e, 0x3e, 0x00, 0x00, 0x00, 0x36, 0x84, 0x00, 0x00,
0x00, 0xe2, 0x0b, 0x00, 0x05, 0x78, 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x11, 0x72, 0x0e, 0x43,
0x04, 0x00, 0x00, 0x00, 0xff, 0x28, 0x8f, 0x07, 0x00, 0xc4, 0x0f, 0x02,
0x36, 0x72, 0x38, 0x14, 0x10, 0x00, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x0c, 0x19, 0x78, 0x1d, 0xff, 0x05, 0x00, 0x00, 0x00,
0x0e, 0x14, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x36, 0x72, 0x3a, 0x14,
0x10, 0x00, 0x00, 0x00, 0x3a, 0x84, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x00,
0x12, 0x78, 0x0f, 0x0e, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x04, 0x32, 0x7a, 0x34, 0x34, 0x00, 0x68, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x11, 0x72, 0x0c, 0x0e,
0x1d, 0x00, 0x00, 0x00, 0xff, 0x08, 0x8f, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x38, 0x16, 0x12, 0x00, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00,
0x00, 0x62, 0x0f, 0x0e, 0x32, 0x7a, 0x35, 0x35, 0x00, 0x68, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x1e, 0x04,
0x01, 0x00, 0x00, 0x00, 0x0f, 0x0a, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x10, 0x0c, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x3a, 0x16, 0x12, 0x00, 0x00, 0x00,
0x3a, 0x84, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x25, 0x78, 0x0c, 0x0d,
0x50, 0x00, 0x00, 0x00, 0x54, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x32, 0x7a, 0x36, 0x36, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x21, 0x1e, 0x07, 0x00, 0x00, 0x00,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x24, 0x14,
0x3c, 0x00, 0x00, 0x00, 0x24, 0x04, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x0c,
0x24, 0x78, 0x10, 0x1d, 0x01, 0x00, 0x00, 0x00, 0x10, 0x0a, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x37, 0x37, 0x00, 0x68, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x7a, 0x0f, 0x00,
0x00, 0x5e, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x26, 0x14, 0x3c, 0x00, 0x00, 0x00, 0x26, 0x84, 0x00, 0x00,
0x00, 0x62, 0x0b, 0x00, 0x25, 0x7a, 0x0c, 0x0a, 0x00, 0x5e, 0x00, 0x00,
0x0c, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04, 0x32, 0x7a, 0x38, 0x38,
0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x02,
0x05, 0x78, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x24, 0x16, 0x3e, 0x00, 0x00, 0x00,
0x24, 0x04, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x0c, 0x24, 0x7a, 0x0f, 0x0a,
0x00, 0x5f, 0x00, 0x00, 0x0f, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x10, 0x7a, 0x1c, 0x0c, 0x00, 0x58, 0x00, 0x00, 0xff, 0xe0, 0xf3, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x10, 0x10, 0x10, 0x00, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x26, 0x16,
0x3e, 0x00, 0x00, 0x00, 0x26, 0x84, 0x00, 0x00, 0x00, 0x62, 0x0b, 0x00,
0x32, 0x7a, 0x39, 0x39, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x10, 0x7a, 0x1d, 0x0f, 0x00, 0x59, 0x00, 0x00,
0x0d, 0xe4, 0xff, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x3a, 0x3a,
0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x21, 0x10, 0xf0, 0xff, 0xff, 0xff, 0x21, 0xe2, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x2c, 0x3b, 0x00, 0x68, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x16, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x02,
0x05, 0x78, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x2e, 0x24,
0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x05, 0x78, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x32, 0x7a, 0x2f, 0x25, 0x00, 0x68, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x05, 0x78, 0x0e, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x32, 0x7a, 0x26, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x32, 0x7a, 0x1f, 0x27, 0x00, 0x68, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xea, 0x0f, 0x00, 0x47, 0x09, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00, 0x24, 0x76, 0x27, 0xff,
0x00, 0x5f, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x11, 0x72, 0x22, 0x06, 0x1c, 0x00, 0x00, 0x00, 0xff, 0x20, 0x86, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x30, 0x0a, 0x20, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x11, 0x72, 0x23, 0x06,
0x1d, 0x00, 0x00, 0x00, 0x27, 0x24, 0x8f, 0x01, 0x00, 0xc4, 0x0f, 0x00,
0x11, 0x72, 0x24, 0x06, 0x22, 0x00, 0x00, 0x00, 0xff, 0x20, 0x86, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x32, 0x0a, 0x30, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x30,
0x41, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf8, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x11, 0x72, 0x25, 0x06, 0x23, 0x00, 0x00, 0x00, 0x27, 0x24, 0x8f, 0x01,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x0a, 0x41, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf4, 0x03, 0x00, 0xe4, 0x0f, 0x08, 0x0c, 0x72, 0x00, 0x02,
0x41, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x32, 0x41, 0x00, 0x00, 0x00, 0x70, 0x62, 0xfa, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x11, 0x72, 0x30, 0x06, 0x24, 0x00, 0x00, 0x00,
0xff, 0x20, 0x86, 0x07, 0x00, 0xe4, 0x0f, 0x04, 0x81, 0xc3, 0x10, 0x24,
0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00, 0x00, 0x24, 0x01, 0x00,
0x11, 0x72, 0x31, 0x06, 0x25, 0x00, 0x00, 0x00, 0x27, 0x24, 0x8f, 0x01,
0x00, 0xe4, 0x0f, 0x00, 0x81, 0xa3, 0x18, 0x1c, 0x00, 0x00, 0x00, 0x00,
0x00, 0xed, 0x1e, 0x00, 0x00, 0x28, 0x01, 0x00, 0x81, 0x93, 0x14, 0x22,
0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00, 0x00, 0x28, 0x01, 0x00,
0x81, 0xd3, 0x0c, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x1e, 0x00,
0x00, 0x24, 0x01, 0x00, 0x41, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00, 0x30, 0x72, 0x5d, 0x20,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04,
0x12, 0x78, 0x22, 0x04, 0x08, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07,
0x00, 0xe2, 0x1f, 0x00, 0x30, 0x72, 0x20, 0x20, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x1e, 0x1e,
0x10, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x5b, 0x28, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x19, 0x78, 0x3e, 0xff, 0x01, 0x00, 0x00, 0x00,
0x22, 0x16, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x23, 0x28,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x74, 0x28, 0xff, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x5d, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xfb, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x59, 0x29,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04,
0x0b, 0x78, 0x00, 0x20, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf5, 0x03,
0x00, 0xe2, 0x0f, 0x04, 0x30, 0x72, 0x53, 0x29, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x5b,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf7, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x4f, 0x2a, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x5d, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xfd, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x51, 0x2a,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x23, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf3, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x4d, 0x34, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x20,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf9, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x4b, 0x34, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0xd8, 0x5d, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x03, 0x00, 0xe2, 0x0f, 0x04, 0x30, 0x72, 0x47, 0x35,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04,
0x08, 0xa8, 0x20, 0x28, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x02,
0x00, 0xe2, 0x0f, 0x04, 0x30, 0x72, 0x49, 0x35, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x5b,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x45, 0x36, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x78, 0x00, 0x59, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xf9, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x41, 0x36,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x53, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf5, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x3d, 0x37, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x23,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfb, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x3f, 0x37, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0xb8, 0x5b, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x03, 0x00, 0xe2, 0x0f, 0x04, 0x30, 0x72, 0x46, 0x38,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04,
0x0b, 0x78, 0x00, 0x4f, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf7, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x3b, 0x38, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x08, 0x98, 0x23, 0x28,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x02, 0x00, 0xe2, 0x0f, 0x04,
0x30, 0x72, 0x33, 0x39, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x59, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xfd, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x27, 0x39,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x51, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf3, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x2b, 0x3a, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x53,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfb, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x29, 0x3a, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0xc8, 0x59, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x03, 0x00, 0xe2, 0x0f, 0x04, 0x30, 0x72, 0x2d, 0x2c,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04,
0x08, 0xa8, 0x53, 0x28, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x02,
0x00, 0xe2, 0x0f, 0x04, 0x30, 0x72, 0x25, 0x2c, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x4f,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x31, 0x2e, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x78, 0x00, 0x4d, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xf5, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x1d, 0x2e,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x4b, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xfb, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x39, 0x2f, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x51,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf9, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x37, 0x2f, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0xb8, 0x4f, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x03, 0x00, 0xe2, 0x0f, 0x04, 0x30, 0x72, 0x34, 0x26,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x04,
0x0b, 0x78, 0x00, 0x47, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf7, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x35, 0x26, 0xff, 0x00, 0x00, 0xa0,
0x00, 0x48, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x08, 0x98, 0x51, 0x28,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x02, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x06, 0x1f, 0xff, 0x00, 0x00, 0xa0, 0x00, 0x48, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x4d, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf9, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x1c, 0x1f,
0xff, 0x00, 0x00, 0xa0, 0x00, 0x4c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x49, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf3, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x57, 0x22, 0x02, 0x00, 0x00, 0x00,
0x05, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x4b,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x7a, 0x56, 0x44, 0x00, 0x65, 0x00, 0x00, 0x07, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0xa8, 0x4d, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x02, 0x00, 0xc4, 0x0f, 0x00, 0x08, 0xd8, 0x4b, 0x28,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x03, 0x00, 0xe4, 0x0f, 0x04,
0x0b, 0x72, 0x00, 0x47, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x45, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xfb, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x41,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xfd, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x49, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf9, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xb8, 0x47, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x01, 0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x3d,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x98, 0x49, 0x28, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x02,
0x00, 0xe4, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x45, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf9, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x3f,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x41, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf7, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xd8, 0x45, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x02, 0x00, 0xc4, 0x0f, 0x00, 0x08, 0xe8, 0x41, 0x28,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x3d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf9, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x46, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xfd, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x3b,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf7, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x3f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfb, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xa8, 0x3d, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x02, 0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x33,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x98, 0x3f, 0x28, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x02,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x46, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xfb, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x27,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x3b, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf9, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xe8, 0x46, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x80, 0x02, 0x00, 0xc4, 0x0f, 0x00, 0x08, 0xb8, 0x3b, 0x28,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x02, 0x00, 0xe4, 0x0f, 0x04,
0x0b, 0x78, 0x00, 0x2b, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf7, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x33, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xfd, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x29,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf9, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x27, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfb, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xa8, 0x33, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x03, 0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x2d,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xfd, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x98, 0x27, 0x28, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x02,
0x00, 0xe4, 0x0f, 0x04, 0x0b, 0x72, 0x00, 0x2b, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x25,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xfb, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x29, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xb8, 0x2b, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x01, 0x00, 0xc4, 0x0f, 0x00, 0x08, 0xc8, 0x29, 0x28,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x0b, 0x72, 0x00, 0x2d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf7, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x31, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x1d,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x25, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf9, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xe8, 0x2d, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x80, 0x01, 0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x39,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf7, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0xd8, 0x25, 0x28, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x02,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x31, 0xff, 0x00, 0x00, 0x00,
0x00, 0x40, 0xfb, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x1d,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x11, 0x72, 0x1f, 0x43, 0x04, 0x00, 0x00, 0x00, 0xff, 0x30, 0x8f, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x37, 0x00, 0x00, 0x80, 0x7f,
0x00, 0xd2, 0xf9, 0x03, 0x00, 0xc4, 0x0f, 0x00, 0x08, 0x98, 0x31, 0x28,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x02, 0x00, 0xe4, 0x0f, 0x04,
0x08, 0xa8, 0x1d, 0x28, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x19, 0x78, 0x1f, 0xff, 0x06, 0x00, 0x00, 0x00,
0x1f, 0x14, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x39,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfb, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x78, 0x00, 0x34, 0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf5, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x3e, 0x1f, 0x10, 0x00, 0x00, 0x00,
0x3e, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x35,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf3, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x37, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xb8, 0x39, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x80, 0x02, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x06,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf7, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x19, 0x78, 0x1e, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x16, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0xc8, 0x37, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x34,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfb, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x35, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfd, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x24, 0x3e, 0x01, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x12, 0x72, 0x21, 0x21,
0x1e, 0x00, 0x00, 0x00, 0xff, 0xfc, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0xa8, 0x34, 0x28, 0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x02,
0x00, 0xe4, 0x0f, 0x04, 0x08, 0x98, 0x35, 0x28, 0xff, 0xff, 0x7f, 0xff,
0x00, 0x00, 0x00, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06,
0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x24, 0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x2f, 0x21, 0x20, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x04, 0x08, 0xb8, 0x06, 0x28,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x21, 0x3e, 0x00, 0x00, 0x00, 0x70, 0x36, 0xf4, 0x00,
0x00, 0xe4, 0x0f, 0x08, 0x10, 0x78, 0x42, 0x3e, 0x03, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2f,
0x3e, 0x00, 0x00, 0x00, 0x70, 0x36, 0xf2, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x10, 0x78, 0x48, 0x3e, 0x02, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe4, 0x0f, 0x04, 0x03, 0x78, 0x4a, 0xff, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x3e,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf0, 0x03, 0x00, 0xe4, 0x0f, 0x08,
0x0c, 0x72, 0x00, 0x42, 0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xfc, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x3b, 0x3b, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x80, 0x04, 0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x3c, 0x3e,
0x08, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xc4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x48, 0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03,
0x00, 0xe4, 0x0f, 0x08, 0x08, 0x78, 0x20, 0x20, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x00, 0x05, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x21,
0x3e, 0x00, 0x00, 0x00, 0x70, 0x16, 0x76, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x03, 0x78, 0x1e, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x21, 0x42, 0x00, 0x00, 0x00,
0x70, 0x16, 0x74, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x3c,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf0, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x2f, 0x48, 0x00, 0x00, 0x00, 0x70, 0x16, 0xf2, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x3a, 0x3e, 0x09, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x5b, 0x5b,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x05, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x21, 0x3c, 0x00, 0x00, 0x00, 0x70, 0x16, 0x74, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x27, 0x27, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x80, 0x04, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x3a,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf0, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x42, 0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03,
0x00, 0xe4, 0x0f, 0x08, 0x10, 0x78, 0x38, 0x3e, 0x0a, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x59, 0x59,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x05, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x21, 0x3a, 0x00, 0x00, 0x00, 0x70, 0x16, 0x74, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2f, 0x42, 0x00, 0x00, 0x00,
0x70, 0x16, 0xf2, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x38,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf0, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x10, 0x78, 0x36, 0x3e, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x53, 0x53, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x00, 0x05, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x33, 0x33,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x04, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x21, 0x38, 0x00, 0x00, 0x00, 0x70, 0x16, 0x74, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x3c, 0x0b, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf2, 0x03, 0x00, 0xe4, 0x0f, 0x08, 0x0c, 0x72, 0x00, 0x36,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf0, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x10, 0x78, 0x32, 0x3e, 0x20, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x51, 0x51, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x00, 0x05, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2f,
0x3c, 0x00, 0x00, 0x00, 0x70, 0x16, 0xf2, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x21, 0x36, 0x00, 0x00, 0x00, 0x70, 0x16, 0x74, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x32, 0x0b, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf0, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x78, 0x00, 0x1c,
0x00, 0x00, 0x80, 0x7f, 0x00, 0xd2, 0xf9, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x10, 0x78, 0x30, 0x3e, 0x21, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x2b, 0x2b, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x80, 0x04, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x4f, 0x4f,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x05, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x3a, 0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03,
0x00, 0xe4, 0x0f, 0x08, 0x0c, 0x72, 0x00, 0x21, 0x32, 0x00, 0x00, 0x00,
0x70, 0x16, 0x74, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x30,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf0, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x10, 0x78, 0x24, 0x3e, 0x22, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2f, 0x3a, 0x00, 0x00, 0x00,
0x70, 0x16, 0xf2, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x4d, 0x4d,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x05, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x1c, 0xff, 0x00, 0x00, 0x00, 0x00, 0x40, 0xfb, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x21, 0x30, 0x00, 0x00, 0x00,
0x70, 0x16, 0x74, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x24,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf0, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x08, 0x78, 0x29, 0x29, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x04,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x38, 0x0b, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf2, 0x03, 0x00, 0xe4, 0x0f, 0x08, 0x08, 0xc8, 0x1c, 0x28,
0xff, 0xff, 0x7f, 0xff, 0x00, 0x00, 0x80, 0x02, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x78, 0x4b, 0x4b, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x05,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x48, 0x0b, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf8, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x21,
0x24, 0x00, 0x00, 0x00, 0x70, 0x16, 0x74, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x10, 0x78, 0x26, 0x3e, 0x23, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2f, 0x38, 0x00, 0x00, 0x00,
0x70, 0x16, 0xf2, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x5d, 0x5d,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x05, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x21, 0x48, 0x00, 0x00, 0x00, 0x70, 0x16, 0x76, 0x02,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x49, 0x49, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x00, 0x05, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x26,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf4, 0x03, 0x00, 0xc4, 0x0f, 0x00,
0x08, 0x78, 0x2d, 0x2d, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x04,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x36, 0x0b, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf2, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x23, 0x23,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x05, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x21, 0x26, 0x00, 0x00, 0x00, 0x70, 0x16, 0x76, 0x01,
0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x28, 0x3e, 0x28, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2f,
0x36, 0x00, 0x00, 0x00, 0x70, 0x16, 0xf2, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x08, 0x78, 0x47, 0x47, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x05,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x28, 0x0b, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf6, 0x03, 0x00, 0xe4, 0x0f, 0x08, 0x08, 0x78, 0x25, 0x25,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x04, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x32, 0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x21, 0x28, 0x00, 0x00, 0x00,
0x70, 0x16, 0xf8, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x2a, 0x3e,
0x29, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xc4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x2f, 0x32, 0x00, 0x00, 0x00, 0x70, 0x16, 0xf2, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x82, 0x7b, 0x32, 0xff, 0xc0, 0x6e, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00, 0x08, 0x78, 0x45, 0x45,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x06, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x2a, 0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf8, 0x03,
0x00, 0xe4, 0x0f, 0x08, 0x08, 0x78, 0x31, 0x31, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x80, 0x04, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x21,
0x2a, 0x00, 0x00, 0x00, 0x70, 0x16, 0x7a, 0x02, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x30, 0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x10, 0x78, 0x2c, 0x3e, 0x2a, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x41, 0x41,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x06, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x2f, 0x30, 0x00, 0x00, 0x00, 0x70, 0x16, 0xf2, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2c, 0x0b, 0x00, 0x00, 0x00,
0x70, 0x62, 0xfa, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x30, 0x04,
0x30, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x78, 0x1d, 0x1d, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x04,
0x00, 0xc4, 0x0f, 0x00, 0x11, 0x72, 0x09, 0x22, 0x09, 0x00, 0x00, 0x00,
0xff, 0xf8, 0x8f, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x21,
0x2c, 0x00, 0x00, 0x00, 0x70, 0x16, 0xfc, 0x02, 0x00, 0xe4, 0x0f, 0x00,
0x11, 0x72, 0x22, 0x1f, 0x1f, 0x00, 0x00, 0x00, 0xff, 0x08, 0x8f, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x24, 0x0b, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf2, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x10, 0x78, 0x2e, 0x3e,
0x2b, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x11, 0x72, 0x30, 0x30, 0x05, 0x00, 0x00, 0x00, 0xff, 0xf8, 0x8f, 0x07,
0x00, 0xc4, 0x0f, 0x00, 0x11, 0x72, 0x05, 0x43, 0x04, 0x00, 0x00, 0x00,
0xff, 0x38, 0x8f, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x11, 0x72, 0x09, 0x40,
0x09, 0x00, 0x00, 0x00, 0xff, 0xf0, 0x8f, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x78, 0x3f, 0x3f, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x22, 0x22, 0xfe, 0xff, 0xff, 0x3f,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x07, 0x09,
0x10, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x2f, 0x24, 0x00, 0x00, 0x00, 0x70, 0x16, 0xf2, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2e, 0x0b, 0x00, 0x00, 0x00,
0x70, 0x62, 0xfc, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x1f, 0x1f,
0x01, 0x00, 0x00, 0x00, 0x22, 0x0a, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x19, 0x78, 0x05, 0xff, 0x01, 0x00, 0x00, 0x00, 0x05, 0x16, 0x01, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x78, 0x39, 0x39, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x80, 0x04, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x21,
0x2e, 0x00, 0x00, 0x00, 0x70, 0x16, 0x70, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x32, 0xff, 0x00, 0x00, 0x00, 0x70, 0x52, 0xf2, 0x03,
0x00, 0xe4, 0x1f, 0x00, 0x12, 0x78, 0x22, 0x05, 0xc0, 0xff, 0xff, 0x1f,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x05, 0x04,
0x04, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0x78, 0x3d, 0x3d, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x04,
0x00, 0xe4, 0x0f, 0x00, 0x12, 0x78, 0x07, 0x07, 0x30, 0x00, 0x00, 0x00,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x22, 0x21,
0x01, 0x00, 0x00, 0x00, 0x22, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04,
0x0c, 0x72, 0x00, 0x1e, 0xff, 0x00, 0x00, 0x00, 0x70, 0x52, 0xf0, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x21, 0x21, 0x04, 0x00, 0x00, 0x00,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x11, 0x72, 0x57, 0x40,
0x57, 0x00, 0x00, 0x00, 0xff, 0xe8, 0x8f, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x22, 0x22, 0x02, 0x00, 0x00, 0x00, 0x1f, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x50, 0x07, 0x10, 0x00, 0x00, 0x00,
0x04, 0x78, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x1f, 0x04,
0x08, 0x00, 0x00, 0x00, 0x05, 0x0a, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x2f, 0x3e, 0x00, 0x00, 0x00, 0x70, 0x16, 0x70, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x24, 0x78, 0x57, 0x30, 0x20, 0x00, 0x00, 0x00,
0x57, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2f,
0x26, 0x00, 0x00, 0x00, 0x70, 0x16, 0x74, 0x01, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x50, 0x09, 0x80, 0x00, 0x00, 0x00, 0x50, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2f, 0x28, 0x00, 0x00, 0x00,
0x70, 0x16, 0xf6, 0x01, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x57, 0x57,
0x10, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x0c, 0x72, 0x00, 0x2f, 0x2a, 0x00, 0x00, 0x00, 0x70, 0x16, 0x78, 0x02,
0x00, 0xc4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x2f, 0x2c, 0x00, 0x00, 0x00,
0x70, 0x16, 0xfa, 0x02, 0x00, 0xe4, 0x0f, 0x04, 0x0c, 0x72, 0x00, 0x2f,
0x2e, 0x00, 0x00, 0x00, 0x70, 0x16, 0x7c, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x78, 0x2f, 0x22, 0x04, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x78, 0x1e, 0x46, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x00, 0x04, 0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x4a,
0xff, 0x00, 0x00, 0x00, 0x70, 0x52, 0xf0, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x78, 0x37, 0x37, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x05,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x35, 0x35, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x80, 0x05, 0x00, 0xc4, 0x0f, 0x00, 0x08, 0x78, 0x34, 0x34,
0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x00, 0x06, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x78, 0x09, 0x06, 0x00, 0x00, 0x80, 0xff, 0x00, 0x00, 0x80, 0x06,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x78, 0x1c, 0x1c, 0x00, 0x00, 0x80, 0xff,
0x00, 0x00, 0x00, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x47, 0x99, 0x00, 0x00,
0x20, 0x06, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00,
0x24, 0x76, 0x06, 0xff, 0x00, 0x68, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07,
0x00, 0xc8, 0x0f, 0x00, 0x23, 0x78, 0x05, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x23, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x07, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x2b, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x20, 0x78, 0x05, 0x05, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x07, 0x07, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x23, 0x78, 0x49, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x49, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x23, 0x78, 0x36, 0x06, 0x00, 0x04, 0x7c, 0xc6, 0x29, 0x00, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x28, 0x00, 0x05, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x20, 0x78, 0x49, 0x49,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x23, 0x78, 0x5d, 0x06, 0x00, 0x04, 0x7c, 0xc6, 0x5d, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x20, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x20, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x5b, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x5b, 0x00, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x04,
0x08, 0x73, 0x29, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0xe2, 0x04, 0x00, 0x23, 0x78, 0x59, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x59, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x53, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x53, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x23, 0x78, 0x51, 0x06, 0x00, 0x04, 0x7c, 0xc6, 0x51, 0x00, 0x01, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x23, 0x78, 0x4f, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x4f, 0x00, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x04, 0x08, 0x73, 0x32, 0x00,
0x49, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00,
0x23, 0x78, 0x4d, 0x06, 0x00, 0x04, 0x7c, 0xc6, 0x4d, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x4b, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x4b, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x47, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x47, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x23, 0x78, 0x45, 0x06, 0x00, 0x04, 0x7c, 0xc6, 0x45, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x41, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x41, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x23, 0x78, 0x3f, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x3f, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x23, 0x78, 0x3d, 0x06, 0x00, 0x04, 0x7c, 0xc6, 0x3d, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x1e, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x1e, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x3b, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x3b, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x23, 0x78, 0x05, 0x06, 0x00, 0x04, 0x7c, 0xc6, 0x27, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x1f, 0x04, 0x23, 0x78, 0x33, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x33, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x23, 0x78, 0x38, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x2d, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x23, 0x78, 0x3a, 0x06, 0x00, 0x04, 0x7c, 0xc6, 0x25, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x31, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x31, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x1d, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x1d, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x23, 0x78, 0x39, 0x06, 0x00, 0x04, 0x7c, 0xc6, 0x39, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x37, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x37, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x23, 0x78, 0x35, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x35, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x23, 0x78, 0x34, 0x06, 0x00, 0x04, 0x7c, 0xc6, 0x34, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x23, 0x78, 0x07, 0x06, 0x00, 0x04, 0x7c, 0xc6,
0x09, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x4f, 0x04, 0x23, 0x78, 0x06, 0x06,
0x00, 0x04, 0x7c, 0xc6, 0x1c, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x20, 0x20, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x47, 0x47, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x45, 0x45,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x41, 0x41, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x23, 0x00, 0x20, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x20, 0x78, 0x33, 0x33,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x5d, 0x5d, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x5b, 0x5b, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x59, 0x59,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0x73, 0x48, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x22, 0x00, 0x00, 0x20, 0x78, 0x53, 0x53, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x51, 0x51,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x4f, 0x4f, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x4d, 0x4d, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x46, 0x00,
0x45, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00,
0x20, 0x78, 0x4b, 0x4b, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x3f, 0x3f, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x3d, 0x3d,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x20, 0x78, 0x1e, 0x1e, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x44, 0x00, 0x41, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x20, 0x78, 0x3b, 0x3b,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x05, 0x05, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x36, 0x36, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x38, 0x38,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0x73, 0x2b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x22, 0x00, 0x00, 0x20, 0x78, 0x3a, 0x3a, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x49, 0x31,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x1d, 0x1d, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x39, 0x39, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x26, 0x00,
0x5d, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00,
0x20, 0x78, 0x37, 0x37, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x35, 0x35, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x34, 0x34,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x20, 0x78, 0x07, 0x07, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x2a, 0x00, 0x5b, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x20, 0x78, 0x06, 0x06,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xce, 0x0f, 0x00,
0x08, 0x73, 0x2c, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x2e, 0x00, 0x53, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x24, 0x00,
0x51, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00,
0x08, 0x73, 0x22, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x20, 0x00, 0x4d, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x4a, 0x00,
0x4b, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00,
0x08, 0x73, 0x42, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x30, 0x00, 0x3d, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x1e, 0x00,
0x1e, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x0e, 0x00,
0x08, 0x73, 0x27, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x05, 0x00, 0x05, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x0e, 0x00, 0x08, 0x73, 0x2d, 0x00,
0x36, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00,
0x08, 0x73, 0x25, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x33, 0x00, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x49, 0x00,
0x49, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x0e, 0x00,
0x08, 0x73, 0x31, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x47, 0x00, 0x39, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x45, 0x00,
0x37, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00,
0x08, 0x73, 0x41, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x09, 0x00, 0x34, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x07, 0x00,
0x07, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x0e, 0x00,
0x08, 0x73, 0x06, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x22, 0x0e, 0x00, 0x47, 0x79, 0x00, 0x00, 0x80, 0x0b, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x5d,
0x20, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x1e, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x06, 0x5d, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x22, 0x1e,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x06, 0x23, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x22, 0x27, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x06, 0x06,
0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x22, 0x22, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06, 0x5b, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x22,
0x33, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x06, 0x06, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x22, 0x22, 0x33, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06,
0x59, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x22, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x06, 0x06, 0x59, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x22, 0x22,
0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x06, 0x53, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x22, 0x29, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x06, 0x06,
0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x22, 0x22, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06, 0x51, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x22,
0x2d, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x06, 0x06, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x22, 0x22, 0x2d, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06,
0x4f, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x22, 0x25, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x06, 0x06, 0x4f, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x22, 0x22,
0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x06, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x22, 0x31, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x06, 0x06,
0x4d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x22, 0x22, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06, 0x4b, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x22,
0x1d, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x06, 0x06, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x22, 0x22, 0x1d, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06,
0x49, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x22, 0x39, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x06, 0x06, 0x49, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x22, 0x22,
0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x06, 0x47, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x22, 0x37, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x06, 0x06,
0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x22, 0x22, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06, 0x45, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x22,
0x35, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x06, 0x06, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x05, 0x22, 0x35, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06,
0x41, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x05, 0x34, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xc4, 0x0f, 0x00, 0x08, 0x72, 0x06, 0x06, 0x41, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x22, 0x05,
0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x06, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03,
0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x22, 0x09, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x06, 0x06,
0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x08, 0x72, 0x05, 0x22, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0xc4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06, 0x3d, 0x00, 0x00, 0x00,
0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x0f, 0x0c, 0x0b, 0x72, 0x00, 0x05,
0x1c, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03, 0x00, 0xe4, 0x0f, 0x0c,
0x08, 0x72, 0x06, 0x06, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x08, 0x72, 0x05, 0x05, 0x1c, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x11, 0x72, 0x22, 0x43,
0x04, 0x00, 0x00, 0x00, 0xff, 0x20, 0x8f, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x89, 0x7f, 0x07, 0x06, 0x00, 0x1f, 0x00, 0x0d, 0x00, 0x00, 0x0e, 0x00,
0x00, 0x22, 0x0e, 0x00, 0x12, 0x78, 0x5f, 0x22, 0xf0, 0xff, 0xff, 0xff,
0xff, 0xc0, 0x8e, 0x07, 0x00, 0xc6, 0x0f, 0x00, 0x89, 0x7f, 0x24, 0x05,
0x00, 0x1f, 0x00, 0x0d, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x64, 0x0e, 0x00,
0x24, 0x78, 0x5f, 0x04, 0x01, 0x00, 0x00, 0x00, 0x5f, 0x0a, 0x8e, 0x07,
0x00, 0xca, 0x0f, 0x00, 0x0c, 0x78, 0x00, 0x5f, 0x07, 0x00, 0x00, 0x00,
0x70, 0x42, 0xf6, 0x03, 0x00, 0xe4, 0x0f, 0x00, 0x0b, 0x72, 0x00, 0x06,
0x07, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03, 0x00, 0xe4, 0x1f, 0x0c,
0x0b, 0x72, 0x00, 0x05, 0x24, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf5, 0x03,
0x00, 0xe4, 0x2f, 0x0c, 0x08, 0x72, 0x22, 0x06, 0x07, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x78, 0x07, 0x04,
0x08, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04,
0x08, 0x72, 0x24, 0x05, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
0x00, 0xe4, 0x0f, 0x00, 0x0c, 0x78, 0x00, 0x04, 0x3f, 0x00, 0x00, 0x00,
0x70, 0x42, 0xf4, 0x03, 0x00, 0xc8, 0x0f, 0x00, 0x88, 0xb3, 0x00, 0x2f,
0x22, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x88, 0xb3, 0x00, 0x2f, 0x24, 0x00, 0x01, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00,
0x84, 0x79, 0x06, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00,
0x00, 0x28, 0x0e, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00,
0x0b, 0xa2, 0x00, 0x06, 0x07, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf3, 0x03,
0x00, 0xc8, 0x1f, 0x00, 0x08, 0xa2, 0x28, 0x06, 0x07, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x00, 0x00, 0xd0, 0x0f, 0x00, 0x88, 0xa3, 0x00, 0x1f,
0x28, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00, 0x84, 0x79, 0x06, 0x21,
0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00,
0x84, 0x79, 0x36, 0x21, 0x00, 0x80, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00,
0x00, 0x62, 0x0e, 0x00, 0x21, 0x72, 0x5d, 0x5d, 0x06, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x1f, 0x00, 0x21, 0x72, 0x20, 0x20,
0x06, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x05, 0x23, 0x06, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x5b, 0x5b, 0x06, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x59, 0x59,
0x06, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x53, 0x53, 0x06, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x51, 0x51, 0x06, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x21, 0x72, 0x4f, 0x4f,
0x06, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x4d, 0x4d, 0x06, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x4b, 0x4b, 0x06, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x49, 0x49,
0x06, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x47, 0x47, 0x06, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x45, 0x45, 0x06, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x21, 0x72, 0x41, 0x41,
0x06, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x3f, 0x3f, 0x06, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x06, 0x3d, 0x06, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x05, 0x05,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x06, 0x06, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x07, 0x29, 0x36, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x2f, 0x00, 0x20, 0x78, 0x49, 0x49,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0x73, 0x28, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x62, 0x00, 0x00, 0x20, 0x78, 0x07, 0x07, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x33, 0x33,
0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x1e, 0x1e, 0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x3b, 0x3b, 0x36, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x10, 0x08, 0x73, 0x30, 0x00,
0x06, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xe2, 0x04, 0x00,
0x21, 0x72, 0x05, 0x27, 0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xc4, 0x1f, 0x00, 0x21, 0x72, 0x38, 0x2d, 0x36, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x3a, 0x25,
0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x31, 0x31, 0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x10, 0x08, 0x73, 0x32, 0x00, 0x49, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00, 0x21, 0x72, 0x06, 0x2b,
0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x4f, 0x10,
0x21, 0x72, 0x1d, 0x1d, 0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x06, 0x06, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x21, 0x72, 0x39, 0x39,
0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x10,
0x08, 0x73, 0x2d, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0xa2, 0x0e, 0x00, 0x21, 0x72, 0x37, 0x37, 0x36, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x35, 0x35,
0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x10,
0x21, 0x72, 0x34, 0x34, 0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x10, 0x21, 0x72, 0x1c, 0x1c, 0x36, 0x00, 0x00, 0x80,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x29, 0x00,
0x06, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00,
0x20, 0x78, 0x20, 0x20, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x47, 0x47, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x45, 0x45,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x41, 0x41, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x23, 0x00, 0x20, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x62, 0x02, 0x00, 0x21, 0x72, 0x06, 0x09,
0x36, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x1f, 0x00,
0x20, 0x78, 0x33, 0x33, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x5d, 0x5d, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x5b, 0x5b,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0x73, 0x48, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x22, 0x00, 0x00, 0x20, 0x78, 0x59, 0x59, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x53, 0x53,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x51, 0x51, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x4f, 0x4f, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x46, 0x00,
0x45, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00,
0x20, 0x78, 0x4d, 0x4d, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x4b, 0x4b, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x3f, 0x3f,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x1e, 0x1e, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x44, 0x00, 0x41, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x20, 0x78, 0x3b, 0x3b,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x05, 0x05, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x38, 0x38, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x3a, 0x3a,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x08, 0x73, 0x2b, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x22, 0x00, 0x00, 0x20, 0x78, 0x49, 0x31, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x1d, 0x1d,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x39, 0x39, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x37, 0x37, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x26, 0x00,
0x5d, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00,
0x20, 0x78, 0x35, 0x35, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x20, 0x78, 0x34, 0x34, 0x3b, 0xaa, 0xb8, 0x3f,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x78, 0x07, 0x06,
0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x78, 0x1c, 0x1c, 0x3b, 0xaa, 0xb8, 0x3f, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x08, 0x73, 0x2a, 0x00, 0x5b, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x2c, 0x00,
0x59, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00,
0x08, 0x73, 0x2e, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x24, 0x00, 0x51, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x22, 0x00,
0x4f, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00,
0x08, 0x73, 0x20, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x4a, 0x00, 0x4b, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x42, 0x00,
0x3f, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00,
0x08, 0x73, 0x1e, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x0e, 0x00, 0x08, 0x73, 0x27, 0x00, 0x3b, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x05, 0x00,
0x05, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x0e, 0x00,
0x08, 0x73, 0x25, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x33, 0x00, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x49, 0x00,
0x49, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x0e, 0x00,
0x08, 0x73, 0x31, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x47, 0x00, 0x39, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x45, 0x00,
0x37, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00,
0x08, 0x73, 0x41, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x09, 0x00, 0x34, 0x00, 0x00, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x08, 0x73, 0x07, 0x00,
0x07, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x30, 0x0e, 0x00,
0x08, 0x73, 0x06, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0x22, 0x00, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00,
0x21, 0x72, 0x1d, 0x23, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe2, 0xff, 0x00, 0x11, 0x72, 0x43, 0x43, 0x04, 0x00, 0x00, 0x00,
0xff, 0x20, 0x8f, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x21, 0x72, 0x1c, 0x27,
0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x51, 0x50, 0x20, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x21, 0x72, 0x1d, 0x1d, 0x28, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x43, 0x43,
0xf0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x21, 0x72, 0x1c, 0x1c, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x03, 0x03, 0x07, 0x00, 0x00, 0x00,
0x0a, 0x78, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x21, 0x72, 0x1d, 0x1d,
0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x21, 0x72, 0x1c, 0x1c, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1d, 0x1d, 0x2c, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1c, 0x1c,
0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x21, 0x72, 0x1d, 0x1d, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1c, 0x1c, 0x2d, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1d, 0x1d,
0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x21, 0x72, 0x1c, 0x1c, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1d, 0x1d, 0x22, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1c, 0x1c,
0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x21, 0x72, 0x1d, 0x1d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1c, 0x1c, 0x49, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1d, 0x1d,
0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x21, 0x72, 0x1c, 0x1c, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1d, 0x1d, 0x32, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1c, 0x1c,
0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x21, 0x72, 0x1d, 0x1d, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1c, 0x1c, 0x45, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1d, 0x1d,
0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x21, 0x72, 0x1c, 0x1c, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1d, 0x1d, 0x44, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1c, 0x1c,
0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x21, 0x72, 0x1d, 0x1d, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x35, 0x1c, 0x07, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x1d, 0x1d,
0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x21, 0x72, 0x35, 0x35, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x78, 0x43, 0x04, 0x01, 0x00, 0x00, 0x00,
0x43, 0x0a, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x04, 0x24, 0x78, 0x37, 0x04,
0x08, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x89, 0x7f, 0x1c, 0x1d, 0x00, 0x1f, 0x00, 0x0d, 0x00, 0x00, 0x0e, 0x00,
0x00, 0x22, 0x0e, 0x00, 0x0c, 0x78, 0x00, 0x43, 0x07, 0x00, 0x00, 0x00,
0x70, 0x42, 0xf2, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x74, 0x43, 0xff,
0x00, 0x00, 0x80, 0x3f, 0xff, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x89, 0x7f, 0x34, 0x35, 0x00, 0x1f, 0x00, 0x0d, 0x00, 0x00, 0x0e, 0x00,
0x00, 0x62, 0x0e, 0x00, 0x24, 0x74, 0x40, 0xff, 0x00, 0x00, 0x80, 0x3f,
0xff, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00, 0x24, 0x78, 0x03, 0x0a,
0x20, 0x00, 0x00, 0x00, 0x03, 0x02, 0x8e, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x24, 0x78, 0x03, 0x03, 0x10, 0x00, 0x00, 0x00, 0xff, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x21, 0x72, 0x36, 0x1d, 0x1c, 0x00, 0x00, 0x00,
0x00, 0x00, 0x01, 0x00, 0x00, 0xe4, 0x1f, 0x00, 0x21, 0x72, 0x38, 0x35,
0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xcc, 0x2f, 0x00,
0x88, 0x93, 0x00, 0x2f, 0x36, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x88, 0x93, 0x00, 0x2f, 0x38, 0x00, 0x01, 0x00,
0x00, 0x08, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xea, 0x0f, 0x00, 0x84, 0x79, 0x1c, 0x37, 0x00, 0x00, 0x00, 0x00,
0x00, 0x1a, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00, 0x18, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xea, 0x0f, 0x00, 0x0c, 0x78, 0x00, 0x04, 0x3f, 0x00, 0x00, 0x00,
0x70, 0x42, 0xf2, 0x03, 0x00, 0xd8, 0x0f, 0x00, 0x21, 0x92, 0x1c, 0x1c,
0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xd0, 0x1f, 0x00,
0x88, 0x93, 0x00, 0x1f, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00,
0x84, 0x79, 0x1d, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00,
0x00, 0x28, 0x0e, 0x00, 0x84, 0x79, 0x34, 0x21, 0x00, 0x80, 0x00, 0x00,
0x00, 0x18, 0x00, 0x00, 0x00, 0x68, 0x0e, 0x00, 0x18, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xea, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x08, 0x18, 0x00, 0x00, 0x00,
0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x01, 0x88, 0x73, 0x00, 0x08,
0x14, 0x00, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x08, 0x10, 0x00, 0x10, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x08, 0x0c, 0x00, 0x18, 0x00,
0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xea, 0x0f, 0x00, 0x84, 0x79, 0x14, 0x50, 0x00, 0x00, 0x04, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x84, 0x79, 0x3c, 0x50,
0x00, 0x40, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x0b, 0x72, 0x00, 0x1d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x50, 0xf3, 0x03,
0x00, 0xd8, 0x1f, 0x00, 0x08, 0x13, 0x43, 0x00, 0x1d, 0x00, 0x00, 0x00,
0x00, 0x10, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00, 0x0b, 0x72, 0x00, 0x34,
0xff, 0x00, 0x00, 0x00, 0x00, 0x50, 0xf3, 0x03, 0x00, 0xd8, 0x2f, 0x00,
0x08, 0x13, 0x40, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00,
0x00, 0xa2, 0x02, 0x00, 0x20, 0x72, 0x04, 0x43, 0x28, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x1f, 0x04, 0x20, 0x72, 0x39, 0x43,
0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x20, 0x72, 0x2f, 0x43, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x84, 0x79, 0x34, 0x50, 0x00, 0x00, 0x00, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x24, 0x2e, 0x00, 0x04, 0x73, 0x04, 0x00,
0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x20, 0x72, 0x18, 0x43, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x20, 0x72, 0x08, 0x43, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x84, 0x79, 0x20, 0x51,
0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x62, 0x0e, 0x00,
0x20, 0x72, 0x26, 0x43, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x04, 0x73, 0x39, 0x00, 0x39, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0e, 0x00, 0x20, 0x72, 0x1a, 0x40,
0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x4f, 0x04,
0x84, 0x79, 0x1c, 0x51, 0x00, 0x00, 0x04, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xa2, 0x0e, 0x00, 0x20, 0x72, 0x2c, 0x43, 0x2c, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x20, 0x72, 0x2e, 0x43,
0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x20, 0x72, 0x24, 0x43, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x04, 0x73, 0x26, 0x00, 0x26, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x20, 0x72, 0x19, 0x40,
0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x20, 0x72, 0x52, 0x40, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x20, 0x72, 0x58, 0x40, 0x25, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x16, 0x78, 0x27, 0x04,
0x10, 0x54, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x8f, 0x00,
0x04, 0x73, 0x2f, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0xe2, 0x0e, 0x00, 0x84, 0x79, 0x38, 0x50, 0x00, 0x40, 0x04, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x62, 0x0e, 0x00, 0x20, 0x72, 0x33, 0x40,
0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x20, 0x72, 0x53, 0x43, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x20, 0x72, 0x4a, 0x43, 0x32, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x04, 0x73, 0x2c, 0x00,
0x2c, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x20, 0x72, 0x61, 0x40, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x20, 0x72, 0x5d, 0x43, 0x48, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x20, 0x72, 0x5c, 0x43,
0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x20, 0x72, 0x5e, 0x43, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x04, 0x73, 0x4b, 0x00, 0x2e, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xa2, 0x0e, 0x00, 0x16, 0x78, 0x26, 0x26,
0x10, 0x54, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x8f, 0x00,
0x20, 0x72, 0x63, 0x40, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x20, 0x72, 0x60, 0x40, 0x45, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x84, 0x79, 0x44, 0x50,
0x00, 0x00, 0x14, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x0c, 0x26, 0x34, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x1f, 0x0c, 0x04, 0x73, 0x24, 0x00, 0x24, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x20, 0x72, 0x5f, 0x43,
0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x04,
0x36, 0x72, 0x0e, 0x26, 0x34, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00,
0x00, 0x62, 0x0f, 0x04, 0x20, 0x72, 0x62, 0x43, 0x30, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x20, 0x72, 0x59, 0x40,
0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x10, 0x26, 0x36, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0c, 0x04, 0x73, 0x1b, 0x00, 0x18, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x16, 0x78, 0x04, 0x2c,
0x10, 0x54, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x4f, 0x00,
0x20, 0x72, 0x4b, 0x40, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe2, 0x0f, 0x04, 0x36, 0x72, 0x12, 0x26, 0x36, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x00, 0x20, 0x72, 0x5a, 0x40,
0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x20, 0x72, 0x5b, 0x40, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x04, 0x20, 0x72, 0x18, 0x40, 0x05, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x1f, 0x00, 0x04, 0x73, 0x1a, 0x00,
0x1a, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x16, 0x78, 0x05, 0x24, 0x10, 0x54, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x8f, 0x00, 0x20, 0x72, 0x1b, 0x40, 0x29, 0x00, 0x00, 0x00,
0x00, 0x00, 0x41, 0x00, 0x00, 0xcc, 0x0f, 0x00, 0x04, 0x73, 0x19, 0x00,
0x19, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x0c, 0x04, 0x14, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x0e, 0x04, 0x14, 0x00, 0x00, 0x00,
0x0e, 0x80, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x04, 0x04, 0x73, 0x18, 0x00,
0x18, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x10, 0x04, 0x16, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x12, 0x04, 0x16, 0x00, 0x00, 0x00,
0x12, 0x80, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x00, 0x04, 0x73, 0x4b, 0x00,
0x4b, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x4c, 0x26, 0x20, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x2f, 0x0c, 0x36, 0x72, 0x4e, 0x26, 0x20, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x66, 0x0f, 0x04, 0x04, 0x73, 0x1b, 0x00,
0x1b, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x28, 0x26, 0x22, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x2a, 0x26, 0x22, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x66, 0x0f, 0x00, 0x04, 0x73, 0x52, 0x00,
0x52, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0x22, 0x0e, 0x00,
0x36, 0x72, 0x4c, 0x04, 0x1c, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x4e, 0x04, 0x1c, 0x00, 0x00, 0x00,
0x4e, 0x80, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x04, 0x04, 0x73, 0x58, 0x00,
0x58, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x28, 0x04, 0x1e, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x2a, 0x04, 0x1e, 0x00, 0x00, 0x00,
0x2a, 0x80, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x00, 0x04, 0x73, 0x33, 0x00,
0x33, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0x62, 0x0e, 0x00,
0x16, 0x78, 0x32, 0x1b, 0x10, 0x54, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x1f, 0x00, 0x36, 0x72, 0x2c, 0x26, 0x3c, 0x00, 0x00, 0x00,
0xff, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x2e, 0x26,
0x3c, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x64, 0x0f, 0x04,
0x04, 0x73, 0x08, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x36, 0x72, 0x24, 0x26, 0x3e, 0x00, 0x00, 0x00,
0xff, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x26, 0x26,
0x3e, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x00,
0x16, 0x78, 0x33, 0x58, 0x10, 0x54, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x2f, 0x00, 0x04, 0x73, 0x53, 0x00, 0x53, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x20, 0x72, 0x58, 0x40,
0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x2c, 0x04, 0x38, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x2e, 0x04, 0x38, 0x00, 0x00, 0x00,
0x2e, 0x80, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x04, 0x73, 0x52, 0x00,
0x4a, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe4, 0x01, 0x00,
0x36, 0x72, 0x24, 0x04, 0x3a, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x26, 0x04, 0x3a, 0x00, 0x00, 0x00,
0x26, 0x80, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x16, 0x78, 0x04, 0x1a,
0x10, 0x54, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x02,
0x04, 0x73, 0x61, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x16, 0x78, 0x05, 0x18, 0x10, 0x54, 0x00, 0x00,
0x4b, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x84, 0x79, 0x48, 0x50,
0x00, 0x00, 0x10, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x28, 0x1e, 0x00,
0x36, 0x72, 0x18, 0x04, 0x34, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0c, 0x04, 0x73, 0x5d, 0x00, 0x5d, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xe6, 0x0f, 0x00, 0x36, 0x72, 0x1a, 0x04,
0x34, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x04,
0x36, 0x72, 0x34, 0x04, 0x36, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0c, 0x04, 0x73, 0x5c, 0x00, 0x5c, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xe6, 0x0f, 0x00, 0x36, 0x72, 0x36, 0x04,
0x36, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x18, 0x32, 0x14, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0e, 0x04, 0x73, 0x5e, 0x00, 0x5e, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0x66, 0x0e, 0x00, 0x36, 0x72, 0x1a, 0x32,
0x14, 0x00, 0x00, 0x00, 0x1a, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x04,
0x36, 0x72, 0x14, 0x32, 0x16, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0c, 0x04, 0x73, 0x5f, 0x00, 0x5f, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xe6, 0x0f, 0x00, 0x36, 0x72, 0x16, 0x32,
0x16, 0x00, 0x00, 0x00, 0x36, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x36, 0x72, 0x34, 0x04, 0x20, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x04, 0x73, 0x62, 0x00, 0x62, 0x00, 0x00, 0x00,
0x00, 0x08, 0x20, 0x00, 0x00, 0xa2, 0x0e, 0x00, 0x16, 0x78, 0x06, 0x5c,
0x10, 0x54, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x2f, 0x00,
0x36, 0x72, 0x36, 0x04, 0x20, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x04, 0x36, 0x72, 0x20, 0x04, 0x22, 0x00, 0x00, 0x00,
0xff, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x0c, 0x04, 0x73, 0x09, 0x00,
0x63, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0xe6, 0x0f, 0x00,
0x36, 0x72, 0x22, 0x04, 0x22, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x34, 0x32, 0x1c, 0x00, 0x00, 0x00,
0x34, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x0e, 0x16, 0x78, 0x07, 0x5f,
0x10, 0x54, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x4f, 0x00,
0x04, 0x73, 0x60, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0x64, 0x0e, 0x00, 0x36, 0x72, 0x36, 0x32, 0x1c, 0x00, 0x00, 0x00,
0x36, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x04, 0x36, 0x72, 0x1c, 0x32,
0x1e, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x0c,
0x04, 0x73, 0x59, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x36, 0x72, 0x1e, 0x32, 0x1e, 0x00, 0x00, 0x00,
0x22, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x20, 0x04,
0x3c, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x0c,
0x04, 0x73, 0x5c, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x16, 0x78, 0x09, 0x09, 0x10, 0x54, 0x00, 0x00,
0x60, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x2f, 0x00, 0x36, 0x72, 0x22, 0x04,
0x3c, 0x00, 0x00, 0x00, 0xff, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x04,
0x36, 0x72, 0x3c, 0x04, 0x3e, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x3e, 0x04, 0x3e, 0x00, 0x00, 0x00,
0xff, 0x80, 0x00, 0x00, 0x00, 0x64, 0x0b, 0x00, 0x16, 0x78, 0x04, 0x08,
0x10, 0x54, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0x02,
0x36, 0x72, 0x20, 0x32, 0x38, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x16, 0x78, 0x05, 0x52, 0x10, 0x54, 0x00, 0x00,
0x5d, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x0f, 0x00, 0x36, 0x72, 0x22, 0x32,
0x38, 0x00, 0x00, 0x00, 0x22, 0x80, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x04,
0x20, 0x72, 0x38, 0x40, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00,
0x00, 0xe4, 0x0f, 0x02, 0x84, 0x79, 0x40, 0x51, 0x00, 0x00, 0x10, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x62, 0x0e, 0x00, 0x36, 0x72, 0x30, 0x32,
0x3a, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0xe6, 0x0f, 0x0c,
0x04, 0x73, 0x38, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00,
0x00, 0xa2, 0x0e, 0x00, 0x36, 0x72, 0x32, 0x32, 0x3a, 0x00, 0x00, 0x00,
0x3e, 0x80, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x84, 0x79, 0x3c, 0x51,
0x00, 0x00, 0x14, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe4, 0x0e, 0x02,
0x36, 0x72, 0x0c, 0x04, 0x48, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x1f, 0x0c, 0x36, 0x72, 0x0e, 0x04, 0x48, 0x00, 0x00, 0x00,
0x0e, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x04, 0x36, 0x72, 0x10, 0x04,
0x4a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x16, 0x78, 0x08, 0x61, 0x10, 0x54, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00,
0x00, 0xc6, 0x4f, 0x00, 0x36, 0x72, 0x12, 0x04, 0x4a, 0x00, 0x00, 0x00,
0x12, 0x80, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x00, 0x84, 0x79, 0x38, 0x50,
0x00, 0x40, 0x10, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x26, 0x0e, 0x00,
0x36, 0x72, 0x0c, 0x06, 0x44, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0e, 0x84, 0x79, 0x50, 0x50, 0x00, 0x40, 0x14, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xa6, 0x0e, 0x00, 0x36, 0x72, 0x0e, 0x06,
0x44, 0x00, 0x00, 0x00, 0x0e, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x04,
0x36, 0x72, 0x10, 0x06, 0x46, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x12, 0x06, 0x46, 0x00, 0x00, 0x00,
0x12, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x4c, 0x04,
0x40, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x2f, 0x0c,
0x36, 0x72, 0x4e, 0x04, 0x40, 0x00, 0x00, 0x00, 0x4e, 0x80, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x04, 0x36, 0x72, 0x28, 0x04, 0x42, 0x00, 0x00, 0x00,
0x28, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x2a, 0x04,
0x42, 0x00, 0x00, 0x00, 0x2a, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x4c, 0x06, 0x3c, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x8f, 0x0e, 0x36, 0x72, 0x4e, 0x06, 0x3c, 0x00, 0x00, 0x00,
0x4e, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x04, 0x36, 0x72, 0x28, 0x06,
0x3e, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c,
0x36, 0x72, 0x2a, 0x06, 0x3e, 0x00, 0x00, 0x00, 0x2a, 0x80, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x2c, 0x04, 0x38, 0x00, 0x00, 0x00,
0x2c, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x1f, 0x0c, 0x36, 0x72, 0x2e, 0x04,
0x38, 0x00, 0x00, 0x00, 0x2e, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x04,
0x36, 0x72, 0x24, 0x04, 0x3a, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x26, 0x04, 0x3a, 0x00, 0x00, 0x00,
0x26, 0x80, 0x00, 0x00, 0x00, 0x64, 0x0b, 0x00, 0x04, 0x73, 0x04, 0x00,
0x58, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0x24, 0x0e, 0x02,
0x36, 0x72, 0x2c, 0x06, 0x50, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x4f, 0x0c, 0x36, 0x72, 0x2e, 0x06, 0x50, 0x00, 0x00, 0x00,
0x2e, 0x80, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x04, 0x04, 0x73, 0x05, 0x00,
0x5a, 0x00, 0x00, 0x00, 0x00, 0x08, 0x20, 0x00, 0x00, 0x64, 0x0e, 0x00,
0x36, 0x72, 0x24, 0x06, 0x52, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x26, 0x06, 0x52, 0x00, 0x00, 0x00,
0x26, 0x80, 0x00, 0x00, 0x00, 0xe2, 0x0b, 0x00, 0x16, 0x78, 0x04, 0x04,
0x10, 0x54, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x1f, 0x00,
0x36, 0x72, 0x18, 0x08, 0x48, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0c, 0x12, 0x78, 0x06, 0x57, 0x10, 0x00, 0x00, 0x00,
0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x06, 0x12, 0x78, 0x07, 0x57,
0x20, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x1a, 0x08, 0x48, 0x00, 0x00, 0x00, 0x1a, 0x80, 0x00, 0x00,
0x00, 0x62, 0x0f, 0x00, 0x16, 0x78, 0x05, 0x05, 0x10, 0x54, 0x00, 0x00,
0x5c, 0x00, 0x00, 0x00, 0x00, 0xc6, 0x2f, 0x00, 0x36, 0x72, 0x14, 0x08,
0x4a, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c,
0x36, 0x72, 0x16, 0x08, 0x4a, 0x00, 0x00, 0x00, 0x16, 0x80, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x00, 0x36, 0x72, 0x18, 0x04, 0x44, 0x00, 0x00, 0x00,
0x18, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x1a, 0x04,
0x44, 0x00, 0x00, 0x00, 0x1a, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x04,
0x36, 0x72, 0x14, 0x04, 0x46, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x16, 0x04, 0x46, 0x00, 0x00, 0x00,
0x16, 0x80, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00, 0x36, 0x72, 0x34, 0x08,
0x40, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c,
0x36, 0x72, 0x36, 0x08, 0x40, 0x00, 0x00, 0x00, 0x36, 0x80, 0x00, 0x00,
0x00, 0x68, 0x0f, 0x04, 0x36, 0x72, 0x1c, 0x08, 0x42, 0x00, 0x00, 0x00,
0x1c, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x0c, 0x36, 0x72, 0x1e, 0x08,
0x42, 0x00, 0x00, 0x00, 0x1e, 0x80, 0x00, 0x00, 0x00, 0x68, 0x0f, 0x00,
0x36, 0x72, 0x34, 0x04, 0x3c, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00,
0x00, 0xe8, 0x0f, 0x0e, 0x36, 0x72, 0x36, 0x04, 0x3c, 0x00, 0x00, 0x00,
0x36, 0x80, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x24, 0x72, 0x3c, 0xff,
0xff, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x02,
0x36, 0x72, 0x1c, 0x04, 0x3e, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0c, 0x24, 0x72, 0x3d, 0xff, 0xff, 0x00, 0x00, 0x00,
0x0d, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x0c, 0xff,
0xff, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x1e, 0x04, 0x3e, 0x00, 0x00, 0x00, 0x1e, 0x80, 0x00, 0x00,
0x00, 0xe2, 0x0b, 0x00, 0x24, 0x72, 0x0d, 0xff, 0xff, 0x00, 0x00, 0x00,
0x4f, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x3e, 0xff,
0xff, 0x00, 0x00, 0x00, 0x10, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x02,
0x36, 0x72, 0x20, 0x08, 0x38, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0c, 0x24, 0x72, 0x3f, 0xff, 0xff, 0x00, 0x00, 0x00,
0x11, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xea, 0x0f, 0x00, 0x36, 0x72, 0x22, 0x08, 0x38, 0x00, 0x00, 0x00,
0x22, 0x80, 0x00, 0x00, 0x00, 0x62, 0x0b, 0x04, 0x24, 0x72, 0x10, 0xff,
0xff, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x57, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x11, 0xff, 0xff, 0x00, 0x00, 0x00,
0x0f, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x30, 0x08,
0x3a, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x72, 0x38, 0xff, 0xff, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x8e, 0x07,
0x00, 0xc4, 0x0f, 0x02, 0x24, 0x72, 0x39, 0xff, 0xff, 0x00, 0x00, 0x00,
0x1b, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x32, 0x08,
0x3a, 0x00, 0x00, 0x00, 0x32, 0x80, 0x00, 0x00, 0x00, 0x62, 0x0b, 0x00,
0x24, 0x72, 0x1a, 0xff, 0xff, 0x00, 0x00, 0x00, 0x14, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x08, 0x57, 0x30, 0x00, 0x00, 0x00,
0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x06, 0x24, 0x72, 0x1b, 0xff,
0xff, 0x00, 0x00, 0x00, 0x15, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x20, 0x04, 0x50, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x0c, 0x24, 0x72, 0x3a, 0xff, 0xff, 0x00, 0x00, 0x00,
0x16, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x06,
0x10, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x01, 0x00,
0x24, 0x72, 0x3b, 0xff, 0xff, 0x00, 0x00, 0x00, 0x17, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x22, 0x04, 0x50, 0x00, 0x00, 0x00,
0x22, 0x80, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x04, 0x24, 0x72, 0x4e, 0xff,
0xff, 0x00, 0x00, 0x00, 0x28, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x12, 0x78, 0x09, 0x57, 0x40, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x04, 0x24, 0x72, 0x4f, 0xff, 0xff, 0x00, 0x00, 0x00,
0x29, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x36, 0x72, 0x30, 0x04,
0x52, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x62, 0x0f, 0x0c,
0x24, 0x72, 0x16, 0xff, 0xff, 0x00, 0x00, 0x00, 0x24, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x57, 0x18, 0x00, 0x40, 0x00,
0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x17, 0xff,
0xff, 0x00, 0x00, 0x00, 0x25, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x36, 0x72, 0x32, 0x04, 0x52, 0x00, 0x00, 0x00, 0x32, 0x80, 0x00, 0x00,
0x00, 0x62, 0x0b, 0x00, 0x24, 0x72, 0x0e, 0xff, 0xff, 0x00, 0x00, 0x00,
0x2a, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x12, 0x78, 0x04, 0x57,
0x50, 0x00, 0x00, 0x00, 0xff, 0x3c, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x02,
0x24, 0x72, 0x0f, 0xff, 0xff, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x06, 0x38, 0x00, 0x40, 0x00,
0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x24, 0xff,
0xff, 0x00, 0x00, 0x00, 0x36, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00,
0x24, 0x72, 0x25, 0xff, 0xff, 0x00, 0x00, 0x00, 0x37, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x07, 0x4c, 0x00, 0x00, 0x00,
0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x12, 0xff,
0xff, 0x00, 0x00, 0x00, 0x26, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x1f, 0x00,
0x24, 0x72, 0x13, 0xff, 0xff, 0x00, 0x00, 0x00, 0x27, 0x00, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x08, 0x0c, 0x00, 0x00, 0x00,
0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x36, 0xff,
0xff, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x24, 0x72, 0x37, 0xff, 0xff, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x26, 0xff, 0xff, 0x00, 0x00, 0x00,
0x1e, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00, 0x24, 0x72, 0x27, 0xff,
0xff, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x24, 0x72, 0x14, 0xff, 0xff, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x15, 0xff, 0xff, 0x00, 0x00, 0x00,
0x2d, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x07,
0x34, 0x00, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x72, 0x10, 0xff, 0xff, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x11, 0xff, 0xff, 0x00, 0x00, 0x00,
0x2f, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x08,
0x24, 0x00, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x01, 0x00,
0x24, 0x72, 0x28, 0xff, 0xff, 0x00, 0x00, 0x00, 0x22, 0x00, 0x8e, 0x07,
0x00, 0xc4, 0x0f, 0x00, 0x24, 0x72, 0x29, 0xff, 0xff, 0x00, 0x00, 0x00,
0x23, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x09,
0x14, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x72, 0x22, 0xff, 0xff, 0x00, 0x00, 0x00, 0x30, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x23, 0xff, 0xff, 0x00, 0x00, 0x00,
0x31, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x88, 0x73, 0x00, 0x04,
0x10, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x72, 0x2a, 0xff, 0xff, 0x00, 0x00, 0x00, 0x32, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x0f, 0x00, 0x24, 0x72, 0x2b, 0xff, 0xff, 0x00, 0x00, 0x00,
0x33, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00, 0x24, 0x78, 0x05, 0x56,
0x50, 0x00, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00,
0x88, 0x73, 0x00, 0x09, 0x20, 0x00, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00,
0x00, 0xe6, 0x0f, 0x00, 0x10, 0x72, 0x08, 0x54, 0x05, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xf3, 0x07, 0x00, 0xe2, 0x1f, 0x00, 0x88, 0x73, 0x00, 0x04,
0x28, 0x00, 0x40, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe8, 0x0f, 0x00,
0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x1d, 0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0x0f, 0x00, 0x84, 0x79, 0x0c, 0x03,
0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x11, 0x72, 0x09, 0x05, 0x55, 0x00, 0x00, 0x00, 0xff, 0x0e, 0x8f, 0x00,
0x00, 0xc6, 0x0f, 0x00, 0x84, 0x79, 0x18, 0x03, 0x00, 0x80, 0x00, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x22, 0x0e, 0x00, 0x0c, 0x72, 0x00, 0x0a,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03, 0x00, 0xc6, 0x0f, 0x00,
0x84, 0x79, 0x1c, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0x68, 0x0e, 0x00, 0x84, 0x79, 0x2c, 0x03, 0x00, 0x80, 0x01, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xa8, 0x0e, 0x00, 0x84, 0x79, 0x24, 0x03,
0x00, 0x00, 0x20, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xa8, 0x06, 0x00,
0x84, 0x79, 0x28, 0x03, 0x00, 0x80, 0x20, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xa8, 0x06, 0x00, 0x84, 0x79, 0x34, 0x03, 0x00, 0x00, 0x21, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x06, 0x00, 0x84, 0x79, 0x38, 0x03,
0x00, 0x80, 0x21, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x00,
0x84, 0x79, 0x04, 0x03, 0x00, 0x00, 0x40, 0x00, 0x00, 0x1c, 0x00, 0x00,
0x00, 0xe8, 0x00, 0x00, 0x84, 0x79, 0x10, 0x03, 0x00, 0x00, 0x41, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x30, 0x72, 0x0c, 0x0c,
0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x1f, 0x00,
0x30, 0x72, 0x0d, 0x0d, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x0e, 0x0e, 0x1a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x0f, 0x0f,
0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x16, 0x0c, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x2f, 0x00, 0x84, 0x79, 0x18, 0x03, 0x00, 0x00, 0x60, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x30, 0x72, 0x0d, 0x0d,
0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x3e, 0x0e, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x30, 0x72, 0x3f, 0x0f, 0x1f, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x2c, 0x16,
0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x4f, 0x00,
0x30, 0x72, 0x2d, 0x0d, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x84, 0x79, 0x14, 0x03, 0x00, 0x80, 0x41, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x84, 0x79, 0x0c, 0x03,
0x00, 0x80, 0x40, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00,
0x4d, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xea, 0x0f, 0x00, 0x84, 0x79, 0x1c, 0x03, 0x00, 0x80, 0x60, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0xa2, 0x06, 0x00, 0x25, 0x8a, 0x3c, 0x0a,
0x00, 0x62, 0x00, 0x00, 0x08, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x2e, 0x3e, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x84, 0x79, 0x20, 0x03, 0x00, 0x00, 0x61, 0x00,
0x00, 0x1c, 0x00, 0x00, 0x00, 0x62, 0x06, 0x00, 0x24, 0x8a, 0x41, 0x00,
0x00, 0x62, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x10, 0x8a, 0x3c, 0x3c, 0x00, 0x5c, 0x00, 0x00, 0xff, 0xe0, 0xf3, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x2f, 0x3f, 0x2f, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x84, 0x79, 0x30, 0x03,
0x00, 0x80, 0x61, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x22, 0x06, 0x00,
0x24, 0x8a, 0x41, 0x0a, 0x00, 0x63, 0x00, 0x00, 0x41, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x24, 0x24, 0x28, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x25, 0x25,
0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x10, 0x8a, 0x3d, 0x3d, 0x00, 0x5d, 0x00, 0x00, 0x41, 0xe4, 0xff, 0x00,
0x00, 0xc8, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x02, 0x0b, 0x00, 0x00, 0x00,
0x70, 0x62, 0xf2, 0x03, 0x00, 0xc8, 0x0f, 0x00, 0x86, 0x83, 0x00, 0x3c,
0x2c, 0x00, 0x00, 0x00, 0x00, 0xed, 0x10, 0x00, 0x00, 0xf0, 0x07, 0x00,
0x4d, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xea, 0x0f, 0x00, 0x30, 0x72, 0x26, 0x26, 0x2a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x10, 0x78, 0x02, 0x0a,
0x20, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x27, 0x27, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x55, 0x73, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x10, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x24, 0x24,
0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x8f, 0x00,
0x45, 0x79, 0x00, 0x00, 0x40, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x25, 0x25, 0x35, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x02,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x62, 0xf2, 0x03, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x26, 0x26, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc4, 0x0f, 0x00, 0x30, 0x72, 0x27, 0x27, 0x37, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x38, 0x24,
0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x39, 0x25, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x3a, 0x26, 0x3a, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x3b, 0x27,
0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x47, 0x09, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xea, 0x0f, 0x00, 0x10, 0x78, 0x25, 0x0a, 0x10, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xf5, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x02, 0xff,
0xff, 0x00, 0x00, 0x00, 0x08, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00,
0x24, 0x72, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x09, 0x00, 0x8e, 0x07,
0x00, 0xe4, 0x1f, 0x00, 0x24, 0x72, 0x24, 0xff, 0xff, 0x00, 0x00, 0x00,
0x00, 0x06, 0x0e, 0x01, 0x00, 0xe4, 0x0f, 0x00, 0x25, 0x7a, 0x02, 0x25,
0x00, 0x62, 0x00, 0x00, 0x02, 0x00, 0x8e, 0x07, 0x00, 0xc8, 0x0f, 0x00,
0x24, 0x7a, 0x24, 0x24, 0x00, 0x62, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x10, 0x7a, 0x02, 0x02, 0x00, 0x5c, 0x00, 0x00,
0xff, 0xe0, 0xf5, 0x07, 0x00, 0xc6, 0x0f, 0x00, 0x24, 0x7a, 0x25, 0x25,
0x00, 0x63, 0x00, 0x00, 0x24, 0x02, 0x8e, 0x07, 0x00, 0xca, 0x0f, 0x00,
0x10, 0x7a, 0x03, 0x03, 0x00, 0x5d, 0x00, 0x00, 0x25, 0xe4, 0x7f, 0x01,
0x00, 0xd0, 0x0f, 0x00, 0x86, 0x73, 0x00, 0x02, 0x38, 0x00, 0x00, 0x00,
0x00, 0xed, 0x10, 0x00, 0x00, 0xe4, 0x01, 0x00, 0x41, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00,
0x30, 0x72, 0x04, 0x04, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x1f, 0x00, 0x30, 0x72, 0x05, 0x05, 0x0d, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x4d, 0x19, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0xf0, 0x0f, 0x00,
0x30, 0x72, 0x06, 0x06, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x10, 0x78, 0x02, 0x0a, 0x30, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xff, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x07, 0x07,
0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x55, 0x73, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x04, 0x04, 0x10, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x0c, 0x72, 0x00, 0x02,
0x0b, 0x00, 0x00, 0x00, 0x70, 0x66, 0x72, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x05, 0x05, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x45, 0x79, 0x00, 0x00, 0x20, 0x01, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x0b, 0x06,
0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0x00,
0x30, 0x72, 0x07, 0x07, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x04, 0x04, 0x14, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x4f, 0x00, 0x30, 0x72, 0x05, 0x05,
0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x06, 0x0b, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x07, 0x07, 0x17, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x47, 0x09, 0x00, 0x00,
0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00,
0x10, 0x78, 0x0b, 0x0a, 0x20, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xf1, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00,
0x08, 0x00, 0x8e, 0x07, 0x00, 0xc4, 0x0f, 0x00, 0x24, 0x72, 0x03, 0xff,
0xff, 0x00, 0x00, 0x00, 0x09, 0x00, 0x8e, 0x07, 0x00, 0xe4, 0x0f, 0x00,
0x24, 0x72, 0x0c, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x06, 0x0e, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x25, 0x7a, 0x02, 0x0b, 0x00, 0x62, 0x00, 0x00,
0x02, 0x00, 0x8e, 0x07, 0x00, 0xc8, 0x0f, 0x00, 0x24, 0x7a, 0x0c, 0x0c,
0x00, 0x62, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x10, 0x7a, 0x02, 0x02, 0x00, 0x5c, 0x00, 0x00, 0xff, 0xe0, 0xf1, 0x07,
0x00, 0xc6, 0x0f, 0x00, 0x24, 0x7a, 0x0b, 0x0b, 0x00, 0x63, 0x00, 0x00,
0x0c, 0x02, 0x8e, 0x07, 0x00, 0xca, 0x0f, 0x00, 0x10, 0x7a, 0x03, 0x03,
0x00, 0x5d, 0x00, 0x00, 0x0b, 0xe4, 0x7f, 0x00, 0x00, 0xd0, 0x0f, 0x00,
0x86, 0x73, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0xed, 0x10, 0x00,
0x00, 0xe4, 0x01, 0x00, 0x41, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00, 0x30, 0x72, 0x10, 0x18,
0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x2f, 0x00,
0x4d, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x03,
0x00, 0xf0, 0x0f, 0x00, 0x10, 0x78, 0x05, 0x0a, 0x30, 0x00, 0x00, 0x00,
0xff, 0xe0, 0xf1, 0x07, 0x00, 0xe2, 0x1f, 0x00, 0x24, 0x72, 0x02, 0xff,
0xff, 0x00, 0x00, 0x00, 0x08, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x19, 0x19, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x24, 0x72, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00,
0x09, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x11, 0x1a,
0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x72, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x06, 0x0e, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x1b, 0x1b, 0x1f, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x25, 0x7a, 0x02, 0x05,
0x00, 0x62, 0x00, 0x00, 0x02, 0x00, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x04,
0x30, 0x72, 0x18, 0x10, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe4, 0x0f, 0x00, 0x30, 0x72, 0x19, 0x19, 0x21, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x24, 0x7a, 0x00, 0x00,
0x00, 0x62, 0x00, 0x00, 0xff, 0x02, 0x8e, 0x07, 0x00, 0xe2, 0x0f, 0x00,
0x30, 0x72, 0x11, 0x11, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x10, 0x7a, 0x02, 0x02, 0x00, 0x5c, 0x00, 0x00,
0xff, 0xe0, 0xf1, 0x07, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x1b, 0x1b,
0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0f, 0x00,
0x24, 0x7a, 0x05, 0x05, 0x00, 0x63, 0x00, 0x00, 0x00, 0x02, 0x8e, 0x07,
0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x18, 0x18, 0x30, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0f, 0x00, 0x30, 0x72, 0x19, 0x19,
0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0f, 0x00,
0x30, 0x72, 0x1a, 0x11, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x10, 0x7a, 0x03, 0x03, 0x00, 0x5d, 0x00, 0x00,
0x05, 0xe4, 0x7f, 0x00, 0x00, 0xe2, 0x0f, 0x00, 0x30, 0x72, 0x1b, 0x1b,
0x33, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x0f, 0x00,
0x86, 0x73, 0x00, 0x02, 0x18, 0x00, 0x00, 0x00, 0x00, 0xed, 0x10, 0x00,
0x00, 0xe2, 0x0f, 0x00, 0x4d, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x80, 0x03, 0x00, 0xea, 0x0f, 0x00, 0x47, 0x79, 0x00, 0x00,
0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0x03, 0x00, 0xc0, 0x0f, 0x00,
0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc0, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0f, 0x00,
0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc0, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0f, 0x00, 0x18, 0x79, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x0f, 0x00,
0x18, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xc0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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,
0x03, 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, 0x00, 0x72, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x0b, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xb2, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x65, 0x03, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x18, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x20, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
0x0a, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x01, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x07, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xd9, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x18, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x58, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xe5, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x28, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x02, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x29, 0xc4, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x67, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x3d, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x90, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0xa9, 0x01, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xf4, 0x8d, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x8e, 0x02, 0x00,
0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x05, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x38, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xac, 0x8e, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00,
0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x20, 0x8f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
0x05, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x02, 0x00, 0x00,
0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x8f, 0x02, 0x00,
0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x05, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x4f, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x60, 0x8f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x80, 0x8f, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x11, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x01, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x91, 0x02, 0x00,
0x00, 0x00, 0x00, 0x00, 0xd0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x10, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x80, 0x93, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x42,
0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x06, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x80, 0xc4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
0x80, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
0x0b, 0x00, 0x00, 0x66, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00,
0x08, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x03, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x67, 0x01, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x16, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00,
0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
0x40, 0x1b, 0x03, 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, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x80, 0x8f, 0x02, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x86, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x80, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
0x06, 0x00, 0x00, 0x00, 0x00, 0x16, 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, 0x08, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
0x40, 0x1b, 0x03, 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, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
unsigned int cubin_fmha_v2_fp16_Causal_64_40_sm70_cu_cubin_len = 203808;
}
|
90273008bb21ca8ff164f3cb97f2c490110ba1d3 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/CMake/CMake-gumtree/Kitware_CMake_repos_log_1655.cpp | 25f9b96a71e4c746ebbcdd36da2dac9f9c91c588 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 101 | cpp | Kitware_CMake_repos_log_1655.cpp | archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
"Can't initialize deflate decompression."); |
4b0cd192ca6952bb7ec43228445eaaeb2f238292 | cc35b011bfcfd810721e64b5821500ba9791edf0 | /lib/Instruction.cpp | e6d232603066458d7f4bea1a8293d06e19749562 | [
"Apache-2.0"
] | permissive | jsulmont/xorc-cpp-oam | 5f08680781195a4abd3da1e5851798ed635cab0c | f623d66b36546bce3477e3ddc06d328e1aa7ce90 | refs/heads/master | 2020-04-10T03:48:05.059079 | 2018-03-14T11:46:33 | 2018-03-14T12:54:08 | 160,780,012 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 131 | cpp | Instruction.cpp | #include "Instruction.h"
#include "BoxedValue.h"
#include "Program.h"
namespace cppoam {
NOPInstruction Instruction::Invalid;
}
|
945c140a82593cda57d122a75384a4938ae5a289 | e3abf2269d58fc4f4415faa97859e1d1afde2880 | /leetcode/topInterviewQuestions/medium/permutations2.cpp | a90e75942a91fc2358220d1b67e9b1657c34d4ae | [] | no_license | Pedro-Mendes/competitiveProgramming | c549f022c427aa4e55437124e331971c9d48ccab | 391b8f9e54a8d5df4f96907dcc50f3943323dcba | refs/heads/master | 2021-07-11T08:41:00.395142 | 2020-06-20T23:06:03 | 2020-06-20T23:06:03 | 151,653,311 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,364 | cpp | permutations2.cpp | class Solution {
public:
void swap(vector<int> &nums,int i, int j){
int tmp = nums[i];
nums[i] = nums[j];
nums[j] = tmp;
}
void permute(vector<vector<int>> &solution, vector<int> nums, int index, map<vector<int>,int> &hash){
if(index==nums.size()){
if(!hash[nums]){
solution.push_back(nums);
hash[nums]=1;
}
return;
}
for(int i=index;i<nums.size();i++){
swap(nums,i,index);
permute(solution,nums,index+1,hash);
swap(nums,index,i);
}
}
vector<vector<int>> permuteUnique(vector<int>& nums) {
map<vector<int>,int> hash;
vector<vector<int>> solution;
permute(solution,nums,0,hash);
return solution;
}
};
/*Optimized solution thanks to guoang
https://leetcode.com/problems/permutations-ii/discuss/18596/A-simple-C%2B%2B-solution-in-only-20-lines*/
class Solution {
public:
void recursion(vector<int> num, int i, int j, vector<vector<int> > &res) {
if (i == j-1) {
res.push_back(num);
return;
}
for (int k = i; k < j; k++) {
if (i != k && num[i] == num[k]) continue;
swap(num[i], num[k]);
recursion(num, i+1, j, res);
}
}
vector<vector<int> > permuteUnique(vector<int> &num) {
sort(num.begin(), num.end());
vector<vector<int> >res;
recursion(num, 0, num.size(), res);
return res;
}
};
/*My improved solution with the above implemented*/
class Solution {
public:
void permute(vector<vector<int>> &solution, vector<int> nums, int index, int size){
if(index==size-1){
solution.push_back(nums);
return;
}
for(int i=index;i<size;i++){
if(i!=index && nums[i]==nums[index])
continue;
swap(nums[i],nums[index]);
permute(solution,nums,index+1,size);
}
}
vector<vector<int>> permuteUnique(vector<int>& nums) {
sort(nums.begin(), nums.end());
int size = nums.size();
vector<vector<int>> solution;
permute(solution,nums,0,size);
return solution;
}
};
|
e1bdb46f5c5e73c00d9c7986617cd62d729833ff | 38d3e2040fc43b83cc2c756af462c228532379be | /UNLI/Materias/Programacion de Video Juegos I/Practicas/TP3/TP3/main.cpp | 9db186b3a160bfb99c6fd45f14bf081173dd6070 | [] | no_license | dexter1986/unli | 1690314412daea39b512b03d4e8905de1300b71d | 7496bd2162a6170b7e4bb8d54370bdd4f1a700bf | refs/heads/master | 2016-09-06T15:10:20.157402 | 2015-03-13T03:26:34 | 2015-03-13T03:26:34 | 40,614,367 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 231 | cpp | main.cpp | #include <cstdio>
#include <tchar.h>
#include "TP3.h"
using namespace std;
int main(int argc, _TCHAR* argv[])
{
GameBase *Juego;
Juego = new TP3(800,600,"TP3");
Juego->Loop();
delete Juego;
return 0;
}
|
241b77a65ed5ebd61e230ddbeca1f840b4902437 | 0bc0d4fb816aa631491cfdd44f2e259a06a4c2fe | /src/dgraph/factory.cpp | ee7e1b09cbb8d040637de7841f6030a139431401 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | stack-of-tasks/dynamic-graph | ef7caf0244c91d3432672d5f5ea4164c6c49d13c | 2e7a70d5522d74c40e3f75540ca800564a48119e | refs/heads/master | 2023-08-08T03:32:16.929215 | 2022-09-05T08:48:35 | 2022-09-05T08:48:35 | 990,445 | 23 | 24 | NOASSERTION | 2023-07-28T07:08:03 | 2010-10-15T16:56:22 | C++ | UTF-8 | C++ | false | false | 3,922 | cpp | factory.cpp | // Copyright 2010, François Bleibel, Thomas Moulard, Olivier Stasse,
// JRL, CNRS/AIST.
//
#include "dynamic-graph/factory.h"
#include <boost/foreach.hpp>
#include "dynamic-graph/debug.h"
using namespace std;
using namespace dynamicgraph;
namespace dynamicgraph {
FactoryStorage *FactoryStorage::getInstance() {
if (instance_ == 0) {
instance_ = new FactoryStorage;
}
return instance_;
}
void FactoryStorage::destroy() {
delete instance_;
instance_ = NULL;
}
FactoryStorage::FactoryStorage() : entityMap() {}
FactoryStorage::~FactoryStorage() {
instance_ = 0;
dgDEBUGINOUT(25);
}
void FactoryStorage::registerEntity(const std::string &entname,
FactoryStorage::EntityConstructor_ptr ent) {
dgDEBUGIN(25);
if (existEntity(entname)) {
DG_THROW ExceptionFactory(
ExceptionFactory::OBJECT_CONFLICT,
"Another entity class already defined with the same name. ",
"(while adding entity class <%s> inside the factory).",
entname.c_str());
dgERRORF(
"Another entity class already defined with the same name. "
"(while adding entity class <%s> inside the factory).",
entname.c_str());
} else {
if (!ent) {
// FIXME: we should have a better error code for that.
DG_THROW ExceptionFactory(ExceptionFactory::OBJECT_CONFLICT,
"Bad entity constructor.");
}
dgDEBUG(30) << "Register entity <" << entname << "> in the factory."
<< std::endl;
entityMap[entname] = ent;
}
dgDEBUGOUT(25);
}
void FactoryStorage::deregisterEntity(const std::string &entname) {
dgDEBUGIN(25);
if (!existEntity(entname)) {
DG_THROW ExceptionFactory(
ExceptionFactory::OBJECT_CONFLICT, "Entity class not defined yet. ",
"(while removing entity class <%s>).", entname.c_str());
dgERRORF(ExceptionFactory::OBJECT_CONFLICT,
"Entity class not defined yet. "
"(while removing entity class <%s>).",
entname.c_str());
} else {
dgDEBUG(30) << "Deregister entity <" << entname << "> from the factory."
<< std::endl;
entityMap.erase(entname);
}
dgDEBUGOUT(25);
}
Entity *FactoryStorage::newEntity(const std::string &classname,
const std::string &objname) const {
dgDEBUG(15) << "New <" << classname << ">Entity <" << objname << ">"
<< std::endl;
EntityMap::const_iterator entPtr = entityMap.find(classname);
if (entPtr == entityMap.end()) {
DG_THROW ExceptionFactory(
ExceptionFactory::UNREFERED_OBJECT, "Unknown entity.",
" (while calling new_entity <%s>)", classname.c_str());
}
return entPtr->second(objname);
}
// This checks efficiently if a key exists in an STL map using the
// approach suggested by Scott Meyer's Effective STL (item 24).
bool FactoryStorage::existEntity(const std::string &name) const {
EntityMap::const_iterator lb = entityMap.lower_bound(name);
return lb != entityMap.end() && !(entityMap.key_comp()(name, lb->first));
}
// FIXME: this should be removed at some point.
void FactoryStorage::listEntities(std::vector<std::string> &outList) const {
typedef std::pair<std::string, EntityConstructor_ptr> iter_t;
BOOST_FOREACH (const iter_t &entity, entityMap)
outList.push_back(entity.first);
}
EntityRegisterer::EntityRegisterer(const std::string &entityClassName,
FactoryStorage::EntityConstructor_ptr maker)
: entityName(entityClassName) {
dgDEBUGIN(15);
FactoryStorage::getInstance()->registerEntity(entityClassName, maker);
dgDEBUGOUT(15);
}
EntityRegisterer::~EntityRegisterer() {
dgDEBUGIN(15);
FactoryStorage::getInstance()->deregisterEntity(entityName);
dgDEBUGOUT(15);
}
// The global factory.
FactoryStorage *FactoryStorage::instance_ = NULL;
} // end of namespace dynamicgraph.
|
fdc95007eb91fb976e40516e3d6514c61fb794c3 | c51febc209233a9160f41913d895415704d2391f | /library/ATF/tagDBCOLUMNDESC.hpp | 4d50d7a92dd739d4cdd52cf29a0fde58cbebc4c6 | [
"MIT"
] | permissive | roussukke/Yorozuya | 81f81e5e759ecae02c793e65d6c3acc504091bc3 | d9a44592b0714da1aebf492b64fdcb3fa072afe5 | refs/heads/master | 2023-07-08T03:23:00.584855 | 2023-06-29T08:20:25 | 2023-06-29T08:20:25 | 463,330,454 | 0 | 0 | MIT | 2022-02-24T23:15:01 | 2022-02-24T23:15:00 | null | UTF-8 | C++ | false | false | 674 | hpp | tagDBCOLUMNDESC.hpp | // This file auto generated by plugin for ida pro. Generated code only for x64. Please, dont change manually
#pragma once
#include <common/common.h>
#include <ITypeInfo.hpp>
#include <_GUID.hpp>
#include <tagDBID.hpp>
#include <tagDBPROPSET.hpp>
START_ATF_NAMESPACE
#pragma pack(push, 8)
struct tagDBCOLUMNDESC
{
wchar_t *pwszTypeName;
ITypeInfo *pTypeInfo;
tagDBPROPSET *rgPropertySets;
_GUID *pclsid;
unsigned int cPropertySets;
unsigned __int64 ulColumnSize;
tagDBID dbcid;
unsigned __int16 wType;
char bPrecision;
char bScale;
};
#pragma pack(pop)
END_ATF_NAMESPACE
|
d37d919d2a24260e93a2893735ee958b2cedd392 | 40305d622b8a9b7c73000611a1aefc6277e281b0 | /latest_code_22.ino | b8fde99b8170213a1027a8cc96ebbabe7fb3a7e0 | [] | no_license | AmnaRasheed/FYP | 279aeedc216319c43e6484adec20c4d1a5b7a52a | d9a53f08965f3280349ca1b1c623f566d3a6c2c0 | refs/heads/master | 2021-05-09T12:30:45.736619 | 2018-01-26T06:28:59 | 2018-01-26T06:28:59 | 119,014,512 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,282 | ino | latest_code_22.ino | #include <SPI.h>
#include <SD.h>
#include <Wire.h>
#include <TinyGPS.h>
#include <SoftwareSerial.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_ADXL345_U.h>
Adafruit_ADXL345_Unified accel = Adafruit_ADXL345_Unified(12345);
File myFile;
const int chipSelect = 4; //This is for storage card
float x=0;
float y=0;
float z=0;
float a=0;
float acceleration;
float offset=9.8;
float b[10]={};
int c=0;
int d=0;
float height;
float base=0.01;
float Area=0;
float S=0;
float M=0;
float Km=0;
float e=0;
const float alpha = 0.5;
double fXg = 0;
double fYg = 0;
double fZg = 0;
SoftwareSerial GPS(2,3);
TinyGPS gps;
void gpsdump(TinyGPS &gps);
bool feedgps();
void getGPS();
long lat, lon;
float LAT, LON;
void setup() {
Serial.begin(9600);
GPS.begin(9600);
Serial.println("Accelerometer Test"); Serial.println(""); //This is to check Accelerometers Connections.
if(!accel.begin()) //If connections are not correct.
{
Serial.println("no ADXL345 detected ... Check your wiring!");
while(1);
}
Serial.println("ADXL345 detected"); Serial.println();
if (!SD.begin(chipSelect)) { // Check for SD card.
Serial.println("Card failed, or not present");
return;
}
Serial.println("card initialized.");
}
void loop() {
//Code for accelerometer
sensors_event_t event;
accel.getEvent(&event); //Funtion To get Acceleration across three axis.
x=event.acceleration.x; //acceleration accross x-axis.
y=event.acceleration.y; //acceleration accross y-axis.
z=event.acceleration.z; //acceleration accross z-axis.
a=sqrt(sq (x)+ sq (y)+ sq (z)); //Taking Magnitude of Acceleration of three axis.
acceleration=a-offset; //Removing Offset.
b[c]=acceleration; //Assigning the values in array.
c=c+1; //counter for 30 values.
if (c==10)
{
for(d=0;d<10;d++) //loop to compare the values.
{
if(b[d]<b[d+1])
{
height = b[d+1]-b[d]; //x2-x1
}
else{
height= b[d]-b[d+1]; //x2-x1
}
Area=(base*height)/2;
S=S+Area;
}
c = 0;
e=S*base;
double pitch, roll, yaw , Xg, Yg, Zg;
fXg = Xg * alpha + (fXg * (1.0 - alpha));
fYg = Yg * alpha + (fYg * (1.0 - alpha));
fZg = Zg * alpha + (fZg * (1.0 - alpha));
roll = (atan2(-fYg, fZg)*180.0)/M_PI;
pitch = (atan2(fXg, sqrt(fYg*fYg + fZg*fZg))*180.0)/M_PI;
yaw = (atan2(fZg, sqrt(fXg*fXg + fZg*fZg))*180.0)/M_PI;
Serial.print(yaw);
Serial.print(" ");
Serial.print(pitch);
Serial.print(" ");
Serial.println(roll);
Serial.print("x= ");
Serial.print(x);
Serial.print(" y= ");
Serial.print(y);
Serial.print(" z=");
Serial.print(z);
Serial.print(" Acc=");
Serial.print(acceleration);
Serial.print(" Speed=");
Serial.println(S);
delay(10);
//Code for GPS
long lat, lon;
unsigned long fix_age, time, date, speed, course;
unsigned long chars;
unsigned short sentences, failed_checksum;
// retrieves +/- lat/long in 100000ths of a degree
gps.get_position(&lat, &lon, &fix_age);
getGPS();
Serial.print("Lat : ");
Serial.print(LAT/100000,5);
Serial.print(" Long : ");
Serial.println(LON/100000,5);
//code for SD card
File dataFile = SD.open("Spd.txt", FILE_WRITE);
if (dataFile) {
dataFile.println(S);
dataFile.close();
}
}
}
void getGPS(){
bool newdata = false;
unsigned long start = millis();
// Every 1 seconds we print an update
while (millis() - start < 1000)
{
if (feedgps ()){
newdata = true;
}
}
if (newdata)
{
gpsdump(gps);
}
}
bool feedgps(){
while (GPS.available())
{
if (gps.encode(GPS.read()))
return true;
}
return 0;
}
void gpsdump(TinyGPS &gps)
{
//byte month, day, hour, minute, second, hundredths;
gps.get_position(&lat, &lon);
LAT = lat;
LON = lon;
{
feedgps(); // If we don't feed the gps during this long routine, we may drop characters and get checksum errors
}
}
|
3a50f5ebddb555a4d7f22be4c5f1dade04b2b867 | 757739d7542a6586fb2d4dca8044f462e345ba92 | /bai1/tinhtong1/tinhsofibonaxi.cpp | 2b4d4372a7c8731ca379d5f62ffe73c2d86032e2 | [] | no_license | nguyenducquyenKMA/bai-tap-kit-c17 | aff7c182a9e9858a9f487202493a690cb018b9d6 | 3fc5c9accea132dcd3a9f19a87a3c4445bf02121 | refs/heads/main | 2023-09-05T19:18:41.503964 | 2021-11-17T13:32:39 | 2021-11-17T13:32:39 | 429,050,289 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 287 | cpp | tinhsofibonaxi.cpp | #include<stdio.h>
int fibonacci(int n) {
if (n < 0) {
return -1;
} else if (n == 0 || n == 1) {
return n;
} else {
return fibonacci(n - 1) + fibonacci(n - 2);
}
}
int main() {
int i;
int n;
scanf("%d",&n);
printf("%d ", fibonacci(n));
} |
52f2ac78f6a93c8883dfa63acea26e85e623cfc9 | e4c432f43fb1711d7307a25d5bc07f64e26ae9de | /zysoft/src/network/Timer.h | cff8870f66321242bece8b32379f0604a265d85b | [] | no_license | longshadian/zylib | c456dc75470f9c6512a7d63b1182cb9eebcca999 | 9fde01c76a1c644d5daa46a645c8e1300e72c5bf | refs/heads/master | 2021-01-22T23:49:11.912633 | 2020-06-16T09:13:50 | 2020-06-16T09:13:50 | 85,669,581 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 262 | h | Timer.h | #pragma once
#include <memory>
#include <boost/asio.hpp>
namespace network
{
using TimerPtr = std::shared_ptr<boost::asio::steady_timer>;
void TimerCancel(TimerPtr timer)
{
boost::system::error_code ec;
timer->cancel(ec);
}
} // namespace network
|
c4ca4aa636d654298a36c201d1c28ba868b33116 | 9973808d683a77b2c831d24f3f125913f715da58 | /str_set/소스.cpp | f13a0bc95744f79debba95466204f60b330b6007 | [] | no_license | BumBamBi/C | 83639c8ded68beb423a0178ee472b20f017c16a3 | 8973295e3d853d394caae48c7ba929a0e075a7b5 | refs/heads/master | 2022-12-04T17:54:51.983358 | 2020-08-26T07:04:46 | 2020-08-26T07:04:46 | 290,123,523 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 548 | cpp | 소스.cpp | #include<stdio.h>
void strtok(char *p, char(*pp)[10])
{
int n = 1;
int i = 0;
int j = 0;
while (*p != NULL)
{
if (n == 1)
{
if (*p == 32 || *p == 44 || *p == 9)
{
p++;
j = 0;
i++;
n = 0;
}
else
{
pp[i][j] = *p;
p++;
j++;
n = 1;
}
}
if (n == 0)
{
if (*p == 32 || *p == 44 || *p == 9)
{
p++;
n = 0;
}
else
{
pp[i][j] = *p;
p++;
j++;
n = 1;
}
}
}
}
int main()
{
char a[] = "aaa,bbb,,ccc,,,ddd";
char b[10][10] = {};
strtok(a, b);
} |
b486f221bcee78cd2e8b560b8ceb7498f68fb5cd | 59ea12023da4a0b23d86498f1ea839917116885a | /rpc/2020/rpc01/local2019Data/solutions/bed/bed.cpp | 14da6326382d7353269cb5635deba612d13fc8f0 | [] | no_license | electricpants01/ACMicpc-contest | 2da6403080d7669f391be255e038909686c46c9d | 2fb6a23b9a88f8bbf4a8223525d1aaa1d7724310 | refs/heads/master | 2022-02-14T07:52:50.112624 | 2022-01-30T15:15:14 | 2022-01-30T15:15:14 | 131,452,331 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 919 | cpp | bed.cpp | // Arup Guha
// 8/15/2019
// C++ Solution to 2019 UCF Locals Problem: Fitting on the Bed
#include <iostream>
#include <math.h>
// Different than a normal epsilon, but gives us plenty of tolerance as the data spec allows.
#define EPS 0.001
using namespace std;
int main() {
// Get bed and Anya sizes.
int bedLength, bedWidth, anyaHeight;
cin >> bedLength >> bedWidth >> anyaHeight;
// Get Anya's location and orientation.
int x, y, angle;
cin >> x >> y >> angle;
double angleRad = angle*acos(-1)/180;
// This is where Anya's feet are.
double feetX = x + anyaHeight*cos(angleRad);
double feetY = y + anyaHeight*sin(angleRad);
// Since we're dealing with a rectangle, we can just check her feet.
if (feetX > -EPS && feetX < bedWidth+EPS && feetY > -EPS && feetY < bedLength+EPS)
cout << "YES" << endl;
else
cout << "NO" << endl;
return 0;
}
|
c50fdbb1a48f8004d6329d7ba62dd839a5f57336 | 7fed9a85b30ac68b38592e6e78ed5320e4516170 | /greetings.cpp | decfab8300e47c09f9a40111a225eaefd6e84664 | [] | no_license | w0178837/Lynda_1 | 87fc25cd21b783a5ba50c13df9d01898b67ed833 | 69214b591ce050402ae25a0cc2a40ee88cabc4e1 | refs/heads/master | 2021-06-26T22:49:19.230846 | 2017-09-16T14:52:04 | 2017-09-16T14:52:04 | 103,756,298 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 144 | cpp | greetings.cpp | //
// Created by inet2005 on 9/16/17.
//
#include <iostream>
using namespace std;
int main()
{
// todo insert code here
return 0;
}
|
07a49267957e5fedc95d89de00be8f08e1f0356d | a960a6f85a2541b57389e6d37f27019aa16120c0 | /test/curlcurl-discretization.cc | 121da3812d45c7c2e3666fd8696d48204e96e8cb | [
"BSD-2-Clause"
] | permissive | BarbaraV/dune-gdt | 979bbaa69bc812a3e4f08b88e6463486c8e46ca0 | 44413f8c7e167f6eb0886922b50e7ac600c463b9 | refs/heads/master | 2020-04-06T03:52:22.659412 | 2016-06-21T13:10:43 | 2016-06-21T13:10:43 | 33,928,798 | 0 | 1 | null | 2015-04-14T11:53:25 | 2015-04-14T11:53:24 | null | UTF-8 | C++ | false | false | 29,915 | cc | curlcurl-discretization.cc | // This file is part of the dune-gdt project:
// http://users.dune-project.org/projects/dune-gdt
// Copyright holders: Felix Schindler
// License: BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)
#include "config.h"
#include <iostream>
#include <vector>
#include <string>
#include <dune/common/parallel/mpihelper.hh>
#include <dune/grid/alugrid.hh>
#include <dune/stuff/functions/global.hh>
#include <dune/stuff/functions/constant.hh>
#include <dune/stuff/functions/expression.hh>
#include <dune/stuff/grid/provider/cube.hh>
#include <dune/stuff/grid/periodicview.hh>
#include <dune/gdt/products/l2.hh>
#include <dune/gdt/products/hcurl.hh>
#include "curlcurldiscretization.hh"
// ------------------------------------------------------------------------
#include <dune/fem/gridpart/periodicgridpart/periodicgridpart.hh>
#include <dune/fem/misc/mpimanager.hh>
#include <dune/gdt/products/h1.hh>
#include <dune/gdt/discretefunction/prolonged.hh>
#include "hmm-discretization.hh"
// ------------------------------------------------------------------------
using namespace Dune;
int main(int argc, char** argv) {
//instantiate mpimanager
Fem::MPIManager::initialize(argc, argv);
// some typedefs
typedef Dune::ALUGrid< 3, 3, simplex, conforming > GridType;
typedef GridType::LeafGridView LeafGridView;
typedef LeafGridView::Codim< 0 >::Entity EntityType;
typedef Stuff::Functions::Expression< EntityType, double, 3, double, 3 > ExpressionFct;
typedef Stuff::Functions::Expression< EntityType, double, 3, double, 1 > ExpressionFctScalar;
typedef Stuff::Functions::Constant< EntityType, double, 3, double, 1 > ConstantFct;
typedef Stuff::Functions::Constant< EntityType, double, 3, double, 3> VectorFct;
typedef std::complex< double > complextype;
const ConstantFct one(1.0);
try{
//=============================================================================================================================================================
//test direct discretization of curl-curl-problem
//=============================================================================================================================================================
/*
//instantiate grid
unsigned int num_cubes = 6;
Stuff::Grid::Providers::Cube< GridType > grid_provider(0.0, 1.0, num_cubes);
auto leafView = grid_provider.grid().leafGridView();
//define functions
const ExpressionFct expsol_direct("x", {"sin(pi*x[1])*sin(pi*x[2])", "sin(pi*x[0])*sin(pi*x[2])", "sin(pi*x[0])*sin(pi*x[1])"}, 2, "expectedsolution",
{{"0", "pi*cos(pi*x[1])*sin(pi*x[2])", "pi*sin(pi*x[1])*cos(pi*x[2])"},
{"pi*cos(pi*x[0])*sin(pi*x[2])", "0", "pi*sin(pi*x[0])*cos(pi*x[2])"},
{"pi*cos(pi*x[0])*sin(pi*x[1])", "pi*sin(pi*x[0])*cos(pi*x[1])", "0"}});
const double pi = 3.141592653589793;
const ConstantFct minusone(-1.0);
const ConstantFct realweight(2*pi*pi-1.0); //2*pi^2+minusone
const ConstantFct imagweight(1.0); //one
const Stuff::Functions::Product< ConstantFct, ExpressionFct > curl_freal(realweight, expsol_direct);
const Stuff::Functions::Product< ConstantFct, ExpressionFct > curl_fimag(imagweight, expsol_direct);
//expsol.visualize(leafView, "expectedsolution", false);
//discretization
DSG::BoundaryInfos::AllDirichlet< LeafGridView::Intersection > curl_bdry_info;
Discretization< LeafGridView, 1> realdiscr(leafView, curl_bdry_info, one, minusone, one, curl_freal, curl_fimag);
std::cout<< "assembling"<<std::endl;
realdiscr.assemble();
Dune::Stuff::LA::Container< complextype >::VectorType sol_direct;
std::cout<<"solving with bicgstab.diagonal"<<std::endl;
realdiscr.solve(sol_direct);
//realdiscr.visualize(sol_direct, "discrete_solution", "discrete_solution");
//make discrete function (absolute value)
typedef Discretization< LeafGridView, 1>::ConstDiscreteFunctionType ConstDiscreteFct;
Stuff::LA::Container< double >::VectorType solreal_direct(sol_direct.size());
solreal_direct.backend() = sol_direct.backend().cwiseAbs();
ConstDiscreteFct solasfunc(realdiscr.space(), solreal_direct, "solution_as_discrete_function");
//error computation
Stuff::Functions::Difference< ExpressionFct, ConstDiscreteFct > myerror(expsol_direct, solasfunc);
std::cout<< "error computation"<<std::endl;
GDT::Products::L2< LeafGridView> l2_product_operator(leafView);
GDT::Products::HcurlSemi< LeafGridView > hcurl_product_operator(leafView);
const double abserror = std::sqrt(l2_product_operator.apply2(myerror, myerror) + hcurl_product_operator.apply2(myerror, myerror));
const double relerror = abserror/(std::sqrt(l2_product_operator.apply2(expsol_direct, expsol_direct) + hcurl_product_operator.apply2(expsol_direct, expsol_direct)));
std::cout<< "absolute error: "<< abserror << std::endl;
std::cout<< "relative error: "<< relerror <<std::endl;
*/
//=======================================================================================================================================================================
// HMM Discretization
//=======================================================================================================================================================================
//some general typedefs
typedef Fem::PeriodicLeafGridPart< GridType> PeriodicGridPartType;
typedef Fem::PeriodicLeafGridPart< GridType >::GridViewType PeriodicViewType;
typedef PeriodicViewType::Codim< 0 >::Entity PeriodicEntityType;
typedef Stuff::Functions::Expression< PeriodicEntityType, double, 3, double, 1 > PerScalarExpressionFct;
typedef Stuff::Functions::Constant< PeriodicEntityType, double, 3, double, 1> PerConstFct;
//======================================================================================================================================================================
// Test Case 1: Academic Testscase (with analytical solution)
//======================================================================================================================================================================
//parameters
const PerScalarExpressionFct hetep("x", "1/(2+cos(2*pi*x[0]))", 0, "periodic_permittivity");
const PerScalarExpressionFct hetkappa_real("x", "-(2+cos(2*pi*x[0]))/(9+4*cos(2*pi*x[0])+4*sin(2*pi*x[0]))", 0, "periodic_kappa_real");
const PerScalarExpressionFct hetkappa_imag("x", "(2+sin(2*pi*x[0]))/(9+4*cos(2*pi*x[0])+4*sin(2*pi*x[0]))", 0, "periodic_kappa_imag");
const PerConstFct divparam(0.01);
const PerConstFct stabil(0.0001);
//rhs
const ExpressionFct freal("x", {"(pi*pi-0.25)*sin(pi*x[1])*sin(pi*x[2])", "(pi*pi*(0.5+1/sqrt(3))-0.25)*sin(pi*x[0])*sin(pi*x[2])",
"(pi*pi*(0.5+1/sqrt(3))-0.25)*sin(pi*x[0])*sin(pi*x[1])"}, 2, "real_rhs");
const ExpressionFct fimag("x", {"0.25*sin(pi*x[1])*sin(pi*x[2])", "0.25*sin(pi*x[0])*sin(pi*x[2])", "0.25*sin(pi*x[0])*sin(pi*x[1])"}, 2, "imag_rhs");
//analytical solutions
const ExpressionFct expsol("x", {"sin(pi*x[1])*sin(pi*x[2])", "sin(pi*x[0])*sin(pi*x[2])", "sin(pi*x[0])*sin(pi*x[1])"}, 1, "expectedsolution",
{{"0", "pi*cos(pi*x[1])*sin(pi*x[2])", "pi*sin(pi*x[1])*cos(pi*x[2])"},
{"pi*cos(pi*x[0])*sin(pi*x[2])", "0", "pi*sin(pi*x[0])*cos(pi*x[2])"},
{"pi*cos(pi*x[0])*sin(pi*x[1])", "pi*sin(pi*x[0])*cos(pi*x[1])", "0"}});
const ExpressionFct expsol_curl("x", {"pi*sin(pi*x[0])*(cos(pi*x[1])-cos(pi*x[2]))", "pi*sin(pi*x[1])*(cos(pi*x[2])-cos(pi*x[0]))", "pi*sin(pi*x[2])*(cos(pi*x[0])-cos(pi*x[1]))"},
1, "expectedsolution_curl");
const ExpressionFct curl_cell_two("x", {"0", "0", "-1/(4*pi)*sin(2*pi*x[0])"}, 1, "expected_cellsol_two",
{{"0", "0", "0"},
{"0", "0", "0"},
{"-1/2*cos(2*pi*x[0])", "0", "0"}});
const ExpressionFct curl_cell_three("x", {"0", "1/(4*pi)*sin(2*pi*x[0])", "0"}, 1, "expected_cellsol_three",
{{"0", "0", "0"},
{"1/2*cos(2*pi*x[0])", "0", "0"},
{"0", "0", "0"}});
const ExpressionFct zero_expr_vec("x", {"0", "0", "0"}, 0, "zerofunction", {{"0", "0", "0"}, {"0", "0", "0"}, {"0", "0", "0"}});
const ExpressionFctScalar zero_expr_sca("x", "0", 0, "zerofunction", {"0", "0", "0"});
const ExpressionFctScalar id_cell_one_real("x", "1/(8*pi)*(sin(2*pi*x[0])-cos(2*pi*x[0]))", 1, "real_part_first_cell_solution_id",
{"1/4*(cos(2*pi*x[0])+sin(2*pi*x[0]))", "0", "0"});
const ExpressionFctScalar id_cell_one_imag("x", "-1/(8*pi)*(sin(2*pi*x[0])+cos(2*pi*x[0]))", 1, "imag_part_first_cell_solution_id",
{"-1/4*(cos(2*pi*x[0])-sin(2*pi*x[0]))", "0", "0"});
//expsol.visualize(macro_leafView, "expected_homogenized_solution", false);
//expected correctors
std::vector< ExpressionFct > expected_solution_total({expsol, zero_expr_vec});
std::vector< ExpressionFctScalar > expected_cell_id_one({id_cell_one_real, id_cell_one_imag});
std::vector< ExpressionFctScalar > expected_cell_id_others({zero_expr_sca, zero_expr_sca});
std::vector< std::vector< ExpressionFctScalar > > expected_cell_id({expected_cell_id_one, expected_cell_id_others, expected_cell_id_others});
std::vector< ExpressionFct > expected_curl({expsol_curl, zero_expr_vec});
std::vector< ExpressionFct > exp_curl_cell_one({zero_expr_vec, zero_expr_vec});
std::vector< ExpressionFct > exp_curl_cell_two({curl_cell_two, zero_expr_vec});
std::vector< ExpressionFct > exp_curl_cell_three({curl_cell_three, zero_expr_vec});
std::vector< std::vector< ExpressionFct > > expected_curl_cell({exp_curl_cell_one, exp_curl_cell_two, exp_curl_cell_three});
//reference solution
//reference grid
unsigned int num_ref_cubes = 24;
Stuff::Grid::Providers::Cube< GridType > grid_provider(0.0, 1.0, num_ref_cubes);
auto ref_leafView = grid_provider.grid().leafGridView();
//delta dependent parameters
//delta=1/5
double delta = 1.0/5.0;
const ExpressionFctScalar hetepdelta("x", "1/(2+cos(2*pi*x[0]*5))", 0, "periodic_permittivity_delta");
const ExpressionFctScalar hetkappa_real_delta("x", "-(2+cos(2*pi*x[0]*5))/(9+4*cos(2*pi*x[0]*5)+4*sin(2*pi*x[0]*5))", 0, "periodic_kappa_real_delta");
const ExpressionFctScalar hetkappa_imag_delta("x", "(2+sin(2*pi*x[0]*5))/(9+4*cos(2*pi*x[0]*5)+4*sin(2*pi*x[0]*5))", 0, "periodic_kappa_imag_delta");
DSG::BoundaryInfos::AllDirichlet< LeafGridView::Intersection > curl_bdry_info;
Discretization< LeafGridView, 1> refdiscr(ref_leafView, curl_bdry_info, hetepdelta, hetkappa_real_delta, hetkappa_imag_delta, freal, fimag);
std::cout<< "number of entities " << ref_leafView.size(0)<<std::endl;
std::cout<< "number macro dofs " << refdiscr.space().mapper().size()<<std::endl;
std::cout<< "assembling" << std::endl;
refdiscr.assemble();
Dune::Stuff::LA::Container< complextype >::VectorType sol_ref;
std::cout<< "solving with bicgstab.diagonal" << std::endl;
//refdiscr.solve(sol_ref);
typedef Dune::Stuff::LA::Solver< Discretization< LeafGridView, 1>::MatrixTypeComplex > SolverType;
Dune::Stuff::Common::Configuration options = SolverType::options("bicgstab.diagonal");
options.set("max_iter", "200000", true);
SolverType solver(refdiscr.system_matrix());
solver.apply(refdiscr.rhs_vector(), sol_ref, options);
//make discrete functions
Discretization< LeafGridView, 1>::VectorType solrefreal(sol_ref.size());
solrefreal.backend() = sol_ref.backend().real();
Discretization< LeafGridView, 1>::VectorType solrefimag(sol_ref.size());
solrefimag.backend() = sol_ref.backend().imag();
std::vector< Discretization< LeafGridView, 1>::DiscreteFunctionType > sol_ref_func({Discretization< LeafGridView, 1 >::DiscreteFunctionType(refdiscr.space(), solrefreal),
Discretization< LeafGridView, 1>::DiscreteFunctionType(refdiscr.space(), solrefimag)});
//refdiscr.visualize(sol_ref, "discrete_solution", "discrete_solution");
for(unsigned int num_macro_cubes : {4}) {
//macro grid
Stuff::Grid::Providers::Cube< GridType > macro_grid_provider(0.0, 1.0, num_macro_cubes);
auto macro_leafView = macro_grid_provider.grid().leafGridView();
//micro grid
unsigned int num_micro_cubes = num_macro_cubes/2;
Stuff::Grid::Providers::Cube< GridType > cell_grid_provider(0.0, 1.0, num_micro_cubes);
auto& cell_grid = cell_grid_provider.grid();
//HMM
DSG::BoundaryInfos::AllDirichlet< LeafGridView::Intersection > bdry_info;
typedef CurlHMMDiscretization< LeafGridView, GridType, 1 > CurlHMMType;
CurlHMMType curlHMM(macro_leafView, cell_grid, bdry_info, hetep, hetkappa_real, hetkappa_imag, freal, fimag, divparam, stabil, one, one, one, true);
std::cout<< "hmm assembly for " << num_macro_cubes<< " cubes per dim on macro grid and "<< num_micro_cubes<< " cubes per dim on the micro grid"<< std::endl;
curlHMM.assemble();
std::cout<< "hmm solving" <<std::endl;
Dune::Stuff::LA::Container< complextype >::VectorType sol_hmm;
curlHMM.solve(sol_hmm);
CurlHMMType::RealVectorType solreal_hmm(sol_hmm.size());
solreal_hmm.backend() = sol_hmm.backend().real();
//CurlHMMType::DiscreteFunctionType sol_real_func(curlHMM.space(), solreal_hmm, "solution_real_part");
//sol_real_func.visualize("hmm_solution_12_6_real");
typedef GDT::ProlongedFunction< CurlHMMType::DiscreteFunctionType, LeafGridView > ProlongedDiscrFct;
typedef Stuff::Functions::Difference< ExpressionFct, CurlHMMType::DiscreteFunctionType > DifferenceFct;
typedef Stuff::Functions::Difference< ExpressionFct, ProlongedDiscrFct > ProlongedDifferenceFct;
std::cout<< "corrector computation" <<std::endl;
CurlHMMType::DiscreteFunctionType macro_sol(curlHMM.space(), solreal_hmm);
std::vector< CurlHMMType::DiscreteFunctionType > macro_solution(2, macro_sol);
typedef Dune::GDT::PeriodicCorrector< CurlHMMType::DiscreteFunctionType, CurlHMMType::CurlCellDiscreteFctType > CurlCorrectorType;
typedef Dune::GDT::PeriodicCorrector< CurlHMMType::DiscreteFunctionType, CurlHMMType::EllCellDiscreteFctType > IdCorrectorType;
std::pair< CurlCorrectorType, IdCorrectorType > correctors(curlHMM.solve_and_correct(macro_solution));
//errors to the analytical solution
typedef Stuff::Functions::Difference< ExpressionFct, CurlHMMType::DiscreteFunctionType > DifferenceFct;
DifferenceFct error_real(expsol, macro_solution[0]);
DifferenceFct error_imag(zero_expr_vec, macro_solution[1]);
std::cout<< "compute macro error" <<std::endl;
GDT::Products::L2< LeafGridView> l2_product_operator_macro(macro_leafView);
GDT::Products::HcurlSemi< LeafGridView > hcurl_product_operator_macro(macro_leafView);
const double abserror_hcurl = std::sqrt(l2_product_operator_macro.apply2(error_real, error_real) + hcurl_product_operator_macro.apply2(error_real, error_real)
+ l2_product_operator_macro.apply2(error_imag, error_imag) + hcurl_product_operator_macro.apply2(error_imag, error_imag));
//const double relerror = abserror_hcurl/(std::sqrt(l2_product_operator_macro.apply2(expsol, expsol) + hcurl_product_operator_macro.apply2(expsol, expsol)));
std::cout<< "absolute error in Hcurl norm: "<< abserror_hcurl << std::endl;
std::cout<< "absolute error in L2 norm: " <<std::sqrt(l2_product_operator_macro.apply2(error_real, error_real)
+ l2_product_operator_macro.apply2(error_imag, error_imag))<<std::endl;
//std::cout<< "relative error: "<< relerror <<std::endl;
//corrector errors
std::cout<< "computing corrector errors"<<std::endl;
std::cout<< "error of id corrector: "<< curlHMM.corrector_error(expected_solution_total, expected_cell_id, correctors.second, "id")<<std::endl;
std::cout<< "error of curl corrector: "<< curlHMM.corrector_error(expected_curl, expected_curl_cell, correctors.first, "curl")<<std::endl;
//prolongation for Helmholtz decomsposition on grid with one global refinement
Stuff::Grid::Providers::Cube< GridType > fine_grid_provider(0.0, 1.0, 2 * num_macro_cubes);
auto fine_leafView = fine_grid_provider.grid().leafGridView();
ProlongedDiscrFct prolonged_fine_real(macro_solution[0], fine_leafView);
ProlongedDiscrFct prolonged_fine_imag(macro_solution[1], fine_leafView);
ProlongedDifferenceFct prolonged_error_real(expsol, prolonged_fine_real);
ProlongedDifferenceFct prolonged_error_imag(zero_expr_vec, prolonged_fine_imag);
//Helmholtz decomposition
std::cout<<"computing Helmholtz decomposition macro grid with doubled cubes per dim" <<std::endl;
HelmholtzDecomp< LeafGridView, 1 > decomp_fine(fine_leafView, bdry_info, prolonged_error_real, prolonged_error_imag, one);
Dune::Stuff::LA::Container< complextype >::VectorType sol_helmholtz_fine;
decomp_fine.solve(sol_helmholtz_fine);
auto decomp_fine_vec_real = decomp_fine.create_vector();
auto decomp_fine_vec_imag = decomp_fine.create_vector();
decomp_fine_vec_real.backend() = sol_helmholtz_fine.backend().real();
decomp_fine_vec_imag.backend() = sol_helmholtz_fine.backend().imag();
//compute error of Helmholtz decomposition
typedef HelmholtzDecomp< LeafGridView, 1 >::DiscreteFctType DiscreteFctHelmh;
DiscreteFctHelmh phi_fine_real(decomp_fine.space(), decomp_fine_vec_real);
DiscreteFctHelmh phi_fine_imag(decomp_fine.space(), decomp_fine_vec_imag);
std::cout<< "L2 error of gradient part in Helmholtz decomposition (on the macro grid): "<< //why does that work?
std::sqrt(l2_product_operator_macro.apply2(phi_fine_real, phi_fine_real) + l2_product_operator_macro.apply2(phi_fine_imag, phi_fine_imag))<< std::endl;
//GDT::Products::L2< LeafGridView> l2_product_operator_fine(fine_leafView);
//std::cout<< "L2 error of gradient part in Helmholtz decomposition (on the fine grid): "<<
// std::sqrt(l2_product_operator_fine.apply2(phi_fine_real, phi_fine_real) + l2_product_operator_fine.apply2(phi_fine_imag, phi_fine_imag))<< std::endl;
//errors to reference solution
typedef Stuff::Functions::Difference< Discretization< LeafGridView, 1>::DiscreteFunctionType, ProlongedDiscrFct > RefDifferenceFct;
ProlongedDiscrFct prolonged_ref_real(macro_solution[0], ref_leafView);
ProlongedDiscrFct prolonged_ref_imag(macro_solution[1], ref_leafView);
RefDifferenceFct reference_error_real(sol_ref_func[0], prolonged_ref_real);
RefDifferenceFct reference_error_imag(sol_ref_func[1], prolonged_ref_imag);
std::cout<< "macroscopic errors on reference grid" <<std::endl;
Dune::GDT::Products::L2< LeafGridView > l2_product_operator_ref(ref_leafView);
Dune::GDT::Products::HcurlSemi< LeafGridView > curl_product_operator_ref(ref_leafView);
std::cout<< "L2 error: " << std::sqrt(l2_product_operator_ref.apply2(reference_error_real, reference_error_real)
+ l2_product_operator_ref.apply2(reference_error_imag, reference_error_imag)) <<std::endl;
std::cout<< "Hcurl seminorm "<< std::sqrt(curl_product_operator_ref.apply2(reference_error_real, reference_error_real)
+ curl_product_operator_ref.apply2(reference_error_imag, reference_error_imag)) <<std::endl;
std::cout<< "errors to zeroth order approximation" <<std::endl;
std::cout<< "l2: "<< curlHMM.reference_error(sol_ref_func, correctors.first, correctors.second, delta, "l2") <<std::endl;
std::cout<< "hcurl seminorm: "<< curlHMM.reference_error(sol_ref_func, correctors.first, correctors.second, delta, "hcurlsemi") <<std::endl;
//Helmholtz decomposition and its error for reference solution
std::cout<<"computing Helmholtz decomposition on reference grid" <<std::endl;
HelmholtzDecomp< LeafGridView, 1 > decomp_ref(ref_leafView, bdry_info, prolonged_error_real, prolonged_error_imag, one);
Dune::Stuff::LA::Container< complextype >::VectorType sol_helmholtz_ref;
decomp_ref.solve(sol_helmholtz_ref);
auto decomp_ref_vec_real = decomp_ref.create_vector();
auto decomp_ref_vec_imag = decomp_ref.create_vector();
decomp_ref_vec_real.backend() = sol_helmholtz_ref.backend().real();
decomp_ref_vec_imag.backend() = sol_helmholtz_ref.backend().imag();
//compute error of Helmholtz decomposition
typedef HelmholtzDecomp< LeafGridView, 1 >::DiscreteFctType DiscreteFctHelmh;
DiscreteFctHelmh phi_ref_real(decomp_ref.space(), decomp_ref_vec_real);
DiscreteFctHelmh phi_ref_imag(decomp_ref.space(), decomp_ref_vec_imag);
std::cout<< "L2 error of gradient part in Helmholtz decomposition (on the reference grid): "<<
std::sqrt(l2_product_operator_ref.apply2(phi_ref_real, phi_ref_real) + l2_product_operator_ref.apply2(phi_ref_imag, phi_ref_imag))<< std::endl;
/* //visualization
if (num_macro_cubes == 12) {
typedef Dune::GDT::DeltaCorrectorCurl< CurlHMMType::DiscreteFunctionType, CurlHMMType::CurlCellDiscreteFctType, CurlHMMType::EllCellDiscreteFctType > DeltaCorrectorType;
DeltaCorrectorType corrector_real(correctors.first.macro_function(), correctors.first.cell_solutions(), correctors.second.cell_solutions(), delta, "real");
DeltaCorrectorType corrector_imag(correctors.first.macro_function(), correctors.first.cell_solutions(), correctors.second.cell_solutions(), delta, "imag");
corrector_real.visualize(macro_leafView, "delta_corrector_12_real", false);
corrector_imag.visualize(macro_leafView, "delta_corrector_12_imag", false);
}
*/
}//end for loop
//=========================================================================================================================================================================
// Second Testcase from Cao, Zhang, Allegretto, Lin 2010 (Testcase 5.1.1)
//=========================================================================================================================================================================
/*
//delta =1/3
const double delta =1.0/3.0;
const ExpressionFctScalar hetmu("x", "20/((2+1.5*sin(2*pi*3*x[0]+0.75))*(2+1.5*sin(2*pi*3*x[1]+0.75))*(2+1.5*sin(2*pi*3*x[2]+0.75)))", 2, "oscillatingparam");
const ConstantFct minusone(-1.0);
const ConstantFct zero(0.0);
const PerConstFct divparam(0.01);
const PerConstFct stabil(0.0001);
const VectorFct zerovec(0.0);
const VectorFct freal(30.0);
//reference grid
unsigned int num_ref_cubes = 24;
Stuff::Grid::Providers::Cube< GridType > grid_provider(0.0, 1.0, num_ref_cubes);
auto ref_leafView = grid_provider.grid().leafGridView();
//reference solution
DSG::BoundaryInfos::AllDirichlet< LeafGridView::Intersection > curl_bdry_info;
Discretization< LeafGridView, 1> refdiscr(ref_leafView, curl_bdry_info, hetmu, minusone, zero, freal, zerovec);
std::cout<< "number of entities " << ref_leafView.size(0) <<std::endl;
std::cout<< "number macro dofs "<< refdiscr.space().mapper().size() <<std::endl;
std::cout<< "assembling"<<std::endl;
refdiscr.assemble();
Dune::Stuff::LA::Container< complextype >::VectorType sol_ref;
std::cout<< "solving with bicgstab.diagonal" <<std::endl;
typedef Dune::Stuff::LA::Solver< Discretization< LeafGridView, 1>::MatrixTypeComplex > SolverType;
Dune::Stuff::Common::Configuration options = SolverType::options("bicgstab.diagonal");
options.set("max_iter", "200000", true);
SolverType solver(refdiscr.system_matrix());
solver.apply(refdiscr.rhs_vector(), sol_ref, options);
//make discrete functions
Discretization< LeafGridView, 1>::VectorType solrefreal(sol_ref.size());
solrefreal.backend() = sol_ref.backend().real();
Discretization< LeafGridView, 1>::VectorType solrefimag(sol_ref.size());
solrefimag.backend() = sol_ref.backend().imag();
std::vector< Discretization< LeafGridView, 1>::DiscreteFunctionType > sol_ref_func({Discretization< LeafGridView, 1 >::DiscreteFunctionType(refdiscr.space(), solrefreal),
Discretization< LeafGridView, 1>::DiscreteFunctionType(refdiscr.space(), solrefimag)});
//refdiscr.visualize(sol_ref, "discrete_solution", "discrete_solution");
//HMM solution
const PerScalarExpressionFct muperiodic("x", "20/((2+1.5*sin(2*pi*x[0]+0.75))*(2+1.5*sin(2*pi*x[1]+0.75))*(2+1.5*sin(2*pi*x[2]+0.75)))", 0, "periodicparam");
for(unsigned int num_macro_cubes : {4}) {
//macro grid
Stuff::Grid::Providers::Cube< GridType > macro_grid_provider(0.0, 1.0, num_macro_cubes);
auto macro_leafView = macro_grid_provider.grid().leafGridView();
//micro grid
unsigned int num_micro_cubes = num_macro_cubes/2;
Stuff::Grid::Providers::Cube< GridType > cell_grid_provider(0.0, 1.0, num_micro_cubes);
auto& cell_grid = cell_grid_provider.grid();
//HMM
typedef CurlHMMDiscretization< LeafGridView, GridType, 1 > CurlHMMType;
CurlHMMType curlHMM(macro_leafView, cell_grid, curl_bdry_info, muperiodic, minusone, zero, freal, zerovec, divparam, stabil, one, one, zero);
std::cout<< "hmm assembly for " << num_macro_cubes << " cubes per dim on macro grid and "<< num_micro_cubes << " cubes per dim on the micro grid" << std::endl;
curlHMM.assemble();
std::cout<< "hmm solving" <<std::endl;
Dune::Stuff::LA::Container< complextype >::VectorType sol_hmm;
curlHMM.solve(sol_hmm);
CurlHMMType::RealVectorType solreal_hmm(sol_hmm.size());
solreal_hmm.backend() = sol_hmm.backend().real();
//CurlHMMType::DiscreteFunctionType sol_real_func(curlHMM.space(), solreal_hmm, "solution_real_part");
//sol_real_func.visualize("hmm_solution_real_12_6");
typedef GDT::ProlongedFunction< CurlHMMType::DiscreteFunctionType, LeafGridView > ProlongedDiscrFct;
typedef Stuff::Functions::Difference< ExpressionFct, CurlHMMType::DiscreteFunctionType > DifferenceFct;
typedef Stuff::Functions::Difference< ExpressionFct, ProlongedDiscrFct > ProlongedDifferenceFct;
std::cout<< "corrector computation" <<std::endl;
CurlHMMType::DiscreteFunctionType macro_sol(curlHMM.space(), solreal_hmm);
std::vector< CurlHMMType::DiscreteFunctionType > macro_solution(2, macro_sol);
typedef Dune::GDT::PeriodicCorrector< CurlHMMType::DiscreteFunctionType, CurlHMMType::CurlCellDiscreteFctType > CurlCorrectorType;
typedef Dune::GDT::PeriodicCorrector< CurlHMMType::DiscreteFunctionType, CurlHMMType::EllCellDiscreteFctType > IdCorrectorType;
std::pair< CurlCorrectorType, IdCorrectorType > correctors(curlHMM.solve_and_correct(macro_solution));
//error computation
typedef Stuff::Functions::Difference< Discretization< LeafGridView, 1>::DiscreteFunctionType, ProlongedDiscrFct > RefDifferenceFct;
ProlongedDiscrFct prolonged_ref_real(macro_solution[0], ref_leafView);
ProlongedDiscrFct prolonged_ref_imag(macro_solution[1], ref_leafView);
RefDifferenceFct reference_error_real(sol_ref_func[0], prolonged_ref_real);
RefDifferenceFct reference_error_imag(sol_ref_func[1], prolonged_ref_imag);
std::cout<< "macroscopic errors on reference grid"<<std::endl;
Dune::GDT::Products::L2< LeafGridView > l2_product_operator_ref(ref_leafView);
Dune::GDT::Products::HcurlSemi< LeafGridView > curl_product_operator_ref(ref_leafView);
std::cout<< "L2 error: " << std::sqrt(l2_product_operator_ref.apply2(reference_error_real, reference_error_real)
+ l2_product_operator_ref.apply2(reference_error_imag, reference_error_imag)) <<std::endl;
std::cout<< "Hcurl seminorm "<< std::sqrt(curl_product_operator_ref.apply2(reference_error_real, reference_error_real)
+ curl_product_operator_ref.apply2(reference_error_imag, reference_error_imag)) <<std::endl;
std::cout<< "errors to zeroth order approximation" <<std::endl;
std::cout<< "l2: "<< curlHMM.reference_error(sol_ref_func, correctors.first, correctors.second, delta, "l2") <<std::endl;
std::cout<< "hcurl seminorm: "<< curlHMM.reference_error(sol_ref_func, correctors.first, correctors.second, delta, "hcurlsemi") <<std::endl;
//Helmholtz decomposition
std::cout<<"computing Helmholtz decomposition on reference grid" <<std::endl;
HelmholtzDecomp< LeafGridView, 1 > decomp_ref(ref_leafView, curl_bdry_info, reference_error_real, reference_error_imag, one);
Dune::Stuff::LA::Container< complextype >::VectorType sol_helmholtz_ref;
decomp_ref.solve(sol_helmholtz_ref);
auto decomp_ref_vec_real = decomp_ref.create_vector();
auto decomp_ref_vec_imag = decomp_ref.create_vector();
decomp_ref_vec_real.backend() = sol_helmholtz_ref.backend().real();
decomp_ref_vec_imag.backend() = sol_helmholtz_ref.backend().imag();
//compute error of Helmholtz decomposition
typedef HelmholtzDecomp< LeafGridView, 1 >::DiscreteFctType DiscreteFctHelmh;
DiscreteFctHelmh phi_ref_real(decomp_ref.space(), decomp_ref_vec_real);
DiscreteFctHelmh phi_ref_imag(decomp_ref.space(), decomp_ref_vec_imag);
std::cout<< "L2 error of gradient part in Helmholtz decomposition (on the reference grid): "<<
std::sqrt(l2_product_operator_ref.apply2(phi_ref_real, phi_ref_real) + l2_product_operator_ref.apply2(phi_ref_imag, phi_ref_imag))<< std::endl;
}//end for loop
*/
}//end try block
catch(...) {
std::cout<< "something went wrong"<<std::endl;
}
return 0;
}
|
0c4556aaf644a1a825f584636eeaa6a388ba1c0d | 8c91968704c1526e8f78c383e62435f198142bd5 | /B-Mesh/TrialEdgeDensity.h | eab88ace2390943bbd5de6e0301c6afdf015488d | [] | no_license | Fearoht/mesh_generation | e7fdc08885b979de222a9b2827217e831a6b4e7a | e733901da1d30ae6b8b9eaab6b670a2f73b5b900 | refs/heads/main | 2023-05-12T12:57:31.897489 | 2021-06-12T08:23:35 | 2021-06-12T08:23:35 | 376,237,553 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,051 | h | TrialEdgeDensity.h | //
// TrialEdgeDensity.h
// B-Mesh
//
// Created by Bryan Gonzales Vega on 9/7/16.
// Copyright © 2016 Bryan Gonzales Vega. All rights reserved.
//
#ifndef TrialEdgeDensity_h
#define TrialEdgeDensity_h
#include "Trials.hpp"
#include "BMesh/Image.hpp"
#include "BMesh/Exporter.hpp"
#include "BMesh/Poisson2.hpp"
// #include "BMesh/Triangulation.hpp"
void edgeDensityTrial(TrialPointer trial, std::string path) {
double totalTime = 0.0;
#pragma mark - Image reading
brahand::Image image;
brahand::Profile<>::time("Opening " + trial->folderPath + trial->imageName, path, [&](){ image = brahand::Image(trial->folderPath + trial->imageName); });
brahand::VTKExport::grayImage(image, path, "image");
printf("ImageSize: %d %d %d\n", image.size.width, image.size.height, image.size.depth);
#pragma mark - Edges
brahand::Image edgesImage;
totalTime += brahand::Profile<>::time("Edges", path, [&](){ edgesImage = image.edges(trial->isovalues); });
brahand::IndicesArray edgeIndicesArray = edgesImage.features().first;
brahand::VTKExport::coordinates(edgeIndicesArray, image.size, path, "edgeCoordinates");
#pragma mark - Gradient Flux Skeleton
brahand::IndicesArray frameIndicesArray = edgesImage.addFrame();
brahand::IndicesArray gammaIndicesArray = edgesImage.features().second;
brahand::IndicesArray edgeWithFrameIndices(edgeIndicesArray, frameIndicesArray);
brahand::VTKExport::coordinates(edgeWithFrameIndices, image.size, path, "edgeWithFrameCoordinates");
brahand::Image skeletonImage; brahand::ImageWrapper<float> dt, fluxImage;
totalTime += brahand::Profile<>::time("Skeleton",path, [&](){
auto skel = edgesImage.jacobianSkeleton(dt, fluxImage, trial->blur, trial->flux);
skeletonImage = skel.first;
});
brahand::IndicesArray skeletonIndicesArray = skeletonImage.features().first;
brahand::VTKExport::coordinates(skeletonIndicesArray, image.size, path, "skeletonCoordinates");
printf("\n>> DT min: %f, max: %f\n",dt.imagePointer.minMax().first, dt.imagePointer.minMax().second);
printf("\n>> FLUX min: %f, max: %f\n",fluxImage.imagePointer.minMax().first, fluxImage.imagePointer.minMax().second);
fluxImage = fluxImage.normalize<float>(0, 255);
brahand::VTKExport::density(fluxImage, image.size, path, "fluxImage");
#pragma mark - Edge density
brahand::ImageWrapper<float> density;
totalTime += brahand::Profile<>::time("EdgeDensity",path, [&](){ density = image.edgeDensity(edgeWithFrameIndices,skeletonIndicesArray); });
printf("\n>> EDGE_DENSITY min: %f, max: %f\n",density.imagePointer.minMax().first, density.imagePointer.minMax().second);
brahand::VTKExport::density(density, edgeWithFrameIndices, image.size, path, "edgeDensity");
brahand::VTKExport::density(density, edgeIndicesArray, image.size, path, "edgeDensityWithoutFrame");
#pragma mark - Propagation
totalTime += brahand::Profile<>::time("Propagation", path, [&](){ brahand::Image::propagation(density, dt, edgeWithFrameIndices, trial->waveLength); });
brahand::ImageWrapper<float> normalizedDensity = density.normalize<float>(trial->minDensity, trial->maxDensity);
printf("\n>> DENSITY_MAP min: %f, max: %f\n",density.imagePointer.minMax().first, density.imagePointer.minMax().second);
printf("\n>> DENSITY_MAP_NORM min: %f, max: %f\n",normalizedDensity.imagePointer.minMax().first, normalizedDensity.imagePointer.minMax().second);
if( dt.size.depth == 1 ){
dt.save2DElevationMap(path, "elevationMap");
}
brahand::VTKExport::image<float>(dt, path, "dt");
brahand::VTKExport::image(density, path, "densityMap");
#pragma mark - Poisson sampling (edges)
brahand::Poisson sampler( image.size, normalizedDensity );
brahand::IndicesArray edgeSamples, frameSamples, samples;
totalTime += brahand::Profile<>::time("Edge Samples", path, [&](){ edgeSamples = sampler.sampling( edgeIndicesArray ); });
frameSamples = sampler.sampling( frameIndicesArray );
////#pragma mark - Maximal Poisson Sampling (edges)
//// edgeSamples = sampler.maximal( edgeIndicesArray, edgeSamples );
#pragma mark - Poisson sampling (interior)
totalTime += brahand::Profile<>::time("Samples",path, [&](){ samples = sampler.sampling( gammaIndicesArray ); });
////#pragma mark - Maximal Poisson Sampling (interior)
//// samples = sampler.maximal( gammaIndicesArray, samples );
//// samples = brahand::IndicesArray(samples, edgeSamples);
printf("Total samples: %d\n", samples.count);
brahand::VTKExport::coordinates(edgeSamples, image.size, path, "edgeSamples", normalizedDensity);
brahand::VTKExport::coordinates(frameSamples, image.size, path, "frameSamples", normalizedDensity);
brahand::VTKExport::coordinates(samples, image.size, path, "interiorSamples", normalizedDensity);
#pragma mark - Triangulation
Histogram interiorHistogram, edgeHistogram;
std::shared_ptr<CGALTriangulation> interiorTriangulation, edgeTriangulation;
totalTime += brahand::Profile<>::time("Triangulation",path, [&](){
if(image.size.depth == 1){
interiorTriangulation = std::make_shared<CGALTriangulation2D>( samples, image.size);
edgeTriangulation = std::make_shared<CGALTriangulation2D>( frameSamples, image.size);
} else {
interiorTriangulation = std::make_shared<CGALTriangulation3D>( samples, image.size);
edgeTriangulation = std::make_shared<CGALTriangulation3D>( frameSamples, image.size);
}
});
interiorHistogram = interiorTriangulation->generate(path, "interiorTriangulation", image);
edgeHistogram = edgeTriangulation->generate(path, "edgeTriangulation", image);
saveHistogram(path, "histogram.txt", edgeHistogram, interiorHistogram);
printf(">> Total time: %.3f sec\n", totalTime);
}
#endif /* TrialEdgeDensity_h */
|
01a9f601ecdbcefcd708dfe70536ad7e62e0e6b8 | 63e7cbad2dae483d93572c27b658a395057a4b31 | /src/libOptimize_NelderMead.c++ | b5b452e260bef037ef9d04b399fc16c262808fa3 | [] | no_license | debonet/Congealing | 13c9f1100531eb9491230c7652aba17a1c589a6c | 1a90ac78efb8e5dc30cc72e26c61ea6c3042eee4 | refs/heads/master | 2016-09-09T17:56:44.813853 | 2012-05-01T02:21:32 | 2012-05-01T02:21:32 | 1,536,220 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 7,857 | libOptimize_NelderMead.c++ | #include "libOptimize_NelderMead.h"
#include "libPGM.h"
#include "libUtility.h"
#include <float.h> // for DBL_MAX
#undef DEBUG
#define DEBUG 0
#include "libDebug.h"
//============================================================================
// based upon the discussion and terminology found in Wikipedia
// http://en.wikipedia.org/wiki/Nelder-Mead_method
//============================================================================
Parameter NelderMeadOptimize(
int cDimensions,
Parameter* vrParamMin,
Parameter* vrInitialScale,
Parameter fxnEval(const Parameter*, const Parameter& rErrMin, const void*),
const void* pData,
Real rErrThreshold,
int cIterations
){
int cPoints = cDimensions+1;
Parameter** vvrParam = new Parameter* [cPoints];
Parameter* vrErr = new Parameter [cPoints];
Parameter* vrParamCentroid = new Parameter [cDimensions];
Parameter* vrParamReflection = new Parameter [cDimensions];
Parameter* vrParamExpansion = new Parameter [cDimensions];
Parameter* vrParamContraction = new Parameter [cDimensions];
// initalize parameter sets to cardinal axis scaled by given
// initial scale last parameter is origin {0,...,0}
for (int nPoint=0; nPoint<cPoints; nPoint++){
vvrParam[nPoint]=new Parameter[cDimensions];
for (int nDimension=0; nDimension<cDimensions; nDimension++){
if (nPoint==nDimension){
vvrParam[nPoint][nDimension] = vrParamMin[nDimension] + vrInitialScale[nDimension];
}
else {
vvrParam[nPoint][nDimension] = vrParamMin[nDimension];
}
}
}
// evaluate all points to get starting Simplex
for (int nPoint=0; nPoint<cPoints; nPoint++){
vrErr[nPoint] = fxnEval(vvrParam[nPoint],DBL_MAX,pData);
}
Real rErrMin;
int nPointMin;
bool bMinFound = false;
const Real rFactorReflection = 1.0;
const Real rFactorExpansion = 2.0;
const Real rFactorContraction = 0.5;
const Real rFactorReduction = 0.5;
// begin iteration
int nIteration=0;
for (;;nIteration++){
// find min/max error
rErrMin=1e100;
nPointMin=-1;
Real rErrMax=-1;
int nPointMax=-1;
Real rErrSecondMax=-1;
int nPointSecondMax=-1;
for (int nPoint=0; nPoint<cPoints; nPoint++){
if (rErrMin > vrErr[nPoint]){
rErrMin=vrErr[nPoint];
nPointMin=nPoint;
}
if (rErrMax < vrErr[nPoint]){
nPointSecondMax=nPointMax;
rErrSecondMax=rErrMax;
rErrMax=vrErr[nPoint];
nPointMax=nPoint;
}
else if (rErrSecondMax < vrErr[nPoint]){
rErrSecondMax=vrErr[nPoint];
nPointSecondMax=nPoint;
}
}
// D("MIN(%d @ %g)", nPointMin,rErrMin);
// D("MAX(%d @ %g)", nPointMax,rErrMax);
// D("SECONDMAX(%d @ %g)", nPointSecondMax,rErrSecondMax);
/*
if (0 == (nIteration%100)){
UD(
"---------------- ITERATION %d ---------------- [%g %g]",
nIteration, rErrMin, rErrMax
);
UD1("RANGE(%g - %g - %g)", rErrMin, rErrSecondMax, rErrMax);
}
*/
// check if minimum sufficiently small
const Real rErrFraction = (rErrMax - rErrMin) / (rErrMax + rErrMin+1);
D1("COMPARING (%g,%g) --> %g and %g", rErrMax, rErrMin, rErrFraction, rErrThreshold);
if ( rErrFraction < rErrThreshold){
D("FOUND LOCAL MIN");
bMinFound = true;
break;
}
// check if too many iterations
if (nIteration >= cIterations){
bMinFound = false;
break;
}
// compute centroid of all points
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vrParamCentroid[nDimension]=0;
}
for (int nPoint=0; nPoint<cPoints; nPoint++){
if (nPoint == nPointMax){
continue;
}
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vrParamCentroid[nDimension]+=vvrParam[nPoint][nDimension];
}
}
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vrParamCentroid[nDimension]/=(cPoints-1);
}
// compute reflection
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vrParamReflection[nDimension] = (
vrParamCentroid[nDimension] + (
vrParamCentroid[nDimension] -
vvrParam[nPointMax][nDimension]
) * rFactorReflection
);
}
// compute reflection error
Real rErrReflection = fxnEval(vrParamReflection,DBL_MAX,pData);
D1("REFLECTION ERR %g", rErrReflection);
// if better than second worst, but not better than best, use it as point
if (rErrReflection < rErrSecondMax && rErrReflection > rErrMin){
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vvrParam[nPointMax][nDimension]=vrParamReflection[nDimension];
}
vrErr[nPointMax]=rErrReflection;
D1("REFLECTED");
continue;
}
// if best point found so far, then try expanding
if (rErrReflection <= rErrMin){
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vrParamExpansion[nDimension] = (
vrParamCentroid[nDimension] + (
vrParamCentroid[nDimension] -
vvrParam[nPointMax][nDimension]
) * rFactorExpansion
);
}
Real rErrExpansion = fxnEval(vrParamExpansion,DBL_MAX,pData);
D1("EXPANSION ERR %g", rErrReflection);
// expansion point is better than reflection point, use it
if (rErrExpansion < rErrReflection){
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vvrParam[nPointMax][nDimension]=vrParamExpansion[nDimension];
}
vrErr[nPointMax]=rErrExpansion;
D1("EXPANDED");
}
// otherwise use reflection point as above
else{
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vvrParam[nPointMax][nDimension]=vrParamReflection[nDimension];
}
vrErr[nPointMax]=rErrReflection;
D1("REFLECTED");
}
continue;
}
// our reflection point must be the worst found
// since all cases exhausted above
//assert (rErrReflection > rErrSecondMax);
// compute the contracted point
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vrParamContraction[nDimension] = (
vvrParam[nPointMax][nDimension] + (
vrParamCentroid[nDimension] -
vvrParam[nPointMax][nDimension]
) * rFactorContraction
);
}
Real rErrContraction = fxnEval(vrParamContraction,DBL_MAX,pData);
D1("CONTRACTION ERR %g", rErrContraction);
if (rErrContraction < rErrMax){
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vvrParam[nPointMax][nDimension]=vrParamContraction[nDimension];
}
vrErr[nPointMax]=rErrContraction;
D1("CONTRACTED");
continue;
}
// otherwise perform reduction
for (int nPoint=0; nPoint<cPoints; nPoint++){
if (nPoint == nPointMin){
continue;
}
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vvrParam[nPoint][nDimension] = (
vvrParam[nPointMin][nDimension] + (
vvrParam[nPoint][nDimension]
- vvrParam[nPointMin][nDimension]
) * rFactorReduction
);
}
vrErr[nPoint] = fxnEval(vvrParam[nPoint],DBL_MAX,pData);
}
D1("REDUCED");
}
// copy over the final result
for (int nDimension=0; nDimension<cDimensions; nDimension++){
vrParamMin[nDimension]=vvrParam[nPointMin][nDimension];
}
/*
UD("---------------- FINAL ----------------");
UD("iterations: %d Error: %g", nIteration, rErrMin);
UD("Parameters:");
int cAcross=10;
for (int nDimension=0; nDimension<cDimensions; nDimension+=cAcross){
UIDX(2,"%3d-%3d] ", nDimension, min(cDimensions-1,nDimension+cAcross));
for (int d=0; d<cAcross && (d+nDimension) < cDimensions; d++){
PX("%+1.2f ", vvrParam[nPointMin][nDimension]);
}
P(" ");
}
P("\n");
*/
// cleanup
for (int nPoint=0; nPoint<cPoints; nPoint++){
delete [] vvrParam[nPoint];
}
delete [] vvrParam;
delete [] vrErr;
delete [] vrParamReflection;
delete [] vrParamCentroid;
delete [] vrParamExpansion;
delete [] vrParamContraction;
return rErrMin;
}
//============================================================================
// template instantiation
//============================================================================
| |
fee865eb8ea83114e063f63b14d03817c3e415c7 | f1bde7424c041ac3ce6d15d731b1a16350450cf6 | /H1/fig820.cpp | f2da389ca3c89d5c9ac01d95ab3838b2909334b5 | [] | no_license | meganschmidt23/AssemblyLanguage-DosReis | e6184b551dba65f615e4127734d8950f561f1543 | 8c64405fc5f2c42568b5f89f78e3de676136fb0e | refs/heads/main | 2023-01-27T14:51:38.138700 | 2020-12-08T19:12:27 | 2020-12-08T19:12:27 | 319,723,687 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 227 | cpp | fig820.cpp | #include <iostream>
using namespace std;
int y;
int (*p)(int);
int fp(int x)
{
cout << x << endl;
return x;
}
int main()
{
y = fp(3); // call fp
p = fp;
y = p(3); // call fp via p pointer
}
|
523a5a4c365bef9a855877121eb6b44aa6e9d104 | 182e3209cfa49dc3e49e218315689f45c84db203 | /Ex21.cpp | 074a9cb5ea735f419959c049cb060041cd36015b | [] | no_license | domiee13/CTDL-GT | a5a014ac984e250f577047ee3fc9890bb21dfc3d | fed87cdc67353a35d63c733022d0650b6d35175e | refs/heads/master | 2021-05-24T10:56:08.573543 | 2021-03-26T15:26:02 | 2021-03-26T15:26:02 | 253,528,463 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,363 | cpp | Ex21.cpp | /*
Cho xâu ký tự S bao gồm các ký tự in hoa khác nhau. Hãy đưa ra tất cả các hoán vị của xâu ký
tự S. Ví dụ S=”ABC” ta có kết quả {ABC ACB BAC BCA CAB CBA}.
Input:
Dòng đầu tiên đưa vào số lượng bộ test T.
Những dòng tiếp theo đưa vào các bộ test. Mỗi bộ test là một xâu ký tự S được
viết trên 1 dòng.
T, S thỏa mãn ràng buộc: 1≤T≤10; 1≤length(S) ≤10;
Output:
Đưa ra kết quả mỗi test theo từng dòng.
*/
// #include <iostream>
// #include <algorithm>
#include <bits/stdc++.h>
using namespace std;
string s;
int a[100] = {0};
bool chuaxet[100] = {true};
void init(){
for(int i = 1;i<=s.size();i++){
a[i] = 0;
}
}
void Try(int k){
for(int i = 0;i<s.size();i++){
if(chuaxet[i]){
a[k] = i;
chuaxet[i] =false;
if(k==s.size()){
for(int l = 1;l<=s.size();l++){
cout<<s[a[l]];
}
cout<<" ";
}
else Try(k+1);
chuaxet[i] = true;
}
}
}
int main(){
int t;
cin>>t;
cin.ignore();
while(t--){
memset(chuaxet,true,sizeof(chuaxet));
getline(cin,s);
sort(s.begin(),s.end());
Try(1);
cout<<endl;
}
return 0;
} |
a2cbade227388288ef7b89338323bac5e97e2987 | 7a8981e990fd0d18f55166732f7f8d8b8e011a66 | /general_api.cpp | c275c6327108d2fa28620607ee8f0f342f2afb1b | [
"BSD-2-Clause"
] | permissive | vaefremov/otus_hw_01 | c7308265da79aed59b9103531389bf4da9e0a342 | dc96d0cf875a61857772111bae4330e9792677b4 | refs/heads/master | 2021-05-17T14:13:50.697783 | 2020-04-02T20:18:56 | 2020-04-02T20:18:56 | 250,815,344 | 2 | 0 | CC0-1.0 | 2020-05-12T14:01:17 | 2020-03-28T14:28:16 | CMake | UTF-8 | C++ | false | false | 271 | cpp | general_api.cpp | #include "general_api.h"
#include "config.h"
int OTUS_HW::version_patch()
{
return PROJECT_VERSION_PATCH;
}
std::string OTUS_HW::version_str()
{
return std::string("Version: ") + VERSION_NUMBER;
}
std::string OTUS_HW::message()
{
return "Hello World!";
}
|
6b915da71d91f1e9a174e24386c58142195699e8 | f294b35936de194f02aacb537092a12c46be9450 | /SE_Level5_OtherNote_OwnProject/OtherNoteSJ/OtherNoteSJ/Character.h | dee37961363b19f31ebd9135d0ea4ca826c2ed15 | [] | no_license | Namsulee/Parkcom | 18601b1a359b144dc88761984318035d592c000a | 52784846e4630f102d0ca6bf6a37900bf922658b | refs/heads/master | 2021-09-06T02:08:29.153506 | 2018-02-01T15:01:39 | 2018-02-01T15:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 289 | h | Character.h | #pragma once
//Character.h
#ifndef _CHARACTER_H
#define _CHARACTER_H
#include "Contents.h"
class Character : public Contents{
public:
Character();
Character(const Character& source);
virtual ~Character() = 0;
Character& operator = (const Character& source);
};
#endif //_CHARACTER_H |
cc46e59afc817533550a8a3bf4893fcfda6925e7 | 7586457f3282ad0535042b0726b8d922034a3a7e | /libinitd/initd_state.cpp | e450941721b8db9890fe2af0ca6878fddb6c9920 | [] | no_license | gfv/initd | 461934c26b7bb899f1f679b57db8444a7ead6b24 | afe71ea6ad0653031268818eea293673cd93b614 | refs/heads/master | 2021-01-16T19:58:12.860232 | 2014-03-18T21:40:35 | 2014-03-18T21:48:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,894 | cpp | initd_state.cpp | #include "initd_state.h"
#include "tasks/create_async_task_handle.h"
#include "task_description.h"
#include "state_context.h"
#include "task.h"
#include "make_unique.h"
#include <sstream>
#include <stdexcept>
initd_state::initd_state(state_context& ctx, sysapi::epoll& ep, task_descriptions descriptions)
: ctx(ctx)
, ep(ep)
, pending_tasks(0)
{
auto const& descrs = descriptions.get_all_tasks();
tasks.resize(descrs.size());
std::map<task_description*, task*> descr_to_task;
for (size_t i = 0; i != descrs.size(); ++i)
{
tasks[i] = make_unique<task>(create_async_task_handle(*this, [this, i]() {
task& t = *tasks[i];
t.sync(this);
if (t.get_handle()->is_running())
enqueue_all(t.get_dependants());
else
enqueue_all(t.get_dependencies());
}, descrs[i]->get_data()));
descr_to_task.insert(std::make_pair(descrs[i].get(), tasks[i].get()));
}
for (size_t i = 0; i != descrs.size(); ++i)
{
task_description* descr = descrs[i].get();
task& my_task = *tasks[i];
for (task_description* dep : descr->get_dependencies())
{
task& dep_task = *descr_to_task.find(dep)->second;
add_task_dependency(my_task, dep_task);
}
}
for (auto const& name_to_rl : descriptions.get_run_level_by_name())
{
std::vector<task*> requisites;
for (task_description* req : name_to_rl.second.requisites)
requisites.push_back(descr_to_task.find(req)->second);
run_levels.insert(std::make_pair(name_to_rl.first, std::move(requisites)));
}
}
initd_state::~initd_state()
{}
void initd_state::set_run_level(std::string const& run_level_name)
{
auto i = run_levels.find(run_level_name);
if (i == run_levels.end())
{
std::stringstream ss;
ss << "run level \"" << run_level_name << "\" is not found";
throw std::runtime_error(ss.str());
}
clear_should_work_flag();
for (task* d : i->second)
d->mark_should_work();
for (task_sp const& tp : tasks)
tp->sync(this);
enqueue_all();
}
void initd_state::set_empty_run_level()
{
clear_should_work_flag();
for (task_sp const& tp : tasks)
tp->sync(this);
enqueue_all();
}
bool initd_state::has_pending_operations() const
{
return pending_tasks != 0;
}
void initd_state::clear_should_work_flag()
{
for (task_sp const& tp : tasks)
tp->clear_should_work();
}
void initd_state::enqueue_all()
{
for (task_sp const& tp : tasks)
tp->enqueue_this();
}
void initd_state::enqueue_all(std::vector<task*> const& tts)
{
for (task* t : tts)
t->enqueue_this();
}
sysapi::epoll& initd_state::get_epoll()
{
return ep;
}
state_context& initd_state::get_state_context()
{
return ctx;
}
|
a8effede8d061f7f0706cd44ebcab4e322a830b8 | 6820084832a4854f555ab0ddc6e4a8a468ab3fe9 | /knapsack.cpp | 064d647e53b34247bf52df84862912949bde3824 | [] | no_license | jass-jass/data-struct | 361fae2596f56d6952d6110586fb0630242d0380 | 428f15f60eff5e142093e26e73a20d6d1d58b3d8 | refs/heads/main | 2023-05-14T04:22:51.570513 | 2021-06-08T15:38:10 | 2021-06-08T15:38:10 | 370,971,177 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,449 | cpp | knapsack.cpp | #include<bits/stdc++.h>
using namespace std;
typedef struct item
{
char label;
double weight, value;
}Item;
typedef struct fract
{
int num, den;
}Fract;
void input(int n, Item item[])
{
for(int i=0; i<n; i++)
{
cin >> item[i].label >> item[i].weight >> item[i].value;
}
}
void get_value_per_unitwt(int n, Item item[])
{
for(int i=0; i<n; i++)
{
item[i].value = item[i].value/item[i].weight;
}
}
int get_gcd(int a, int b)
{
if (a == 0)
return b;
return get_gcd(b % a, a);
}
bool compare(Item a, Item b)
{
return a.value>b.value;
}
void get_fraction(double total, int n, Item item[], Fract fraction[])
{
get_value_per_unitwt(n, item);
sort(item, item+n, compare);
int i = 0;
while(total>0)
{
if(item[i].weight<total)
{
fraction[i].num = 1;
fraction[i].den = 1;
total -= item[i].weight;
++i;
}
else
{
fraction[i].num = total;
fraction[i].den = item[i].weight;
int gcd = get_gcd(fraction[i].num, fraction[i].den);
fraction[i].num /= gcd;
fraction[i].den /= gcd;
break;
}
}
}
void output(int n, Item item[], Fract fraction[])
{
int i=0;
while(fraction[i].num!=0)
{
printf("\n%d/%d of %c", fraction[i].num, fraction[i].den, item[i].label);
++i;
}
}
int main(void)
{
int n;
double total;
cin >> n;
Item item[n];
Fract fraction[(n+1)] = {0};
input(n, item);
cin >> total;
get_fraction(total, n, item, fraction);
output(n, item, fraction);
return 0;
}
|
f16ebf780b18d1d795cd16532354cf13c3f5868e | c8d99ad1e7d16b13494af841ceb1dba6a83a43fd | /kccpZadania/ZadParzysteCase.cc | 950c4bcdae6225101259e2db53504f8f226f773e | [] | no_license | dawidczerwien/cppLaboratorium | 42cfaad985d60882e070922a1f8cd7858eef01c3 | c76e66f7a1fae9c85c9f78fa59942355f8d99a63 | refs/heads/main | 2023-05-25T18:40:20.273857 | 2021-06-08T16:22:45 | 2021-06-08T16:22:45 | 341,860,589 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,353 | cc | ZadParzysteCase.cc | #include <iostream>
using namespace std;
void funkcjaA(int x) {
// 1 & liczba parzysta zwraca 0
// 1 & liczba nie parzysta zwraca 1
// Przykład dla liczby 7
// 1 & 111 zwraca 1
// Przykład dla liczbt 8
// 1 & 1000 zwraca 0
if(x & 1) cout <<"Liczba nieparzysta."<< endl;
else cout <<"Liczba parzysta."<< endl;
}
void funkcjaB(int x) {
if(x % 2 == 1) cout <<"Liczba nieparzysta."<< endl;
else cout <<"Liczba parzysta."<< endl;
}
void funkcjaC(int x) {
cout << ((x % 2 == 1) ? "Liczba nieparzysta." : "Liczba parzysta.")<< endl;
}
int main()
{
int n;
cout << "0 - Wybierz funkcje z modulo, 1 - funkcja z operatorem AND, 2 - funkcja z operatorem warukowym: ";
cin >> n;
int x;
switch (n) {
case 0:
cout << "Wybrano funkję z modulo" << endl;
cout << "Podaj liczba calkowita: ";
cin >> x;
funkcjaB(x);
break;
case 1:
cout << "Wybrano funkję z operatorem AND" << endl;
cout << "Podaj liczba calkowita: ";
cin >> x;
funkcjaA(x);
break;
case 2:
cout << "Wybrano funkję z operatorem warunkowy" << endl;
cout << "Podaj liczba calkowita: ";
cin >> x;
funkcjaC(x);
break;
default:
cout << "Poza zakresem" << endl;
}
return 0;
}
|
a9545b52742b31538a7e3bbdce0ff65a95554561 | e50b5f066628ef65fd7f79078b4b1088f9d11e87 | /llvm/tools/clang/test/CXX/basic/basic.def/p2.cpp | 950fd03a1ff531ebd2af47ececcc9c8d075c7048 | [
"NCSA"
] | permissive | uzleo/coast | 1471e03b2a1ffc9883392bf80711e6159917dca1 | 04bd688ac9a18d2327c59ea0c90f72e9b49df0f4 | refs/heads/master | 2020-05-16T11:46:24.870750 | 2019-04-23T13:57:53 | 2019-04-23T13:57:53 | 183,025,687 | 0 | 0 | null | 2019-04-23T13:52:28 | 2019-04-23T13:52:27 | null | UTF-8 | C++ | false | false | 180 | cpp | p2.cpp | // RUN: %clang_cc1 -std=c++1z -verify %s -Wdeprecated
namespace {
struct A {
static constexpr int n = 0;
};
const int A::n; // expected-warning {{deprecated}}
}
|
e601e98f42547cd9f89de6cab5ee5abc27bd90e3 | 1f0a3c613762eb242d067be95a08f8b3c16ab6eb | /src/comparator.cpp | 6c42436bbb6b6639a12b9b018af44fb8aa98e38d | [
"MIT"
] | permissive | andersfylling/sorting-nine-inputs-requires-twenty-five-comparisons | 05e9df652794f88120a1fe1624220387dd4d0d1b | b7a89507aa81387c384293c2d1a1d06505226b14 | refs/heads/master | 2023-04-14T18:56:23.273497 | 2021-04-10T17:35:00 | 2021-04-10T17:35:00 | 255,985,619 | 8 | 0 | MIT | 2020-04-21T13:20:36 | 2020-04-15T17:11:47 | CMake | UTF-8 | C++ | false | false | 289 | cpp | comparator.cpp | #include <sortnet/comparator.h>
#include <sortnet/io.h>
namespace sortnet {
void Comparator::write(std::ostream &f) const {
binary_write(f, from);
binary_write(f, to);
}
void Comparator::read(std::istream &f) {
binary_read(f, from);
binary_read(f, to);
}
} // namespace sortnet
|
f06953199dd7073d21e77bd2d80e4c6ff40eb924 | 8fd935d0bcf03a176dc1c042602e731aab016f43 | /libvis/src/libvis/external_io/colmap_model.h | 6fc2a8bf3be8a816d98322819eaede27565e9dc9 | [
"BSD-3-Clause"
] | permissive | ETH3D/badslam | 9ce088d96672ee5385f721928d3e6536778e1574 | c66bdc841658cc04f9feae229c746b32f4284102 | refs/heads/master | 2022-07-08T05:39:08.983448 | 2022-05-11T19:12:04 | 2022-05-11T19:12:04 | 192,239,549 | 691 | 124 | BSD-3-Clause | 2022-04-27T23:52:53 | 2019-06-16T21:43:54 | C++ | UTF-8 | C++ | false | false | 5,047 | h | colmap_model.h | // Copyright 2017, 2019 ETH Zürich, Thomas Schöps
//
// 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.
#pragma once
#include <memory>
#include <unordered_map>
#include <unordered_set>
#include <vector>
#include <libvis/eigen.h>
#include <libvis/libvis.h>
#include <libvis/sophus.h>
namespace vis {
// Holds data of a COLMAP camera.
struct ColmapCamera {
// Unique camera id.
int camera_id;
// Name of the distortion model. Determines the number of parameters.
string model_name;
// Image width in pixels.
int width;
// Image height in pixels.
int height;
// Distortion parameters. Their number and interpretation depends on the
// distortion model.
vector<double> parameters;
};
typedef shared_ptr<ColmapCamera> ColmapCameraPtr;
typedef shared_ptr<const ColmapCamera> ColmapCameraConstPtr;
typedef vector<ColmapCameraPtr> ColmapCameraPtrVector;
// Indexed by: [camera_id] .
typedef unordered_map<int, ColmapCameraPtr> ColmapCameraPtrMap;
struct ColmapFeatureObservation {
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
// Sub-pixel coordinates of the observation in its image, given in pixels.
Eigen::Vector2f xy;
// Id of the corresponding 3D point or -1 if no 3D point is associated to this
// observation.
int point3d_id;
};
// Holds data of a COLMAP image.
struct ColmapImage {
// Unique image id.
int image_id;
// Id of the camera model for this image.
int camera_id;
// Path to the image file, may be a relative path.
string file_path;
// Global-to-image transformation.
Sophus::SE3f image_tr_global;
// Image-to-global transformation.
Sophus::SE3f global_tr_image;
// 2D feature observations in this image.
vector<ColmapFeatureObservation, Eigen::aligned_allocator<ColmapFeatureObservation>> observations;
};
typedef shared_ptr<ColmapImage> ColmapImagePtr;
typedef shared_ptr<const ColmapImage> ColmapImageConstPtr;
typedef vector<ColmapImagePtr> ColmapImagePtrVector;
// Indexed by [colmap_image_id] .
typedef unordered_map<int, ColmapImagePtr> ColmapImagePtrMap;
// Holds data for a camera within a COLMAP rig.
struct ColmapRigCamera {
// Camera ID.
int camera_id;
// Prefix to recognize images of this rig camera.
string image_prefix;
};
// Holds data of a COLMAP rig.
struct ColmapRig {
// Reference camera ID.
int ref_camera_id;
// List of cameras attached to this rig.
vector<ColmapRigCamera> cameras;
};
typedef vector<ColmapRig> ColmapRigVector;
// Loads ColmapCameraPtr from a COLMAP cameras.txt file and appends
// them to the cameras map (indexed by camera_id). Returns true if successful.
bool ReadColmapCameras(const string& cameras_txt_path,
ColmapCameraPtrMap* cameras);
bool WriteColmapCameras(const string& cameras_txt_path,
const ColmapCameraPtrMap& cameras);
// Loads ColmapImagePtr from a COLMAP images.txt file and appends them
// to the images map (indexed by image_id). Returns true if successful.
bool ReadColmapImages(const string& images_txt_path,
bool read_observations,
ColmapImagePtrMap* images);
bool WriteColmapImages(const string& images_txt_path,
const ColmapImagePtrMap& images);
// Loads ColmapRigVector from a COLMAP rigs JSON file and appends them to
// the given rigs list. Returns true if successful.
bool ReadColmapRigs(const string& rigs_json_path,
ColmapRigVector* rigs);
bool WriteColmapRigs(const string& rigs_json_path,
const ColmapRigVector& rigs);
}
|
fe6adf664d6d6fbfe05f5187f9b99a16f6fce550 | 629d859edf65182cf430cc4a6e4b40e628b26cf9 | /算法题/08最小路径和.cpp | 15343863d2df8c543d061be7784efb1fdc8bc1fd | [] | no_license | ADreamyj/cpp | 8f0a0622afc4bb7c764083634a7951818ceedfa3 | c4672b3f8b3aa51a75741f030597cb17574b3a1c | refs/heads/master | 2020-04-03T15:25:20.448530 | 2019-10-06T12:32:20 | 2019-10-06T12:32:20 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,471 | cpp | 08最小路径和.cpp | #define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<vector>
#include<algorithm>
//题目:给定一个m*n的网格,网格用非负数填充,找到一条从左上角到右下角
//的最短路径,每次只能向上或者是向下运动
//方法:动态规划
//状态:
// 子状态:从(0,0)到达(1,0),(1,1)....(m - 1,n - 1)的最短路径
// F(i,j):从(0,0)到达F(i,j)的最短路径
//状态递归:
// F(i,j) = min{F(i - 1 , j) , F(i,j - 1)} + (i,j);
//初始化:
// F(0,0) = (0,0)
// 特殊情况:第0行和第0列
// F(0,i) = F(0,i - 1) + (0,i)
// F(i,0) = F(i - 1,0) + (i,0)
//返回结果:
// F(m - 1,n - 1)
int minPathSum(std::vector<std::vector<int>> &grid)
{
if (grid.empty() || grid[0].empty())
return 0;
int m = grid.size();
int n = grid[0].size();
std::vector<std::vector<int>> v(m, std::vector<int>(n, 0));
//F(0,0) F(i,0) 和 F(0,i)进行初始化
v[0][0] = grid[0][0];
for (int i = 1; i < m; i++)
{
v[i][0] = grid[i][0] + v[i - 1][0];
}
for (int j = 1; j < n; j++)
{
v[0][j] = grid[0][j] + v[0][j - 1];
}
// F(i,j) = min{F(i-1,j) , F(i,j-1)} + (i,j)
for (int i = 1; i < m; ++i)
{
for (int j = 1; j < n; ++j)
{
v[i][j] = std::min(v[i - 1][j], v[i][j - 1]) + grid[i][j];
}
}
return v[m - 1][n - 1];
}
//int main()
//{
// std::vector<std::vector<int>> v{ { 1, 1, 1 }, { 2, 2, 2 }, { 1, 1, 1 } };
// std::cout << minPathSum(v) << std::endl;
// system("pause");
// return 0;
//} |
6c11abdb7741cd2178712575d6b4ed5bd2e14b77 | 984f34ee3687115f9f753437cc60e3ff9ec50394 | /linked_list.cpp | 18e673f0ea1c82ed77a8a4fa6187a88822d69eaa | [] | no_license | varunswing/datastructure | bb360c37ae9c51c011c44885335cf4cb667894a9 | 2328f0d625428fd22e40431e308292eeb1ee375c | refs/heads/master | 2020-07-25T09:37:34.065568 | 2019-12-05T16:22:17 | 2019-12-05T16:22:17 | 208,248,124 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 926 | cpp | linked_list.cpp | #include <iostream>
#include <stdlib.h>
using namespace std;
typedef struct node{
int val;
struct node* next;
}NODE;
NODE* head = NULL;
NODE* node = NULL;
NODE* temp = NULL;
void printList(NODE* head){
node = head;
while(head){
cout << node->val << " ";
node = node->next;
}
cout<<endl;
return;
}
int main(){
int val;
cout << "Enter an integer value:" << endl;
cin >> val;
while(val != -1){
if(!head){
head = ((NODE*)malloc(sizeof(NODE*)));
head->val = val;
head->next = NULL;
temp = head;
}
else{
node = ((NODE*)malloc(sizeof(NODE*)));
node->val = val;
node->next = NULL;
temp->next = node;
temp = node;
}
cout << "Enter an integer value:" << endl;
cin >> val;
}
printList(head);
return 0;
} |
a28e673a61a625892600d339e1808c374f11816f | c085fc99b6a52b0455ff7bf5ae2ac7ad391b79ef | /feed-o-nator3000.ino | eacd60d9c271d4521302bc56900c5d593adddafa | [] | no_license | L-Fiori/PMR3402 | 7805c4b5b46dbed697c19795ea63c89263bb5340 | cffe2927bf31302ec4623999baa92720894d86dd | refs/heads/master | 2023-06-21T11:37:52.192725 | 2021-07-19T22:35:04 | 2021-07-19T22:35:04 | 384,320,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,352 | ino | feed-o-nator3000.ino | // Definicoes do sistema
#include "definicoes_sistema.h"
// Componentes
#include "buzzer.h"
#include "modulo_bluetooth.h"
#include "relogio.h"
#include "servo_motor.h"
// Bibliotecas
#include <EEPROM.h>
/***********************************************************************
Pinos
***********************************************************************/
#define PIN_BUZZER 8 // Pino do buzzer
#define PIN_SERVO 10 // Pino do servo (PWM)
#define PIN_SCL A5 // Pino de cima do rtc
#define PIN_SDA A4 // Pino segundo de cima do rtc
#define PIN_RX 3 // Bluetooth RX
#define PIN_TX 2 // Bluetooth TX
/***********************************************************************
Componentes
***********************************************************************/
ServoMotor srv(PIN_SERVO);
Buzzer buz(PIN_BUZZER);
ModuloBluetooth mbt;
Relogio rel;
/***********************************************************************
Estaticos
***********************************************************************/
int proximo_estado_matrizTransicaoEstados[NUM_ESTADOS][NUM_EVENTOS]; // Máquina de estados
int acao_matrizTransicaoEstados[NUM_ESTADOS][NUM_EVENTOS]; // Máquina de estados
int eventoInterno = NENHUM_EVENTO; // Máquina de estados
int codigoEvento = NENHUM_EVENTO; // Máquina de estados
int codigoAcao = NENHUMA_ACAO; // Máquina de estados
int estado = OPERANDO; // Máquina de estados
byte vetor_intervalos[12]; // Vetor que contém todos os intervalos de despejo
byte parametro[18]; // Vetor para coletar parâmetros do modo 1 (por hora fixa)
byte tempo_abertura = 0; // Valor para o tempo de abertura (
byte flag_intervalo = 1; // Flag para modificar os intervalos de despejo
byte modo_eeprom; // Modo de despejo lido da EEPROM
byte qtd_porcoes; // Quantidades de porções para despejar no modo 1
String horario_inicial = ""; // String para guardar o horario inserido pelo usuário
String tamanho_porcao = ""; // Tamanho da porção P, M ou G
String intervalo = ""; // Intervalo de despejo do modo 2
String modo = ""; // Modo de despejo
// Função para receber os parâmetros do usuário
String recebeParametro(){
unsigned long timer_inicio;
unsigned long timer_atual;
String tipo = "";
// Espera 15 segundos ou até o usuário digitar algo
timer_inicio = millis();
timer_atual = millis();
while (timer_atual < timer_inicio + 15000){
timer_atual = millis();
tipo = mbt.recebeParametros();
if (tipo != ""){
return tipo;
}
}
return "z";
}
// Função para configurar com os parâmetros do usuário
void configurar()
{
mbt.escreveTela("Digite H para modo horario ou I para modo intervalo");
modo = recebeParametro();
if (modo == "z") return;
if (modo == "H")
{
modo_eeprom = 1;
mbt.escreveTela("Digite o numero de porcoes diarias");
String qtd_porcoes_str = recebeParametro(); // Espera receber o número de porções
if (qtd_porcoes_str == "z") return;
qtd_porcoes = qtd_porcoes_str.toInt(); // Transforma para inteiro
for (int i = 0; i < qtd_porcoes; i++)
{
mbt.escreveTela("Digite o horario da porcao no modelo HHMM");
String hora_recebida_str = recebeParametro(); // Espera receber horário
if (hora_recebida_str == "z") return;
byte hora_recebida_int[4];
for (int i = 0; i < sizeof(hora_recebida_str); i++){
hora_recebida_int[i] = String(hora_recebida_str[i]).toInt(); // Transforma para inteiro
}
parametro[2 * i] = hora_recebida_int[0]*10 + hora_recebida_int[1]; // Guarda as horas
parametro[2 * i + 1] = hora_recebida_int[2]*10 + hora_recebida_int[3]; // Guarda os minutos
}
}
else if(modo == "I")
{
modo_eeprom = 2;
mbt.escreveTela("Digite o horario de inicio da contagem do intervalo no formato HHMM");
horario_inicial = recebeParametro();
if (horario_inicial == "z") return;
mbt.escreveTela("Digite o intervalo entre despejos a partir do horario inicial em horas");
intervalo = recebeParametro();
if (intervalo == "z") return;
}
mbt.escreveTela("Digite o tamanho das porcoes (P, M ou G)");
tamanho_porcao = recebeParametro();
if (tamanho_porcao == "z") return;
if (tamanho_porcao == "P")
tempo_abertura = 7; // Porção pequena -> 7 segundos de despejo
else if(tamanho_porcao == "M")
tempo_abertura = 10; // Porção média -> 11 segundos de despejo
else if(tamanho_porcao == "G")
tempo_abertura = 15; // Porção grande -> 15 segundos de despejo
}
int executarAcao(int codigoAcao)
{
int retval;
byte flag_escrever = 0;
retval = NENHUM_EVENTO;
if (codigoAcao == NENHUMA_ACAO)
return retval;
switch (codigoAcao)
{
case A01:
configurar(); // Função para obter configurações do despejo via bluetooth
flag_escrever = 1; // Flag para escrever nova configuração na EEPROM
break;
case A02:
srv.servoAngulo(); // Abre o servo
srv.servoAngulo(); // Abre o servo
srv.servoAngulo(); // Abre o servo
Serial.println("Servo aberto");
break;
case A03:
srv.servoFecha(); // Fecha o servo
srv.servoFecha(); // Fecha o servo
srv.servoFecha(); // Fecha o servo
buz.tocaMusica(); // Toca música indicando o despejo da ração
Serial.println("Servo fechado");
break;
} // switch
if (flag_escrever == 1) {
// Escrita na eeprom
if (modo_eeprom == 1){ // Modo = horario fixo
EEPROM.write(0,modo_eeprom);
EEPROM.write(1,qtd_porcoes); // Número de despejos
for (int i = 2; i <= 2*qtd_porcoes; i=i+2) {
EEPROM.write(i,parametro[i-2]);
EEPROM.write(i+1,parametro[i-1]);
}
EEPROM.write(2*qtd_porcoes+2,tempo_abertura);
flag_intervalo = 1; // Flag para construir o intervalo
}
else if(modo_eeprom == 2) { // Modo = intervalo
EEPROM.write(0,modo_eeprom);
int horario_eeprom = horario_inicial.toInt();
EEPROM.write(1,horario_eeprom/100); // Hora
EEPROM.write(2,horario_eeprom%100); // Minuto
EEPROM.write(3,intervalo.toInt()); // Intervalo de despejo
EEPROM.write(4,tempo_abertura); // Porção despejada
flag_intervalo = 1; // Flag para construir o intervalo
}
}
return retval;
} // executarAcao
/************************************************************************
iniciaMaquina de Estados
Carrega a maquina de estados
Parametros de entrada: nenhum
Retorno: nenhum
*************************************************************************/
void iniciaMaquinaEstados()
{
/*
Configurar Horario_inicio Horario_fim (EVENTOS)
Operando Operando / A01 Despejo / A02
Despejo Operando / A03
(ESTADOS)
*/
int i;
int j;
for (i = 0; i < NUM_ESTADOS; i++)
{
for (j = 0; j < NUM_EVENTOS; j++)
{
acao_matrizTransicaoEstados[i][j] = NENHUMA_ACAO;
proximo_estado_matrizTransicaoEstados[i][j] = i; }
}
proximo_estado_matrizTransicaoEstados[OPERANDO][CONFIGURAR] = OPERANDO;
acao_matrizTransicaoEstados[OPERANDO][CONFIGURAR] = A01;
proximo_estado_matrizTransicaoEstados[OPERANDO][HORARIO_INICIO] = DESPEJO;
acao_matrizTransicaoEstados[OPERANDO][HORARIO_INICIO] = A02;
proximo_estado_matrizTransicaoEstados[DESPEJO][HORARIO_FIM] = OPERANDO;
acao_matrizTransicaoEstados[DESPEJO][HORARIO_FIM] = A03;
} // initStateMachine
/************************************************************************
iniciaSistema
Inicia o sistema ...
Parametros de entrada: nenhum
Retorno: nenhum
*************************************************************************/
void iniciaSistema()
{
iniciaMaquinaEstados();
} // initSystem
/************************************************************************
obterEvento
Obtem um evento, que pode ser da IHM ou do alarme
Parametros de entrada: nenhum
Retorno: codigo do evento
*************************************************************************/
int obterEvento()
{
int retval = NENHUM_EVENTO;
int modo_eeprom = EEPROM.read(0);
DateTime agora = rel.tempoAtual();
byte hora_rtc = agora.hour();
byte min_rtc = agora.minute();
byte seg_rtc = agora.second();
static byte flag_seg = seg_rtc;
if (flag_seg != seg_rtc){
Serial.print("Hora:");
Serial.print(hora_rtc);
Serial.print(":");
Serial.print(min_rtc);
Serial.print(":");
Serial.println(seg_rtc);
if (seg_rtc%10 == 0) {
mbt.escreveTela("Pressione Q para configurar o despejo"); // Escreve a mensagem a cada 10 segundos
}
flag_seg = seg_rtc; // Não entra no if até o próximo segundo
}
if (mbt.recebeParametros() == "Q") // Quero configurar
return CONFIGURAR;
if (estado == OPERANDO)
{
if (modo_eeprom == 1)
{
int qtd_porcoes_eeprom = EEPROM.read(1);
int hora_eeprom = 0;
int minuto_eeprom = 0;
if (flag_intervalo == 1) {
Serial.print("Intervalos atualmente configurados: ");
for (int i = 2; i <= 2*qtd_porcoes_eeprom; i=i+2) {
hora_eeprom = EEPROM.read(i);
minuto_eeprom = EEPROM.read(i+1);
vetor_intervalos[i-2] = hora_eeprom;
vetor_intervalos[i-1] = minuto_eeprom;
Serial.print(hora_eeprom);
Serial.print(":");
Serial.print(minuto_eeprom);
Serial.print(", ");
}
tempo_abertura = EEPROM.read(2*qtd_porcoes_eeprom+2);
Serial.println("");
flag_intervalo = 0;
}
for (int i = 0; i < 2*qtd_porcoes_eeprom; i=i+2) {
if (hora_rtc == vetor_intervalos[i] && min_rtc == vetor_intervalos[i+1] && seg_rtc == 0) {
Serial.println("RACAO DESPEJADA POR HORA FIXA");
mbt.escreveTela("RACAO DESPEJADA POR HORA FIXA");
return HORARIO_INICIO; }
}
}
else if(modo_eeprom == 2)
{
int hora_eeprom = EEPROM.read(1);
int minuto_eeprom = EEPROM.read(2);
int intervalo_eeprom = EEPROM.read(3);
tempo_abertura = EEPROM.read(4);
if (flag_intervalo == 1) {
Serial.print("Intervalos atualmente configurados: ");
for (int i = 0; i < (24/intervalo_eeprom); i++) {
vetor_intervalos[i] = intervalo_eeprom*i + hora_eeprom%intervalo_eeprom;
Serial.print(vetor_intervalos[i]);
Serial.print(":");
Serial.print(minuto_eeprom);
Serial.print(", ");
}
Serial.println("");
flag_intervalo = 0;
}
for (int i = 0; i < 24/intervalo_eeprom; i++){
if (hora_rtc == vetor_intervalos[i] && min_rtc == minuto_eeprom && seg_rtc == 0) {
Serial.println("RACAO DESPEJADA POR INTERVALO");
mbt.escreveTela("RACAO DESPEJADA POR INTERVALO");
return HORARIO_INICIO; }
}
}
}
if (estado == DESPEJO && seg_rtc == tempo_abertura) // Tempo de abertura depende do modo de operacao (porcao)
return HORARIO_FIM;
return retval;
} // obterEvento
/************************************************************************
obterAcao
Obtem uma acao da Matriz de transicao de estados
Parametros de entrada: estado (int)
evento (int)
Retorno: codigo da acao
*************************************************************************/
int obterAcao(int estado, int codigoEvento)
{
return acao_matrizTransicaoEstados[estado][codigoEvento];
} // obterAcao
/************************************************************************
obterProximoEstado
Obtem o proximo estado da Matriz de transicao de estados
Parametros de entrada: estado (int)
evento (int)
Retorno: codigo do estado
*************************************************************************/
int obterProximoEstado(int estado, int codigoEvento)
{
return proximo_estado_matrizTransicaoEstados[estado][codigoEvento];
} // obterAcao
/************************************************************************
Main
Loop principal de controle que executa a maquina de estados
Parametros de entrada: nenhum
Retorno: nenhum
*************************************************************************/
void setup()
{
Serial.begin(9600); // Começa a comunicação serial com o computador
Dabble.begin(9600); // Começa a cominucação serial com o módulo bluetooth
if (! rel.rtc.begin()) { //Se o RTC não for inicializado, faz
Serial.println("RTC NAO INICIALIZADO"); //Imprime o texto
while (1); } //Trava o programa
//rel.rtc.adjust(DateTime(2021, 7, 18, 20, 15, 00)); // Quando for necessário ajustar o horário do RTC
delay(100);
srv.servoFecha(); // Fecha o servo
srv.servoFecha(); // Fecha o servo
srv.servoFecha(); // Fecha o servo
iniciaSistema();
Serial.println("Feed-o-nator 3000 iniciado");
} // setup
void loop()
{
if (eventoInterno == NENHUM_EVENTO)
{
codigoEvento = obterEvento();
}
else
{
codigoEvento = eventoInterno;
}
if (codigoEvento != NENHUM_EVENTO)
{
codigoAcao = obterAcao(estado, codigoEvento);
estado = obterProximoEstado(estado, codigoEvento);
eventoInterno = executarAcao(codigoAcao);
Serial.print("Estado: ");
Serial.print(estado);
Serial.print(" Evento: ");
Serial.print(codigoEvento);
Serial.print(" Acao: ");
Serial.println(codigoAcao);
}
} // loop
|
7e3120d72475aa8f9793e24a973a289c1073330f | 336e7243c6b286f0937c9898ca48e0b54413387d | /libcoro/test/Selector.cpp | f951f29540d9d69d68ac5e39adc65f60f6716c93 | [
"MIT"
] | permissive | asdlei99/libcoro | a20f83a57645ca7bbfa2433e519df901deecf643 | 8cf2544bba9377e495d648a1cbfc94df781c1e93 | refs/heads/master | 2022-02-02T01:15:50.835598 | 2018-12-20T01:50:32 | 2018-12-20T01:50:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,766 | cpp | Selector.cpp | /*
* Copyright (c) 2014 Matt Fichman
*
* 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, APEXPRESS 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 <coro/Common.hpp>
#include <coro/coro.hpp>
using namespace coro;
Ptr<Event> e1(new Event);
Ptr<Event> e2(new Event);
Ptr<Event> e3(new Event);
void publisher() {
e1->notifyAll();
e2->notifyAll();
}
void consumer() {
int count = 2;
while (count > 0) {
coro::Selector()
.on(e1, [&]() { count--; std::cout << "e1" << std::endl; })
.on(e2, [&]() { count--; std::cout << "e2" << std::endl; })
.on(e3, [&]() { std::cout << "e3" << std::endl; });
}
}
int main() {
auto b = coro::start(consumer);
auto a = coro::start(publisher);
coro::run();
return 0;
}
|
0aeeb8bc2e5bd7ff9ffcc2f63d7964e0274abcc6 | fff771a3bcd6aa3a45de7cd248a80091bb22e9d8 | /Source/Editor/View/WorldEditorView.cpp | 3407abe841c7175b6db7301924d04638293b320f | [] | no_license | Blodjer/B2D | ba9e495d8e662f4d882c5b903a3b8aa422e322bf | f091d1ec72b14bdfb110e2071a27a723dd1c5d4c | refs/heads/master | 2023-08-02T09:16:12.695209 | 2021-04-14T15:38:10 | 2021-04-14T15:38:10 | 115,878,910 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,721 | cpp | WorldEditorView.cpp | #include "B2D_pch.h"
#include "WorldEditorView.h"
#include "GameEngine.h"
#include "Graphics/GHI/GHIRenderTarget.h"
#include "Graphics/OpenGL/OpenGLTexture.h"
#include "Graphics/Renderer/WorldRenderer.h"
#include "Graphics/RenderManager.h"
#include "../EditorModule.h"
#include "Graphics/Viewport.h"
#include "Game/Component/CameraComponent.h"
#include "Game/CameraEntity.h"
#include "Platform/GenericWindow.h"
#include "Game/GameInstance.h"
WorldEditorView::WorldEditorView()
{
static uint32 count = 0;
count++;
m_viewportName = "Viewport";
m_viewportName += "##";
m_viewportName += std::to_string(count);
m_viewport = new CViewport(100, 100);
m_worldRenderer = GameEngine::Instance()->GetRenderManager()->CreateRenderer<WorldRenderer>();
m_worldRenderer->m_viewport = m_viewport;
}
WorldEditorView::~WorldEditorView()
{
GameEngine::Instance()->GetRenderManager()->DeleteRenderer(m_worldRenderer);
// TODO: Remove temporary camera
delete m_viewport;
}
void WorldEditorView::Tick(float deltaTime)
{
if (!m_viewport->GetCamera() && GameEngine::Instance()->GetGameInstance() && GameEngine::Instance()->GetGameInstance()->GetWorld())
{
CameraEntity* camera = GameEngine::Instance()->GetGameInstance()->GetWorld()->AddSystemEntityObject<CameraEntity>();
m_viewport->SetCamera(camera);
}
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0));
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0, 0));
ImGui::SetNextWindowSizeConstraints(ImVec2(200, 120), ImVec2(9999, 9999));
ImGui::SetNextWindowSize(ImVec2(800, 500), ImGuiCond_Once);
if (ImGui::Begin(m_viewportName.c_str(), &m_open, ImGuiWindowFlags_NoCollapse))
{
if (m_viewport->GetCamera())
{
CameraComponent& cameraComponent = m_viewport->GetCamera()->GetComponent<CameraComponent>();
bool isPerspective = cameraComponent.targetProjection == EProjection::Perspective;
if (ImGui::Checkbox("Perspective", &isPerspective))
{
m_viewport->GetCamera()->SetProjection(isPerspective ? EProjection::Perspective : EProjection::Orthographic);
}
//cameraComponent.projection = isPerspective ? EProjection::Perspective : EProjection::Orthographic;
if (isPerspective)
{
ImGui::SliderFloat("Field Of View", &cameraComponent.fov, 1.0f, 180.0f, "%.0f deg");
}
else
{
ImGui::SliderFloat("Orthographic Width", &cameraComponent.orthoWidth, 0.0f, 1000.0f);
}
ImGui::InputFloat("Near Plane", &cameraComponent.nearPlane);
ImGui::InputFloat("Far Plane", &cameraComponent.farPlane);
}
ImVec2 const contentSize = ImGui::GetContentRegionAvail();
ImVec2 viewportSize(contentSize.x, contentSize.y - 17.0f);
viewportSize.x = UMath::Max(viewportSize.x, 100.0f);
viewportSize.y = UMath::Max(viewportSize.y, 100.0f);
uint32 const viewportWidth = UMath::FloorToUInt(viewportSize.x);
uint32 const viewportHeight = UMath::FloorToUInt(viewportSize.y);
m_viewport->SetSize(viewportWidth, viewportHeight);
ImTextureID texID = 0;
if (GHITexture const* texture = m_worldRenderer->GetRenderOutput())
{
texID = texture->GetNativePtr();
}
ImGui::Image(texID, ImVec2(contentSize.x, contentSize.y - 17), ImVec2(1, 1), ImVec2(0, 0));
ImGui::Text(" Render: %.2fms", m_worldRenderer->GetRenderTime());
}
ImGui::End();
ImGui::PopStyleVar();
ImGui::PopStyleVar();
if (!m_open)
{
Close();
}
}
|
b6f9cc79b5fd414a1e8340d6d4f1ae2afc11b5c4 | 6540e55de679a240681ede4db4380ecf8610c926 | /snake.cpp | ef6cc7a5e84a88198c5d61cf725b991e83cfada9 | [] | no_license | fedronic-louis/Louis | 8a79874f98b482f6df84627b1f7ea81dec88c83d | 5f77666d9e114db8a120cbd1c2714e043849721f | refs/heads/master | 2020-09-29T22:24:00.363821 | 2020-01-10T11:08:41 | 2020-01-10T11:08:41 | 227,136,285 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 224 | cpp | snake.cpp | #include "snake.h"
#include "cat.h"
#include "carnivores.h"
#include <string>
#include <iostream>
using namespace std;
/**
* @brief Snake::Snake
*/
Snake::Snake()
:Carnivores (0,"Human", 0, "chat", 1,1,2,2,500)
{
}
|
7b1735bf5a0e91dffc42be2612d698c961ade65c | 27a7b51c853902d757c50cb6fc5774310d09385a | /[Client]LUNA/cHousingMgr.cpp | 8a4414199d341896600b90859a0c20e91ffd5356 | [] | no_license | WildGenie/LUNAPlus | f3ce20cf5b685efe98ab841eb1068819d2314cf3 | a1d6c24ece725df097ac9a975a94139117166124 | refs/heads/master | 2021-01-11T05:24:16.253566 | 2015-06-19T21:34:46 | 2015-06-19T21:34:46 | 71,666,622 | 4 | 2 | null | 2016-10-22T21:27:35 | 2016-10-22T21:27:34 | null | UHC | C++ | false | false | 137,117 | cpp | cHousingMgr.cpp | #include "cHousingMgr.h"
#include "MouseCursor.h"
#include "MHMap.h"
#include "npc.h"
#include "GameResourceManager.h"
#include "ObjectManager.h"
#include "MoveManager.h"
#include "tilemanager.h"
#include "ObjectStateManager.h"
#include "AppearanceManager.h"
#include "Furniture.h"
#include "MouseEventReceiver.h"
#include "Item.h"
#include "mhfile.h"
#include "GameIn.h"
#include "MHCamera.h"
#include "ChatManager.h"
#include "MainTitle.h"
#include "ItemManager.h"
#include "cScrollIconGridDialog.h"
#include "cWindowManager.h"
#include "WindowIDEnum.h"
#include "cMsgBox.h"
#include "MiniMapDlg.h"
#include "../hseos/Monstermeter/SHMonstermeterDlg.h"
#include "cHouseNameDlg.h"
#include "InventoryExDialog.h"
#include "HousingRevolDlg.h"
#include "cHouseSearchDlg.h"
#include "cHousingDecoPointDlg.h"
#include "cHousingActionPopupMenuDlg.h"
#include "cHousingMainPointDlg.h"
#include "cHousingWarehouseDlg.h"
#include "cHousingWarehouseButtonDlg.h"
#include "cHousingStoredIcon.h"
//090708 pdy 기획팀 요청으로 UI 수정
#include "cHousingDecoModeBtDlg.h"
#include "cHousingWebDlg.h"
#include "../[cc]skill/Client/Info//ActiveSkillInfo.h"
#include "../[cc]skill/client/manager/skillmanager.h"
#include "../input/UserInput.h"
GLOBALTON(cHousingMgr)
cHousingMgr::cHousingMgr(void)
{
HousingInfoClear();
}
cHousingMgr::~cHousingMgr(void)
{
Release();
}
void cHousingMgr::HousingInfoClear() // 하우징관련정보 한방에 클리어.
{
m_bDecorationMode = FALSE;
m_bDecoMove = FALSE;
m_bDecoAngle = FALSE;
m_pDecoObj = NULL;
m_PickAnotherObjHandle = NULL;
m_bDoDecoration = FALSE;
m_bHouseOwner = FALSE;
m_bShowTest = FALSE;
m_dwCameraFilterIdxOnDecoMode = 0 ;
//091016 pdy 필드 설치 한도 카운트가 초기화 안되있는 버그 수정
m_dwFieldFurnitureNum = 0;
m_CurActionInfo.Clear();
m_CurHouse.Clear();
}
void cHousingMgr::Init()
{
HousingInfoClear();
Release();
//테스트
LoadHousing_Setting();
if( !IsHousingMap() )
return;
m_stFurniturePool.Init(MAX_FURNITURE_STORAGE_NUM, 50 ,"stFurniture");
m_CurHouse.pFurnitureList.Initialize(MAX_FURNITURE_STORAGE_NUM);
m_CurHouse.pNotDeleteFurnitureList.Initialize(100);
m_FieldFurnitureTable.Initialize(MAX_FURNITURE_STORAGE_NUM); //090325 pdy 필드에 최대등록수는 카테고리 * 슬롯
}
void cHousingMgr::LoadHousing_Setting()
{
m_HousingSettingInfo.Clear();
CMHFile file;
char StrBuf[256] = {0,};
bool bPasing = FALSE;
int iGroupCount = -1;
DWORD dwCount = 0;
const float f_1Radian = 0.01745f;
const float fPI = 3.14159f;
DWORD dwCurMapNum = 0;
if( ! file.Init("System/Resource/Housing_Setting.bin", "rb" ) )
return;
while( ! file.IsEOF() )
{
file.GetString(StrBuf);
if(! bPasing)
{
//Todo OneLine Passing
if( StrBuf[0] != '#' )
{
file.GetLine(StrBuf,256);
continue;
}
else if( strcmp( StrBuf , "#RANKPOINT_WEIGHT" ) == 0 ) //하우징 순위산출 가중치
{
m_HousingSettingInfo.fDecoPoint_Weight = file.GetFloat();
m_HousingSettingInfo.fRecommend_Weight = file.GetFloat();
m_HousingSettingInfo.fVisitor_Weight = file.GetFloat();
continue;
}
else if( strcmp( StrBuf , "#STARPOINT_NOMAL" ) == 0 ) //별포인트 (별포인트 = 꾸미기보너스 사용시 차감되는 포인트)
{
m_HousingSettingInfo.dwStarPoint_Nomal = file.GetDword();
}
else if( strcmp( StrBuf , "#STARPOINT_RANKER" ) == 0 ) //랭커용 별포인트
{
m_HousingSettingInfo.dwStarPoint_Ranker = file.GetDword();
}
else if(strcmp( StrBuf , "#RANKINGDAY" ) == 0 ) //랭킹을 계산하는 날자
{
m_HousingSettingInfo.dwRankingDay = file.GetDword();
}
else if( strcmp( StrBuf , "#GENERALFUNITURE_NUM" ) == 0 ) //기본제공가구 숫자 ( 단계별로 존재 )
{
iGroupCount++;
dwCount=0;
DWORD dwNum = file.GetFloat();
m_HousingSettingInfo.dwGeneralFunitureNumArr[iGroupCount] = dwNum;
m_HousingSettingInfo.pGeneralFunitureList[ iGroupCount ] = new stGeneralFunitureInfo[ dwNum ];
continue;
}
else if( strcmp( StrBuf , "#GENERALFUNITURE" ) == 0 ) //기본제공 가구 정보
{
m_HousingSettingInfo.pGeneralFunitureList[ iGroupCount ][ dwCount ].dwItemIndex = file.GetDword();
m_HousingSettingInfo.pGeneralFunitureList[ iGroupCount ][ dwCount ].vWorldPos.x = file.GetFloat();
m_HousingSettingInfo.pGeneralFunitureList[ iGroupCount ][ dwCount ].vWorldPos.y = file.GetFloat();
m_HousingSettingInfo.pGeneralFunitureList[ iGroupCount ][ dwCount ].vWorldPos.z = file.GetFloat();
float fAngle = 0.0f;
fAngle = file.GetFloat();
if( fAngle != 0.0f )
{
//스크립트의 각도값은 -180~180도로 넣게 된다. 이것을 라디안 값으로 바꾸자.
fAngle *= f_1Radian;
//180도보다
if( fAngle > fPI )
fAngle = fPI ;
if( fAngle < -fPI )
fAngle = -fPI ;
}
m_HousingSettingInfo.pGeneralFunitureList[ iGroupCount ][ dwCount ].fAngle = fAngle;
dwCount++;
continue;
}
else if( strcmp( StrBuf , "#DynamicRankHouseNpcList" ) == 0 ) //동적생성 랭컹 하우스 Npc List
{
stDynamicHouseNpcMapInfo* pMapInfo = new stDynamicHouseNpcMapInfo();
dwCurMapNum = pMapInfo->MapIndex = file.GetDword();
m_HousingSettingInfo.m_DynamicHouseNpcMapInfoList.Add( pMapInfo , pMapInfo->MapIndex );
}
else if( strcmp( StrBuf , "#DynamicRankHouseNpc" ) == 0 ) //동적생성 랭컹 하우스 Npc 정보
{
stDynamicHouseNpcMapInfo* pMapInfo = m_HousingSettingInfo.m_DynamicHouseNpcMapInfoList.GetData( dwCurMapNum ) ;
stDynamicHouseNpcInfo* pNpcInfo = new stDynamicHouseNpcInfo();
pNpcInfo->dwRankTypeIndex = file.GetDword();
pNpcInfo->dwNpcKind = file.GetDword();
pNpcInfo->fWorldPosX = file.GetFloat();
pNpcInfo->fWorldPosZ = file.GetFloat();
float fAngle = 0.0f;
fAngle = file.GetFloat();
pNpcInfo->fAnlge = fAngle;
pNpcInfo->fDistance = file.GetFloat();
pMapInfo->pDynamicHouseNpcList.Add(pNpcInfo , pNpcInfo->dwRankTypeIndex );
}
else if( strcmp( StrBuf , "#DynamicRankHouseNpcEnd" ) == 0 )
{
dwCurMapNum = 0 ;
}
//클라이언트에서만 사용
else if( strcmp( StrBuf , "#CameraFilterIndexOnDecoMode" ) == 0 )
{
m_dwCameraFilterIdxOnDecoMode = file.GetDword();
}
}
}
}
void cHousingMgr::Release()
{
m_HousingSettingInfo.Clear();
ReleaseAllMarkingTest();
m_stFurniturePool.Release();
m_CurHouse.pFurnitureList.RemoveAll();
m_CurHouse.pNotDeleteFurnitureList.RemoveAll();
m_FieldFurnitureTable.RemoveAll();
m_WaitForMakingObjList.RemoveAll();
m_AlphaHandleList.RemoveAll();
}
// 091016 pdy 로딩중 백업 패킷리스트에 Add시 AddHead를 AddTail로 수정
BOOL cHousingMgr::BackupNetworkMsg(BYTE Protocol,void* pMsg)
{
//로딩중에 백업이 필요한 프로토콜만 넣자
switch(Protocol)
{
case MP_HOUSE_STORED_NACK:
case MP_HOUSE_RESTORED_ACK:
case MP_HOUSE_RESTORED_NACK:
case MP_HOUSE_DECOMODE_ACK:
case MP_HOUSE_DECOMODE_NACK:
case MP_HOUSE_INSTALL_NACK:
case MP_HOUSE_UNINSTALL_NACK:
case MP_HOUSE_ACTION_NACK:
case MP_HOUSE_UPDATE_NACK:
case MP_HOUSE_DESTROY_ACK:
case MP_HOUSE_DESTROY_NACK:
case MP_HOUSE_VOTE_ACK:
case MP_HOUSE_VOTE_NACK:
case MP_HOUSE_EXIT_NACK:
case MP_HOUSE_NOTIFY_VISIT:
case MP_HOUSE_NOTIFY_EXIT:
case MP_HOUSE_NOTIFY_ACTION:
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
MSG_DWORD* pBackupMsg = new MSG_DWORD;
*pBackupMsg = *pmsg;
m_BackupPacketList.AddTail(pBackupMsg);
}
break;
case MP_HOUSE_BONUS_ACK :
case MP_HOUSE_BONUS_NACK :
{
MSG_DWORD2* pmsg = (MSG_DWORD2*)pMsg;
MSG_DWORD2* pBackupMsg = new MSG_DWORD2;
*pBackupMsg = *pmsg;
m_BackupPacketList.AddTail(pBackupMsg);
}
break;
case MP_HOUSE_UNINSTALL_ACK:
{
MSG_DWORD3* pmsg = (MSG_DWORD3*)pMsg;
MSG_DWORD3* pBackupMsg = new MSG_DWORD3;
*pBackupMsg = *pmsg;
m_BackupPacketList.AddTail(pBackupMsg);
}
break;
case MP_HOUSE_USEITEM_NACK:
{
MSG_DWORD4* pmsg = (MSG_DWORD4*)pMsg;
MSG_DWORD4* pBackupMsg = new MSG_DWORD4;
*pBackupMsg = *pmsg;
m_BackupPacketList.AddTail(pBackupMsg);
}
break;
case MP_HOUSE_ACTION_FORCE_GETOFF_ACK:
{
MSG_DWORD3* pmsg = (MSG_DWORD3*)pMsg;
MSG_DWORD3* pBackupMsg = new MSG_DWORD3;
*pBackupMsg = *pmsg;
m_BackupPacketList.AddTail(pBackupMsg);
}
break;
case MP_HOUSE_ACTION_ACK:
{
MSG_DWORD5* pmsg = (MSG_DWORD5*)pMsg;
MSG_DWORD5* pBackupMsg = new MSG_DWORD5;
*pBackupMsg = *pmsg;
m_BackupPacketList.AddTail(pBackupMsg);
}
break;
case MP_HOUSE_STORED_ACK:
case MP_HOUSE_INSTALL_ACK:
case MP_HOUSE_UPDATE_ACK:
{
MSG_HOUSE_FURNITURE* pmsg = (MSG_HOUSE_FURNITURE*)pMsg;
MSG_HOUSE_FURNITURE* pBackupMsg = new MSG_HOUSE_FURNITURE;
*pBackupMsg = *pmsg;
m_BackupPacketList.AddTail(pBackupMsg);
}
break;
case MP_HOUSE_EXTEND:
{
MSG_HOUSE_EXTEND* pmsg = (MSG_HOUSE_EXTEND*)pMsg;
MSG_HOUSE_EXTEND* pBackupMsg = new MSG_HOUSE_EXTEND;
*pBackupMsg = *pmsg;
m_BackupPacketList.AddTail(pBackupMsg);
}
break;
default:
{
return FALSE;
}
}
return TRUE;
}
void cHousingMgr::NetworkMsgParse(BYTE Protocol,void* pMsg)
{
if( m_dwHouseLoadState & eHSLoad_NOWLOADING ) //eHSLoad_NOWLOADING 플레그가 설정되어있다면 하우스 로딩중이다.
{
if ( BackupNetworkMsg( Protocol, pMsg) ) //로딩관련 이외의 패킷은 리스트에 담자
{
return; //로딩과 관련없는 패킷이라면 백업되었음으로 처리없이 리턴
}
}
switch(Protocol)
{
case MP_HOUSE_CREATE_ACK: House_Create_Ack(pMsg);break; //하우스 생성
case MP_HOUSE_CREATE_NACK: House_Create_Nack(pMsg);break; //하우스 생성실패
case MP_HOUSE_ENTRANCE_NACK: House_Entrance_Nack(pMsg);break; //하우스 입장실패
case MP_HOUSE_INFO: House_Info(pMsg);break; //하우스 정보
case MP_HOUSE_FURNITURELIST: House_FurnitureList(pMsg);break; //가구정보 리스트
case MP_HOUSE_STORED_ACK: House_Stored_Ack(pMsg);break; //가구창고보관 (인벤 아이템 -> 창고 가구)
case MP_HOUSE_STORED_NACK: House_Stored_Nack(pMsg);break; //가구창고보관실패
case MP_HOUSE_RESTORED_ACK: House_Restored_Ack(pMsg);break; //가구창고보관해제 (창고 가구 -> 인벤아이템 )
case MP_HOUSE_RESTORED_NACK: House_Restored_Nack(pMsg);break; //가구창고보관해제 실패
case MP_HOUSE_DECOMODE_ACK: House_Decomode_Ack(pMsg);break; //꾸미기모드 On/Off
case MP_HOUSE_DECOMODE_NACK: House_Decomode_Nack(pMsg);break; //꾸미기모드 On/Off 실패
case MP_HOUSE_INSTALL_ACK: House_Install_Ack(pMsg);break; //필드에 가구설치
case MP_HOUSE_INSTALL_NACK: House_Install_Nack(pMsg);break; //필드에 가구설치 실패
case MP_HOUSE_UNINSTALL_ACK: House_UnInstall_Ack(pMsg);break; //필드에서 가구설치 해제
case MP_HOUSE_UNINSTALL_NACK: House_UnInstall_Nack(pMsg);break; //필드에서 가구설치 해제 실패
case MP_HOUSE_ACTION_FORCE_GETOFF_ACK: House_Action_Force_GetOff_Ack(pMsg); break; // 가구에서 강제로 내리기
case MP_HOUSE_ACTION_FORCE_GETOFF_NACK: House_Action_Force_GetOff_Nack(pMsg); break; // 가구에서 강제로 내리기 실패
case MP_HOUSE_ACTION_ACK: House_Action_Ack(pMsg);break; //가구에 대한 액션 발동
case MP_HOUSE_ACTION_NACK: House_Action_Nack(pMsg);break; //가구에 대한 액션 발동 실패
case MP_HOUSE_BONUS_ACK : House_Bonus_Ack(pMsg);break; //꾸미기 보너스 사용
case MP_HOUSE_BONUS_NACK : House_Bonus_Nack(pMsg);break; //꾸미기 보너스 사용 실패
case MP_HOUSE_UPDATE_ACK: House_Update_Ack(pMsg);break; //가구 정보 갱신 (위치,회전,머터리얼,기간오버삭제)
case MP_HOUSE_UPDATE_NACK: House_Update_Nack(pMsg);break; //가구 정보 갱신 실패
case MP_HOUSE_UPDATE_MATERIAL_ACK: House_Update_Material_Ack(pMsg);break; //가구 머터리얼 정보 갱신
case MP_HOUSE_DESTROY_ACK: House_Destroy_Ack(pMsg);break; //가구 삭제
case MP_HOUSE_DESTROY_NACK: House_Destroy_Nack(pMsg);break; //가구 삭제 실패
case MP_HOUSE_VOTE_ACK: House_Vote_Ack(pMsg);break; //하우스 추천
case MP_HOUSE_VOTE_NACK: House_Vote_Nack(pMsg);break; //하우스 추천 실패
case MP_HOUSE_EXIT_NACK: House_Exit_Nack(pMsg);break; //하우스 나가기 실패
case MP_HOUSE_NOTIFY_VISIT: House_Notify_Visit(pMsg);break; //Player 하우스 방문 알림
case MP_HOUSE_NOTIFY_EXIT: House_Notify_Exit(pMsg);break; //Player 하우스 나가기 알림
case MP_HOUSE_NOTIFY_ACTION: House_Notify_Action(pMsg);break; //Player 액션 알림
case MP_HOUSE_EXTEND: House_Extend(pMsg);break; //하우스 확장 처리 (문 & 문설치류 & 기본제공가구가 설치해제or교체 된다)
case MP_HOUSE_USEITEM_NACK: House_UseItem_Nack(pMsg);break; //하우스 관련아이템 사용실패
case MP_HOUSE_CHEAT_GETINFOALL_ACK: House_Cheat_GetInfoAll_Ack(pMsg);break; //모든 하우스 정보 출력 치트
case MP_HOUSE_CHEAT_GETINFOONE_ACK: House_Cheat_GetInfoOne_Ack(pMsg);break; //특정 하우스 정보 출력 치트
case MP_HOUSE_CHEAT_DELETE_ACK: House_Cheat_Delete_Ack(pMsg);break; //특정 하우스 삭제
case MP_HOUSE_CHEAT_DELETE_NACK: House_Cheat_Delete_Nack(pMsg);break; //특정 하우스 삭제 실패
}
//-----------------------------------------------------------------------------------------------
// 하우스 로딩이 끝났다면 리스트에 저장된 패킷을 한프레임안에 일괄적으로 처리해주자
//-----------------------------------------------------------------------------------------------
if( m_dwHouseLoadState & eHSLoad_NOWLOADING ) //eHSLoad_NOWLOADING 플레그가 설정되어있다면 로드가 완료되었는지 봐야한다
{
if( (m_dwHouseLoadState - eHSLoad_NOWLOADING) == eHSLoad_OK ) //현프레임에 로드가 완료되었다면 필요한 처리를 하자.
{
m_dwHouseLoadState -= eHSLoad_NOWLOADING; //eHSLoad_NOWLOADING 플레그제거 로드처리 OK
//보관 아이콘 프로세스의 마지막시간을 현프레임으로
m_dwLastRemainProcessTime = gCurTime;
#ifdef _GMTOOL_
//091016 pdy 내부 테스트를 위한 하우징 정보 로그추가
SYSTEMTIME systemTime ;
GetLocalTime( &systemTime ) ;
FILE *fp = fopen("HouseInfoLog.log", "a+");
if( fp)
{
fprintf(fp,"\n");
fprintf(fp,"HouseLoad_OK [%02d:%02d:%02d] \n", systemTime.wHour , systemTime.wMinute , systemTime.wSecond);
fprintf(fp,"Installed Furniture Num : %d\n" ,m_dwFieldFurnitureNum);
fprintf(fp,"Stored Furnitrue Num By OwnerList: %d\n" ,m_CurHouse.pFurnitureList.GetDataNum() ) ;
for(int i=0; i< MAX_HOUSING_CATEGORY_NUM ; i++)
{
fprintf(fp,"Stored Num By Category : Category %d = %d \n",i,m_CurHouse.m_dwCategoryNum[i]);
}
fprintf(fp,"BackupPacketList Num %d \n" ,m_BackupPacketList.GetCount() ) ;
fprintf(fp,"\n");
fclose(fp);
}
#endif
//백업된 패킷을 처리하자
PTRLISTPOS pos = m_BackupPacketList.GetHeadPosition();
while( pos )
{
MSGBASE* pBackupMsg = (MSGBASE*)m_BackupPacketList.GetNext( pos ) ;
if( pBackupMsg )
{
NetworkMsgParse(pBackupMsg->Protocol,pBackupMsg); //eHSLoad_NOWLOADING 플레그가 없어졌기때문에 무한 재귀호출이 아니다.
SAFE_DELETE( pBackupMsg );
}
}
m_BackupPacketList.RemoveAll();
//내집창고가 항상떠있는 것으로 수정되었다.
//하우스 로딩이 끝난후 띄워주자.
if( GAMEIN->GetHousingWarehouseDlg() )
{
GAMEIN->GetHousingWarehouseDlg()->SetActive( TRUE ) ;
}
}
}
}
void cHousingMgr::House_Create_Ack(void* pMsg)
{
//090527 pdy 하우징 시스템메세지 [집생성성공]
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1880 )); //하우스 생성 성공
GAMEIN->GetHouseNameDlg()->SetDisable(FALSE);
GAMEIN->GetHouseNameDlg()->SetActive(FALSE);
}
void cHousingMgr::House_Create_Nack(void* pMsg)
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
//090527 pdy 하우징 시스템메세지 서버NACK [집생성실패]
//이미 하우스를 가지고있다.
if( eHOUSEERR_HAVEHOUSE == pmsg->dwData )
{
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1881 ) );
}
//주민등록증 없음
else if( eHOUSEERR_NOTREGIST == pmsg->dwData )
{
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1284 ) );
}
//하우스 생성 실패
else
{
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1882 ) );
}
PrintDebugErrorMsg( "MP_HOUSE_CREATE_NACK" ,pmsg->dwData);
GAMEIN->GetHouseNameDlg()->SetDisable(FALSE);
}
void cHousingMgr::House_Entrance_Nack(void* pMsg)
{
MSG_DWORD4* pmsg = (MSG_DWORD4*)pMsg;
DWORD dwErr = pmsg->dwData1;
DWORD dwLinkKind = pmsg->dwData2;
DWORD dwSlot = pmsg->dwData4;
//090527 pdy 하우징 시스템메세지 서버NACK [집방문 실패]
switch(dwErr)
{
case eHOUSEERR_NOHOUSE : //하우스 미존재
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1883 ) );
break;
case eHOUSEERR_FULL : //동시 Open 하우스 재한 (1000개)
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1875 ) );
break;
case eHOUSEERR_HOME2HOME_FAIL: //내집 -> 내집 이동 막기
CHATMGR->AddMsg(CTC_SYSMSG, CHATMGR->GetChatMsg(1904) );
break;
case eHOUSEERR_ONVEHICLE: //탈것 -> 집이동 실패
CHATMGR->AddMsg(CTC_SYSMSG, CHATMGR->GetChatMsg(2037) );
break;
default: //입장 실패
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1884 ) );
break;
}
PrintDebugErrorMsg("MP_HOUSE_ENTRANCE_NACK",dwErr);
if( dwLinkKind == eHouseVisitByItem )
{
CItem* pItem = GAMEIN->GetInventoryDialog()->GetItemForPos(dwSlot);
if( pItem )
pItem->SetLock(FALSE);
}
GAMEIN->GetHouseSearchDlg()->SetDisableState(FALSE);
}
void cHousingMgr::House_Info(void* pMsg)
{
//하우스 각종 정보를 받아 놓는다
MSG_HOUSE_HOUSEINFO* pmsg = (MSG_HOUSE_HOUSEINFO*)pMsg;
m_CurHouse.dwChannelID = pmsg->dwChannel;
m_CurHouse.dwDecoPoint = pmsg->dwDecoPoint;
m_byRankHouse = pmsg->cRank;
memcpy(&(m_CurHouse.HouseInfo),&(pmsg->HouseInfo),sizeof(stHouseInfo)); //하우스 정보를 복사한다
DWORD dwUserIdx = TITLE->GetUserIdx();
m_bHouseOwner = (dwUserIdx == m_CurHouse.HouseInfo.dwOwnerUserIndex )? TRUE : FALSE; //집주인인가 확인후 저장한다.
cHousingMainPointDlg* pMainPointDlg = NULL;
pMainPointDlg = GAMEIN->GetHousingMainPointDlg();
if( pMainPointDlg ) //매인 유아이의 집정보를 셋팅한다
{
pMainPointDlg->SetDecoPoint( m_CurHouse.dwDecoPoint );
pMainPointDlg->SetVisitCount( m_CurHouse.HouseInfo.dwTotalVisitCount ) ;
}
if( GAMEIN->GetHousingDecoPointDlg() )
GAMEIN->GetHousingDecoPointDlg()->RefreshBonusList(m_CurHouse.dwDecoPoint,m_CurHouse.HouseInfo.dwDecoUsePoint);
// NYJ
if(pmsg->bInit) //하우스 정보가 최초로딩때 온것이라면
{
m_dwHouseLoadState |= eHSLoad_HOUSEINFO; //m_dwHouseLoadState에 eHSLoad_HOUSEINFO를 추가
if( pMainPointDlg )
pMainPointDlg->SetHouseName( m_CurHouse.HouseInfo.szHouseName ); //매인 유아이의 집이름은 최초로딩때 한번 셋팅한다
if( GAMEIN->GetHousingMainPointDlg() ) //집정보가 왔으니 매인 유아이를 연다
GAMEIN->GetHousingMainPointDlg()->SetActive( TRUE ) ;
if( GAMEIN->GetHousingWarehouseButtonDlg()) //창고버튼도 연다
GAMEIN->GetHousingWarehouseButtonDlg()->SetActive( TRUE ) ;
//090708 pdy 기획팀 요청으로 UI 수정
if( GAMEIN->GetHousingDecoModeBtDlg()) //꾸미기 모드 버튼도 연다
GAMEIN->GetHousingDecoModeBtDlg()->SetActive( TRUE ) ;
}
#ifdef _GMTOOL_
//091016 pdy 내부 테스트를 위한 하우징 정보 로그추가
if( pmsg->bInit )
{
SYSTEMTIME systemTime ;
GetLocalTime( &systemTime ) ;
FILE *fp = fopen("HouseInfoLog.log", "a+");
if( fp)
{
fprintf(fp,"MP_HOUSE_INFO HouseName : %s Chanel : %d [%02d:%02d:%02d] \n", pmsg->HouseInfo.szHouseName,pmsg->dwChannel, systemTime.wHour , systemTime.wMinute , systemTime.wSecond);
fprintf(fp,"\n");
fclose(fp);
}
}
#endif
}
void cHousingMgr::House_FurnitureList(void* pMsg)
{
//보유중인 가구 리스트를 받는다 현재 카테고리 별로 한뭉텅이씩 날라온다.
static DWORD dwLoadCount = 0;
MSG_HOUSE_FURNITURELIST* pmsg = (MSG_HOUSE_FURNITURELIST*)pMsg;
if( pmsg->wNum )
{
DWORD dwUserIdx = TITLE->GetUserIdx();
for( int i=0; i < pmsg->wNum ; i++)
{
if( pmsg->Furniture[i].dwObjectIndex )
{
m_CurHouse.m_dwFurnitureList[pmsg->wCategory][pmsg->Furniture[i].wSlot] = pmsg->Furniture[i].dwObjectIndex;
//상태값이 인스톨이면 필드에 설치
if( pmsg->Furniture[i].wState == eHOUSEFURNITURE_STATE_INSTALL )
{
InstallFunitureToField( &pmsg->Furniture[i] , TRUE );
}
if( pmsg->Furniture[i].dwOwnerUserIndex == dwUserIdx )
{
//집주인이면 퍼니쳐리스트에 넣자 (창고에 보유 가구리스트)
stFurniture* pNewFuniture = m_stFurniturePool.Alloc();
*pNewFuniture = pmsg->Furniture[i];
m_CurHouse.pFurnitureList.Add( pNewFuniture, pNewFuniture->dwObjectIndex );
if( pmsg->Furniture[i].bNotDelete )
{
m_CurHouse.pNotDeleteFurnitureList.Add(pNewFuniture , pNewFuniture->dwObjectIndex);
}
cHousingWarehouseDlg* pDlg = GAMEIN->GetHousingWarehouseDlg();
pDlg->AddIcon( pNewFuniture ); //창고Dlg에 아이콘을 Add
m_CurHouse.m_dwCategoryNum[pmsg->wCategory]++; //카테고리에 보유갯수 ++
}
else if( pmsg->Furniture[i].bNotDelete )
{
CFurniture* pFurniture = m_FieldFurnitureTable.GetData(pmsg->Furniture[i].dwObjectIndex);
if(! pFurniture )
continue;
//기본설치 품목은 집주인이 아니어도 가지고 있자.
m_CurHouse.pNotDeleteFurnitureList.Add(pFurniture->GetFurnitureInfo() , pFurniture->GetFurnitureInfo()->dwObjectIndex);
}
}
}
}
dwLoadCount++;
if( MAX_HOUSING_CATEGORY_NUM == dwLoadCount )
{
m_dwHouseLoadState |= eHSLoad_FURNITURELIST;
dwLoadCount = 0;
//090608 pdy 마킹관련 버그 수정
CheckAllMarkingObjByHeroZone(); //모든가구를 받았다면 히어로와 겹치는 마킹이 되어있는지 채크
}
#ifdef _GMTOOL_
//091016 pdy 내부 테스트를 위한 하우징 정보 로그추가
SYSTEMTIME systemTime ;
GetLocalTime( &systemTime ) ;
FILE *fp = fopen("HouseInfoLog.log", "a+");
if( fp)
{
fprintf(fp,"MP_HOUSE_FURNITURELIST Categoty : %d [%02d:%02d:%02d] \n", pmsg->wCategory,systemTime.wHour , systemTime.wMinute , systemTime.wSecond);
fclose(fp);
}
#endif
}
void cHousingMgr::House_Stored_Ack(void* pMsg)
{
//가구 창고에 보관
MSG_HOUSE_FURNITURE* pmsg = (MSG_HOUSE_FURNITURE*)pMsg;
DWORD dwUserIdx = TITLE->GetUserIdx();
if( pmsg->Furniture.dwOwnerUserIndex == dwUserIdx ) //가구 주인일경우
{
stFurniture* pNewFuniture = m_stFurniturePool.Alloc(); //메모리 할당
#ifdef _GMTOOL_
if(! pNewFuniture)
CHATMGR->AddMsg( CTC_SYSMSG, "HousingErr(Cli) : Memory Alloc Failed" );
if(! pNewFuniture->dwObjectIndex)
CHATMGR->AddMsg( CTC_SYSMSG, "HousingErr(Srv) : ObjectIndex Alloc Failed" );
#endif
*pNewFuniture = pmsg->Furniture;
m_CurHouse.pFurnitureList.Add( pNewFuniture, pNewFuniture->dwObjectIndex ); //창고테이블에 등록
cHousingWarehouseDlg* pDlg = GAMEIN->GetHousingWarehouseDlg();
pDlg->AddIcon( pNewFuniture ); //창고Dlg에 아이콘을 Add
pDlg->FocusOnByFurniture( pNewFuniture ); //스크롤,텝 등을 현가구로 맞춰준다.
m_CurHouse.m_dwFurnitureList[pNewFuniture->wCategory][pNewFuniture->wSlot] = pNewFuniture->dwObjectIndex;
m_CurHouse.m_dwCategoryNum[pNewFuniture->wCategory]++; //카테고리에 보유갯수 ++
const ITEM_INFO* info = ITEMMGR->GetItemInfo( pNewFuniture->dwLinkItemIndex );
if( info )
{
//090527 pdy 하우징 시스템메세지 [인벤->창고 보관성공]
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1879 ) , info->ItemName ); //1879 "%s가 내 집 창고로 이동 하였습니다."
}
}
}
void cHousingMgr::House_Stored_Nack(void* pMsg)
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
PrintDebugErrorMsg("MP_HOUSE_STORED_NACK",pmsg->dwData);
}
void cHousingMgr::House_Restored_Ack(void* pMsg)
{
//가구 창고에서 보관해제
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
DWORD dwUserIdx = TITLE->GetUserIdx();
if( m_CurHouse.HouseInfo.dwOwnerUserIndex == dwUserIdx)
{
stFurniture* pRestoredFn = m_CurHouse.pFurnitureList.GetData(pmsg->dwData); //가구 주인일경우가지고있다
if( pRestoredFn )
{
//보관해제이므로 가구를 삭제하자
DestroyFuniture(pRestoredFn);
}
}
}
void cHousingMgr::House_Restored_Nack(void* pMsg)
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
stFurniture* pRestoredFn = m_CurHouse.pFurnitureList.GetData(pmsg->dwData); //가구 주인일경우가지고있다
if( pRestoredFn )
{
cHousingWarehouseDlg* pDlg = GAMEIN->GetHousingWarehouseDlg();
if( pDlg)
{
cHousingStoredIcon* pICon = pDlg->GetStoredIconIcon(pRestoredFn->wCategory-1 , pRestoredFn->wSlot);
if( pICon )
pICon->SetLock(FALSE);
}
}
PrintDebugErrorMsg("MP_HOUSE_RESTORED_NACK",pmsg->dwData);
}
void cHousingMgr::House_Decomode_Ack(void* pMsg)
{
//꾸미기 모드 On/Off
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
if( pmsg->dwObjectID == gHeroID)
{
//집주인이 자신일때 꾸미기 모드 실행
SetDecorationMode(BOOL(pmsg->dwData));
}
else
{
//3자일때
CPlayer* pPlayer = (CPlayer*)OBJECTMGR->GetObject(pmsg->dwObjectID);
if(! pPlayer )
return;
if( pmsg->dwData )
{
OBJECTSTATEMGR->StartObjectState(pPlayer, eObjectState_Housing);
}
else
{
OBJECTSTATEMGR->EndObjectState(pPlayer, eObjectState_Housing);
}
}
}
void cHousingMgr::House_Decomode_Nack(void* pMsg)
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
if( pmsg->dwObjectID == gHeroID)
{
PrintDebugErrorMsg("MP_HOUSE_DECOMODE_NACK",pmsg->dwData);
}
}
void cHousingMgr::House_Install_Ack(void* pMsg)
{
//가구 필드에 설치
MSG_HOUSE_FURNITURE* pmsg = (MSG_HOUSE_FURNITURE*)pMsg;
DWORD dwUserIdx = TITLE->GetUserIdx();
if( pmsg->Furniture.dwOwnerUserIndex == dwUserIdx ) //가구 주인일경우 가구정보,아이콘,꾸미기포인트,보너스리스트,필드에설치
{
stFurniture* pFuniture = m_CurHouse.pFurnitureList.GetData(pmsg->Furniture.dwObjectIndex);
if( ! pFuniture )
return;
*pFuniture = pmsg->Furniture;
InstallFunitureToField( &pmsg->Furniture );
cHousingWarehouseDlg* pDlg = GAMEIN->GetHousingWarehouseDlg();
//090708 pdy RefreshIcon 수정
pDlg->RefreshIcon( pFuniture );
m_CurHouse.dwDecoPoint = pmsg->dwDecoPoint;
if( IsHouseOwner() )
{
if( GAMEIN->GetHousingMainPointDlg() )
GAMEIN->GetHousingMainPointDlg()->SetDecoPoint( m_CurHouse.dwDecoPoint );
if( GAMEIN->GetHousingDecoPointDlg() )
GAMEIN->GetHousingDecoPointDlg()->RefreshBonusList(m_CurHouse.dwDecoPoint,m_CurHouse.HouseInfo.dwDecoUsePoint);
}
}
else
{
InstallFunitureToField( &pmsg->Furniture ); //가구주인이 아닌경우 필드에 모델 설치
}
}
void cHousingMgr::House_Install_Nack(void* pMsg)
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
PrintDebugErrorMsg("MP_HOUSE_INSTALL_NACK",pmsg->dwData);
RemoveCurDeco();
EndDecoration();
}
void cHousingMgr::House_UnInstall_Ack(void* pMsg)
{
//가구 필드에서 설치 해제
//설치 해제 되는 가구정보가 다날라오는 것이 아니라 오브젝트 인덱스가 날라와
//클라이언트에서 직접 현재 상태값을 바꾸게 되어있다
MSG_DWORD3* pmsg = (MSG_DWORD3*)pMsg;
DWORD dwUserIdx = TITLE->GetUserIdx();
DWORD dwTargetIdx = pmsg->dwData1 ;
BOOL bDestroy = pmsg->dwData2 ;
DWORD dwDecoPoint = pmsg->dwData3;
if( m_CurHouse.HouseInfo.dwOwnerUserIndex == dwUserIdx ) //집주인 주인일경우 가구정보,아이콘,꾸미기포인트,보너스리스트,필드에서 해제
{
stFurniture* pFuniture = m_CurHouse.pFurnitureList.GetData(dwTargetIdx);
if( ! pFuniture )
return;
pFuniture->wState = eHOUSEFURNITURE_STATE_UNINSTALL;
UnInstallFunitureFromField(dwTargetIdx);
cHousingWarehouseDlg* pDlg = GAMEIN->GetHousingWarehouseDlg();
//090708 pdy RefreshIcon 수정
pDlg->RefreshIcon( pFuniture );
m_CurHouse.dwDecoPoint = dwDecoPoint;
if( GAMEIN->GetHousingMainPointDlg() )
GAMEIN->GetHousingMainPointDlg()->SetDecoPoint( m_CurHouse.dwDecoPoint );
if( GAMEIN->GetHousingDecoPointDlg() )
GAMEIN->GetHousingDecoPointDlg()->RefreshBonusList(m_CurHouse.dwDecoPoint,m_CurHouse.HouseInfo.dwDecoUsePoint);
if( bDestroy ) //삭제하라는 정보가 참이면 가구를 삭제한다
{
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo(pFuniture->dwFurnitureIndex);
if( stFurnitureInfo )
{
//090527 pdy 하우징 시스템메세지 [기간완료가구삭제]
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1861 ) , stFurnitureInfo->szName ); //1861 "%s이(가) 기간이 지나 삭제되었습니다"
}
DestroyFuniture(pFuniture);
}
}
else
{
UnInstallFunitureFromField(dwTargetIdx); //가구주인이 아닌경우 필드에서 해제
}
}
void cHousingMgr::House_UnInstall_Nack(void* pMsg)
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
PrintDebugErrorMsg("MP_HOUSE_UNINSTALL_NACK",pmsg->dwData);
EndDecoration();
}
void cHousingMgr::House_Action_Force_GetOff_Ack(void* pMsg)
{
// 같은 채널에 있는 유저에게통보
// dwData1(가구Index), dwData2(Attach슬롯), dwData3(액션Index)
MSG_DWORD3* pmsg = (MSG_DWORD3*)pMsg;
DWORD dwFunitureID = pmsg->dwData1;
DWORD dwActionIndex = pmsg->dwData3;
CPlayer* pActionPlayer = (CPlayer*)OBJECTMGR->GetObject(pmsg->dwObjectID);
if( ! pActionPlayer )
return;
stHouseActionInfo* pActionInfo = GAMERESRCMNGR->GetHouseActionInfo(dwActionIndex);
if( !pActionInfo)
return;
CFurniture* pActionFuniture = m_FieldFurnitureTable.GetData(dwFunitureID);
if( ! pActionFuniture )
return;
stFurniture* pstFurniture = NULL;
if( IsHouseOwner() )
{
pstFurniture = m_CurHouse.pFurnitureList.GetData(dwFunitureID);
}
else
{
pstFurniture = pActionFuniture->GetFurnitureInfo();
}
if( ! pstFurniture)
return;
stFunitureInfo* pstFunitureInfo = GAMERESRCMNGR->GetFunitureInfo(pstFurniture->dwFurnitureIndex);
if( !pstFunitureInfo)
return;
RideOffPlayerFromFuniture(pActionPlayer, TRUE);
APPEARANCEMGR->ShowWeapon( pActionPlayer ) ;
}
void cHousingMgr::House_Action_Force_GetOff_Nack(void* pMsg)
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
PrintDebugErrorMsg("MP_HOUSE_ACTION_FORCE_GETOFF_NACK",pmsg->dwData);
}
void cHousingMgr::House_Action_Ack(void* pMsg)
{
// 같은 채널에 있는 유저에게통보
// dwData1(가구Index), dwData2(Attach슬롯), dwData3(액션Index), dwData4(x위치), dwData5(z위치)
MSG_DWORD5* pmsg = (MSG_DWORD5*)pMsg;
DWORD dwFunitureID = pmsg->dwData1;
DWORD dwRideSlot = pmsg->dwData2;
DWORD dwActionIndex = pmsg->dwData3;
DWORD dwPosX = pmsg->dwData4;
DWORD dwPosZ = pmsg->dwData5;
CPlayer* pActionPlayer = (CPlayer*)OBJECTMGR->GetObject(pmsg->dwObjectID);
if( ! pActionPlayer )
return;
stHouseActionInfo* pActionInfo = GAMERESRCMNGR->GetHouseActionInfo(dwActionIndex);
if( !pActionInfo)
return;
CFurniture* pActionFuniture = m_FieldFurnitureTable.GetData(dwFunitureID);
if( ! pActionFuniture )
return;
stFurniture* pstFurniture = NULL;
if( IsHouseOwner() )
{
pstFurniture = m_CurHouse.pFurnitureList.GetData(dwFunitureID);
}
else
{
pstFurniture = pActionFuniture->GetFurnitureInfo();
}
if( ! pstFurniture)
return;
stFunitureInfo* pstFunitureInfo = GAMERESRCMNGR->GetFunitureInfo(pstFurniture->dwFurnitureIndex);
if( !pstFunitureInfo)
return;
if( pActionInfo->dwActionType != eHOUSE_ACTION_TYPE_RIDE &&
pActionInfo->dwActionType != eHOUSE_ACTION_TYPE_GETOFF )
{
//탑승 관련 액션이 아니면 설정된 모션과 이팩트를 적용하여준다.
if( pActionInfo->dwPlayer_MotionIndex )
pActionPlayer->ChangeMotion( pActionInfo->dwPlayer_MotionIndex ,FALSE);
if( pActionInfo->dwPlayer_EffectIndex )
{
OBJECTEFFECTDESC desc( pActionInfo->dwPlayer_EffectIndex ); //플레이어에 이팩트가 있으면 적용
pActionPlayer->AddObjectEffect( pActionInfo->dwPlayer_EffectIndex , &desc, 1 );
}
if( pActionInfo->dwFurniture_MotionIndex )
pActionFuniture->ChangeMotion( pActionInfo->dwFurniture_MotionIndex ,FALSE); //가구에 모션이 있다면 적용
if( pActionInfo->dwFurniture_EffectIndex )
{
OBJECTEFFECTDESC desc( pActionInfo->dwFurniture_EffectIndex ); //가구에 이팩트가 있으면 적용
pActionFuniture->AddObjectEffect( pActionInfo->dwFurniture_EffectIndex , &desc, 1 );
}
}
switch(pActionInfo->dwActionType)
{
case eHOUSE_ACTION_TYPE_RIDE:
{
pActionPlayer->SetRideFurnitureID(dwFunitureID);
pActionPlayer->SetRideFurnitureSeatPos(dwRideSlot);
RideOnPlayerToFuniture(pActionPlayer);
VECTOR3 Position = {0,};
Position.x = dwPosX;
Position.z = dwPosZ;
pActionPlayer->SetPosition(&Position);
APPEARANCEMGR->HideWeapon( pActionPlayer ) ;
}
break;
case eHOUSE_ACTION_TYPE_GETOFF:
{
RideOffPlayerFromFuniture(pActionPlayer);
VECTOR3 Position = {0,};
Position.x = dwPosX;
Position.z = dwPosZ;
pActionPlayer->SetPosition(&Position);
APPEARANCEMGR->ShowWeapon( pActionPlayer ) ;
}
break;
case eHOUSE_ACTION_TYPE_BUFF:
{
if( gHeroID == pActionPlayer->GetID() )
{
cActiveSkillInfo* info = ( cActiveSkillInfo* )SKILLMGR->GetSkillInfo( pActionInfo->dwActionValue );
if(info)
{
ACTIVE_SKILL_INFO* skillInfo = info->GetSkillInfo();
if(skillInfo)
{
//SKILLMGR->AddBuffSkill( *pPlayer, *skillInfo );
CHATMGR->AddMsg( CTC_SYSMSG, "%s 버프 효과를 얻었습니다.", skillInfo->Name);
}
}
}
}
break;
// 091105 pdy 하우징 가구 액션추가 ( 미니홈피 웹 브라우저 링크 )
case eHOUSE_ACTION_TYPE_OPEN_HOMEPAGE:
{
if( gHeroID == pActionPlayer->GetID() )
{
// 웹브라우저를 띄우자.
cHousingWebDlg* pDlg = GAMEIN->GetHousingWebDlg();
if( pDlg )
{
pDlg->OpenMiniHomePage( GetCurHouseOwnerIndex() );
}
}
}
break;
}
}
void cHousingMgr::House_Action_Nack(void* pMsg)
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
PrintDebugErrorMsg("MP_HOUSE_ACTION_NACK",pmsg->dwData);
}
void cHousingMgr::House_Bonus_Ack(void* pMsg)
{
//꾸미기 보너스 사용시
MSG_DWORD2* pmsg = (MSG_DWORD2*)pMsg;
if( IsHouseOwner() )
{
m_CurHouse.HouseInfo.dwDecoUsePoint = pmsg->dwData2;
if( GAMEIN->GetHousingMainPointDlg() )
GAMEIN->GetHousingMainPointDlg()->SetDecoPoint( m_CurHouse.dwDecoPoint );
if( GAMEIN->GetHousingDecoPointDlg() )
GAMEIN->GetHousingDecoPointDlg()->RefreshBonusList( m_CurHouse.dwDecoPoint ,m_CurHouse.HouseInfo.dwDecoUsePoint);
}
stHouseBonusInfo* pBonusInfo = GAMERESRCMNGR->GetHouseBonusInfo(pmsg->dwData1);
if( ! pBonusInfo )
return;
//091020 pdy 꾸미기 보너스 사용 메세지 집주인에게만 띄우도록 변경
if( IsHouseOwner() )
{
switch(pBonusInfo->dwBonusType)
{
case 0 : //버프타입
{
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1871 ) , pBonusInfo->szName); //%s의 효과를 얻었습니다.
}
break;
}
}
}
void cHousingMgr::House_Bonus_Nack(void* pMsg)
{
//꾸미기 보너스를 사용하지 못하였다.
MSG_DWORD2* pmsg = (MSG_DWORD2*)pMsg;
char buf[128] = {0,};
sprintf(buf,"MP_HOUSE_BONUS_NACK BonusIndex : %d",pmsg->dwData1);
PrintDebugErrorMsg(buf,pmsg->dwData2);
}
void cHousingMgr::House_Update_Ack(void* pMsg)
{
//가구의 설정이 업데이트되었다. (위치,회전,머터리얼 등)
MSG_HOUSE_FURNITURE* pmsg = (MSG_HOUSE_FURNITURE*)pMsg;
DWORD dwUserIdx = TITLE->GetUserIdx();
if( pmsg->Furniture.dwOwnerUserIndex == dwUserIdx )
{
stFurniture* pFuniture = m_CurHouse.pFurnitureList.GetData(pmsg->Furniture.dwObjectIndex);
if( pFuniture )
*pFuniture = pmsg->Furniture; //가구주인인 경우 가구정보를 갱신해 준다.
}
UpdateFunitere( &pmsg->Furniture ) ;
}
void cHousingMgr::House_Update_Nack(void* pMsg)
{
//가구 업데이트 실패
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
PrintDebugErrorMsg("MP_HOUSE_UPDATE_NACK",pmsg->dwData);
}
void cHousingMgr::House_Update_Material_Ack(void* pMsg)
{
MSG_DWORD2* pmsg = (MSG_DWORD2*)pMsg;
DWORD dwFnObjdx = pmsg->dwData1 ;
int nMeterial = (int) pmsg->dwData2 ;
CFurniture* pFuniture = m_FieldFurnitureTable.GetData(dwFnObjdx);
if(! pFuniture)
return ;
pFuniture->GetFurnitureInfo()->nMaterialIndex = nMeterial ;
pFuniture->GetEngineObject()->SetMaterialIndex(nMeterial);
// 집주인일 경우 가구정보도 바꿔 주자
if( IsHouseOwner( ) )
{
stFurniture* pFuniture = m_CurHouse.pFurnitureList.GetData(dwFnObjdx);
if( pFuniture )
{
pFuniture->nMaterialIndex = nMeterial ;
}
}
}
void cHousingMgr::House_Destroy_Ack(void* pMsg)
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
stFurniture* pFuniture = m_CurHouse.pFurnitureList.GetData(pmsg->dwData);
if( !pFuniture )
return;
DestroyFuniture(pFuniture);
}
void cHousingMgr::House_Destroy_Nack(void* pMsg)
{
//가구삭제 실패
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
PrintDebugErrorMsg("MP_HOUSE_DESTROY_NACK",pmsg->dwData);
}
void cHousingMgr::House_Vote_Ack(void* pMsg)
{
//추천 성공
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1885 )); //추천하였습니다.
}
void cHousingMgr::House_Vote_Nack(void* pMsg)
{
//추천 실패
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
//090527 pdy 하우징 시스템메세지 서버NACK [추천실패]
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1886 )); //1886 "추천하지못했습니다."
PrintDebugErrorMsg("MP_HOUSE_VOTE_NACK",pmsg->dwData);
}
void cHousingMgr::House_Exit_Nack(void* pMsg)
{
//집에서 나가기 실패
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
PrintDebugErrorMsg("MP_HOUSE_EXIT_NACK",pmsg->dwData);
//090618 pdy 하우징 나가기 액션 버그 수정
OBJECTSTATEMGR->EndObjectState(HERO, eObjectState_Deal) ;
}
// 하우스관련 통보
void cHousingMgr::House_Notify_Visit(void* pMsg)
{
//플레이어 방문시
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
m_CurHouse.dwJoinPlayerNum = pmsg->dwData;
if( GAMEIN->GetHousingMainPointDlg() )
GAMEIN->GetHousingMainPointDlg()->SetVisitCount( m_CurHouse.dwJoinPlayerNum );
}
void cHousingMgr::House_Notify_Exit(void* pMsg)
{
//플레이어 나갈시
}
void cHousingMgr::House_Notify_Action(void* pMsg)
{
//플레이어 액션시
}
void cHousingMgr::House_Extend(void* pMsg)
{
MSG_HOUSE_EXTEND* pmsg = (MSG_HOUSE_EXTEND*)pMsg;
if( IsHouseOwner() )
{
m_CurHouse.dwDecoPoint = pmsg->dwDecoPoint;
m_CurHouse.HouseInfo.ExtendLevel = pmsg->wExtendLevel;
if( GAMEIN->GetHousingMainPointDlg() )
GAMEIN->GetHousingMainPointDlg()->SetDecoPoint( m_CurHouse.dwDecoPoint );
if( GAMEIN->GetHousingDecoPointDlg() )
GAMEIN->GetHousingDecoPointDlg()->RefreshBonusList( m_CurHouse.dwDecoPoint ,m_CurHouse.HouseInfo.dwDecoUsePoint);
}
//확장이 날라왔으면 기본설치 품목을 일단 다 Destroy시킨다.
m_CurHouse.pNotDeleteFurnitureList.SetPositionHead();
while(stFurniture* pstFurniture= m_CurHouse.pNotDeleteFurnitureList.GetData())
{
UnInstallFunitureFromField(pstFurniture->dwObjectIndex);
if( IsHouseOwner() )
{
DestroyFuniture(pstFurniture);
}
}
m_CurHouse.pNotDeleteFurnitureList.RemoveAll();
//서버에서 언인스톨을 요청한것들을 다 언인스톨시킨다.
for(int i=0 ; i < pmsg->wUnInstallNum ; i++)
{
stFurniture* pstFurniture = NULL;
if( IsHouseOwner() ) //가구 주인일경우
{
pstFurniture = m_CurHouse.pFurnitureList.GetData(pmsg->UnInstall[i].dwObjectIndex);
*pstFurniture = pmsg->UnInstall[i]; //가구 정보 카피
pstFurniture->wState = eHOUSEFURNITURE_STATE_UNINSTALL; //언인스톨 상태
cHousingWarehouseDlg* pDlg = GAMEIN->GetHousingWarehouseDlg();
//090708 pdy RefreshIcon 수정
pDlg->RefreshIcon( pstFurniture );
}
else
{
CFurniture* pFuniture = m_FieldFurnitureTable.GetData(pmsg->UnInstall[i].dwObjectIndex);
if( pFuniture)
pstFurniture = pFuniture ->GetFurnitureInfo();
}
if(!pstFurniture)
continue;
UnInstallFunitureFromField(pstFurniture->dwObjectIndex);
}
//서버에서 인스톨을 요청한 것들을 다 인스톨 시킨다.
for(int i=0 ; i < pmsg->wInstallNum ; i++)
{
m_CurHouse.m_dwFurnitureList[pmsg->Install[i].wCategory][pmsg->Install[i].wSlot] = pmsg->Install[i].dwObjectIndex;
InstallFunitureToField( &pmsg->Install[i] , TRUE );
if( IsHouseOwner() ) //집주인이면 퍼니쳐리스트에 넣자 (창고에 보유 가구리스트)
{
stFurniture* pNewFuniture = m_stFurniturePool.Alloc();
*pNewFuniture = pmsg->Install[i];
m_CurHouse.pFurnitureList.Add( pNewFuniture, pNewFuniture->dwObjectIndex );
if( pmsg->Install[i].bNotDelete )
{
m_CurHouse.pNotDeleteFurnitureList.Add(pNewFuniture , pNewFuniture->dwObjectIndex);
}
cHousingWarehouseDlg* pDlg = GAMEIN->GetHousingWarehouseDlg();
pDlg->AddIcon( pNewFuniture ); //창고Dlg에 아이콘을 Add
m_CurHouse.m_dwCategoryNum[pmsg->Install[i].wCategory]++; //카테고리에 보유갯수 ++
}
else if( pmsg->Install[i].bNotDelete )
{
CFurniture* pFurniture = m_FieldFurnitureTable.GetData(pmsg->Install[i].dwObjectIndex);
if(! pFurniture )
continue;
//기본설치 품목은 집주인이 아니어도 가지고 있자.
m_CurHouse.pNotDeleteFurnitureList.Add(pFurniture->GetFurnitureInfo() , pFurniture->GetFurnitureInfo()->dwObjectIndex);
}
}
//090608 pdy 마킹관련 버그 수정
CheckAllMarkingObjByHeroZone(); //필드에 설치된 오브젝트중 히어로 위치에 마킹된 오브젝트를 검출한다.
//090527 pdy 하우징 시스템메세지 [하우스확장]
CHATMGR->AddMsg(CTC_SYSMSG, CHATMGR->GetChatMsg( 1865 ) , pmsg->wExtendLevel+1 );//1865 "집이 %d 단계로 확장되었습니다."
}
void cHousingMgr::House_UseItem_Nack(void* pMsg)
{
// 인벤에서 사용가능한 하우징아이템 사용실패 처리
MSG_DWORD4* pmsg = (MSG_DWORD4*)pMsg;
DWORD dwItemPos = pmsg->dwData2;
DWORD dwSupplyType = pmsg->dwData3;
switch(dwSupplyType)
{
case ITEM_KIND_FURNITURE_WALLPAPER:
case ITEM_KIND_FURNITURE_FLOORPAPER:
case ITEM_KIND_FURNITURE_CEILINGPAPER:
{
ChangeMaterialFurniture( pmsg->dwData1 , 0 ,/*RollBack*/ 1 );
}
break;
}
CItem* pItem = GAMEIN->GetInventoryDialog()->GetItemForPos(dwItemPos);
if( pItem )
pItem->SetLock(FALSE);
PrintDebugErrorMsg("MP_HOUSE_USEITEM_NACK",pmsg->dwData4);
}
void cHousingMgr::House_Cheat_GetInfoAll_Ack(void* pMsg)
{
//맵서버의 모든 하우스정보 가날라왔으니 띄워주자
MSG_HOUSE_CHEATINFO_ALL* pmsg = (MSG_HOUSE_CHEATINFO_ALL*)pMsg;
char Buf[256] = {0,};
CHATMGR->AddMsg( CTC_SYSMSG, "---------CHEATINFO_ONEINFO--------");
sprintf(Buf,"HouseNum: %d UserNum: %d ReservationNum: %d" ,pmsg->dwHouseNum ,pmsg->dwUserNum , pmsg->dwReservationNum );
CHATMGR->AddMsg( CTC_SYSMSG, Buf);
CHATMGR->AddMsg( CTC_SYSMSG, "---------CHEATINFO_INFOALL--------");
for(DWORD i=0; i < pmsg->dwHouseNum ; i++ )
{
sprintf(Buf,"HouseName: %s" ,pmsg->HouseInfo[i].szHouseName);
CHATMGR->AddMsg( CTC_SYSMSG, Buf);
sprintf(Buf,"ChannelID: %d OwnerUserIdx: %d VisiterNum: %d"
,pmsg->HouseInfo[i].dwChannelID,pmsg->HouseInfo[i].dwOwnerUserIndex,pmsg->HouseInfo[i].dwVisiterNum);
CHATMGR->AddMsg( CTC_SYSMSG, Buf);
}
}
void cHousingMgr::House_Cheat_GetInfoOne_Ack(void* pMsg)
{
//맵서버의 하우스정보 가날라왔으니 띄워주자
MSG_HOUSE_CHEATINFO_ONE* pmsg = (MSG_HOUSE_CHEATINFO_ONE*)pMsg;
char Buf[256] = {0,};
CHATMGR->AddMsg( CTC_SYSMSG, "---------CHEATINFO_ONEINFO--------");
sprintf(Buf,"Name: %s, Ch: %d OwnerUserIdx: %d Visiter: %d",
pmsg->HouseInfo.szHouseName, pmsg->HouseInfo.dwChannelID, pmsg->HouseInfo.dwOwnerUserIndex, pmsg->HouseInfo.dwVisiterNum);
CHATMGR->AddMsg( CTC_SYSMSG, Buf);
if(strlen(pmsg->HouseInfo.szOwnerName) > 2)
{
sprintf(Buf, "HouseOwner [%s] in HousingMap", pmsg->HouseInfo.szOwnerName);
CHATMGR->AddMsg( CTC_SYSMSG, Buf);
}
for(int i=1; i<MAX_HOUSING_CATEGORY_NUM; i++)
{
sprintf(Buf, "Slot[%d] : (%d / %d)", i, pmsg->HouseInfo.m_dwInstalledNum[i], pmsg->HouseInfo.m_dwFurnitureNum[i]);
CHATMGR->AddMsg( CTC_SYSMSG, Buf);
}
}
void cHousingMgr::House_Cheat_Delete_Ack(void* pMsg)
{
CHATMGR->AddMsg( CTC_SYSMSG, "House_Cheat_Delete OK");
}
void cHousingMgr::House_Cheat_Delete_Nack(void* pMsg)
{
MSG_DWORD* pmsg = (MSG_DWORD*)pMsg;
PrintDebugErrorMsg("MP_HOUSE_CHEAT_DELETE_NACK",pmsg->dwData);
}
void cHousingMgr::Process()
{
if(! IsHouseInfoLoadOk() )
return ;
// 사용중인 가구를 시간을 1분에 한번.
// 1분에 한번씩 시간소모시킬것.
ProcessRemainTime();
if( m_bShowTest )
ShowAllMarkingTest();
//090323 pdy 하우징 설치 UI추가
if( m_bDecoAngle )
{
CHousingRevolDlg* pRevolDlg = GAMEIN->GetHousingRevolDlg();
if( ! pRevolDlg & ! m_pDecoObj )
return;
float fAngle = pRevolDlg->GetRotateAngleFromBarRate();
m_pDecoObj->SetAngle( fAngle );
}
ProcessCulling();
ProcessAlpha();
ProcessWaitForMaikingObjList();
}
//090406 pdy 벽,벽장식 컬링
void cHousingMgr::ProcessCulling()
{
static DWORD dwLastCheckTime = 0;
DWORD ElapsedTime = gCurTime - dwLastCheckTime;
if( ElapsedTime < 50 ) //실시간은 좀그렇다
return;
dwLastCheckTime = gCurTime;
if( m_dwFieldFurnitureNum != 0)
{
MHCAMERADESC* pCurCamera = CAMERA->GetCameraDesc() ;
m_FieldFurnitureTable.SetPositionHead();
for(CFurniture* pFieldObj = m_FieldFurnitureTable.GetData();
0 < pFieldObj;
pFieldObj = m_FieldFurnitureTable.GetData())
{
DWORD dwIdx = pFieldObj->GetFurnitureInfo()->dwFurnitureIndex;
if( m_pDecoObj && pFieldObj == m_pDecoObj )
continue;
//벽장식이나 외벽이 아닐경운 필요없음
if( ! ( Get_HighCategory(dwIdx) == eHOUSE_HighCategory_Door || IsExteriorWall(dwIdx) ) )
continue;
VECTOR3 vDirz = {0,};
float fAngle = pFieldObj->GetFurnitureInfo()->fAngle;
//Y축회전만 가정하면 오브젝트의 Z축은 다음과같다 (바라보는 방향)
//Max의 Front에 맞춰서 모델링을 했다면 Dirz(회전값이 0도일때) = 0 , 0 . -1 이 된다.
//그러므로 x = Sinf 가되고 z = -Cosf가 된다.
vDirz.x = sinf(fAngle);
vDirz.z = - cosf(fAngle);
Normalize(&vDirz,&vDirz);
VECTOR3 vObjPos;
pFieldObj->GetPosition( &vObjPos );
VECTOR3 vCamera2Obj = vObjPos - pCurCamera->m_CameraPos;
float fDot = vDirz * vCamera2Obj ;
if( fDot > 0.0f )
{
//상대백터(카메라->오브젝트)와 Obj의 Z축의 내적값이 양수일경우에 Hide를 시켜주자
pFieldObj->GetEngineObject()->HideWithScheduling() ;
}
else
{
//음수일경운 Show
pFieldObj->GetEngineObject()->Show();
}
}
}
}
//090406 pdy 하우징 가구 알파프로세스
void cHousingMgr::ProcessAlpha()
{
//필드에 위치한 벽걸이용을 제외한 오브젝트를 가지고
//카메라에 방향성에 내적시킨 거리 - 반지름 가 HERO와 카메라의 거리보다 가깝고
//높이채크를 제외하고 XZ레이로 바운딩 박스에 교차하느냐로 알파리스트에 ADD 한다.
if( ! HERO )
return;
static DWORD dwLastCheckTime = 0;
DWORD ElapsedTime = gCurTime - dwLastCheckTime;
DWORD interval = ElapsedTime/5;
if( ElapsedTime >= 50 ) //---너무 자주 호출 되는 것을 방지
{
//////////////////////////////////
//알파적용할 오브젝트 순회 시작 //
//////////////////////////////////
MHCAMERADESC* pCurCamera = CAMERA->GetCameraDesc() ;
m_FieldFurnitureTable.SetPositionHead();
for(CFurniture* pFieldObj = m_FieldFurnitureTable.GetData();
0 < pFieldObj;
pFieldObj = m_FieldFurnitureTable.GetData())
{
DWORD dwIdx = pFieldObj->GetFurnitureInfo()->dwFurnitureIndex;
if( pFieldObj->GetID() == HERO->GetRideFurnitureID() ) //HERO가 탑승한 가구는 Alpha가 필요없다.
continue;
//090615 pdy 하우징 알파버그 수정
if( m_bDoDecoration && pFieldObj == m_pDecoObj ) //셋팅중인 가구라면
continue;
//벽장식이나 외벽일 경운 알파 필요없음
if( Get_HighCategory(dwIdx) == eHOUSE_HighCategory_Door || IsExteriorWall(dwIdx) )
continue;
CEngineObject* pEngineObj = pFieldObj->GetEngineObject();
if( ! pEngineObj) //이럴경운 곤란하다..
continue;
GXOBJECT_HANDLE GxObjHandle = pEngineObj->GetGXOHandle();
if( !GxObjHandle ) //설마..하지만 일단 예외처리
continue;
VECTOR3 vObjPos;
pFieldObj->GetPosition( &vObjPos );
VECTOR3 vCamera2Obj = vObjPos - pCurCamera->m_CameraPos; //카메라->오브젝트 상대백터
float fCamera2FieldObj = VECTOR3Length(&vCamera2Obj); //카메라->오브젝트 거리
VECTOR3 vHeroPos;
HERO->GetPosition( &vHeroPos ); //히어로위치를 가져온다.
vHeroPos.y += 100.0f; //허리높이쯤으로 높이를 올려준다.
VECTOR3 vCamera2Hero = vHeroPos - pCurCamera->m_CameraPos; //카메라->히어로 상대백터
float fCamera2HeroLength = VECTOR3Length(&vCamera2Hero); //카메라->히어로까지의 거리
COLLISION_MESH_OBJECT_DESC FieldObjDesc;
g_pExecutive->GXOGetCollisionMesh(pFieldObj->GetEngineObject()->GetGXOHandle(), &FieldObjDesc);
float fFieldObjRadius = FieldObjDesc.boundingSphere.fRs ; //오브젝트의 반지름
if( fCamera2HeroLength < ( fCamera2FieldObj - fFieldObjRadius ) ) // (카메라->히어로)거리가 (카메라->FieldObj)-반지름 보다 크면 continue;
continue;
VECTOR3 vDir = vCamera2Hero;
Normalize(&vDir,&vDir);
VECTOR3 vPos = pCurCamera->m_CameraPos;
float fDist = 0.0f;
VECTOR3 vIntetSectPoint = {0};
if(! IsCollisionMeshAndRay(&vIntetSectPoint,&fDist,&FieldObjDesc,&vPos,&vDir) )
{
continue; // Ray(카메라->히어로)를 오브젝트에 바운딩박스에 쏘아서 교차가 안된다면 continue
}
else if(fDist > fCamera2HeroLength )
{
continue; // 교차는되었으나 히어로보다 멀다면 continue
}
//알파리스트에 담자
int setAlpha = g_pExecutive->GetAlphaFlag(GxObjHandle) - (interval*2);
if( setAlpha < 100 )
{
setAlpha = 100; //--- 최소 알파수치 = 0
}
g_pExecutive->SetAlphaFlag(GxObjHandle,setAlpha);
if( m_AlphaHandleList.Find(GxObjHandle) == NULL ) //---리스트에 없다면 리스트에 추가.
{
//090615 pdy 하우징 알파버그 수정
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo( pFieldObj->GetFurnitureInfo()->dwFurnitureIndex );
if( stFurnitureInfo )
g_pExecutive->GXOSetZOrder( pFieldObj->GetEngineObject()->GetGXOHandle() , 8 ); //알파소팅문제로 가구에 알파가 들어가면 뒤에서 그려줘야한다.
m_AlphaHandleList.AddTail(GxObjHandle);
}
}
/////////////////////////////////////////////////////////////////////////
//---리스트의 모든 오브젝트는 알파를 더해주어 원래 상태로 돌아가게 해준다.
//---위에서 interval*2 로 알파를 두배로 빼주는 이유는, 여기서 interval만큼 더해주기 때문이다.
PTRLISTPOS pos = m_AlphaHandleList.GetHeadPosition();
while(pos)
{
PTRLISTPOS oldPos = pos;
GXOBJECT_HANDLE gxHandle = (GXOBJECT_HANDLE)m_AlphaHandleList.GetNext(pos);
if( gxHandle == NULL )
{
m_AlphaHandleList.RemoveAt( oldPos );
continue;
}
if(g_pExecutive->IsValidHandle(gxHandle) == GX_MAP_OBJECT_TYPE_INVALID)
{
m_AlphaHandleList.RemoveAt( oldPos );
continue;
}
DWORD curAlpha = g_pExecutive->GetAlphaFlag(gxHandle);
DWORD setAlpha = curAlpha + interval;
if( setAlpha >= 255 )
{
CEngineObject* pEngineObj = (CEngineObject*)g_pExecutive->GetData( gxHandle );
CObjectBase* pBaseObj = NULL;
//090615 pdy 하우징 알파버그 수정
if( pEngineObj && pEngineObj->GetBaseObject() )
{
pBaseObj = pEngineObj->GetBaseObject();
DWORD dwFunuitureIdx = ((CFurniture*)pBaseObj)->GetFurnitureInfo()->dwFurnitureIndex;
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo(dwFunuitureIdx);
if( stFurnitureInfo && stFurnitureInfo->bHasAlpha == FALSE ) //자체알파가 없는 가구는
g_pExecutive->GXOSetZOrder( gxHandle , 0 ); //알파가 끝났다면 Zorder를 0으로
}
setAlpha = 255;
m_AlphaHandleList.RemoveAt( oldPos );
}
g_pExecutive->SetAlphaFlag( gxHandle, setAlpha );
}
dwLastCheckTime = gCurTime;
}
}
void cHousingMgr::ProcessWaitForMaikingObjList()
{
static DWORD dwLastCheckTime = 0;
DWORD ElapsedTime = gCurTime - dwLastCheckTime;
if( ElapsedTime < 1000 ) //1초에 한번씩 하자
return;
dwLastCheckTime = gCurTime;
PTRLISTPOS pos = m_WaitForMakingObjList.GetHeadPosition();
while( pos )
{
CObject* pCurObject= (CObject*)m_WaitForMakingObjList.GetNext( pos ) ;
if( CanMakingToFiled(pCurObject) ) //필드에 마킹이 현재 가능하면
{
MarkingObjZone( pCurObject , TRUE ) ; //필드에 마킹을 하고
RemoveWaitForMakingObj(pCurObject); //리스트에서 지워준다
}
}
}
void cHousingMgr::ProcessRemainTime()
{
//가구 남은 시간 감소 시키기
if( m_dwLastRemainProcessTime > gCurTime )
m_dwLastRemainProcessTime = gCurTime;
DWORD dwDeltaSecond = (gCurTime - m_dwLastRemainProcessTime) /1000;
if( dwDeltaSecond < 60 )
return;
m_dwLastRemainProcessTime = gCurTime;
for(int i = 0 ; i<MAX_HOUSING_CATEGORY_NUM; i++) //모든 가구정보리스트를 돌면서 시간값을 60초씩 감소 시킨다
{
if( m_CurHouse.m_dwCategoryNum[i] == 0)
continue;
for( int j = 0 ; j < MAX_HOUSING_SLOT_NUM ; j++ )
{
DWORD dwObjectIndex = m_CurHouse.m_dwFurnitureList[i][j];
if( dwObjectIndex )
{
stFurniture* pstFurniture = m_CurHouse.pFurnitureList.GetData(dwObjectIndex);
if( !pstFurniture )
continue;
if( pstFurniture->wState == eHOUSEFURNITURE_STATE_KEEP ) //보관중인가구는 시간이 감소 하지 않는다. ( 한번도 인스톨 되지 않은상태 )
continue;
if( pstFurniture->dwRemainTime < dwDeltaSecond )
{
pstFurniture->dwRemainTime = 0;
}
else
{
pstFurniture->dwRemainTime -= dwDeltaSecond;
}
}
}
}
}
//꾸미기 모드일때는 마우스 이벤트를 매니져에서 처리하자
void cHousingMgr::ProcessMouseEvent_DecorationMode(CMouse* Mouse,DWORD MouseEvent)
{
if( ! m_bDecorationMode )
return;
//위치 설정 중일때
if( m_bDecoMove )
{
if( MouseEvent == MOUSEEVENT_NONE )
{
//마우스이벤트가 없으면 픽킹포지션으로
MoveDecorationMousePoint(Mouse);
CURSOR->SetCursor( eCURSOR_DEFAULT );
}
else if( MouseEvent & MOUSEEVENT_LCLICK )
{
if ( CanInstallFunitureToField() )
{
//설치가능한 상황 처리
EndDecoMove();
StartDecoAngle();
}
else
{
//설치불가능한 상황처리
CURSOR->SetCursor(eCURSOR_HOUSING_CANNOT_INSTALL);
//090527 pdy 하우징 시스템메세지 [설치 불가능]
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1860 ) ); //1860 "이곳에 해당 가구를 배치 할 수 없습니다."
}
}
}
else if( MouseEvent & MOUSEEVENT_LCLICK ) //위치 설정 중이 아닐때
{
if( ! m_bDoDecoration ) //오브젝트 설정중이 아니라면
{
PICK_GXOBJECT_DESC gxoDesc[5] = {0,};
GetSelectedObject( gxoDesc, Mouse->GetMouseX(), Mouse->GetMouseY(), PICK_TYPE_PER_FACE , TRUE );
CObject* pPickObject = NULL ;
m_PickAnotherObjHandle = NULL ;
for( int i=0; i < 5 ; i++ )
{
if(! gxoDesc[i].gxo || ! (g_pExecutive->GetData(gxoDesc[i].gxo) ) )
continue;
CObjectBase* pBaseObj = ( (CEngineObject*)g_pExecutive->GetData(gxoDesc[i].gxo) )->GetBaseObject();
if( ! pBaseObj || pBaseObj->GetEngineObjectType() != eEngineObjectType_Furniture )
{
//가구가 아니면 픽킹되지 않게..
gxoDesc[i].gxo = NULL;
continue;
}
if( ! pPickObject )
{
pPickObject = (CObject*) pBaseObj;
}
else if( ! m_PickAnotherObjHandle )
{
m_PickAnotherObjHandle = gxoDesc[i].gxo;
break;
}
}
//가장 가까운 오브젝트를 가져온다
//pPickObject = (CObject*)GetSelectedObject( Mouse->GetMouseX(), Mouse->GetMouseY(), PICK_TYPE_PER_FACE , /*bSort = TRUE */ TRUE );
if( pPickObject )
{
//091214 pdy 꾸미기 모드시 바닥에 클릭했을 경우에 이동불가 메세지 띄운다.
if( IsFloor ( ((CFurniture*) pPickObject)->GetFurnitureInfo()->dwFurnitureIndex ) )
{
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 2007 ) );
}
//아니면 가구리셋을 시작
if( FALSE == StartDecoReset(pPickObject) )
{
//리셋이 안되는 가구 처리
}
}
else
{
// 픽킹이 안되었다면 외부에 클릭한 상태 이동불가 메세지 띄운다.
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 2007 ) );
}
}
}
}
//픽업된 Obj 이동처리
void cHousingMgr::MoveDecorationMousePoint(CMouse* Mouse)
{
if( !m_pDecoObj ) //픽업인데 데코가 없다?
return;
PICK_GXOBJECT_DESC gxoDesc[5] = {0,};
GetSelectedObject( gxoDesc, Mouse->GetMouseX(), Mouse->GetMouseY(), PICK_TYPE_PER_FACE );
//가장 가까운 삼각형을 구한다.
float fDist = 100000.0f; //임시로 정한 거리100000.0f을 넘을리는 없겠지..
int nIndex = 0;
m_PickAnotherObjHandle = NULL ;
DWORD Count = 0;
for(int i=0;i<5;i++)
{
if(! gxoDesc[i].gxo ||
gxoDesc[i].gxo == m_pDecoObj->GetEngineObject()->GetGXOHandle() || //설치 Obj는 제외한다
! (g_pExecutive->GetData(gxoDesc[i].gxo) ) )
{
//맵오브젝트는 엔진오브젝트가 없다 걸러내자..
gxoDesc[i].gxo = NULL;
continue;
}
CObjectBase* pBaseObj = ( (CEngineObject*)g_pExecutive->GetData(gxoDesc[i].gxo) )->GetBaseObject();
if( ! pBaseObj || pBaseObj->GetEngineObjectType() != eEngineObjectType_Furniture )
{
//가구가 아니면 픽킹되지 않게..
gxoDesc[i].gxo = NULL;
continue;
}
if(fDist > gxoDesc[i].fDist)
{
fDist = gxoDesc[i].fDist;
m_PickAnotherObjHandle = gxoDesc[i].gxo;
nIndex = i;
Count++;
}
}
DWORD dwDecoIdx = m_pDecoObj->GetFurnitureInfo()->dwFurnitureIndex;
if( Get_HighCategory(dwDecoIdx) == eHOUSE_HighCategory_Door )
{
//벽장식용일경우
if( m_PickAnotherObjHandle )
{
float fDist = 100000.0f;
int nIndex = 0;
CEngineObject* pPickWallObj = NULL;
m_PickAnotherObjHandle = NULL;
for(int i=0;i<5;i++)
{
if(! gxoDesc[i].gxo )
continue;
//최초 피킹처리 루프에서 이미 예외처리 했으니 예외처리필요없다..
CEngineObject* pCurEngineObj = (CEngineObject*)g_pExecutive->GetData(gxoDesc[i].gxo);
CObjectBase* pBaseObj = pCurEngineObj->GetBaseObject();
DWORD dwIdx = ( (CFurniture*)pBaseObj )->GetFurnitureInfo()->dwFurnitureIndex;
if( IsExteriorWall(dwIdx) )
{
if(fDist > gxoDesc[i].fDist)
{
fDist = gxoDesc[i].fDist;
m_PickAnotherObjHandle = gxoDesc[i].gxo;
pPickWallObj = pCurEngineObj;
nIndex = i;
}
}
}
//벽면이 픽킹되었다면 벽의 회전값을 적용시켜주자
if( pPickWallObj )
{
VECTOR3 vIntersectPos;
VECTOR3 vColTri[3];
POINT pt = {Mouse->GetMouseX(), Mouse->GetMouseY()};
if(g_pExecutive->GXOIsCollisionBoungingBoxWithScreenCoord(m_PickAnotherObjHandle, &vIntersectPos, &vColTri[0], &pt, 0))
{
VECTOR3 edge1,edge2;
VECTOR3_SUB_VECTOR3(&edge1, &vColTri[1], &vColTri[0]);
VECTOR3_SUB_VECTOR3(&edge2, &vColTri[2], &vColTri[0]);
VECTOR3 normal;
CrossProduct(&normal, &edge1, &edge2 );
Normalize(&normal, &normal);
if( normal.y == 0 )
{
float fAngle = pPickWallObj->GetEngObjAngle();
m_vDecoPos = gxoDesc[nIndex].v3IntersectPoint;
m_pDecoObj->SetAngle(fAngle);
m_pDecoObj->GetEngineObject()->ApplyHeightField(FALSE);
m_pDecoObj->SetPosition(&m_vDecoPos);
m_pDecoObj->GetEngineObject()->ApplyHeightField(TRUE);
}
}
}
}
}
else if( m_PickAnotherObjHandle )
{
//벽장식이 아닌 기본 오브젝트
//최초 피킹처리 루프에서 이미 예외처리 했으니 여기선 예외처리필요없다..
CEngineObject* pCurEngineObj = (CEngineObject*)g_pExecutive->GetData(m_PickAnotherObjHandle);
CObjectBase* pBaseObj = pCurEngineObj->GetBaseObject();
DWORD dwIdx = ( (CFurniture*)pBaseObj )->GetFurnitureInfo()->dwFurnitureIndex;
//090603 pdy 하우징 기본오브젝트 피킹이동은 피킹된 오브젝트가 벽장식 or 외벽이 아닐때만 이동가능
if(! IsExteriorWall(dwIdx) && Get_HighCategory(dwIdx) != eHOUSE_HighCategory_Door )
{
m_vDecoPos = gxoDesc[nIndex].v3IntersectPoint;
if( IsFloor(dwIdx) ) //바닥일경우 필드의 높이로 맞추자
{
float fFieldHeight = 0.0f;
g_pExecutive->GXMGetHFieldHeight(&fFieldHeight,m_vDecoPos.x,m_vDecoPos.z);
m_vDecoPos.y = fFieldHeight;
}
else
{
m_vDecoPos.y+= 0.1f; //바닥이 아닐경우 0.1 정도올려주자
}
m_pDecoObj->GetEngineObject()->ApplyHeightField(FALSE);
m_pDecoObj->SetPosition(&m_vDecoPos);
m_pDecoObj->GetEngineObject()->ApplyHeightField(TRUE);
}
}
else
{
//픽킹된 가구 핸들이 없다면 하우스 밖이므로 이동시키지 않는다.
}
}
BOOL cHousingMgr::RequestInstallCurDeco()
{
if(! IsHouseInfoLoadOk() )
return FALSE;
//필드에서 현재 선택된 가구를 추가하도록 요청
if( !m_pDecoObj )
return FALSE;
if(! CanInstallFunitureToField() )
{
//설치 불가능한 상황 처리
//090527 pdy 하우징 시스템메세지 [설치 불가능]
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1860 ) ); //1860 "이곳에 해당 가구를 배치 할 수 없습니다."
return FALSE;
}
stFurniture* pstFuniture = m_pDecoObj->GetFurnitureInfo();
WORD wCategory = Get_HighCategory(pstFuniture->dwFurnitureIndex);
WORD wSlot = pstFuniture->wSlot;
DWORD dwObjectIdx = m_CurHouse.m_dwFurnitureList[wCategory][wSlot];
MSG_HOUSE_FURNITURE_INSTALL msg;
ZeroMemory( &msg, sizeof( msg ) );
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_INSTALL_SYN;
msg.dwObjectID = HEROID;
msg.dwChannel = m_CurHouse.dwChannelID;
msg.dwFurnitureObjectIndex = dwObjectIdx;
msg.fAngle = m_pDecoObj->GetAngle();
msg.vPos = m_vDecoPos;
msg.wSlot = wSlot;
NETWORK->Send(&msg,sizeof(msg));
EndDecoAngle();
return TRUE;
}
BOOL cHousingMgr::RequestUninstallCurDeco()
{
if(! IsHouseInfoLoadOk() )
return FALSE;
//필드에서 현재 선택된 가구를 삭제하도록 요청
if( !m_pDecoObj )
return FALSE;
//090611 pdy 하우징 기본품목과 문류는 모두 설치해제 불가능
if( m_pDecoObj->GetFurnitureInfo()->bNotDelete || IsDoor( m_pDecoObj->GetFurnitureInfo()->dwFurnitureIndex ) )
{
//090527 pdy 하우징 시스템메세지 기본제공가구 [설치해제]
CHATMGR->AddMsg(CTC_SYSMSG, CHATMGR->GetChatMsg( 1888 ) ); //1888 "기본 물품은 설치해제 할 수 없습니다."
return FALSE;
}
if( m_pDecoObj->GetID() == HOUSE_DUMMYID )
{
CancelDecoration();
return TRUE;
}
//dwData1(채널) dwData2(가구ObjectIndex)
MSG_DWORD2 msg ;
ZeroMemory( &msg, sizeof( msg ) );
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_UNINSTALL_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = m_pDecoObj->GetFurnitureInfo()->dwObjectIndex;
NETWORK->Send(&msg,sizeof(msg));
EndDecoAngle();
return TRUE;
}
//필드상의 오브젝트를 재설정할때 요청한다.
BOOL cHousingMgr::RequestUpdateCurDeco()
{
if(! IsHouseInfoLoadOk() )
return FALSE;
if( !m_pDecoObj )
return FALSE;
//꾸미기전 셋팅과 현재설정된 셋팅이 거의 같으면 업데이트요청 실패
if( fabs(m_fBackupDecoAngle - m_pDecoObj->GetAngle() ) < 0.001f &&
fabs(m_vDecoPos.x - m_vBackupDecoPos.x ) < 0.001f &&
fabs(m_vDecoPos.y - m_vBackupDecoPos.y ) < 0.001f &&
fabs(m_vDecoPos.z - m_vBackupDecoPos.z ) < 0.001f )
{
//090605 pdy 마킹버그 수정
//가구셋팅을 취소하자.
CancelDecoration();
return FALSE;
}
if(! CanInstallFunitureToField() )
{
//설치 불가능한 셋팅이므로 업데이트 요청실패
//090527 pdy 하우징 시스템메세지 [설치 불가능]
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1860 ) ); //1860 "이곳에 해당 가구를 배치 할 수 없습니다."
return FALSE;
}
stFurniture* pstFuniture = m_pDecoObj->GetFurnitureInfo();
WORD wCategory = Get_HighCategory(pstFuniture->dwFurnitureIndex);
WORD wSlot = pstFuniture->wSlot;
DWORD dwObjectIdx = m_CurHouse.m_dwFurnitureList[wCategory][wSlot];
MSG_HOUSE_FURNITURE_INSTALL msg;
ZeroMemory( &msg, sizeof( msg ) );
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_UPDATE_SYN;
msg.dwObjectID = HEROID;
msg.dwChannel = m_CurHouse.dwChannelID;
msg.dwFurnitureObjectIndex = dwObjectIdx;
msg.fAngle = m_pDecoObj->GetAngle();
msg.vPos = m_vDecoPos;
msg.wSlot = wSlot;
NETWORK->Send(&msg,sizeof(msg));
EndDecoAngle();
return TRUE;
}
//오브젝트꾸미기중이 아니면서 아이콘클릭으로
//설치 해제 요청을할땐 퍼니쳐정보로 바로 요청하자
BOOL cHousingMgr::RequestUninstallDecoFromUseIcon(stFurniture* pstFurniture)
{
if(! IsHouseInfoLoadOk() )
return FALSE;
if( !pstFurniture || m_bDoDecoration ) //현재 오브젝트 설치 중이면 안된다.
return FALSE;
if( pstFurniture->wState != eHOUSEFURNITURE_STATE_INSTALL ) //설치중이 아닌 가구는 안된다.
return FALSE;
//dwData1(채널) dwData2(가구ObjectIndex)
MSG_DWORD2 msg ;
ZeroMemory( &msg, sizeof( msg ) );
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_UNINSTALL_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = pstFurniture->dwObjectIndex;
NETWORK->Send(&msg,sizeof(msg));
return TRUE;
}
//090331 pdy Box To Box 채크
BOOL cHousingMgr::TestCollisionBox2Box(BOUNDING_BOX* pSrcBoundingBox, BOUNDING_BOX* pDestBoundingBox , BOOL bCheckHeight)
{
// 연산을 줄이기위한 정석 OBB가 아닌 간단한 높이와 박스의 2D분할축 채크만 하는 제한적 충돌채크
// 요구조건. BOUNDINGBOX의 회전축은 Y축만있다고 가정한다. ( 높이체크를 간단하게 하기위해..)
//바운딩박스 8점 인덱싱
//위에꺼
// [0] [3]
// [4] [7]
//아래꺼
// [1] [2]
// [5] [6]
if( bCheckHeight )
{
//간단한 높이채크
//Src의 높이 영역이 Dest의 높이 영역에 포함되지 않는경우 충돌 = FALSE
if( pSrcBoundingBox->v3Oct[4].y < pDestBoundingBox->v3Oct[5].y || // Src.MAXY < Dest.MINY ||
pSrcBoundingBox->v3Oct[5].y > pDestBoundingBox->v3Oct[4].y ) // Src.MINY > Dest.MAXY
return FALSE;
}
//2D 분할축 채크
//2D 사각형의 각각의 X축 Z축이 분할축이 되며
//두 사각형의 각 정점을 분할축에 정사형했을때
//Min Max구간이 서로 겹치지 않으면 분할축이 존재하여
//두 사각형은 겹쳐있지 않다.
VECTOR3 vAxis[4] = {0,};
vAxis[0] = pSrcBoundingBox->v3Oct[1] - pSrcBoundingBox->v3Oct[5];
vAxis[1] = pSrcBoundingBox->v3Oct[6] - pSrcBoundingBox->v3Oct[5];
vAxis[2] = pDestBoundingBox->v3Oct[1] - pDestBoundingBox->v3Oct[5];
vAxis[3] = pDestBoundingBox->v3Oct[6] - pDestBoundingBox->v3Oct[5];
for( int i=0; i<4 ; i++)
Normalize( &vAxis[i] , &vAxis[i] );
DWORD dwVertexIndexArr[4] = {1,2,5,6}; //2D이므로 아래쪽의 버택스의 인덱스를 담아두자
for( int i=0 ; i<4; i++)
{
float fSrcMin,fDestMin;
float fSrcMax,fDestMax;
fSrcMin = fDestMin = 1000000.0f;
fSrcMax = fDestMax = -1000000.0f;
for( int j=0; j<4; j++)
{
float fSrcDotLength = 0 , fDestDotLength = 0;
fSrcDotLength = vAxis[i] * pSrcBoundingBox->v3Oct[dwVertexIndexArr[j]];
fDestDotLength = vAxis[i] * pDestBoundingBox->v3Oct[dwVertexIndexArr[j]];
if( fSrcDotLength < fSrcMin )
fSrcMin = fSrcDotLength;
if( fSrcDotLength > fSrcMax )
fSrcMax = fSrcDotLength;
if( fDestDotLength < fDestMin )
fDestMin = fDestDotLength;
if( fDestDotLength > fDestMax )
fDestMax = fDestDotLength;
}
float fabsMinValue = (fSrcMin < fDestMin )? fabs(fSrcMin)+1.0f : fabs(fDestMin)+1.0f;
//Src 와 Dest의 정사형된 Min Max값이 서로 겹치지 않다면 분할축 존재
if( (fSrcMax + fabsMinValue) < (fDestMin + fabsMinValue ) || (fSrcMin + fabsMinValue) > ( fDestMax + fabsMinValue) )
{
//분할축이 존재하므로 충돌되지 않았다.
return FALSE;
}
}
//분할축이 존재하지 않다면 두박스는 겹쳐있다.
return TRUE;
}
//인벤Item->창고Icon
BOOL cHousingMgr::RequestStoredItem(POSTYPE ToPos, CItem * pFromItem)
{
if(! IsHouseInfoLoadOk() )
return FALSE;
pFromItem->SetLock(TRUE);
//dwData1(채널) dwData2(아이템Index) dwData3(아이템Slot) dwData4(내집창고Slot)
MSG_DWORD4 msg ;
ZeroMemory( &msg, sizeof( msg ) );
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_STORED_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = pFromItem->GetItemIdx();
msg.dwData3 = pFromItem->GetPosition();
msg.dwData4 = ToPos;
NETWORK->Send(&msg,sizeof(msg));
return TRUE;
}
//창고Icon->인벤Item
BOOL cHousingMgr::RequestRestoredICon(POSTYPE ToPos, cHousingStoredIcon * pFromIcon)
{
if(! IsHouseInfoLoadOk() )
return FALSE;
pFromIcon->SetLock(TRUE);
//dwData1(채널) dwData2(가구ObjectIndex) dwData3(내집창고Slot)
MSG_DWORD3 msg;
ZeroMemory( &msg, sizeof( msg ) );
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_RESTORED_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = pFromIcon->GetLinkFurniture()->dwObjectIndex;
msg.dwData3 = pFromIcon->GetLinkFurniture()->wSlot;
NETWORK->Send(&msg,sizeof(msg));
return TRUE;
}
void cHousingMgr::RequestDecoRationMode()
{
if(! IsHouseInfoLoadOk() )
return;
//꾸미기 모드 끝네기는 바로 요청
//dwData1(채널), dwData2(On/Off)
MSG_DWORD2 msg;
ZeroMemory( &msg, sizeof( msg ) );
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_DECOMODE_SYN;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = (!m_bDecorationMode);
NETWORK->Send(&msg,sizeof(msg));
}
void cHousingMgr::RequestDestroyFuniture(stFurniture* pFuniture)
{
if(! IsHouseInfoLoadOk() )
return;
if( ! pFuniture )
return;
// dwData1(채널), dwData2(가구Index)
MSG_DWORD2 msg;
ZeroMemory( &msg, sizeof( msg ) );
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_DESTROY_SYN;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = pFuniture->dwObjectIndex;
NETWORK->Send(&msg,sizeof(msg));
}
BOOL cHousingMgr::FakeUseAction(stFurniture* pFuniture,stHouseActionInfo* pActionInfo)
{
if(! IsHouseInfoLoadOk() )
return FALSE;
if( ! pFuniture || ! pActionInfo )
return FALSE;
//090618 pdy 액션 제한사항 변경 히어로 상태가 NONE이아닐때 내리기,창고열기를 제외한 액션 사용불가.
if( HERO->GetState() != eObjectState_None &&
pActionInfo->dwActionType != eHOUSE_ACTION_TYPE_GETOFF &&
pActionInfo->dwActionType != eHOUSE_ACTION_TYPE_STORAGE )
{
CHATMGR->AddMsg(CTC_SYSMSG, CHATMGR->GetChatMsg(789) ) ;
return FALSE;
}
//문을 제외한 액션은 거리체크를 하여야 한다.
//090618 pdy 하우징 기능추가 창고열기 액션도 거리체크에서 제외
if( ! IsDoor( pFuniture->dwFurnitureIndex ) &&
pActionInfo->dwActionType != eHOUSE_ACTION_TYPE_STORAGE &&
pActionInfo->dwActionType != eHOUSE_ACTION_TYPE_OPEN_HOMEPAGE )
{
VECTOR3 vHeroPos = {0,};
HERO->GetPosition(&vHeroPos);
float fLength = CalcDistanceXZ(&vHeroPos, &pFuniture->vPosition ) ;
//090527 pdy 하우징 시스템메세지 액션 거리가 멀때 제한사항 [액션]
if( fLength > MAX_HOUSE_ACTION_DISTANCE )
{
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1900 ) ); //1900 "사용하시려면 근처로 가셔야합니다."
return FALSE;
}
}
// 설치리스트에 없으면 리턴
if(!m_FieldFurnitureTable.GetData(pFuniture->dwObjectIndex))
return FALSE;
m_CurActionInfo.Clear();
m_CurActionInfo.pActionFuniture = pFuniture;
m_CurActionInfo.pActionInfo = pActionInfo;
switch(pActionInfo->dwActionType)
{
case eHOUSE_ACTION_TYPE_DOOR_EXITHOUSE :
{
//090527 pdy 하우징 팝업창 [하우스나가기]
WINDOWMGR->MsgBox( MBI_HOUSE_EXIT_AREYOUSURE, MBT_YESNO, CHATMGR->GetChatMsg(1894)) ; //1894 "정말로 나가시겠습니까?"
GAMEIN->GetHousingActionPopupMenuDlg()->SetDisable(TRUE);
//090618 pdy 하우징 나가기 액션 버그 수정
OBJECTSTATEMGR->StartObjectState(HERO, eObjectState_Deal) ;
return FALSE;
}
break;
case eHOUSE_ACTION_TYPE_DOOR_VOTEHOUSE :
{
//090527 pdy 하우징 팝업창 [하우스추천하기]
WINDOWMGR->MsgBox( MBI_HOUSE_VOTEHOUSE_AREYOUSURE, MBT_YESNO, CHATMGR->GetChatMsg(1895)) ; //1895 "이 집을 추천 하시겠습니까?"
GAMEIN->GetHousingActionPopupMenuDlg()->SetDisable(TRUE);
return FALSE;
}
break;
}
//패킷을 보네자
return RequestUseCurAction();
}
BOOL cHousingMgr::RequestUseCurAction()
{
if( ! m_CurActionInfo.pActionFuniture || !m_CurActionInfo.pActionInfo )
return FALSE;
switch(m_CurActionInfo.pActionInfo->dwActionType)
{
case eHOUSE_ACTION_TYPE_RIDE:
{
DWORD* pSortedNearBoneNumArr = GAMEIN->GetHousingActionPopupMenuDlg()->GetSortedNearBoneNumArr();
stFunitureInfo* pstFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo(m_CurActionInfo.pActionFuniture->dwFurnitureIndex);
if( ! pstFurnitureInfo )
return FALSE;
//dwData1(채널), dwData2(가구Index), dwData3(Attach슬롯), dwData4(액션Type)
int nAttachSlot = -1;
for( int i=0; i < pstFurnitureInfo->byAttachBoneNum ; i++)
{
if( m_CurActionInfo.pActionFuniture->dwRidingPlayer[i] == 0 )
{
nAttachSlot = pSortedNearBoneNumArr[i] -1;
break;
}
}
//090527 pdy 하우징 시스템메세지 탑승시 제한사항 [빈자리가 없을때]
if( -1 == nAttachSlot )
{
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1877 ) ); //1877 "인원이 가득차 탑승 하실 수 없습니다."
return FALSE;
}
MSG_DWORD4 msg;
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_ACTION_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = m_CurActionInfo.pActionFuniture->dwObjectIndex;
msg.dwData3 = nAttachSlot;
msg.dwData4 = m_CurActionInfo.pActionInfo->dwActionIndex;//m_CurActionInfo.pActionInfo->dwActionType;
NETWORK->Send(&msg,sizeof(msg));
}
break;
case eHOUSE_ACTION_TYPE_GETOFF :
{
stFunitureInfo* pstFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo(m_CurActionInfo.pActionFuniture->dwFurnitureIndex);
if( ! pstFurnitureInfo )
return FALSE;
int nAttachSlot = -1;
for( int i=0; i < pstFurnitureInfo->byAttachBoneNum ; i++)
{
if( m_CurActionInfo.pActionFuniture->dwRidingPlayer[i] == gHeroID )
{
nAttachSlot = i;
break;
}
}
if( -1 == nAttachSlot )
{
return FALSE;
}
//dwData1(채널), dwData2(가구Index), dwData3(Attach슬롯), dwData4(액션Index)
MSG_DWORD4 msg;
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_ACTION_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = m_CurActionInfo.pActionFuniture->dwObjectIndex;
msg.dwData3 = nAttachSlot;
msg.dwData4 = m_CurActionInfo.pActionInfo->dwActionIndex;
NETWORK->Send(&msg,sizeof(msg));
}
break;
case eHOUSE_ACTION_TYPE_NORMAL :
{
MSG_DWORD4 msg;
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_ACTION_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = m_CurActionInfo.pActionFuniture->dwObjectIndex;
msg.dwData3 = 0;
msg.dwData4 = m_CurActionInfo.pActionInfo->dwActionIndex;
NETWORK->Send(&msg,sizeof(msg));
}
break;
case eHOUSE_ACTION_TYPE_BUFF :
{
MSG_DWORD4 msg;
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_ACTION_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = m_CurActionInfo.pActionFuniture->dwObjectIndex;
msg.dwData3 = 0;
msg.dwData4 = m_CurActionInfo.pActionInfo->dwActionIndex;
NETWORK->Send(&msg,sizeof(msg));
}
break;
case eHOUSE_ACTION_TYPE_DOOR_EXITHOUSE :
{
MSG_DWORD msg;
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_EXIT_SYN;
msg.dwObjectID = HEROID;
msg.dwData = m_CurHouse.dwChannelID;
NETWORK->Send(&msg,sizeof(msg));
}
break;
case eHOUSE_ACTION_TYPE_DOOR_VOTEHOUSE :
{
MSG_DWORD msg;
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_VOTE_SYN;
msg.dwObjectID = HEROID;
msg.dwData = m_CurHouse.dwChannelID;
NETWORK->Send(&msg,sizeof(msg));
}
break;
//090616 pdy 하우징 기능추가 [창고열기 가구액션 추가]
case eHOUSE_ACTION_TYPE_STORAGE:
{
if( ! HOUSINGMGR->IsHouseOwner() )
{
//090616 pdy 하우징 시스템메세지 집주인이 아닐시 제한사항 [창고열기 액션]
CHATMGR->AddMsg(CTC_SYSMSG, CHATMGR->GetChatMsg(1887) ); //1887 "집주인이 아닐시 사용하실 수 없습니다"
return FALSE;
}
//창고열기 사용
cDialog* storageDialog = WINDOWMGR->GetWindowForID( PYO_STORAGEDLG );
if( ! storageDialog )
{
return FALSE;
}
else if( storageDialog->IsActive() )
{
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1552 ) );
return FALSE;
}
else if( ! HERO->GetStorageNum() )
{
CHATMGR->AddMsg( CTC_SYSMSG, CHATMGR->GetChatMsg( 1551 ) );
return FALSE;
}
// 090403 ONS 조합,분해,강화,인챈트 다이얼로그가 활성화 되어 있는 상태에서 창고소환 아이템 사용 불가
else
{
cDialog* pMixDialog = WINDOWMGR->GetWindowForID( ITMD_MIXDLG ); // 조합
cDialog* pDissolutioniDialog = WINDOWMGR->GetWindowForID( DIS_DISSOLUTIONDLG ); // 분해
cDialog* pReinforceDialog = WINDOWMGR->GetWindowForID( ITR_REINFORCEDLG ); // 강화
cDialog* pUpgradeDialog = WINDOWMGR->GetWindowForID( ITD_UPGRADEDLG ); //인첸트
if( !pMixDialog ||
!pDissolutioniDialog ||
!pReinforceDialog ||
!pUpgradeDialog )
{
return FALSE;
}
if( pMixDialog->IsActive() ||
pDissolutioniDialog->IsActive() ||
pReinforceDialog->IsActive() ||
pUpgradeDialog->IsActive() )
{
CHATMGR->AddMsg( CTC_OPERATEITEM, CHATMGR->GetChatMsg( 1080 ) );
return FALSE;
}
}
//패킷을 보네자.
MSG_DWORD4 msg;
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_ACTION_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = m_CurActionInfo.pActionFuniture->dwObjectIndex;
msg.dwData3 = 0;
msg.dwData4 = m_CurActionInfo.pActionInfo->dwActionIndex;
NETWORK->Send(&msg,sizeof(msg));
}
break;
// 091105 pdy 하우징 가구 액션추가 ( 미니홈피 웹 브라우저 링크 )
case eHOUSE_ACTION_TYPE_OPEN_HOMEPAGE:
{
MSG_DWORD4 msg;
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_ACTION_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = m_CurActionInfo.pActionFuniture->dwObjectIndex;
msg.dwData3 = 0;
msg.dwData4 = m_CurActionInfo.pActionInfo->dwActionIndex;
NETWORK->Send(&msg,sizeof(msg));
}
break;
}
return TRUE;
}
BOOL cHousingMgr::RequestAction_GetOff()
{
stFunitureInfo* pstFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo(m_CurActionInfo.pActionFuniture->dwFurnitureIndex);
if( ! pstFurnitureInfo )
return FALSE;
int nAttachSlot = -1;
for( int i=0; i < pstFurnitureInfo->byAttachBoneNum ; i++)
{
if( m_CurActionInfo.pActionFuniture->dwRidingPlayer[i] == gHeroID )
{
nAttachSlot = i;
break;
}
}
if( -1 == nAttachSlot )
{
return FALSE;
}
// 즉시이동을 해야하니 응답받기전에 먼저 블럭을 풀어주자.
CheckAllMarkingObjByHeroZone();
//dwData1(채널), dwData2(가구Index), dwData3(Attach슬롯), dwData4(액션Index)
MSG_DWORD4 msg;
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_ACTION_FORCE_GETOFF_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = m_CurActionInfo.pActionFuniture->dwObjectIndex;
msg.dwData3 = nAttachSlot;
msg.dwData4 = HOUSE_ACTIONINDEX_GETOFF;
NETWORK->Send(&msg,sizeof(msg));
return TRUE;
}
BOOL cHousingMgr::RequestUseDecoBonus(DWORD dwBonusIndex)
{
if(! IsHouseInfoLoadOk() )
return FALSE;
stHouseBonusInfo* pBonusInfo = GAMERESRCMNGR->GetHouseBonusInfo(dwBonusIndex);
if( !pBonusInfo )
return FALSE;
if(! HOUSINGMGR->CanUseDecoBonus(pBonusInfo) )
return FALSE;
//dwData1(채널), dwData2(보너스index)
MSG_DWORD2 msg;
msg.Category = MP_HOUSE;
msg.Protocol = MP_HOUSE_BONUS_SYN;
msg.dwObjectID = HEROID;
msg.dwData1 = m_CurHouse.dwChannelID;
msg.dwData2 = dwBonusIndex;
NETWORK->Send(&msg,sizeof(msg));
return TRUE;
}
void cHousingMgr::StartHouseInfoLoading()
{
m_dwHouseLoadState = eHSLoad_NOWLOADING;
// 몬스터 미터 창 비활성화.
if( GAMEIN->GetMonstermeterDlg() )
GAMEIN->GetMonstermeterDlg()->SetActive(FALSE) ;
}
//서버에서 NACK 메세지가 왔을경우 호출된다
void cHousingMgr::PrintDebugErrorMsg(char* pstrMsg,WORD dwError)
{
//GMTOOL 에서만 서버에서 보네준 원인을모두 표시해준다.
#if defined(_GMTOOL_)
if( pstrMsg == NULL )
return ;
char MsgBuf[256] ={0,};
CHATMGR->AddMsg( CTC_SYSMSG,"HousingMgr::PrintDebugErrorMsg [ONLY GMTOOL]");
switch(dwError)
{
case eHOUSEERR_NOOWNER:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_NOOWNER");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_NOHOUSE:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_NOHOUSE");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_HAVEHOUSE:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_HAVEHOUSE");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_ENTRANCEFAIL:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_ENTRANCEFAIL");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_LOADING:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_LOADING");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_FULL:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_FULL");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_DONOT_HOUSE:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_DONOT_HOUSE");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_DO_HOUSE:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_DO_HOUSE");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_NOTOWNER:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_NOTOWNER");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_MAX_EXTEND:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_MAX_EXTEND");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_DECOMODE:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_DECOMODE");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_NOTENOUGHPOINT:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_NOTENOUGHPOINT");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_INVAILDSTATE:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_INVAILDSTATE");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_NOFURNITURE:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_NOFURNITURE");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_HASRIDER:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_HASRIDER");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_NOTRIDING:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_NOTRIDING");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_RIDING:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_RIDING");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_RESERVATING:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_RESERVATING");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_DISTANCE_FAR:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_DISTANCE_FAR");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_NOTREGIST:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_NOTREGIST");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_HOME2HOME_FAIL:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_HOME2HOME_FAIL");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_ERROR:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_ERROR");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_ONVEHICLE:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_ONVEHICLE");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case eHOUSEERR_NORANKER:
{
sprintf(MsgBuf,"%s %s",pstrMsg,"eHOUSEERR_NORANKER");
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
case 777:
{
sprintf(MsgBuf,"CLIENT_DEBUG_MSG : %s",pstrMsg);
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
default:
{
sprintf(MsgBuf,"NOT DEFINED ERROR NUMBER %s %d",pstrMsg,dwError);
CHATMGR->AddMsg( CTC_SYSMSG, MsgBuf);
}
break;
}
#endif
}
CObjectBase* cHousingMgr::GetSelectedObjectFromHouseMap(int MouseX,int MouseY,int PickOption , BOOL bSort)
{
//하우스 맵에서 꾸미기 모드가 아닐때는 이함수를 이용하여 피킹된 오브젝트를 가져오자
CEngineObject* pEngineObject = NULL;
PICK_GXOBJECT_DESC gxoDesc[5] = {0,};
GetSelectedObject( gxoDesc, MouseX, MouseY, PickOption , /*bSort = TRUE*/ bSort);
for( DWORD i = 0 ; i < 5 ; ++i )
{
if(gxoDesc[i].gxo)
{
pEngineObject = (CEngineObject*)g_pExecutive->GetData(gxoDesc[i].gxo);
if( pEngineObject != NULL )
{
if( HERO )
if( HERO->GetEngineObject() != pEngineObject )
{
if( pEngineObject->GetBaseObject() )
{
if( pEngineObject->GetBaseObject()->GetEngineObjectType() == eEngineObjectType_Monster )
{
if( ((CMonster*)(pEngineObject->GetBaseObject()))->GetSInfo()->SpecialType == 2 ) //강아지 클릭 안되도록
{
pEngineObject = NULL;
continue;
}
}
//하우징맵에서는 가구가 액션이 없으면 클릭이 안된다
else if( HERO->GetState() != eObjectState_Housing &&
pEngineObject->GetBaseObject()->GetEngineObjectType() == eEngineObjectType_Furniture )
{
if( ! IsActionableFurniture( (CFurniture *)pEngineObject->GetBaseObject()) )
{
pEngineObject = NULL;
continue;
}
}
}
break; //---pick first one
}
}
}
}
if(pEngineObject == NULL)
return NULL;
return pEngineObject->GetBaseObject();
}
stDynamicHouseNpcMapInfo* cHousingMgr::GetDynimiHouseNpcMapInfo(DWORD dwMapIndex)
{
return m_HousingSettingInfo.m_DynamicHouseNpcMapInfoList.GetData(dwMapIndex);
}
stDynamicHouseNpcInfo* cHousingMgr::GetDynimiHouseNpcInfo(DWORD dwMapIndex, BYTE byRank, BYTE byExterioKind)
{
stDynamicHouseNpcMapInfo* pMapInfo = GetDynimiHouseNpcMapInfo( dwMapIndex );
if( ! pMapInfo )
return NULL;
DWORD dwRankTypeIndex = byRank*100 + byExterioKind;
return pMapInfo->pDynamicHouseNpcList.GetData( dwRankTypeIndex );
}
stDynamicHouseNpcInfo* cHousingMgr::FindDynimiHouseNpcInfoByNpcKind(DWORD dwMapIndex , DWORD dwNpcKind)
{
stDynamicHouseNpcMapInfo* pMapInfo = GetDynimiHouseNpcMapInfo( dwMapIndex );
if( ! pMapInfo )
return NULL;
pMapInfo->pDynamicHouseNpcList.SetPositionHead();
for(stDynamicHouseNpcInfo* pNpcInfo = pMapInfo->pDynamicHouseNpcList.GetData();
0 < pNpcInfo;
pNpcInfo = pMapInfo->pDynamicHouseNpcList.GetData())
{
if( pNpcInfo->dwNpcKind == dwNpcKind )
{
return pNpcInfo;
}
}
return 0;
}
WORD cHousingMgr::GetStoredFunitureNumByCategory(WORD dwCategoryIdx)
{
return m_CurHouse.m_dwCategoryNum[dwCategoryIdx];
}
WORD cHousingMgr::GetBlankSlotIndexFromStoredFunitureListByCategory(WORD dwCategoryIdx)
{
for(int i=0; i<MAX_HOUSING_SLOT_NUM; i++ )
{
if( m_CurHouse.m_dwFurnitureList[dwCategoryIdx][i] == 0 )
{
return i;
}
}
return 0;
}
BOOL cHousingMgr::IsHousingMap()
{
return MAP->GetMapNum() == HOUSINGMAP;
}
BOOL cHousingMgr::IsActionableFurniture(CFurniture* pFurniture)
{
if(! pFurniture )
return FALSE;
DWORD dwIdx = pFurniture->GetFurnitureInfo()->dwFurnitureIndex;
if( ! IsActionable(dwIdx) && ! IsDoor(dwIdx) )
{
//기능성이 아닐때
return FALSE;
}
return TRUE;
}
bool cHousingMgr::IsFieldHeightObject(CObject* pObject)
{
VECTOR3 ObjPos;
pObject->GetPosition(&ObjPos);
float fFieldHeight = 0.0f;
g_pExecutive->GXMGetHFieldHeight(&fFieldHeight,ObjPos.x,ObjPos.z);
if( fabs(fFieldHeight - ObjPos.y) < 0.0001f )
return true;
return false;
}
float cHousingMgr::GetStartAngle()
{
stFurniture* pFurniture = NULL;
stFurniture* pStart = NULL;
m_CurHouse.pNotDeleteFurnitureList.SetPositionHead();
while((pFurniture = m_CurHouse.pNotDeleteFurnitureList.GetData()) != NULL)
{
if(IsStart(pFurniture->dwFurnitureIndex))
pStart = pFurniture;
}
if(pStart)
return pStart->fAngle;
return 0.0f;
}
BOOL cHousingMgr::CanUseItemFromHousingMap(CItem* pItem)
{
//하우징 맵에서 사용 불가능한 아이템은 return FALSE
if( pItem->GetItemInfo()->SupplyType == ITEM_KIND_CHANGESIZE_UPWEIGHT || // 캐릭터 키변경 - 커질확률 가중치
pItem->GetItemInfo()->SupplyType == ITEM_KIND_CHANGESIZE_DNWEIGHT || // 캐릭터 키변경 - 작아질확률 가중치
pItem->GetItemInfo()->SupplyType == ITEM_KIND_CHANGESIZE_DEFALUT || // 캐릭터 키변경 - 원래대로
pItem->GetItemInfo()->SupplyType == ITEM_KIND_SUMMON_MONSTER || // 몬스터 소환
pItem->GetItemInfo()->SupplyType == ITEM_KIND_SUMMON_NPC ) // NPC 소환
{
return FALSE;
}
return TRUE;
}
BOOL cHousingMgr::CanUseItemFromDecorationMode(CItem* pItem)
{
//꾸미기 모드중에 사용 가능한 아이템은 return TRUE
if( pItem->GetItemInfo()->SupplyType == ITEM_KIND_FURNITURE_WALLPAPER || //벽지 교체 아이템
pItem->GetItemInfo()->SupplyType == ITEM_KIND_FURNITURE_FLOORPAPER || //바닥지 교체 아이템
pItem->GetItemInfo()->SupplyType == ITEM_KIND_FURNITURE_CEILINGPAPER ) //천장지 교체 아이템
{
return TRUE;
}
return FALSE;
}
BOOL cHousingMgr::CanUseDecoBonus(stHouseBonusInfo* pBonusInfo,DWORD* pdwErr )
{
if( !IsHouseOwner() )
{
//집주인이 아닐때
if( pdwErr )
*pdwErr = 1;
return FALSE;
}
if( pBonusInfo->byKind == 1 && ! IsRankHouse() )
{
//랭커 보너스인데 랭커가 아닐때
if( pdwErr )
*pdwErr = 4;
return FALSE;
}
if( m_CurHouse.dwDecoPoint < pBonusInfo->dwDecoPoint )
{
//꾸미기 포인트 요구 조건이 부족할때
if( pdwErr )
*pdwErr = 2;
return FALSE;
}
if( m_CurHouse.HouseInfo.dwDecoUsePoint < pBonusInfo->dwUsePoint )
{
//별 포인트 요구 조건이 부족할때
if( pdwErr )
*pdwErr = 3;
return FALSE;
}
return TRUE;
}
BOOL cHousingMgr::CanInstallFunitureToField()
{
//현재 꾸미기 중인 가구가 설치가 가능한지여부를 리턴
if(!m_pDecoObj)
return FALSE;
if( ! m_pDecoObj->GetEngineObject()->GetGXOHandle() )
return FALSE;
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo( m_pDecoObj->GetFurnitureInfo()->dwFurnitureIndex );
if( ! stFurnitureInfo )
return FALSE;
if(! m_PickAnotherObjHandle ) //픽킹된 다른 오브젝트 핸들이 없을경우 리턴 (바닥 , 벽 , 오브젝트 등)
return FALSE;
CObjectBase* pBaseObj = ( (CEngineObject*)g_pExecutive->GetData(m_PickAnotherObjHandle) )->GetBaseObject();
DWORD dwPickAnotherObjIdx = ((CFurniture*)pBaseObj)->GetFurnitureInfo()->dwFurnitureIndex;
stFunitureInfo* pstPickAnotherInfo = GAMERESRCMNGR->GetFunitureInfo( dwPickAnotherObjIdx );
if( !pstPickAnotherInfo )
return FALSE;
if( m_dwFieldFurnitureNum > MAX_FURNITURE_STORAGE_NUM ) //필드에 가구가 한계갯수보다 크면 설치 불가능
return FALSE;
//------충돌 채크전에 가구 타입채크-----//
if( Get_HighCategory(stFurnitureInfo->dwFurnitureIndex) == eHOUSE_HighCategory_Door) //자신이 벽장식일경우
{
if(! IsExteriorWall(dwPickAnotherObjIdx) ) //픽킹된 오브젝트가 외벽이어야 한다.
return FALSE;
}
else if( IsStart(stFurnitureInfo->dwFurnitureIndex) ) //시작위치일경우
{
//자신이 시작위치일경우
if( Get_HighCategory(dwPickAnotherObjIdx) != eHOUSE_HighCategory_Carpet ) //피킹된 다른오브젝트가 바닥류가 아니면 설치 불가능
return FALSE;
VECTOR3 Pos;
m_pDecoObj->GetPosition(&Pos);
if( Pos.y >= MAX_START_FURNITURE_HEIGHT )
return FALSE;
if( ! pstPickAnotherInfo->bStackable )
return FALSE;
}
else // 일반오브젝트일경우
{
//m_PickAnotherObjHandle의 오브젝트가 bStackable이 가능해야 설치할수있다.
if( ! pstPickAnotherInfo->bStackable )
return FALSE;
}
//가구 타입채크 끝
if( m_dwFieldFurnitureNum != 0)
{
m_FieldFurnitureTable.SetPositionHead();
for(CFurniture* pDestObj = m_FieldFurnitureTable.GetData();
0 < pDestObj;
pDestObj = m_FieldFurnitureTable.GetData())
{
if( m_pDecoObj->GetID() == pDestObj->GetFurnitureInfo()->dwObjectIndex )
continue;
if( ! pDestObj->GetEngineObject()->GetGXOHandle() )
continue;
stFunitureInfo* stDestInfo = GAMERESRCMNGR->GetFunitureInfo( ((CFurniture*)pDestObj)->GetFurnitureInfo()->dwFurnitureIndex );
if( IsFloor ( stDestInfo->dwFurnitureIndex ) ) //바닥과는 충돌채크 안한다.
continue;
COLLISION_MESH_OBJECT_DESC DecoObjDesc,DestObjDesc ;
float fDecoRadius,fDestRadius;
VECTOR3 vDecoPos , vDestPos ;
g_pExecutive->GXOGetCollisionMesh(m_pDecoObj->GetEngineObject()->GetGXOHandle(), &DecoObjDesc);
g_pExecutive->GXOGetCollisionMesh(pDestObj->GetEngineObject()->GetGXOHandle(), &DestObjDesc);
fDecoRadius = DecoObjDesc.boundingSphere.fRs ;
fDestRadius = DestObjDesc.boundingSphere.fRs ;
m_pDecoObj->GetPosition( &vDecoPos );
pDestObj->GetPosition( &vDestPos );
VECTOR3 vDeco2DestPos = vDestPos - vDecoPos;
float fDeltaLength = VECTOR3Length(&vDeco2DestPos);
if( fDeltaLength > (fDecoRadius + fDestRadius) ) //구가 겹치지 않으면 검사가 필요없다 다음Obj로 패스
continue;
// NYJ - 오브젝트의 바운딩박스끼리 충돌체크
const int MAX_COLLISION_DESC_NUM = 10;
COLLISION_MESH_OBJECT_DESC DecoObjectDesc[MAX_COLLISION_DESC_NUM];
ZeroMemory(DecoObjectDesc, sizeof(DecoObjectDesc));
COLLISION_MESH_OBJECT_DESC DestObjectDesc[MAX_COLLISION_DESC_NUM];
ZeroMemory(DestObjectDesc, sizeof(DestObjectDesc));
DWORD dwDecoColDescNum, dwDestColDescNum;
DWORD dwDecoModelNum, dwDestModelNum;
DWORD dwDecoObjectNum, dwDestObjectNum;
dwDecoModelNum = g_pExecutive->GXOGetModelNum(m_pDecoObj->GetEngineObject()->GetGXOHandle());
dwDestModelNum = g_pExecutive->GXOGetModelNum(pDestObj->GetEngineObject()->GetGXOHandle());
DWORD i,j;
dwDecoColDescNum = 0;
for(i=0; i<dwDecoModelNum; i++)
{
dwDecoObjectNum = g_pExecutive->GXOGetObjectNum(m_pDecoObj->GetEngineObject()->GetGXOHandle(), i);
for(j=0; j<dwDecoObjectNum; j++)
{
if(dwDecoColDescNum >= MAX_COLLISION_DESC_NUM)
{
__asm int 3;
break;
}
if(!g_pExecutive->GXOGetCollisononObjectDesc(m_pDecoObj->GetEngineObject()->GetGXOHandle(), &DecoObjectDesc[dwDecoColDescNum], i, j))
continue;
dwDecoColDescNum++;
}
}
// Dest충돌정보 가져오기
dwDestColDescNum = 0;
for(i=0; i<dwDestModelNum; i++)
{
dwDestObjectNum = g_pExecutive->GXOGetObjectNum(pDestObj->GetEngineObject()->GetGXOHandle(), i);
for(j=0; j<dwDestObjectNum; j++)
{
if(dwDestColDescNum >= MAX_COLLISION_DESC_NUM)
{
__asm int 3;
break;
}
if(!g_pExecutive->GXOGetCollisononObjectDesc(pDestObj->GetEngineObject()->GetGXOHandle(), &DestObjectDesc[dwDestColDescNum], i, j))
continue;
dwDestColDescNum++;
}
}
// 충돌검사
BOOL bBoxTest = FALSE;
for(i=0; i<dwDecoColDescNum; i++)
{
for(j=0; j<dwDestColDescNum; j++)
{
if(TestCollisionBox2Box(&DecoObjectDesc[i].boundingBox, &DestObjectDesc[j].boundingBox))
bBoxTest = TRUE;//return FALSE;
}
}
if(!bBoxTest)
continue;
//삼각형검사가 둘다 필요없으면 설치 실패
if( !stFurnitureInfo->bMeshTest && !stDestInfo->bMeshTest )
return FALSE;
VECTOR3 pos = {0};
float dist = 0;
DWORD modelindex,objectindex;
// NYJ - 삼각형충돌은 대상만 하기로 (대상폴리곤 vs 데코오브젝트바운딩박스)
if( g_pExecutive->GXOIsCollisionMeshWithObjectBoundingBox(pDestObj->GetEngineObject()->GetGXOHandle(),
&pos, &modelindex, &objectindex, &dist, m_pDecoObj->GetEngineObject()->GetGXOHandle()) )
return FALSE;
}
}
return TRUE;
}
//마킹을 필드에 할수있는가
BOOL cHousingMgr::CanMakingToFiled(CObject* pObject)
{
//안에서 히어로셀 vs 마킹BB 충돌채크가 들어간다.
//일단 구충돌채크
COLLISION_MESH_OBJECT_DESC ObjDesc,HeroDesc ;
float fObjRadius,fHeroRadius;
VECTOR3 vObjPos , vHeroPos ;
stMarkingInfo* pMarkinginfo = ((CFurniture*)pObject)->GetMarkingInfo();
if(! pMarkinginfo->bUseMaking )
return FALSE;
g_pExecutive->GXOGetCollisionMesh(pObject->GetEngineObject()->GetGXOHandle(), &ObjDesc);
g_pExecutive->GXOGetCollisionMesh(HERO->GetEngineObject()->GetGXOHandle(), &HeroDesc);
fObjRadius = ObjDesc.boundingSphere.fRs ;
fHeroRadius = HeroDesc.boundingSphere.fRs ;
pObject->GetPosition( &vObjPos );
HERO->GetPosition( &vHeroPos );
VECTOR3 vObj2HeroPos = vHeroPos - vObjPos;
float fDeltaLength = VECTOR3Length(&vObj2HeroPos);
if( fDeltaLength > (fObjRadius + fHeroRadius) ) //구가 겹치지 않으면 박스 검사가 필요없다
return TRUE;
//090608 마킹관련 버그수정 히어로가 위치한 셀 VS 마킹박스
DWORD dwCurTile_x = DWORD((vHeroPos.x) / 50);
DWORD dwCurTile_z = DWORD((vHeroPos.z) / 50);
VECTOR3 vHeroShellCenter = {0,};
vHeroShellCenter.x = float( (dwCurTile_x * 50.0f) + 25.0f );
vHeroShellCenter.z = float( (dwCurTile_z * 50.0f) + 25.0f );
if( pMarkinginfo->bUseResize ) //마킹정보가 리사이즈한 바운딩 박스면 리사이즈 박스로 채크
{
((CFurniture*)pObject)->UpdateMarkingInfo();
return (! CheckPercentShellToBoundingBox( &pMarkinginfo->stResizeBoudingBox , &vHeroShellCenter ) ); //히어로의 셀과 충돌하지 않으면 return TRUE
}
else //아니라면 기본 박스로 채크
{
return (! CheckPercentShellToBoundingBox( &ObjDesc.boundingBox , &vHeroShellCenter ) ); //히어로의 셀과 충돌하지 않으면 return TRUE
}
}
//재설정이 가능한 가구인가
BOOL cHousingMgr::CanResetDecorationFuniture(CFurniture* pFurniture)
{
if(! pFurniture )
return FALSE;
DWORD dwIdx = pFurniture->GetFurnitureInfo()->dwFurnitureIndex;
if( pFurniture->GetFurnitureInfo()->bNotDelete )
{
//기본제공 가구일경우 문과 시작위치를 제외하고 리셋팅 불가능
if( ! IsDoor(dwIdx) && ! IsStart(dwIdx) )
return FALSE;
}
return TRUE;
}
//셀에 포함되는 정도를 채크하여 해당 셀에 마킹을 해야하는지 여부를 리턴
BOOL cHousingMgr::CheckPercentShellToBoundingBox( BOUNDING_BOX* pSrcBoundingBox, VECTOR3* pMakingShellCenter)
{
//바운딩박스 8점 인덱싱
//위에꺼
// [0] [3]
// [4] [7]
//아래꺼
// [1] [2]
// [5] [6]
BOUNDING_BOX MakingBox = {0,};
MakingBox.v3Oct[1].x = pMakingShellCenter->x - 25.0f;
MakingBox.v3Oct[1].z = pMakingShellCenter->z + 25.0f;
MakingBox.v3Oct[2].x = pMakingShellCenter->x + 25.0f;
MakingBox.v3Oct[2].z = pMakingShellCenter->z + 25.0f;
MakingBox.v3Oct[5].x = pMakingShellCenter->x - 25.0f;
MakingBox.v3Oct[5].z = pMakingShellCenter->z - 25.0f;
MakingBox.v3Oct[6].x = pMakingShellCenter->x + 25.0f;
MakingBox.v3Oct[6].z = pMakingShellCenter->z - 25.0f;
if( !TestCollisionBox2Box(pSrcBoundingBox ,&MakingBox,FALSE) )
return FALSE;
BOUNDING_BOX ShellCenterBox = {0,};
ShellCenterBox.v3Oct[1].x = pMakingShellCenter->x - 6.25f;
ShellCenterBox.v3Oct[1].z = pMakingShellCenter->z + 6.25f;
ShellCenterBox.v3Oct[2].x = pMakingShellCenter->x + 6.25f;
ShellCenterBox.v3Oct[2].z = pMakingShellCenter->z + 6.25f;
ShellCenterBox.v3Oct[5].x = pMakingShellCenter->x - 6.25f;
ShellCenterBox.v3Oct[5].z = pMakingShellCenter->z - 6.25f;
ShellCenterBox.v3Oct[6].x = pMakingShellCenter->x + 6.25f;
ShellCenterBox.v3Oct[6].z = pMakingShellCenter->z - 6.25f;
if( ! TestCollisionBox2Box(pSrcBoundingBox ,&ShellCenterBox,FALSE) )
return FALSE;
return TRUE;
}
void cHousingMgr::SetDecorationModeTemp()
{
if(! IsHouseInfoLoadOk() )
return;
// 집주인인 경우만 처리
if(! IsHouseOwner() )
return;
m_bDecorationMode = TRUE;
//090603 pdy 하우징 꾸미기 모드시엔 선택되었던 Object를 취소한다
CObject* pObject = OBJECTMGR->GetSelectedObject() ; // 선택된 오브젝트 정보를 받아온다.
if( pObject ) // 오브젝트 정보가 유효하다면,
{
pObject->ShowObjectName( FALSE ); // 오브젝트 이름을 비활성화한다.
OBJECTMGR->SetSelectedObject(NULL) ; // 오브젝트 선택을 해제 한다.
}
OBJECTSTATEMGR->StartObjectState(HERO, eObjectState_Housing);
}
void cHousingMgr::SetDecorationMode(BOOL bMode)
{
if(! IsHouseInfoLoadOk() )
return;
// 집주인인 경우만 처리
if(! IsHouseOwner() )
return;
if( ! bMode )
{
if( m_bDoDecoration )
CancelDecoration();
}
m_bDecorationMode = bMode;
if( bMode )
{
//090603 pdy 하우징 꾸미기 모드시엔 선택되었던 Object를 취소한다
CObject* pObject = OBJECTMGR->GetSelectedObject() ; // 선택된 오브젝트 정보를 받아온다.
if( pObject ) // 오브젝트 정보가 유효하다면,
{
pObject->ShowObjectName( FALSE ); // 오브젝트 이름을 비활성화한다.
OBJECTMGR->SetSelectedObject(NULL) ; // 오브젝트 선택을 해제 한다.
}
//090527 pdy 하우징 시스템메세지 [꾸미기모드 시작]
CHATMGR->AddMsg(CTC_SYSMSG, CHATMGR->GetChatMsg( 1868 ) ); //1868 "꾸미기 모드를 시작합니다."
OBJECTSTATEMGR->StartObjectState(HERO, eObjectState_Housing);
}
else
{
//090527 pdy 하우징 시스템메세지 [꾸미기모드 종료]
CHATMGR->AddMsg(CTC_SYSMSG, CHATMGR->GetChatMsg( 1869 ) );
OBJECTSTATEMGR->EndObjectState(HERO, eObjectState_Housing); //1869 "꾸미기 모드를 종료합니다."
}
cHousingDecoModeBtDlg* pDecoModeBtDlg = GAMEIN->GetHousingDecoModeBtDlg();
if( pDecoModeBtDlg )
pDecoModeBtDlg->OnChangeDecoMode( m_bDecorationMode );
}
//꾸미기 시작 (아이템->필드)
void cHousingMgr::StartDecoration(stFurniture* pstFuniture)
{
if(! pstFuniture )
return;
if( ! m_bDecorationMode || m_bDoDecoration ) //꾸미기 모드가 아닐시엔 꾸미기를 할수없다. || 꾸미기중이면 할수없다.
return;
//일반 가구 꾸미기
m_pDecoObj = HOUSINGMGR->MakeDummyFuniture(pstFuniture);
if(! m_pDecoObj->GetEngineObject()->GetGXOHandle() )
{
#if defined(_GMTOOL_)
char Buf[256];
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo( m_pDecoObj->GetFurnitureInfo()->dwFurnitureIndex );
if( ! stFurnitureInfo )
{
CHATMGR->AddMsg(CTC_SYSMSG, "모델 읽기 실패");
CHATMGR->AddMsg(CTC_SYSMSG, "사용중인 가구가 가구목록에 없습니다.");
::sprintf(Buf,"가구인덱스 : %d ",m_pDecoObj->GetFurnitureInfo()->dwFurnitureIndex);
CHATMGR->AddMsg(CTC_SYSMSG, Buf);
}
else
{
CHATMGR->AddMsg(CTC_SYSMSG, "모델 읽기 실패" );
CHATMGR->AddMsg(CTC_SYSMSG, "가구 목록엔 있지만 해당 파일명이 Data폴더안에 있는지 확인하여 주세요" );
sprintf(Buf,"가구이름 : %s 가구인덱스 : %d " ,stFurnitureInfo->szName , stFurnitureInfo->dwFurnitureIndex );
CHATMGR->AddMsg(CTC_SYSMSG, Buf);
sprintf(Buf,"모델 파일 : %s " ,stFurnitureInfo->szModelFileName);
CHATMGR->AddMsg(CTC_SYSMSG, Buf);
}
#endif
RemoveCurDeco();
return;
}
StartDecoMove();
m_bDoDecoration = TRUE;
//090615 pdy 하우징 알파버그 수정
m_pDecoObj->GetEngineObject()->SetAlpha(0.5f);
g_pExecutive->GXOSetZOrder( m_pDecoObj->GetEngineObject()->GetGXOHandle() , 8 ); // 가구에 알파가 들어가면 알파 소팅문제로 Zorder를 8로 설정해준다.
}
//꾸미기 종료
void cHousingMgr::EndDecoration()
{
m_pDecoObj = NULL;
m_bDoDecoration = FALSE;
EndDecoAngle(); // 회전설치를 종료
EndDecoMove(); // 이동설치를 종료
CHousingRevolDlg* pRevolDlg = GAMEIN->GetHousingRevolDlg();
if( pRevolDlg )
pRevolDlg->SetActive(FALSE); // 설치UI를 닫자
}
//설치가 캔슬될때의 처리를 한다
void cHousingMgr::CancelDecoration()
{
if(! m_bDoDecoration ) // 설치중이 아니라면 return
return;
if( m_pDecoObj )
{
if( m_pDecoObj->GetID() == HOUSE_DUMMYID ) // 설치중인가구가 더미오브젝트면 삭제 처리
{
RemoveCurDeco();
}
else // 설치중인가구가 더미가 아니면 이전 위치,회전 값으로 돌리고 다시 마킹하자
{
m_pDecoObj->GetEngineObject()->ApplyHeightField(FALSE);
m_pDecoObj->SetPosition(&m_vBackupDecoPos);
m_pDecoObj->GetEngineObject()->ApplyHeightField(TRUE);
m_pDecoObj->SetAngle(m_fBackupDecoAngle);
m_pDecoObj->GetEngineObject()->SetAlpha(1.0f);
MarkingObjZone(m_pDecoObj,TRUE);
//090615 pdy 하우징 알파버그 수정
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo( m_pDecoObj->GetFurnitureInfo()->dwFurnitureIndex );
if( stFurnitureInfo && stFurnitureInfo->bHasAlpha == FALSE ) //자체 알파가 없는 가구는
g_pExecutive->GXOSetZOrder( m_pDecoObj->GetEngineObject()->GetGXOHandle() , 0 ); //Zorder를 0으로 설정
}
}
EndDecoration();
}
//오브젝트꾸미기중 확정을 눌렀을때 호출
BOOL cHousingMgr::DecideSettingCurDeco()
{
//함수내에서 요청을 하였으면 return TRUE이다.
stFurniture* pstFuniture = m_pDecoObj->GetFurnitureInfo();
if( pstFuniture->wState == eHOUSEFURNITURE_STATE_KEEP )
{
//처음설치를 시도하는 가구는 팝업창을 띄워준후 OK시 설치 요청
//090527 pdy 하우징 팝업창 [최초설치 요청]
WINDOWMGR->MsgBox( MBI_DECOINSTALL_AREYOUSURE, MBT_YESNO, CHATMGR->GetChatMsg(1892) ) ; //1892 "사용한 시점부터 남은 시간이 감소됩니다. 사용하시겠습니까?"
return FALSE;
}
if( pstFuniture->wState == eHOUSEFURNITURE_STATE_INSTALL )
{
//인스톨된 상황이면 업데이트를 요청하자
if( ! RequestUpdateCurDeco() )
return FALSE;
}
else if( pstFuniture->wState == eHOUSEFURNITURE_STATE_UNINSTALL )
{
//처음설치가 아닌 설치시도는 팝업창없이 바로 설치시도
if( ! RequestInstallCurDeco() )
return FALSE;
}
return TRUE;
}
//위치설정
void cHousingMgr::StartDecoMove()
{
if(! m_pDecoObj )
return;
m_bDecoMove = TRUE;
m_PickAnotherObjHandle = NULL;
}
void cHousingMgr::EndDecoMove()
{
//g_pExecutive->GetGeometry()->SetDrawDebugFlag(0);
m_bDecoMove = FALSE;
//m_PickAnotherObjHandle = NULL;
//m_vDecoPos.x = m_vDecoPos.y = m_vDecoPos.z = 0.0f;
}
//회전설정
void cHousingMgr::StartDecoAngle()
{
CHousingRevolDlg* pRevolDlg = GAMEIN->GetHousingRevolDlg();
if( !pRevolDlg )
return;
m_bDecoAngle = TRUE;
LONG x = MOUSE->GetMouseX() - 100;
LONG y = MOUSE->GetMouseY() + 15;
pRevolDlg->SetAbsXY( x, y );
pRevolDlg->SetActive(TRUE);
pRevolDlg->SetBarRateFromAngle( m_pDecoObj->GetAngle() );
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo( m_pDecoObj->GetFurnitureInfo()->dwFurnitureIndex );
if( ! stFurnitureInfo )
return ;
if(stFurnitureInfo->bRotatable)
pRevolDlg->StartRotate();
}
void cHousingMgr::EndDecoAngle()
{
//회전이 끝날때
m_bDecoAngle = FALSE;
}
//필드에 설치된 가구설정 변경 시작
BOOL cHousingMgr::StartDecoReset(CObject* pPickObject)
{
//꾸미기 모드시에 장식용 가구를 좌클릭시 호출된다.
if( !pPickObject )
return FALSE;
if( pPickObject->GetEngineObjectType() != eEngineObjectType_Furniture ) // Pick 오브젝트가 가구가 아니면 return
return FALSE;
//090708 pdy
cHousingWarehouseDlg* pWarehouseDlg = GAMEIN->GetHousingWarehouseDlg();
pWarehouseDlg->FocusOnByFurniture( ((CFurniture*) pPickObject)->GetFurnitureInfo() ); //스크롤,텝 등을 현가구로 맞춰준다.
if( ! CanResetDecorationFuniture((CFurniture*)pPickObject) )
{
return FALSE;
}
m_pDecoObj = (CFurniture*)pPickObject;
m_pDecoObj->GetPosition(&m_vDecoPos); // 처음시작위치를 m_vDecoPos에도 저장
m_pDecoObj->GetPosition(&m_vBackupDecoPos); // Reset되기전에 위치를 백업한다.
m_fBackupDecoAngle = m_pDecoObj->GetAngle(); // Reset되기전에 회전값을 백업한다.
m_bDoDecoration = TRUE;
RemoveWaitForMakingObj(m_pDecoObj);
MarkingObjZone(m_pDecoObj, FALSE);
m_pDecoObj->GetEngineObject()->ApplyHeightField(FALSE);
m_pDecoObj->SetPosition(&m_vDecoPos);
m_pDecoObj->GetEngineObject()->ApplyHeightField(TRUE);
//090615 pdy 하우징 알파버그 수정
m_pDecoObj->GetEngineObject()->SetAlpha(0.5f);
g_pExecutive->GXOSetZOrder( m_pDecoObj->GetEngineObject()->GetGXOHandle() , 8 ); // 가구에 알파가 들어가면 알파 소팅문제로 Zorder를 8로 설정해준다.
PTRLISTPOS pos = m_AlphaHandleList.Find( m_pDecoObj->GetEngineObject()->GetGXOHandle() ); //알파리스트에들어가 있다면 리스트에서 삭제하자
if( pos )
m_AlphaHandleList.RemoveAt( pos );
StartDecoAngle();
return TRUE;
}
CFurniture* cHousingMgr::MakeDummyFuniture(stFurniture* pstFuniture)
{
// 가구설치시 서버에 인증을 받기전에 생성되는 더미 가구
if(! pstFuniture )
return NULL;
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo(pstFuniture->dwFurnitureIndex);
if( stFurnitureInfo == 0)
return NULL;
BASEOBJECT_INFO Baseinfo;
Baseinfo.dwObjectID = HOUSE_DUMMYID;
SafeStrCpy(Baseinfo.ObjectName, stFurnitureInfo->szName, MAX_NAME_LENGTH+1);
BASEMOVE_INFO moveInfo;
moveInfo.bMoving = FALSE;
moveInfo.CurPosition.x = 0;
moveInfo.CurPosition.y = 0;
moveInfo.CurPosition.z = 0;
stFurniture Furniture = *pstFuniture;
Furniture.dwObjectIndex = HOUSE_DUMMYID;
CFurniture* pDummy = MakeFuniture(&Baseinfo,&moveInfo,&Furniture);
return pDummy;
}
CFurniture* cHousingMgr::MakeFuniture(BASEOBJECT_INFO* pBaseObjectInfo,BASEMOVE_INFO* pMoveInfo,stFurniture* pstFuniture)
{
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo(pstFuniture->dwFurnitureIndex);
if( stFurnitureInfo == 0)
return NULL;
CFurniture* pObject = OBJECTMGR->AddFuniture(pBaseObjectInfo,pMoveInfo,pstFuniture);
//090611 pdy 하우징 알파버그 수정
if( pObject && pObject->GetEngineObject()->GetGXOHandle() )
{
if( stFurnitureInfo->bHasAlpha ) //자체 알파를 가지고 있는 가구라면 렌더링 우선순위를 뒤로 돌린다.
{
g_pExecutive->GXOSetZOrder( pObject->GetEngineObject()->GetGXOHandle() , 8 ); // 이팩트가 9니깐 그보다 한단계 낮은 8로 설정한다.
}
}
return pObject;
}
//가구삭제
void cHousingMgr::RemoveDeco(DWORD dwObjectID)
{
CObject* pObject = OBJECTMGR->GetObject(dwObjectID);
if(pObject)
{
if(OBJECTMGR->GetSelectedObjectID() == dwObjectID)
{
OBJECTMGR->SetSelectedObjectID(0);
}
OBJECTMGR->AddGarbageObject(pObject);
}
}
//현재 꾸미기 중인 가구 삭제
void cHousingMgr::RemoveCurDeco()
{
if( m_pDecoObj)
RemoveDeco(m_pDecoObj->GetID());
}
//가구정보 삭제
void cHousingMgr::DestroyFuniture(stFurniture* pDestroyFn)
{
if( pDestroyFn )
{
if( pDestroyFn->wState == eHOUSEFURNITURE_STATE_INSTALL )
{
//혹시라도 삭제될가구가 인스톨되있다면 UnInstall하자
UnInstallFunitureFromField(pDestroyFn->dwObjectIndex);
}
m_CurHouse.m_dwFurnitureList[pDestroyFn->wCategory][pDestroyFn->wSlot] = 0;
m_CurHouse.m_dwCategoryNum[pDestroyFn->wCategory]--; //카테고리에 보유갯수 --
cHousingWarehouseDlg* pDlg = GAMEIN->GetHousingWarehouseDlg();
//090708 pdy DeleteIcon 수정
pDlg->DeleteIcon( pDestroyFn );
m_CurHouse.pFurnitureList.Remove(pDestroyFn->dwObjectIndex); //창고리스트에서 삭제하고
m_stFurniturePool.Free(pDestroyFn); //메모리 해제하자
}
}
//필드에 인스톨
BOOL cHousingMgr::InstallFunitureToField(stFurniture* pstFuniture , BOOL bFirstInstall)
{
if (! pstFuniture )
return FALSE;
//090325 필드테이블 추가
//필드테이블에 존재하면 재배치, 존재하지 않으면 새로생성
CFurniture* pFuniture = m_FieldFurnitureTable.GetData(pstFuniture->dwObjectIndex);
//서버에 인증을 받았으니 기존 더미는 지우고 새로만들자.
RemoveCurDeco();
//임시테스트 BASEOBJECT_INFO , BASEMOVE_INFO
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo(pstFuniture->dwFurnitureIndex);
if( ! stFurnitureInfo )
{
return FALSE;
}
BASEOBJECT_INFO Baseinfo;
Baseinfo.dwObjectID = pstFuniture->dwObjectIndex;
SafeStrCpy(Baseinfo.ObjectName, stFurnitureInfo->szName, MAX_NAME_LENGTH+1);
BASEMOVE_INFO moveInfo;
moveInfo.bMoving = FALSE;
moveInfo.CurPosition.x = pstFuniture->vPosition.x;
moveInfo.CurPosition.y = pstFuniture->vPosition.y;
moveInfo.CurPosition.z = pstFuniture->vPosition.z;
pFuniture = (CFurniture*)MakeFuniture( &Baseinfo , &moveInfo , pstFuniture );
if( ! pFuniture )
return FALSE;
//필드리스트에 Obj를 추가한다
m_FieldFurnitureTable.Add(pFuniture , pFuniture->GetID());
m_dwFieldFurnitureNum++;
//로딩중 인스톨이면 마킹하고 리턴.
if( bFirstInstall )
{
MarkingObjZone(pFuniture, TRUE);
return TRUE;
}
RemoveWaitForMakingObj(pFuniture);
if( CanMakingToFiled(pFuniture) ) //HERO에 위치에 마킹을 하는지 검사후
{
MarkingObjZone(pFuniture, TRUE); //마킹가능하면 마킹
}
else
{
AddWaitForMakingObj(pFuniture); //불가능하면 대기리스트에 ADD
}
m_pDecoObj = NULL;
EndDecoration(); //설치가 완료되면 가구 꾸미기를 종료하자
return TRUE;
}
BOOL cHousingMgr::UpdateFunitere(stFurniture* pstFuniture)
{
if (! pstFuniture )
return FALSE;
CFurniture* pFuniture = m_FieldFurnitureTable.GetData(pstFuniture->dwObjectIndex);
if(! pFuniture)
return FALSE;
//090608 pdy 마킹관련 버그 수정
if( IsHouseOwner() == FALSE )
{
//집주인일경우 업데이트 요청을 하기전에 마킹을 해제하고 보넨다.
//그러나 3자일경우엔 마킹이 되어있으므로 업데이트가 왔을때 갱신전위치의 마킹을 해제해 주어야 한다.
RemoveWaitForMakingObj(pFuniture);
MarkingObjZone(pFuniture, FALSE); //마킹을 해제하고
}
pFuniture->InitFurniture(pstFuniture);
pFuniture->GetEngineObject()->ApplyHeightField(FALSE);
pFuniture->SetPosition(&pstFuniture->vPosition);
pFuniture->GetEngineObject()->ApplyHeightField(TRUE);
pFuniture->SetAngle(pstFuniture->fAngle);
pFuniture->GetEngineObject()->SetAlpha(1.0f);
pFuniture->GetEngineObject()->SetMaterialIndex(pstFuniture->nMaterialIndex);
//090615 pdy 하우징 알파버그 수정
stFunitureInfo* stFurnitureInfo = GAMERESRCMNGR->GetFunitureInfo(pstFuniture->dwFurnitureIndex);
if( stFurnitureInfo && stFurnitureInfo->bHasAlpha == FALSE ) //자체 알파가 없는 가구는
g_pExecutive->GXOSetZOrder( pFuniture->GetEngineObject()->GetGXOHandle() , 0 ); //Zorder를 0으로 셋팅
if( CanMakingToFiled(pFuniture) ) //HERO에 위치에 마킹을 하는지 검사후
{
MarkingObjZone(pFuniture, TRUE); //마킹가능하면 마킹
}
else
{
AddWaitForMakingObj(pFuniture); //불가능하면 대기리스트에 ADD
}
m_pDecoObj = NULL;
//설치가 완료되면 꾸미기를 종료하자
EndDecoration();
return TRUE;
}
BOOL cHousingMgr::UnInstallFunitureFromField(DWORD dwObjectIdx)
{
CFurniture* pFuniture = m_FieldFurnitureTable.GetData(dwObjectIdx); //필드 테이블에서 가구Obj를 가져온다
if(!pFuniture)
return FALSE;
RemoveWaitForMakingObj(pFuniture); //마킹 대기자 목록에 있다면 Remove
MarkingObjZone(pFuniture, FALSE); //마킹해제
RemoveDeco(dwObjectIdx); //오브젝트를 제거
m_FieldFurnitureTable.Remove( dwObjectIdx ); //필드테이블에서 제거
m_dwFieldFurnitureNum--; //필드에 가구숫자 감소
m_pDecoObj = NULL;
if(m_CurHouse.HouseInfo.dwOwnerUserIndex == TITLE->GetUserIdx()) // NYJ
EndDecoration();
return TRUE;
}
void cHousingMgr::MarkingObjZone(CObject* pObject, bool bMakingObjZone)
{
if( ! pObject)
return;
if( ! IsFieldHeightObject(pObject) )
return;
if(! pObject->GetEngineObject()->GetGXOHandle() )
return;
stMarkingInfo* pMarkingInfo = ((CFurniture*)pObject)->GetMarkingInfo();
if( ! pMarkingInfo || ! pMarkingInfo->bUseMaking )
return;
GXOBJECT_HANDLE PickUpHANDLE = pObject->GetEngineObject()->GetGXOHandle();
BOUNDING_BOX* pBoundingBox = NULL;
if( pMarkingInfo->bUseResize )
{
if( bMakingObjZone )
((CFurniture*)pObject)->UpdateMarkingInfo();
pBoundingBox = &pMarkingInfo->stResizeBoudingBox ;
}
else
{
COLLISION_MESH_OBJECT_DESC CollisionInfo = {0,};
g_pExecutive->GXOGetCollisionMesh( PickUpHANDLE , &CollisionInfo);
pBoundingBox = &(CollisionInfo.boundingBox);
}
// 091016 마킹관련 버그로 겹침 채크 주석처리
//cPtrList NearObjList;
//
//if( ! bMakingObjZone )
//{
// //마킹을 해제할시에 영역이 겹치는 리스트를 담아둔다.
// m_FieldFurnitureTable.SetPositionHead();
// CFurniture* pDestObj= NULL;
// float fDecoRadius = pMarkingInfo->f2DRadius;
// VECTOR3 vDecoPos;
// pObject->GetPosition( &vDecoPos );
// while( pDestObj = m_FieldFurnitureTable.GetData() )
// {
// if( ! IsFieldHeightObject(pDestObj) )
// continue;
// if( pObject->GetID() == pDestObj->GetFurnitureInfo()->dwObjectIndex )
// continue;
// stMarkingInfo* pDestMarkingInfo = pDestObj->GetMarkingInfo();
// if( ! pDestMarkingInfo || ! pDestMarkingInfo->bUseMaking )
// continue;
// float fDestRadius = pDestMarkingInfo->f2DRadius;
// VECTOR3 vDestPos ;
// pDestObj->GetPosition( &vDestPos );
// float fDeltaLength = CalcDistanceXZ(&vDestPos ,&vDecoPos );
// if( fDeltaLength <= (fDecoRadius + fDestRadius) ) //구가 겹치면 리스트에 담자
// NearObjList.AddTail(pDestObj);
// }
//}
VECTOR3 Temp[4] ={0,};
Temp[0] = pBoundingBox->v3Oct[1];
Temp[1] = pBoundingBox->v3Oct[2];
Temp[2] = pBoundingBox->v3Oct[5];
Temp[3] = pBoundingBox->v3Oct[6];
// 박스의 최대 최소 위치를 구한다.
float fXMin = 100000.0f;
float fXMax = 0.0f;
float fZMin = 100000.0f;
float fZMax = 0.0f;
for(int i=0;i<4;i++)
{
if( Temp[i].x < fXMin )
fXMin = Temp[i].x;
if( Temp[i].x > fXMax )
fXMax = Temp[i].x;
if( Temp[i].z < fZMin )
fZMin = Temp[i].z;
if( Temp[i].z > fZMax )
fZMax = Temp[i].z;
}
//끝부분을 50단위로 반올림 내림 한다.
fXMin = (float)(DWORD(fXMin / 50) * 50)- 50;
fXMax = (float)(DWORD(fXMax / 50) * 50)+ 50;
fZMin = (float)(DWORD(fZMin / 50) * 50)- 50;
fZMax = (float)(DWORD(fZMax / 50) * 50)+ 50;
CTileManager* pTileManager = MAP->GetTileManager();
DWORD dwTileWidth = pTileManager->GetTileWidth();
for( float Curz = fZMax; Curz > fZMin;Curz -= 50.0f )
{
if( Curz < 0.0f )
continue;
for( float Curx = fXMin; Curx < fXMax ; Curx += 50.0f)
{
if( Curx < 0.0f )
continue;
DWORD CurTile_x = DWORD((Curx) / 50);
DWORD CurTile_z = DWORD((Curz) / 50);
if( CurTile_z > dwTileWidth || CurTile_x > dwTileWidth)
continue;
VECTOR3 MakingShellCenter = {0,};
MakingShellCenter.x = float( (CurTile_x * 50.0f) + 25.0f );
MakingShellCenter.z = float( (CurTile_z * 50.0f) + 25.0f );
if( ! CheckPercentShellToBoundingBox( pBoundingBox ,&MakingShellCenter) )
continue;
if( bMakingObjZone )
{
pTileManager->AddTileAttrByAreaData( NULL, &MakingShellCenter, SKILLAREA_ATTR_BLOCK );
if( m_bShowTest )
AddMarkingTest(pObject,&MakingShellCenter);
}
else
{
// 091016 마킹관련 버그로 겹침 채크 주석처리
//BOOL bOverlapShell = FALSE;
//PTRLISTPOS pos = NearObjList.GetHeadPosition();
//while( pos )
//{
// CFurniture* pDestObj = (CFurniture*)NearObjList.GetNext( pos ) ;
// stMarkingInfo* pDestMarkingInfo = pDestObj->GetMarkingInfo();
// if( ! pDestMarkingInfo )
// continue;
// BOUNDING_BOX* pDestBoundingBox = NULL;
// if( pDestMarkingInfo->bUseResize )
// {
// pDestBoundingBox = &pDestMarkingInfo->stResizeBoudingBox;
// }
// else
// {
// COLLISION_MESH_OBJECT_DESC DestObjDesc ;
// g_pExecutive->GXOGetCollisionMesh(pDestObj->GetEngineObject()->GetGXOHandle(), &DestObjDesc);
// pDestBoundingBox = &DestObjDesc.boundingBox;
// }
// if( CheckPercentShellToBoundingBox( pDestBoundingBox ,&MakingShellCenter) )
// {
// bOverlapShell = TRUE;
// break;
// }
//}
//if( ! bOverlapShell )
//{
pTileManager->RemoveTileAttrByAreaData( NULL, &MakingShellCenter, SKILLAREA_ATTR_BLOCK );
//}
if( m_bShowTest )
ReleaseMarkingTest(pObject);
}
}
}
}
void cHousingMgr::AddWaitForMakingObj(CObject* pObject)
{
//090608 pdy 마킹관련 버그 수정
if( pObject == NULL )
return;
if( pObject->GetObjectKind() == eObjectKind_Furniture )
{
if( ((CFurniture*)pObject)->GetMarkingInfo()->bUseMaking == FALSE )
return;
if( ! IsFieldHeightObject(pObject) )
return;
}
//중복된거면 ADD하지 않는다
PTRLISTPOS pos = m_WaitForMakingObjList.GetHeadPosition();
while( pos )
{
CObject* pCurObject = (CObject*)m_WaitForMakingObjList.GetNext( pos ) ;
if( pCurObject == pObject)
return ;
}
//리스트에 등록
m_WaitForMakingObjList.AddTail(pObject);
}
void cHousingMgr::RemoveWaitForMakingObj(CObject* pObject)
{
//리스트에서 소멸
PTRLISTPOS pos = m_WaitForMakingObjList.GetHeadPosition();
while( pos )
{
CObject* pCurObject = (CObject*)m_WaitForMakingObjList.GetNext( pos ) ;
if( pCurObject == pObject)
{
m_WaitForMakingObjList.Remove( pCurObject );
return ;
}
}
}
//090608 pdy 마킹관련 버그 수정
void cHousingMgr::FindOverapMarkingToHeroObj(cPtrList* pResultList)
{
//HERO의 영역과 충돌되는 곳에 마킹된 오브젝트리스트를 리턴
if(! pResultList)
return;
m_FieldFurnitureTable.SetPositionHead();
for(CFurniture* pFnObject = m_FieldFurnitureTable.GetData();
0 < pFnObject;
pFnObject = m_FieldFurnitureTable.GetData())
{
DWORD dwFunitureIndex = pFnObject->GetFurnitureInfo()->dwFurnitureIndex;
if( IsExteriorWall( dwFunitureIndex ) ) // 외벽이라면 Contunue
continue;
if(! CanMakingToFiled( pFnObject ) ) // HERO의 영역과 출돌이 된다면
{
pResultList->AddTail( pFnObject ); // 결과 리스트에 ADD
}
}
}
//090608 pdy 마킹관련 버그 수정
void cHousingMgr::CheckAllMarkingObjByHeroZone()
{
//HERO의 영역과 충돌되는 곳에 마킹된 오브젝트들을 마킹해제후 마킹대기리스트에 등록
cPtrList OverrapMarkingList;
FindOverapMarkingToHeroObj(&OverrapMarkingList); //필드에 설치된 오브젝트중 히어로 위치에 마킹된 오브젝트를 검출한다.
PTRLISTPOS pos = OverrapMarkingList.GetHeadPosition();
while( pos )
{
CFurniture* pObject = (CFurniture*)OverrapMarkingList.GetNext( pos ) ;
if( pObject )
{
MarkingObjZone( pObject , FALSE ); //마킹을 해제
AddWaitForMakingObj(pObject); //대기목록에 등록
}
}
}
void cHousingMgr::ChangeMaterialFurniture(DWORD dwFurnitureKind,DWORD dwMaterialIndex,BYTE byFlag)
{
//byFlag 0 FreeView , 1 RollBack , 2 RealChange
switch(dwFurnitureKind)
{
case ITEM_KIND_FURNITURE_WALLPAPER :
{
//벽이면 NotDelte 리스트에서 외벽만찾아 텍스쳐를 바꿔주자
m_CurHouse.pNotDeleteFurnitureList.SetPositionHead();
for(stFurniture* pstFurniture = m_CurHouse.pNotDeleteFurnitureList.GetData();
0 < pstFurniture;
pstFurniture = m_CurHouse.pNotDeleteFurnitureList.GetData())
{
if(! IsExteriorWall(pstFurniture->dwFurnitureIndex) )
continue;
CFurniture* pFuniture = (CFurniture*)m_FieldFurnitureTable.GetData(pstFurniture->dwObjectIndex);
if(! pFuniture )
continue;
if( 0 == byFlag )
{
//byFlag 0 FreeView
pFuniture->GetEngineObject()->SetMaterialIndex(dwMaterialIndex);
}
else if( 1 == byFlag )
{
//byFlag 1 RollBack
pFuniture->GetEngineObject()->SetMaterialIndex( pstFurniture->nMaterialIndex );
}
else if( 2 == byFlag )
{
//byFlag 1 RealChange
pstFurniture->nMaterialIndex = dwMaterialIndex;
pFuniture->GetFurnitureInfo()->nMaterialIndex = dwMaterialIndex;
pFuniture->GetEngineObject()->SetMaterialIndex(dwMaterialIndex);
}
}
}
break;
case ITEM_KIND_FURNITURE_FLOORPAPER:
{
//바닥이면 NotDelte 리스트에서 외벽만찾아 텍스쳐를 바꿔주자
m_FieldFurnitureTable.SetPositionHead();
for(stFurniture* pstFurniture = m_CurHouse.pNotDeleteFurnitureList.GetData();
0 < pstFurniture;
pstFurniture = m_CurHouse.pNotDeleteFurnitureList.GetData())
{
if(! IsFloor(pstFurniture->dwFurnitureIndex) )
continue;
CFurniture* pFuniture = (CFurniture*)m_FieldFurnitureTable.GetData(pstFurniture->dwObjectIndex);
if(! pFuniture )
continue;
if( 0 == byFlag )
{
//byFlag 0 FreeView
pFuniture->GetEngineObject()->SetMaterialIndex(dwMaterialIndex);
}
else if( 1 == byFlag )
{
//byFlag 1 RollBack
pFuniture->GetEngineObject()->SetMaterialIndex( pstFurniture->nMaterialIndex );
}
else if( 2 == byFlag )
{
//byFlag 1 RealChange
pstFurniture->nMaterialIndex = dwMaterialIndex;
pFuniture->GetFurnitureInfo()->nMaterialIndex = dwMaterialIndex;
pFuniture->GetEngineObject()->SetMaterialIndex(dwMaterialIndex);
}
}
}
break;
case ITEM_KIND_FURNITURE_CEILINGPAPER:
{
//천장이면 NotDelte 리스트에서 외벽만찾아 텍스쳐를 바꿔주자
m_CurHouse.pNotDeleteFurnitureList.SetPositionHead();
for(stFurniture* pstFurniture = m_CurHouse.pNotDeleteFurnitureList.GetData();
0 < pstFurniture;
pstFurniture = m_CurHouse.pNotDeleteFurnitureList.GetData())
{
if( Get_HighCategory(pstFurniture->dwFurnitureIndex) != eHOUSE_HighCategory_Decoration ||
Get_LowCategory(pstFurniture->dwFurnitureIndex) != eHOUSE_LowCategory_Decoration_CCover )
continue;
CFurniture* pFuniture = (CFurniture*)m_FieldFurnitureTable.GetData(pstFurniture->dwObjectIndex);
if(! pFuniture )
continue;
if( 0 == byFlag )
{
//byFlag 0 FreeView
pFuniture->GetEngineObject()->SetMaterialIndex(dwMaterialIndex);
}
else if( 1 == byFlag )
{
//byFlag 1 RollBack
pFuniture->GetEngineObject()->SetMaterialIndex( pstFurniture->nMaterialIndex );
}
else if( 2 == byFlag )
{
//byFlag 1 RealChange
pstFurniture->nMaterialIndex = dwMaterialIndex;
pFuniture->GetFurnitureInfo()->nMaterialIndex = dwMaterialIndex;
pFuniture->GetEngineObject()->SetMaterialIndex(dwMaterialIndex);
}
}
}
break;
}
}
void cHousingMgr::RideOnPlayerToFuniture(CPlayer* pPlayer)
{
//090603 pdy 하우징 탑승버그 수정
if( pPlayer == NULL || pPlayer->IsRideFurniture() || ! pPlayer->GetRideFurnitureID() )
return;
const DWORD dwFurnitureID = pPlayer->GetRideFurnitureID();
const DWORD dwFurnitureRideSlot = pPlayer->GetRideFurnitureSeatPos();
if( dwFurnitureID == 0)
return;
CFurniture* pFurniture = (CFurniture*)OBJECTMGR->GetObject( dwFurnitureID );
if(! pFurniture )
return;
if(! pFurniture->GetEngineObject()->IsInited() &&
! pPlayer->GetEngineObject()->IsInited() )
return;
stFurniture* pstFurniture = NULL;
if( IsHouseOwner() )
{
pstFurniture = m_CurHouse.pFurnitureList.GetData(dwFurnitureID);
}
else
{
pstFurniture = pFurniture->GetFurnitureInfo();
}
stFunitureInfo* pstFunitureInfo = GAMERESRCMNGR->GetFunitureInfo(pFurniture->GetFurnitureInfo()->dwFurnitureIndex);
if(! pFurniture || !pstFunitureInfo )
{
return;
}
if( ! pstFunitureInfo->dwActionIndex )
{
return;
}
char RideNodeName[32] = {0,};
sprintf(RideNodeName,"%s0%d",HOUSE_ATTACHBONENAME , dwFurnitureRideSlot+1 );
stHouseActionGroupInfo* pGroupInfo = GAMERESRCMNGR->GetHouseActionGroupInfo(pstFunitureInfo->dwActionIndex);
if(! pGroupInfo )
{
return;
}
stHouseActionInfo* pActionInfo = NULL;
for( int j=0; j < pGroupInfo->byActionNum ; j++)
{
stHouseActionInfo* pCurActionInfo = GAMERESRCMNGR->GetHouseActionInfo( pGroupInfo->dwActionIndexList[j] );
if( pCurActionInfo->dwActionType == eHOUSE_ACTION_TYPE_RIDE )
{
pActionInfo = pCurActionInfo;
break;
}
}
if( ! pActionInfo )
{
return;
}
pFurniture->GetEngineObject()->AttachRider(pPlayer->GetEngineObject() , RideNodeName);
pstFurniture->dwRidingPlayer[dwFurnitureRideSlot] = pPlayer->GetID();
pFurniture->InitFurniture(pstFurniture);
//알파리스트에 존재하는 가구면 리스트에서 삭제해준다.
PTRLISTPOS FindPos = m_AlphaHandleList.Find( pFurniture->GetEngineObject()->GetGXOHandle() );
if( FindPos )
{
m_AlphaHandleList.RemoveAt( FindPos );
//090615 pdy 하우징 알파버그 수정
if( pstFunitureInfo->bHasAlpha == FALSE ) //자체 알파가 없는 가구는
g_pExecutive->GXOSetZOrder( pFurniture->GetEngineObject()->GetGXOHandle() , 0 ); //Zorder를 0으로 설정한다.
pFurniture->GetEngineObject()->SetAlpha(1.0f);
}
OBJECTSTATEMGR->StartObjectState(pPlayer, eObjectState_HouseRiding);
pPlayer->SetRideFurnitureMotion(pActionInfo->dwPlayer_MotionIndex);
pPlayer->SetBaseMotion(); // 기본모션 재설정
OBJECTSTATEMGR->InitObjectState( pPlayer ); // 변경된 모션 적용할 수 있도록 상태 초기화
if( pActionInfo->dwPlayer_EffectIndex )
{
OBJECTEFFECTDESC desc( pActionInfo->dwPlayer_EffectIndex ); //플레이어에 이팩트가 있으면 적용
pPlayer->AddObjectEffect( pActionInfo->dwPlayer_EffectIndex , &desc, 1 );
}
if( pActionInfo->dwFurniture_MotionIndex )
{
pFurniture->ChangeMotion( pActionInfo->dwFurniture_MotionIndex ,FALSE); //가구에 모션이 있다면 적용
}
if( pActionInfo->dwFurniture_EffectIndex )
{
OBJECTEFFECTDESC desc( pActionInfo->dwFurniture_EffectIndex ); //가구에 이팩트가 있으면 적용
pFurniture->AddObjectEffect( pActionInfo->dwFurniture_EffectIndex , &desc, 1 );
}
pPlayer->SetAngle(pFurniture->GetAngle());
pPlayer->SetRideFurniture(TRUE);
//090603 pdy 하우징 탑승시 그림자 없애기 추가
OBJECTMGR->ApplyShadowOption( pPlayer );
}
void cHousingMgr::RideOffPlayerFromFuniture(CPlayer* pPlayer, BOOL bForceRideOff)
{
//090603 pdy 하우징 탑승버그 수정
if( pPlayer == NULL || ! pPlayer->IsRideFurniture() || ! pPlayer->GetRideFurnitureID() )
return;
const DWORD dwFurnitureID = pPlayer->GetRideFurnitureID();
const DWORD dwFurnitureRideSlot = pPlayer->GetRideFurnitureSeatPos();
CFurniture* pFurniture = (CFurniture*)OBJECTMGR->GetObject( dwFurnitureID );
if(! pFurniture )
return;
if( pFurniture->GetFurnitureInfo()->dwRidingPlayer[dwFurnitureRideSlot] != pPlayer->GetID() )
return;
stFurniture* pstFurniture = NULL;
if( IsHouseOwner() )
{
pstFurniture = m_CurHouse.pFurnitureList.GetData(dwFurnitureID);
}
else
{
pstFurniture = pFurniture->GetFurnitureInfo();
}
stFunitureInfo* pstFunitureInfo = GAMERESRCMNGR->GetFunitureInfo(pFurniture->GetFurnitureInfo()->dwFurnitureIndex);
if(! pFurniture || !pstFunitureInfo )
{
return;
}
if( ! pstFunitureInfo->dwActionIndex )
{
return;
}
if( pstFurniture->dwRidingPlayer[dwFurnitureRideSlot] != pPlayer->GetID() )
{
return;
}
pFurniture->GetEngineObject()->DetachRider(pPlayer->GetEngineObject());
pstFurniture->dwRidingPlayer[dwFurnitureRideSlot] = 0;
pFurniture->InitFurniture(pstFurniture);
if( pPlayer == HERO ) //HERO가 내렸으면
{
//090608 pdy 마킹관련 버그 수정
CheckAllMarkingObjByHeroZone(); //필드에 설치된 오브젝트중 히어로 위치에 마킹된 오브젝트를 검출하여 처리한다.
}
pPlayer->SetRideFurnitureID(0);
pPlayer->SetRideFurnitureSeatPos(0);
OBJECTSTATEMGR->EndObjectState(pPlayer, eObjectState_HouseRiding);
// 강제내리기는 이동상태로 만들어주자~
if(bForceRideOff)
OBJECTSTATEMGR->StartObjectState(pPlayer, eObjectState_Move);
pPlayer->SetBaseMotion(); // 기본모션 재설정
pPlayer->SetAngle(pFurniture->GetAngle());
pPlayer->SetRideFurniture(FALSE);
APPEARANCEMGR->InitAppearance( pPlayer ); // 탑승해제 후 다른 Player의 경우 보이지 않아 보이게 함
}
//////////////////////////////////////////////////////////////////////////////////////////////////
//여기서부터는 테스트를위한 코드
//////////////////////////////////////////////////////////////////////////////////////////////////
void cHousingMgr::ShowAllMarkingTest()
{
DWORD dwCurTick = GetTickCount();
if( dwCurTick < ( m_dwLastShowTick + 2000 ) )
return;
m_dwLastShowTick = dwCurTick;
PTRLISTPOS pos = m_MarkinTestList.GetHeadPosition();
while( pos )
{
cHousingMgr::cMarkingTest* pMarkingTest = (cMarkingTest*)m_MarkinTestList.GetNext( pos ) ;
pMarkingTest->m_pTestShowObj->SetPoint( pMarkingTest->m_pvPos ) ;
}
}
void cHousingMgr::SetShowTestMaking(bool bShow)
{
m_bShowTest = bShow;
if( !bShow )
ReleaseAllMarkingTest();
}
//테스트를 위한 마킹정보 등록
void cHousingMgr::AddMarkingTest(CObject* pMarkingObj,VECTOR3* Pos)
{
if(! pMarkingObj )
return;
cMarkingTest* pMarkingTest = new cMarkingTest();
pMarkingTest->m_pTestShowObj = new CMovePoint();
pMarkingTest->m_pTestShowObj->Init();
pMarkingTest->m_pvPos = new VECTOR3();
*pMarkingTest->m_pvPos = *Pos;
pMarkingTest->m_pMarkinObj = pMarkingObj;
m_MarkinTestList.AddTail(pMarkingTest);
}
//테스트를 위한 마킹정보 해제
void cHousingMgr::ReleaseMarkingTest(CObject* pMarkingObj)
{
PTRLISTPOS pos = m_MarkinTestList.GetHeadPosition();
while( pos )
{
cMarkingTest* pMarkingTest = (cMarkingTest*)m_MarkinTestList.GetNext( pos ) ;
if( pMarkingTest->m_pMarkinObj == pMarkingObj)
{
m_MarkinTestList.Remove( pMarkingTest );
pMarkingTest->m_pTestShowObj->Release();
SAFE_DELETE( pMarkingTest->m_pTestShowObj );
SAFE_DELETE( pMarkingTest->m_pvPos );
SAFE_DELETE( pMarkingTest );
return;
}
}
}
void cHousingMgr::ReleaseAllMarkingTest()
{
PTRLISTPOS pos = m_MarkinTestList.GetHeadPosition();
while( pos )
{
cMarkingTest* pMarkingTest = (cMarkingTest*)m_MarkinTestList.GetNext( pos ) ;
pMarkingTest->m_pTestShowObj->Release();
SAFE_DELETE( pMarkingTest->m_pTestShowObj);
SAFE_DELETE( pMarkingTest->m_pvPos);
SAFE_DELETE( pMarkingTest);
}
m_MarkinTestList.RemoveAll();
}
|
2e6168c1ad3b5b058514996a941abe0138f4df95 | 98365b18c3e1bb3f0e7ab8242cc51d0f8cd133be | /src/MySensorsToolkit/Sensor/ButtonSensor.h | 476b6dc450245be9e694ac87b0882e6522195455 | [] | no_license | koson/MySensorsToolkit | dcac38a5e664e8439bf06fe0ff1df5549743d52f | ab4580c2abc748c9938d8de6c2a1a2b593e51bde | refs/heads/master | 2023-08-15T00:45:12.496137 | 2021-09-18T15:04:56 | 2021-09-18T15:04:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 359 | h | ButtonSensor.h | #pragma once
#include "SensorBase.h"
#include "SensorValue.h"
namespace mys_toolkit {
class ButtonSensor: public SensorBase
{
uint8_t pin_;
bool lastState_ = false;
Message sceneMsg_;
bool getTripped_() const;
bool begin_() override;
unsigned long update_() override;
public:
ButtonSensor(uint8_t sensorId, uint8_t pin);
};
} //mys_toolkit
|
729fc63e848059f4fd9f3d0af9e2437af44fafac | 1141ce027f2a7222557079312e86913e85994a1b | /Source/autonomoustangobot/app/src/main/cpp/octomapcustomization/NavigationNode.cpp | 35f1cc3916e602f481d4a67fcc4b48376bb297fc | [] | no_license | jannismoeller/AutonomousTangoBot | bb5e6f07ac35376d3dd1f65b54ba96aecf43d85e | 206e9e7f5dca2b2326100538d4c3a04ec70da3b6 | refs/heads/master | 2021-01-01T06:31:55.132830 | 2017-12-11T12:20:24 | 2017-12-11T12:20:24 | 97,450,866 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,584 | cpp | NavigationNode.cpp | #include "NavigationNode.h"
namespace octomapcustomization{
void NavigationNode::deallocChildren() {
delete[] children;
children = NULL;
}
void NavigationNode::allocNavigationInformation() {
assert(navInfo == NULL);
navInfo = new navigation_information;
}
void NavigationNode::deallocNavigationInformation() {
assert(navInfo != NULL);
if (navInfo->neighbors != NULL) {
deallocNeighbors();
}
delete navInfo;
navInfo = NULL;
}
void NavigationNode::allocNeighbors() {
assert(navInfo);
assert(navInfo->neighbors == NULL);
navInfo->neighbors = new NavigationNode *[8];
for (unsigned int i = 0; i < 8; i++) {
navInfo->neighbors[i] = NULL;
}
assert(navInfo->neighborCount == 0);
}
void NavigationNode::deallocNeighbors() {
assert(navInfo);
assert(navInfo->neighbors);
for (int i = 0; i < 8; ++i) {
assert(navInfo->neighbors[i] == NULL);
}
delete[] navInfo->neighbors;
navInfo->neighbors = NULL;
assert(navInfo->neighborCount == 0);
}
uint8_t NavigationNode::getOppositeNeighborIdx(uint8_t i){
return (uint8_t)((i + 4) % 8);
}
void NavigationNode::convertToFreeNode() {
assert(navInfo != NULL);
if(navInfo->neighbors != NULL){
// detach all neighbors
for (unsigned int i=0; i<8; i++) {
if(navInfo->neighbors[i] != NULL) {
assert(navInfo->neighbors[i]->navInfo != NULL);
assert(navInfo->neighbors[i]->navInfo->neighbors != NULL);
navInfo->neighbors[i]->removeNeighbor(getOppositeNeighborIdx(i));
if(navInfo->neighbors[i]->navInfo->neighborCount <= 0)
navInfo->neighbors[i]->deallocNeighbors();
removeNeighbor(i);
}
}
}
assert(navInfo->neighborCount == 0);
deallocNavigationInformation();
}
void NavigationNode::convertToOccupiedNode() {
allocNavigationInformation();
}
void NavigationNode::setNeighbor(int i, NavigationNode *node) {
assert(navInfo);
assert(navInfo->neighbors);
assert(navInfo->neighbors[i] != node);
assert(navInfo->neighbors[i] == NULL);
if(navInfo->neighbors[i] == NULL)
navInfo->neighborCount++;
navInfo->neighbors[i] = node;
}
void NavigationNode::removeNeighbor(int i) {
assert(navInfo);
assert(navInfo->neighbors);
assert(navInfo->neighbors[i] != NULL);
assert(navInfo->neighborCount > 0);
navInfo->neighbors[i] = NULL;
navInfo->removedNeighborCount++;
navInfo->neighborCount--;
}
NavigationNode::~NavigationNode() {
assert(navInfo == NULL);
}
void NavigationNode::disconnectNeighbors() {
assert(navInfo);
assert(navInfo->neighbors);
for (uint8_t i = 0; i < 8; ++i) {
if(navInfo->neighbors[i] != NULL){
assert(this == navInfo->neighbors[i]->navInfo->neighbors[getOppositeNeighborIdx(i)]);
navInfo->neighbors[i]->removeNeighbor(getOppositeNeighborIdx(i));
if(navInfo->neighbors[i]->navInfo->neighborCount <= 0)
navInfo->neighbors[i]->deallocNeighbors();
removeNeighbor(i);
}
}
assert(navInfo->neighborCount == 0);
}
NavigationNode *NavigationNode::getNeighbor(int i) const {
assert(navInfo);
assert(navInfo->neighbors);
assert(i >= 0 && i < 8);
return navInfo->neighbors[i];
}
std::ostream &NavigationNode::writeData(std::ostream &s) const {
s.write((const char*) &value, sizeof(value)); // occupancy
char hasNavigationInfo = navInfo != NULL;
s.write((const char*) &hasNavigationInfo, sizeof(char));
if(hasNavigationInfo){
s.write((const char*) &navInfo->zCoord, sizeof(float));
}
return s;
}
std::istream &NavigationNode::readData(std::istream &s) {
s.read((char*) &value, sizeof(value)); // occupancy
char hasNavigationInfo;
s.read((char*) &hasNavigationInfo, sizeof(char));
if(hasNavigationInfo){
allocNavigationInformation();
s.read((char*) &navInfo->zCoord, sizeof(float));
}
return s;
}
} |
8775624680b0792b2eebb7bfe044e77f2cee9071 | b154b5de040cef45edf6fec351243a3a73d833bc | /15.go/20.cpp | 7eee0e2d51cca58db36b375218cd9ac64da60251 | [] | no_license | yangxiaox/code | a6f2d652b847a746ed303c8dffeaf7fb758d9ecd | d8f93eddedc153d02903c8eb8f7641b096d80aaa | refs/heads/master | 2021-09-10T14:04:18.857186 | 2018-03-27T13:34:09 | 2018-03-27T13:34:09 | 116,806,676 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,571 | cpp | 20.cpp | /*************************************************************************
> File Name: 20.cpp
> Author:
> Mail:
> Created Time: 2017年11月23日 星期四 23时37分13秒
************************************************************************/
#include<bits/stdc++.h>
using namespace std;
struct UnionSet {
int *father, *size;
int n;
};
UnionSet *init(int n) {
UnionSet *p = (UnionSet *)malloc(sizeof(UnionSet));
p->father = (int *)malloc(sizeof(int) * n + 1);
p->size = (int *)malloc(sizeof(int) * n + 1);
p->n = n + 1;
for (int i = 0; i < n; ++i) {
p->father[i] = i;
}
return p;
}
int find(UnionSet *u, int ind) {
if (u->father[ind] == ind) {
return ind;
}
u->father[ind] = find(u, u->father[ind]);
return u->father[ind];
}
int merge(UnionSet *u, int p, int q) {
int father_p = find(u, p);
int father_q = find(u, q);
if (father_p == father_q) return 0;
if (u->size[father_p] < u->size[father_q]) {
u->father[father_q] = father_p;
} else {
u->father[father_p] = father_q;
}
return 1;
}
int main() {
int n, m;
cin >> n >> m;
int a[n];
UnionSet *u = init(n);
for (int i = 0; i < n; ++i) {
cin >> u->size[i];
}
for (int i = 0; i < m; ++i) {
int temp1, temp2;
cin >> temp1 >> temp2;
merge(u, temp1 - 1, temp2 - 1);
}
long long x = 0;
for (int i = 0; i < n; ++i) {
if (i != find(u, i)) continue;
x += u->size[i];
}
cout << x << endl;
return 0;
}
|
cc66c1d600136aa3456b1104bc7e1b9b38e202e5 | ab570cfbba5d90e73727dca01008e43029a42eae | /main.cpp | 7645f3f7c2bd8b9cbb9b64da078d1be6dc5580d0 | [] | no_license | rileym65/Casino | 3adfbdf4501f0c55191c031a0ffe3615b30b8cfc | 6b73002fdfebbda9ca490774b941f561cb73a049 | refs/heads/master | 2020-08-08T22:08:40.508213 | 2019-10-09T13:49:34 | 2019-10-09T13:49:34 | 213,931,230 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 73,167 | cpp | main.cpp | #include <stdio.h>
#include <stdlib.h>
#include "header.h"
#include "poker.h"
#include "aruba.h"
#include "bacc.h"
#include "bahama.h"
#include "bingo.h"
#include "bj.h"
#include "bonus6.h"
#include "boston5.h"
#include "card7.h"
#include "carib.h"
#include "chuck.h"
#include "craps.h"
#include "dstud.h"
#include "faceup.h"
#include "flop.h"
#include "holdem.h"
#include "keno.h"
#include "lir.h"
#include "p357.h"
#include "paigow.h"
#include "paigowtiles.h"
#include "pkrmach.h"
#include "reddog.h"
#include "royal.h"
#include "roul.h"
#include "sicbo.h"
#include "spanish.h"
#include "superfun.h"
#include "texas.h"
#include "three.h"
#include "videokeno.h"
#include "wheel.h"
#include "war.h"
#include "wave.h"
#include "wildholdem.h"
#ifdef GRAPHIC
#include "images/main.xpm"
#endif
void getSaveFileName(char* envp[],const char* filename,char* dest) {
int i;
int j;
j = -1;
for (i=0; envp[i] != NULL; i++)
if (strncasecmp(envp[i],"home=",5) == 0) j = i;
if (j < 0) {
strcpy(dest, filename);
return;
}
i=0;
while (envp[j][i] != '=') i++;
i++;
while (envp[j][i] == ' ') i++;
strcpy(dest, envp[j]+i);
if (dest[strlen(dest)] != '/') strcat(dest,"/");
strcat(dest,filename);
}
void getPlayerName(char* envp[],const char* defaultName,char* dest) {
int i;
int j;
j = -1;
for (i=0; envp[i] != NULL; i++)
if (strncasecmp(envp[i],"user=",5) == 0) j = i;
if (j < 0) {
strcpy(dest, defaultName);
return;
}
i=0;
while (envp[j][i] != '=') i++;
i++;
while (envp[j][i] == ' ') i++;
strcpy(dest, envp[j]+i);
}
void pokerStats() {
double ti,to;
int i;
int pos;
int space;
char buffer[255];
rcs_GC gc;
rcs_Font font;
rcs_Event event;
ti=0; to=0;
for (i=0;i<SLOTS_BASE;i++) {
ti+=player[0]->paidIn(i);
to+=player[0]->paidOut(i);
}
if (ti==0) ti=.0001;
gc=rcs_openGC(display,mainScreen);
rcs_namedForeground(display,gc,"darkgreen");
rcs_drawFilledBox(display,mainScreen,gc,0,0,800,600);
rcs_namedForeground(display,gc,"yellow");
font=rcs_openFont(display,STAT_FONT);
rcs_setFont(display,gc,font);
pos=20;
space=18;
if (player[0]->paidIn(GAME_VPOKER)>0) {
sprintf(buffer,"Video Poker (jacks) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER),
player[0]->paidOut(GAME_VPOKER),
player[0]->average(GAME_VPOKER));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_VPOKER2)>0) {
sprintf(buffer,"Video Poker (Tens) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER2),
player[0]->paidOut(GAME_VPOKER2),
player[0]->average(GAME_VPOKER2));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_VPOKER3)>0) {
sprintf(buffer,"Video Poker (Deuces) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER3),
player[0]->paidOut(GAME_VPOKER3),
player[0]->average(GAME_VPOKER3));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_VPOKER4)>0) {
sprintf(buffer,"Video Poker (Jokers) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER4),
player[0]->paidOut(GAME_VPOKER4),
player[0]->average(GAME_VPOKER4));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_VPOKERP)>0) {
sprintf(buffer,"Video Poker (Progressive) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKERP),
player[0]->paidOut(GAME_VPOKERP),
player[0]->average(GAME_VPOKERP));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_VPOKERDJ)>0) {
sprintf(buffer,"Video Poker (Dbl Joker) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKERDJ),
player[0]->paidOut(GAME_VPOKERDJ),
player[0]->average(GAME_VPOKERDJ));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_VPOKERJ2)>0) {
sprintf(buffer,"Video Poker (2's, Jokers) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKERJ2),
player[0]->paidOut(GAME_VPOKERJ2),
player[0]->average(GAME_VPOKERJ2));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_VPOKER8)>0) {
sprintf(buffer,"Video Poker (8's and A's) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER8),
player[0]->paidOut(GAME_VPOKER8),
player[0]->average(GAME_VPOKER8));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_VPOKERB)>0) {
sprintf(buffer,"Bonus Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKERB),
player[0]->paidOut(GAME_VPOKERB),
player[0]->average(GAME_VPOKERB));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_VPOKER2B)>0) {
sprintf(buffer,"Double Bonus Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER2B),
player[0]->paidOut(GAME_VPOKER2B),
player[0]->average(GAME_VPOKER2B));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_VPOKER3B)>0) {
sprintf(buffer,"Triple Bonus Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER3B),
player[0]->paidOut(GAME_VPOKER3B),
player[0]->average(GAME_VPOKER3B));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
rcs_closeFont(display,font);
rcs_closeGC(display,gc);
displayScreen();
getEvent(display);
while (event.type != EVENT_BUTTON_PRESS) event=getEvent(display);
}
void statistics() {
double pi,po;
double si,so;
double ti,to;
int i;
int pos;
int space;
char buffer[255];
#ifdef GRAPHIC
rcs_GC gc;
rcs_Font font;
rcs_Event event;
#endif
si = 0;
so = 0;
for (i=SLOTS_BASE;i<MAX_GAMES;i++) {
si+=player[0]->paidIn(i);
so+=player[0]->paidOut(i);
}
ti=si; to=so;
for (i=0;i<SLOTS_BASE;i++) {
ti+=player[0]->paidIn(i);
to+=player[0]->paidOut(i);
}
if (ti==0) ti=.0001;
pi = player[0]->paidIn(GAME_VPOKER) + player[0]->paidIn(GAME_VPOKER2) +
player[0]->paidIn(GAME_VPOKER3) + player[0]->paidIn(GAME_VPOKER4) +
player[0]->paidIn(GAME_VPOKERP) + player[0]->paidIn(GAME_VPOKERDJ) +
player[0]->paidIn(GAME_VPOKERJ2) + player[0]->paidIn(GAME_VPOKER8) +
player[0]->paidIn(GAME_VPOKERB) + player[0]->paidIn(GAME_VPOKER2B) +
player[0]->paidIn(GAME_VPOKER3B);
po = player[0]->paidOut(GAME_VPOKER) + player[0]->paidOut(GAME_VPOKER2) +
player[0]->paidOut(GAME_VPOKER3) + player[0]->paidOut(GAME_VPOKER4) +
player[0]->paidOut(GAME_VPOKERP) + player[0]->paidOut(GAME_VPOKERDJ) +
player[0]->paidOut(GAME_VPOKERJ2) + player[0]->paidOut(GAME_VPOKER8) +
player[0]->paidOut(GAME_VPOKERB) + player[0]->paidOut(GAME_VPOKER2B) +
player[0]->paidOut(GAME_VPOKER3B);
#ifdef GRAPHIC
gc=rcs_openGC(display,mainScreen);
rcs_namedForeground(display,gc,"darkgreen");
rcs_drawFilledBox(display,mainScreen,gc,0,0,800,600);
rcs_namedForeground(display,gc,"yellow");
font=rcs_openFont(display,STAT_FONT);
rcs_setFont(display,gc,font);
pos=20;
space=15;
if (player[0]->paidIn(GAME_BJ)>0) {
sprintf(buffer,"Blackjack %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_BJ),
player[0]->paidOut(GAME_BJ),
player[0]->average(GAME_BJ));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_FACEUP)>0) {
sprintf(buffer," Faceup 21 %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_FACEUP),
player[0]->paidOut(GAME_FACEUP),
player[0]->average(GAME_FACEUP));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_SPANISH)>0) {
sprintf(buffer," Spanish 21 %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_SPANISH),
player[0]->paidOut(GAME_SPANISH),
player[0]->average(GAME_SPANISH));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_ROYAL)>0) {
sprintf(buffer," Royal Match 21 %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_ROYAL),
player[0]->paidOut(GAME_ROYAL),
player[0]->average(GAME_ROYAL));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_SUPERFUN)>0) {
sprintf(buffer," Super Fun 21 %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_SUPERFUN),
player[0]->paidOut(GAME_SUPERFUN),
player[0]->average(GAME_SUPERFUN));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_BACC)>0) {
sprintf(buffer,"Baccarat %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_BACC),
player[0]->paidOut(GAME_BACC),
player[0]->average(GAME_BACC));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_LIR)>0) {
sprintf(buffer,"Let it Ride %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_LIR),
player[0]->paidOut(GAME_LIR),
player[0]->average(GAME_LIR));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_WILD)>0) {
sprintf(buffer,"Wild Hold'em Fold'em %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_WILD),
player[0]->paidOut(GAME_WILD),
player[0]->average(GAME_WILD));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_CRAPS)>0) {
sprintf(buffer,"Craps %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_CRAPS),
player[0]->paidOut(GAME_CRAPS),
player[0]->average(GAME_CRAPS));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_ROUL)>0) {
sprintf(buffer,"Roulette %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_ROUL),
player[0]->paidOut(GAME_ROUL),
player[0]->average(GAME_ROUL));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_KENO)>0) {
sprintf(buffer,"Keno %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_KENO),
player[0]->paidOut(GAME_KENO),
player[0]->average(GAME_KENO));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_CARIB)>0) {
sprintf(buffer,"Caribbean Stud %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_CARIB),
player[0]->paidOut(GAME_CARIB),
player[0]->average(GAME_CARIB));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_BAHAMA)>0) {
sprintf(buffer," Bahama Bonus %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_BAHAMA),
player[0]->paidOut(GAME_BAHAMA),
player[0]->average(GAME_BAHAMA));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_ARUBA)>0) {
sprintf(buffer," Wild Aruba Stud %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_ARUBA),
player[0]->paidOut(GAME_ARUBA),
player[0]->average(GAME_ARUBA));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_REDDOG)>0) {
sprintf(buffer,"Red Dog %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_REDDOG),
player[0]->paidOut(GAME_REDDOG),
player[0]->average(GAME_REDDOG));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_CHUCK)>0) {
sprintf(buffer,"Chuck a Luck %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_CHUCK),
player[0]->paidOut(GAME_CHUCK),
player[0]->average(GAME_CHUCK));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_WHEEL)>0) {
sprintf(buffer,"Money Wheel %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_WHEEL),
player[0]->paidOut(GAME_WHEEL),
player[0]->average(GAME_WHEEL));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_DSTUD)>0) {
sprintf(buffer,"Double Down Stud %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_DSTUD),
player[0]->paidOut(GAME_DSTUD),
player[0]->average(GAME_DSTUD));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_BONUS6)>0) {
sprintf(buffer,"Bonus 6 %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_BONUS6),
player[0]->paidOut(GAME_BONUS6),
player[0]->average(GAME_BONUS6));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_THREE)>0) {
sprintf(buffer,"Three Card Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_THREE),
player[0]->paidOut(GAME_THREE),
player[0]->average(GAME_THREE));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_PAIGOWT)>0) {
sprintf(buffer,"Pai Gow %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_PAIGOWT),
player[0]->paidOut(GAME_PAIGOWT),
player[0]->average(GAME_PAIGOWT));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_PAIGOW)>0) {
sprintf(buffer," Pai Gow Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_PAIGOW),
player[0]->paidOut(GAME_PAIGOW),
player[0]->average(GAME_PAIGOW));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_SICBO)>0) {
sprintf(buffer,"Sic Bo %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_SICBO),
player[0]->paidOut(GAME_SICBO),
player[0]->average(GAME_SICBO));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_WAR)>0) {
sprintf(buffer,"Casino War %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_WAR),
player[0]->paidOut(GAME_WAR),
player[0]->average(GAME_WAR));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_WAVE)>0) {
sprintf(buffer,"Catch a Wave %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_WAVE),
player[0]->paidOut(GAME_WAVE),
player[0]->average(GAME_WAVE));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_HOLDEM)>0) {
sprintf(buffer,"Casino Hold'em %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_HOLDEM),
player[0]->paidOut(GAME_HOLDEM),
player[0]->average(GAME_HOLDEM));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_BOSTON5)>0) {
sprintf(buffer,"Boston 5 %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_BOSTON5),
player[0]->paidOut(GAME_BOSTON5),
player[0]->average(GAME_BOSTON5));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_FLOP)>0) {
sprintf(buffer,"Flop Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_FLOP),
player[0]->paidOut(GAME_FLOP),
player[0]->average(GAME_FLOP));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_357)>0) {
sprintf(buffer,"3-5-7 Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_357),
player[0]->paidOut(GAME_357),
player[0]->average(GAME_357));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_TEXAS)>0) {
sprintf(buffer,"Texas Hold'em Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_TEXAS),
player[0]->paidOut(GAME_TEXAS),
player[0]->average(GAME_TEXAS));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_CARD7)>0) {
sprintf(buffer,"Seven Card Stud Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_CARD7),
player[0]->paidOut(GAME_CARD7),
player[0]->average(GAME_CARD7));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (player[0]->paidIn(GAME_BINGO)>0) {
sprintf(buffer,"Bingo %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_BINGO),
player[0]->paidOut(GAME_BINGO),
player[0]->average(GAME_BINGO));
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (si>0) {
sprintf(buffer,"Slots (All) %12.2f %12.2f %5.2f%%\n",
si, so, so/si*100);
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
if (pi>0) {
sprintf(buffer,"Video Poker (All) %12.2f %12.2f %5.2f%%\n",
pi,
po,
po/pi);
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
pi = 0; po = 0;
for (i=KENO_BASE; i<KENO_BASE+10; i++) {
pi += player[0]->paidIn(i);
po += player[0]->paidOut(i);
}
if (pi>0) {
sprintf(buffer,"Video Keno (All) %12.2f %12.2f %5.2f%%\n",
pi,
po,
po/pi*100);
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
pos+=space;
}
sprintf(buffer,"Total %12.2f %12.2f %5.2f%%\n",ti,to,to/ti*100);
sprintf(buffer,"Total %12.2f %12.2f %5.2f%%\n",ti,to,to/ti*100);
rcs_drawString(display,mainScreen,gc,20,pos,buffer);
rcs_closeFont(display,font);
rcs_closeGC(display,gc);
displayScreen();
getEvent(display);
while (event.type != EVENT_BUTTON_PRESS) event=getEvent(display);
#endif
#ifdef CONSOLE
if (player[0]->paidIn(GAME_BJ)>0)
printf("Blackjack %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_BJ),
player[0]->paidOut(GAME_BJ),
player[0]->average(GAME_BJ));
if (player[0]->paidIn(GAME_FACEUP)>0)
printf("Faceup 21 %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_FACEUP),
player[0]->paidOut(GAME_FACEUP),
player[0]->average(GAME_FACEUP));
if (player[0]->paidIn(GAME_BACC)>0)
printf("Baccarat %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_BACC),
player[0]->paidOut(GAME_BACC),
player[0]->average(GAME_BACC));
if (player[0]->paidIn(GAME_LIR)>0)
printf("Let it ride %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_LIR),
player[0]->paidOut(GAME_LIR),
player[0]->average(GAME_LIR));
if (player[0]->paidIn(GAME_CRAPS)>0)
printf("Craps %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_CRAPS),
player[0]->paidOut(GAME_CRAPS),
player[0]->average(GAME_CRAPS));
if (player[0]->paidIn(GAME_ROUL)>0)
printf("Roulette %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_ROUL),
player[0]->paidOut(GAME_ROUL),
player[0]->average(GAME_ROUL));
if (player[0]->paidIn(GAME_VPOKER)>0)
printf("Video Poker (Jacks) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER),
player[0]->paidOut(GAME_VPOKER),
player[0]->average(GAME_VPOKER));
if (player[0]->paidIn(GAME_VPOKER2)>0)
printf("Video Poker (10s) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER2),
player[0]->paidOut(GAME_VPOKER2),
player[0]->average(GAME_VPOKER2));
if (player[0]->paidIn(GAME_VPOKER3)>0)
printf("Video Poker (Deuces) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER3),
player[0]->paidOut(GAME_VPOKER3),
player[0]->average(GAME_VPOKER3));
if (player[0]->paidIn(GAME_VPOKER4)>0)
printf("Video Poker (Jokers) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKER4),
player[0]->paidOut(GAME_VPOKER4),
player[0]->average(GAME_VPOKER4));
if (player[0]->paidIn(GAME_VPOKERDJ)>0)
printf("Video Poker (Dbl Jokers) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKERDJ),
player[0]->paidOut(GAME_VPOKERDJ),
player[0]->average(GAME_VPOKERDJ));
if (player[0]->paidIn(GAME_VPOKERJ2)>0)
printf("Video Poker 2's jokers %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKERJ2),
player[0]->paidOut(GAME_VPOKERJ2),
player[0]->average(GAME_VPOKERJ2));
if (player[0]->paidIn(GAME_VPOKERP)>0)
printf("Video Poker (Progressive) %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_VPOKERP),
player[0]->paidOut(GAME_VPOKERP),
player[0]->average(GAME_VPOKERP));
if (player[0]->paidIn(GAME_SLOTS)>0)
printf("Slots %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_SLOTS),
player[0]->paidOut(GAME_SLOTS),
player[0]->average(GAME_SLOTS));
if (player[0]->paidIn(GAME_KENO)>0)
printf("Keno %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_KENO),
player[0]->paidOut(GAME_KENO),
player[0]->average(GAME_KENO));
if (player[0]->paidIn(GAME_CARIB)>0)
printf("Carribean Stud Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_CARIB),
player[0]->paidOut(GAME_CARIB),
player[0]->average(GAME_CARIB));
if (player[0]->paidIn(GAME_REDDOG)>0)
printf("Red Dog %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_REDDOG),
player[0]->paidOut(GAME_REDDOG),
player[0]->average(GAME_REDDOG));
if (player[0]->paidIn(GAME_CHUCK)>0)
printf("Chuck-a-Luck %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_CHUCK),
player[0]->paidOut(GAME_CHUCK),
player[0]->average(GAME_CHUCK));
if (player[0]->paidIn(GAME_WHEEL)>0)
printf("Money Wheel %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_WHEEL),
player[0]->paidOut(GAME_WHEEL),
player[0]->average(GAME_WHEEL));
if (player[0]->paidIn(GAME_DSTUD)>0)
printf("Double Down Stud %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_DSTUD),
player[0]->paidOut(GAME_DSTUD),
player[0]->average(GAME_DSTUD));
if (player[0]->paidIn(GAME_THREE)>0)
printf("Three Card Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_THREE),
player[0]->paidOut(GAME_THREE),
player[0]->average(GAME_THREE));
if (player[0]->paidIn(GAME_PAIGOW)>0)
printf("Pai Gow Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_PAIGOW),
player[0]->paidOut(GAME_PAIGOW),
player[0]->average(GAME_PAIGOW));
if (player[0]->paidIn(GAME_TEXAS)>0)
printf("Texas Hold'em Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_TEXAS),
player[0]->paidOut(GAME_TEXAS),
player[0]->average(GAME_TEXAS));
if (player[0]->paidIn(GAME_CARD7)>0)
printf("Seven Card Stud Poker %12.2f %12.2f %5.2f%%\n",
player[0]->paidIn(GAME_CARD7),
player[0]->paidOut(GAME_CARD7),
player[0]->average(GAME_CARD7));
printf("Total %12.2f %12.2f %5.2f%%\n",
ti,to,to/ti*100);
printf("Press <enter> to continue\n");
fgets(buffer,10,stdin);
#endif
}
int mainMenu() {
int game;
#ifdef GRAPHIC
rcs_Event event;
rcs_GC gc;
clearScreen();
gc=rcs_openGC(display,mainScreen);
table=rcs_xpmToPixmap(display,mainWindow,main_xpm);
rcs_copyArea(display,table,mainScreen,gc,0,0,800,600,0,0);
rcs_closeGC(display,gc);
displayScreen();
game=-1;
while (game==-1) {
event=getEvent(display);
switch (event.type) {
case EVENT_BUTTON_PRESS: if (event.d1==1) {
if (event.d2>=0 && event.d2<=61 && event.d3>=0 && event.d3<=25) game=99;
if (event.d2>=457 && event.d2<=531 && event.d3>=33 && event.d3<=153) game=0;
if (event.d2>=339 && event.d2<=439 && event.d3>=202 && event.d3<=297) game=1;
if (event.d2>=64 && event.d2<=157 && event.d3>=314 && event.d3<=409) game=2;
if (event.d2>=286 && event.d2<=426 && event.d3>=60 && event.d3<=178) game=3;
if (event.d2>=692 && event.d2<=793 && event.d3>=442 && event.d3<=537) game=4;
if (event.d2>=81 && event.d2<=266 && event.d3>=186 && event.d3<=298) game=5;
if (event.d2>=554 && event.d2<=741 && event.d3>=192 && event.d3<=287) game=6;
if (event.d2>=562 && event.d2<=706 && event.d3>=58 && event.d3<=174) game=7;
if (event.d2>=134 && event.d2<=231 && event.d3>=18 && event.d3<=89) game=8;
if (event.d2>=553 && event.d2<=656 && event.d3>=438 && event.d3<=534) game=9;
if (event.d2>=17 && event.d2<=57 && event.d3>=47 && event.d3<=224) game=10;
if (event.d2>=56 && event.d2<=154 && event.d3>=440 && event.d3<=534) game=11;
if (event.d2>=350 && event.d2<=445 && event.d3>=312 && event.d3<=410) game=12;
if (event.d2>=558 && event.d2<=656 && event.d3>=312 && event.d3<=410) game=13;
if (event.d2>=701 && event.d2<=795 && event.d3>=303 && event.d3<=410) game=14;
if (event.d2>=208 && event.d2<=301 && event.d3>=312 && event.d3<=406) game=15;
if (event.d2>=198 && event.d2<=296 && event.d3>=440 && event.d3<=536) game=16;
if (event.d2>=339 && event.d2<=440 && event.d3>=440 && event.d3<=538) game=17;
if (event.d2>=738 && event.d2<=777 && event.d3>=46 && event.d3<=225) game=-2;
}
break;
}
}
rcs_closePixmap(display,table);
return game;
#endif
#ifdef CONSOLE
ClrScr();
Output("\n 1. Blackjack 6. Roulette\n");
Output(" 2. Baccarat 7. Slots\n");
Output(" 3. Video Poker 8. Keno\n");
Output(" 4. Let it Ride 9. Carribian Stud Poker\n");
Output(" 5. Craps 10. Texas Hold'em Poker\n");
Output("13. Chuck-a-Luck 11. Faceup 21\n");
Output("12. Red Dog 14. Money Wheel\n");
Output("15. Double Down Stud 16. Three Card Poker\n");
Output("17. Pai Gow Poker\n");
Output("\n");
Output("99. Statistics 0. Quit\n");
Input(buffer);
sscanf(buffer,"%d",&game);
return game;
#endif
}
void _pokerMenu() {
rcs_GC gc;
rcs_Font font;
gc=rcs_openGC(display,mainScreen);
font=rcs_openFont(display,MENU_FONT);
rcs_setFont(display,gc,font);
rcs_namedForeground(display,gc,"darkgreen");
rcs_drawFilledBox(display,mainScreen,gc,0,0,800,600);
rcs_namedForeground(display,gc,"yellow");
rcs_drawString(display,mainScreen,gc,320,65,"Video Poker");
rcs_drawString(display,mainScreen,gc,320,125,"Jacks or better");
rcs_drawString(display,mainScreen,gc,320,165,"Tens or better");
rcs_drawString(display,mainScreen,gc,320,205,"Deuces Wild");
rcs_drawString(display,mainScreen,gc,320,245,"Jokers Wild");
rcs_drawString(display,mainScreen,gc,320,285,"Jacks or better proressive");
rcs_drawString(display,mainScreen,gc,320,325,"Double Joker");
rcs_drawString(display,mainScreen,gc,320,365,"Deuces and Jokers wild");
rcs_drawString(display,mainScreen,gc,320,405,"Aces and Eights");
rcs_drawString(display,mainScreen,gc,320,445,"Bonus Poker");
rcs_drawString(display,mainScreen,gc,320,485,"Double Bonus Poker");
rcs_drawString(display,mainScreen,gc,320,525,"Triple Bonus Poker");
rcs_drawString(display,mainScreen,gc,320,565,"Statistics");
rcs_closeFont(display,font);
rcs_closeGC(display,gc);
displayScreen();
}
int main(int argc,char** argv,char** envp)
{
int gamePlayers[10];
int i,j,r;
int game;
char *outputDisplay;
Bacc* bacc;
Bj* bjGame;
Bingo* bingo;
Bonus6* bonus6;
Boston5* boston5;
Carib* carib;
Chuck* chuck;
Craps* craps;
DStud* dStud;
Faceup* faceupGame;
Holdem* holdem;
Keno* keno;
Lir* lirGame;
MoneyWheel* moneyWheel;
Paigow* paigow;
PaigowTiles* paigowt;
PkrMach* pkrMach;
Royal* royal;
Roul* roul;
Reddog* reddog;
Sicbo* sicbo;
Spanish* spanishGame;
SuperFun* superFun;
Texas* texas;
VideoKeno* videoKeno;
War* war;
Wave* wave;
WildHoldem* wild;
Bahama* bahama;
Aruba* aruba;
Card7* card7;
Three* three;
Flop* flop;
P357* p357;
#ifdef GRAPHIC
rcs_GC gc;
rcs_Font font;
rcs_Event event;
char flag;
#endif
getSaveFileName(envp, ".casino.rc", saveFileName);
outputDisplay = getenv("DISPLAY");
if (outputDisplay == NULL) strcpy(outputDisplay,":0.0");
ClrScr();
// rcs_getFullName(buffer);
setbuf(stdout,NULL);
Randomize();
for (i=0;i<20;i++) progressives[i]=0;
progressives[PROG_CARIB]=10000;
progressives[PROG_VPOKER1]=3500;
progressives[PROG_VPOKER5]=17500;
progressives[PROG_VPOKER10]=35000;
progressives[PROG_VPOKER25]=87500;
progressives[PROG_VPOKER100]=350000;
#ifdef CONSOLE
GotoXY(29,10);
Output("Welcome to Club R.C.S.\n");
Output("Enter your name: ");
Input(buffer);
#endif
getPlayerName(envp, "Player", buffer);
// strcpy(buffer,argv[1]);
player[0]=new Player(buffer,'H');
player[0]->load();
for (i=1;i<MAX_PLAYERS;i++) {
makeName(buffer);
player[i]=new Player(buffer,'C');
}
#ifdef GRAPHIC
display=rcs_openDisplay(outputDisplay);
rootWindow=rcs_rootWindow(display);
mainWindow=rcs_createWindow(display,rootWindow,10,10,800,600);
rcs_setWindowName(display,mainWindow,(char*)"Club RCS");
rcs_showWindow(display,mainWindow);
mainScreen=rcs_createPixmap(display,mainWindow,800,600);
cardInit(display,mainWindow);
#endif
game=1;
while (game != 0) {
game=mainMenu();
if (game==-2) {
#ifdef GRAPHIC
gc=rcs_openGC(display,mainScreen);
font=rcs_openFont(display,MENU_FONT);
rcs_setFont(display,gc,font);
rcs_namedForeground(display,gc,"darkgreen");
rcs_drawFilledBox(display,mainScreen,gc,0,0,800,600);
rcs_namedForeground(display,gc,"yellow");
rcs_drawString(display,mainScreen,gc,120,45,"Other Games");
rcs_drawString(display,mainScreen,gc,120,105,"Sic Bo");
rcs_drawString(display,mainScreen,gc,120,145,"Spanish 21");
rcs_drawString(display,mainScreen,gc,120,185,"Casino War");
rcs_drawString(display,mainScreen,gc,120,225,"Wild Hold'em Fold'em");
rcs_drawString(display,mainScreen,gc,120,265,"Bahama Bonus");
rcs_drawString(display,mainScreen,gc,120,305,"Royal Match 21");
rcs_drawString(display,mainScreen,gc,120,345,"Wild Aruba Stud");
rcs_drawString(display,mainScreen,gc,120,385,"Pai Gow");
rcs_drawString(display,mainScreen,gc,120,425,"Catch a Wave");
rcs_drawString(display,mainScreen,gc,120,465,"Super Fun 21");
rcs_drawString(display,mainScreen,gc,120,505,"Bonus 6");
rcs_drawString(display,mainScreen,gc,120,545,"Bingo");
rcs_drawString(display,mainScreen,gc,120,585,"Video Keno");
rcs_drawString(display,mainScreen,gc,420,105,"Casino Hold'em");
rcs_drawString(display,mainScreen,gc,420,145,"Boston 5");
rcs_drawString(display,mainScreen,gc,420,185,"Flop Poker");
rcs_drawString(display,mainScreen,gc,420,225,"3-5-7 Poker");
rcs_closeFont(display,font);
rcs_closeGC(display,gc);
displayScreen();
flag=' ';
while (flag==' ') {
event=getEvent(display);
if (event.type==EVENT_BUTTON_PRESS && event.d1==1) {
if (event.d2>=100 && event.d2<=400 &&
event.d3>=80 && event.d3<=110) {
game=18; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=120 && event.d3<=150) {
game=19; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=160 && event.d3<=190) {
game=20; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=200 && event.d3<=230) {
game=21; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=240 && event.d3<=270) {
game=22; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=280 && event.d3<=310) {
game=23; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=320 && event.d3<=350) {
game=24; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=360 && event.d3<=390) {
game=25; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=400 && event.d3<=430) {
game=26; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=440 && event.d3<=470) {
game=27; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=480 && event.d3<=510) {
game=28; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=520 && event.d3<=550) {
game=29; flag='X';
}
if (event.d2>=100 && event.d2<=200 &&
event.d3>=560 && event.d3<=590) {
game=30; flag='X';
}
if (event.d2>=420 && event.d2<=520 &&
event.d3>=80 && event.d3<=110) {
game=31; flag='X';
}
if (event.d2>=400 && event.d2<=520 &&
event.d3>=120 && event.d3<=150) {
game=32; flag='X';
}
if (event.d2>=400 && event.d2<=520 &&
event.d3>=160 && event.d3<=190) {
game=33; flag='X';
}
if (event.d2>=400 && event.d2<=520 &&
event.d3>=200 && event.d3<=230) {
game=34; flag='X';
}
}
}
#endif
}
if (game==1) {
#ifdef GRAPHIC
gc=rcs_openGC(display,mainScreen);
font=rcs_openFont(display,MENU_FONT);
rcs_setFont(display,gc,font);
rcs_namedForeground(display,gc,"darkgreen");
rcs_drawFilledBox(display,mainScreen,gc,0,0,800,600);
rcs_namedForeground(display,gc,"yellow");
rcs_drawString(display,mainScreen,gc,320,65,"Blackjack");
rcs_drawString(display,mainScreen,gc,320,125,"1 Deck");
rcs_drawString(display,mainScreen,gc,320,165,"2 Deck");
rcs_drawString(display,mainScreen,gc,320,205,"4 Deck");
rcs_drawString(display,mainScreen,gc,320,245,"6 Deck");
rcs_closeFont(display,font);
rcs_closeGC(display,gc);
displayScreen();
flag=' ';
while (flag==' ') {
event=getEvent(display);
if (event.type==EVENT_BUTTON_PRESS && event.d1==1) {
if (event.d2>=300 && event.d2<=400 &&
event.d3>=100 && event.d3<=130) {
i=1; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=140 && event.d3<=170) {
i=2; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=180 && event.d3<=210) {
i=4; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=220 && event.d3<=250) {
i=6; flag='X';
}
}
}
#endif
#ifdef CONSOLE
ClrScr();
Output("1. 1 Deck\n");
Output("2. 2 Decks\n");
Output("4. 4 Decks\n");
Output("6. 6 Decks\n");
Input(buffer);
sscanf(buffer,"%d",&i);
#endif
if (i!=1 && i!=2 && i!=4 && i!=6) i=1;
bjGame=new Bj(i,0,2);
player[0]->setGame(GAME_BJ);
for (i=0;i<5;i++) gamePlayers[i]=-1;
gamePlayers[Random(5)]=99;
for (i=0;i<5;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<5;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<5;i++)
if (gamePlayers[i]==99) bjGame->addPlayer(player[0]);
else if (gamePlayers[i]==-1) bjGame->addPlayer(NULL);
else bjGame->addPlayer(player[gamePlayers[i]]);
bjGame->play();
delete(bjGame);
}
if (game==19) {
spanishGame=new Spanish(8,0,2);
player[0]->setGame(GAME_SPANISH);
for (i=0;i<5;i++) gamePlayers[i]=-1;
gamePlayers[Random(5)]=99;
for (i=0;i<5;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<5;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<5;i++)
if (gamePlayers[i]==99) spanishGame->addPlayer(player[0]);
else if (gamePlayers[i]==-1) spanishGame->addPlayer(NULL);
else spanishGame->addPlayer(player[gamePlayers[i]]);
spanishGame->play();
delete(spanishGame);
}
if (game==11) {
#ifdef GRAPHIC
gc=rcs_openGC(display,mainScreen);
font=rcs_openFont(display,MENU_FONT);
rcs_setFont(display,gc,font);
rcs_namedForeground(display,gc,"darkgreen");
rcs_drawFilledBox(display,mainScreen,gc,0,0,800,600);
rcs_namedForeground(display,gc,"yellow");
rcs_drawString(display,mainScreen,gc,320,65,"Faceup 21");
rcs_drawString(display,mainScreen,gc,320,125,"1 Deck");
rcs_drawString(display,mainScreen,gc,320,165,"2 Deck");
rcs_drawString(display,mainScreen,gc,320,205,"4 Deck");
rcs_drawString(display,mainScreen,gc,320,245,"6 Deck");
rcs_closeFont(display,font);
rcs_closeGC(display,gc);
displayScreen();
flag=' ';
while (flag==' ') {
event=getEvent(display);
if (event.type==EVENT_BUTTON_PRESS && event.d1==1) {
if (event.d2>=300 && event.d2<=400 &&
event.d3>=100 && event.d3<=130) {
i=1; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=140 && event.d3<=170) {
i=2; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=180 && event.d3<=210) {
i=4; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=220 && event.d3<=250) {
i=6; flag='X';
}
}
}
#endif
#ifdef CONSOLE
ClrScr();
Output("1. 1 Deck\n");
Output("2. 2 Decks\n");
Output("4. 4 Decks\n");
Output("6. 6 Decks\n");
Input(buffer);
sscanf(buffer,"%d",&i);
#endif
if (i!=1 && i!=2 && i!=4 && i!=6) i=1;
faceupGame=new Faceup(i,0,5);
player[0]->setGame(GAME_FACEUP);
for (i=0;i<5;i++) gamePlayers[i]=-1;
gamePlayers[Random(5)]=99;
for (i=0;i<5;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<5;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<5;i++)
if (gamePlayers[i]==99) faceupGame->addPlayer(player[0]);
else if (gamePlayers[i]==-1) faceupGame->addPlayer(NULL);
else faceupGame->addPlayer(player[gamePlayers[i]]);
faceupGame->play();
delete(faceupGame);
}
if (game==2) {
bacc=new Bacc(6,0,5);
player[0]->setGame(GAME_BACC);
for (i=0;i<PLAYERS_BACC;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_BACC)]=99;
for (i=0;i<PLAYERS_BACC;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_BACC;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_BACC;i++)
if (gamePlayers[i]==99) bacc->addPlayer(player[0]);
else if (gamePlayers[i]==-1) bacc->addPlayer(NULL);
else bacc->addPlayer(player[gamePlayers[i]]);
bacc->play();
delete(bacc);
}
if (game==12) {
reddog=new Reddog(6,0,5);
player[0]->setGame(GAME_REDDOG);
for (i=0;i<PLAYERS_REDDOG;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_REDDOG)]=99;
for (i=0;i<PLAYERS_REDDOG;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_REDDOG;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_REDDOG;i++)
if (gamePlayers[i]==99) reddog->addPlayer(player[0]);
else if (gamePlayers[i]==-1) reddog->addPlayer(NULL);
else reddog->addPlayer(player[gamePlayers[i]]);
reddog->play();
delete(reddog);
}
if (game==3) {
#ifdef GRAPHIC
i=1;
_pokerMenu();
/*
gc=rcs_openGC(display,mainScreen);
font=rcs_openFont(display,MENU_FONT);
rcs_setFont(display,gc,font);
rcs_namedForeground(display,gc,"darkgreen");
rcs_drawFilledBox(display,mainScreen,gc,0,0,800,600);
rcs_namedForeground(display,gc,"yellow");
rcs_drawString(display,mainScreen,gc,320,65,"Video Poker");
rcs_drawString(display,mainScreen,gc,320,125,"Jacks or better");
rcs_drawString(display,mainScreen,gc,320,165,"Tens or better");
rcs_drawString(display,mainScreen,gc,320,205,"Deuces Wild");
rcs_drawString(display,mainScreen,gc,320,245,"Jokers Wild");
rcs_drawString(display,mainScreen,gc,320,285,"Jacks or better proressive");
rcs_drawString(display,mainScreen,gc,320,325,"Double Joker");
rcs_drawString(display,mainScreen,gc,320,365,"Deuces and Jokers wild");
rcs_drawString(display,mainScreen,gc,320,405,"Aces and Eights");
rcs_drawString(display,mainScreen,gc,320,445,"Bonus Poker");
rcs_drawString(display,mainScreen,gc,320,485,"Double Bonus Poker");
rcs_drawString(display,mainScreen,gc,320,525,"Triple Bonus Poker");
rcs_drawString(display,mainScreen,gc,320,565,"Statistics");
rcs_closeFont(display,font);
rcs_closeGC(display,gc);
displayScreen();
*/
flag=' ';
while (flag==' ') {
event=getEvent(display);
if (event.type==EVENT_BUTTON_PRESS && event.d1==1) {
if (event.d2>=300 && event.d2<=400 &&
event.d3>=100 && event.d3<=130) {
j=1; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=140 && event.d3<=170) {
j=2; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=180 && event.d3<=210) {
j=3; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=220 && event.d3<=250) {
j=4; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=260 && event.d3<=290) {
j=5; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=300 && event.d3<=330) {
j=6; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=340 && event.d3<=370) {
j=7; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=380 && event.d3<=410) {
j=8; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=420 && event.d3<=450) {
j=9; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=460 && event.d3<=490) {
j=10; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=500 && event.d3<=530) {
j=11; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=540 && event.d3<=570) {
pokerStats();
_pokerMenu();
}
}
}
#endif
#ifdef CONSOLE
ClrScr();
Output("1. $1 Machine\n");
Output("2. $5 Machine\n");
Output("3. $10 Machine\n");
Output("4. $25 Machine\n");
Output("5. $100 Machine\n");
Input(buffer);
sscanf(buffer,"%d",&i);
if (i==1) i=1;
else if (i==2) i=5;
else if (i==3) i=10;
else if (i==4) i=25;
else if (i==5) i=100;
else i=1;
Output("1. Jacks or Better\n");
Output("2. 10's or Better\n");
Output("3. Deuces Wild\n");
Output("4. Jokers Wild\n");
Output("5. Jacks or Better Progressive\n");
Output("6. Double Joker Poker\n");
Output("7. Deuces and Jokers Wild\n");
Input(buffer);
sscanf(buffer,"%d",&j);
#endif
if (j<1) j=1;
/*
if (j>7) j=7;
*/
if (j==1) {
pkrMach=new PkrMach(1,0,i);
player[0]->setGame(GAME_VPOKER);
pkrMach->addPayout("Royal Flush", 0xe0000000l,0xefffffff,800);
pkrMach->addPayout("Straight Flush" ,0xa0000000l,0xafffffff,50);
pkrMach->addPayout("4 of a Kind", 0x90000000l,0x9fffffff,25);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,8);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,5);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,4);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,3);
pkrMach->addPayout("2 Pair", 0x20000000l,0x2fffffff,2);
pkrMach->addPayout("Jacks or better", 0x1bb00000l,0x1fffffff,1);
// pkrMach->addPayout(PK_PAIR | (11l<<24),1);
pkrMach->addPlayer(player[0]);
pkrMach->play();
}
if (j==2) {
player[0]->setGame(GAME_VPOKER2);
pkrMach=new PkrMach(1,0,i);
pkrMach->addPayout("Royal Flush", 0xe0000000l,0xefffffff,800);
pkrMach->addPayout("Straight Flush" ,0xa0000000l,0xafffffff,50);
pkrMach->addPayout("4 of a Kind", 0x90000000l,0x9fffffff,20);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,6);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,5);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,4);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,3);
pkrMach->addPayout("2 Pair", 0x20000000l,0x2fffffff,2);
pkrMach->addPayout("Tens or better", 0x1aa00000l,0x1fffffff,1);
// pkrMach->addPayout(PK_PAIR | (10l<<24),1);
pkrMach->addPlayer(player[0]);
pkrMach->play();
}
if (j==3) {
player[0]->setGame(GAME_VPOKER3);
pkrMach=new PkrMach(1,0,i);
pkrMach->addPayout("Natural Royal", 0xe0000000l,0xefffffff,800);
pkrMach->addPayout("Four Deuces", 0xd0000000l,0xdfffffff,200);
pkrMach->addPayout("Wild Royal", 0xc0000000l,0xcfffffff,20);
pkrMach->addPayout("5 of a Kind", 0xb0000000l,0xbfffffff,12);
pkrMach->addPayout("Straight Flush", 0xa0000000l,0xafffffff,10);
pkrMach->addPayout("4 of a Kind", 0x90000000l,0x9fffffff,4);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,4);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,3);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,2);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,1);
pkrMach->addPlayer(player[0]);
pkrMach->putWildCard(2);
pkrMach->play();
}
if (j==4) {
player[0]->setGame(GAME_VPOKER4);
pkrMach=new PkrMach(1,1,i);
pkrMach->addPayout("Natural Royal", 0xe0000000l,0xefffffff,1000);
pkrMach->addPayout("5 of a Kind", 0xb0000000l,0xbfffffff,300);
pkrMach->addPayout("Wild Royal", 0xc0000000l,0xcfffffff,150);
pkrMach->addPayout("Straight Flush", 0xa0000000l,0xafffffff,50);
pkrMach->addPayout("4 of a Kind", 0x90000000l,0x9fffffff,10);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,7);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,5);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,3);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,2);
pkrMach->addPayout("2 Pair", 0x20000000l,0x2fffffff,1);
pkrMach->addPayout("Kings or better", 0x1dd00000l,0x1fffffff,1);
// pkrMach->addPayout((unsigned long)(PK_PAIR | (12l<<24)),1);
pkrMach->addPlayer(player[0]);
pkrMach->putWildCard(0);
pkrMach->play();
}
if (j==5) {
pkrMach=new PkrMach(1,0,i);
player[0]->setGame(GAME_VPOKERP);
pkrMach->addPayout("Royal Flush", 0xe0000000l,0xefffffff,250);
pkrMach->addPayout("Straight Flush" ,0xa0000000l,0xafffffff,50);
pkrMach->addPayout("4 of a Kind", 0x90000000l,0x9fffffff,25);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,8);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,5);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,4);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,3);
pkrMach->addPayout("2 Pair", 0x20000000l,0x2fffffff,2);
pkrMach->addPayout("Jacks or better", 0x1bb00000l,0x1fffffff,1);
// pkrMach->addPayout(PK_PAIR | (11l<<24),1);
pkrMach->addPlayer(player[0]);
switch (i) {
case 1:pkrMach->putProgressive(progressives[PROG_VPOKER1]); break;
case 5:pkrMach->putProgressive(progressives[PROG_VPOKER5]); break;
case 10:pkrMach->putProgressive(progressives[PROG_VPOKER10]); break;
case 25:pkrMach->putProgressive(progressives[PROG_VPOKER25]); break;
case 100:pkrMach->putProgressive(progressives[PROG_VPOKER100]); break;
}
pkrMach->play();
switch (i) {
case 1:progressives[PROG_VPOKER1]=pkrMach->getProgressive(); break;
case 5:progressives[PROG_VPOKER5]=pkrMach->getProgressive(); break;
case 10:progressives[PROG_VPOKER10]=pkrMach->getProgressive(); break;
case 25:progressives[PROG_VPOKER25]=pkrMach->getProgressive(); break;
case 100:progressives[PROG_VPOKER100]=pkrMach->getProgressive(); break;
}
}
if (j==6) {
player[0]->setGame(GAME_VPOKERDJ);
pkrMach=new PkrMach(1,2,i);
pkrMach->addPayout("Natural Royal", 0xe0000000l,0xefffffff,800);
pkrMach->addPayout("Wild Royal", 0xc0000000l,0xcfffffff,100);
pkrMach->addPayout("5 of a Kind", 0xb0000000l,0xbfffffff,50);
pkrMach->addPayout("Straight Flush", 0xa0000000l,0xafffffff,25);
pkrMach->addPayout("4 of a Kind", 0x90000000l,0x9fffffff,8);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,5);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,4);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,3);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,2);
pkrMach->addPayout("2 Pair", 0x20000000l,0x2fffffff,1);
pkrMach->addPlayer(player[0]);
pkrMach->putWildCard(0);
pkrMach->play();
}
if (j==7) {
player[0]->setGame(GAME_VPOKERJ2);
pkrMach=new PkrMach(1,1,i);
pkrMach->addPayout("Five Wilds", 0xf0000000l,0xffffffff,2000);
pkrMach->addPayout("Natural Royal", 0xe0000000l,0xefffffff,250);
pkrMach->addPayout("Four Deuces", 0xd0000000l,0xdfffffff,25);
pkrMach->addPayout("Wild Royal", 0xc0000000l,0xcfffffff,12);
pkrMach->addPayout("5 of a Kind", 0xb0000000l,0xbfffffff,9);
pkrMach->addPayout("Straight Flush", 0xa0000000l,0xafffffff,6);
pkrMach->addPayout("4 of a Kind", 0x90000000l,0x9fffffff,3);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,3);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,3);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,2);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,1);
pkrMach->addPlayer(player[0]);
pkrMach->putWildCard(2);
pkrMach->play();
}
if (j==8) {
player[0]->setGame(GAME_VPOKER8);
pkrMach=new PkrMach(1,0,i);
pkrMach->addPayout("Royal Flush", 0xe0000000l,0xefffffff,800);
pkrMach->addPayout("Straight Flush" ,0xa0000000l,0xafffffff,50);
pkrMach->addPayout("4 Aces", 0x9dddd000l,0x9ddddfff,80);
pkrMach->addPayout("4 Eights", 0x98888000l,0x98888fff,80);
pkrMach->addPayout("4 Sevens", 0x97777000l,0x97777fff,50);
pkrMach->addPayout("4 of a Kind", 0x90000000l,0x9fffffff,25);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,8);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,5);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,4);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,3);
pkrMach->addPayout("2 Pair", 0x20000000l,0x2fffffff,2);
pkrMach->addPayout("Jacks or better", 0x1bb00000l,0x1fffffff,1);
pkrMach->addPlayer(player[0]);
pkrMach->play();
}
if (j==9) {
player[0]->setGame(GAME_VPOKERB);
pkrMach=new PkrMach(1,0,i);
pkrMach->addPayout("Royal Flush", 0xe0000000l,0xefffffff,800);
pkrMach->addPayout("Straight Flush" ,0xa0000000l,0xafffffff,50);
pkrMach->addPayout("4 Aces", 0x9dddd000l,0x9ddddfff,80);
pkrMach->addPayout("4 2s, 3s or 4s", 0x92222000l,0x94444fff,40);
pkrMach->addPayout("4 5-K", 0x90000000l,0x9fffffff,25);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,7);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,5);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,4);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,3);
pkrMach->addPayout("2 Pair", 0x20000000l,0x2fffffff,2);
pkrMach->addPayout("Jacks or better", 0x1bb00000l,0x1fffffff,1);
pkrMach->addPlayer(player[0]);
pkrMach->play();
}
if (j==10) {
player[0]->setGame(GAME_VPOKER2B);
pkrMach=new PkrMach(1,0,i);
pkrMach->addPayout("Royal Flush", 0xe0000000l,0xefffffff,800);
pkrMach->addPayout("Straight Flush" ,0xa0000000l,0xafffffff,50);
pkrMach->addPayout("4 Aces", 0x9dddd000l,0x9ddddfff,160);
pkrMach->addPayout("4 2s, 3s or 4s", 0x92222000l,0x94444fff,80);
pkrMach->addPayout("4 5-K", 0x90000000l,0x9fffffff,50);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,9);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,6);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,5);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,3);
pkrMach->addPayout("2 Pair", 0x20000000l,0x2fffffff,1);
pkrMach->addPayout("Jacks or better", 0x1bb00000l,0x1fffffff,1);
pkrMach->addPlayer(player[0]);
pkrMach->play();
}
if (j==11) {
player[0]->setGame(GAME_VPOKER3B);
pkrMach=new PkrMach(1,0,i);
pkrMach->addPayout("Royal Flush", 0xe0000000l,0xefffffff,800);
pkrMach->addPayout("Straight Flush" ,0xa0000000l,0xafffffff,80);
pkrMach->addPayout("4 Aces", 0x9dddd000l,0x9ddddfff,240);
pkrMach->addPayout("4 2s, 3s or 4s", 0x92222000l,0x94444fff,120);
pkrMach->addPayout("4 5-K", 0x90000000l,0x9fffffff,50);
pkrMach->addPayout("Full House", 0x70000000l,0x7fffffff,8);
pkrMach->addPayout("Flush", 0x60000000l,0x6fffffff,5);
pkrMach->addPayout("Straight", 0x50000000l,0x5fffffff,4);
pkrMach->addPayout("3 of a Kind", 0x40000000l,0x4fffffff,3);
pkrMach->addPayout("2 Pair", 0x20000000l,0x2fffffff,1);
pkrMach->addPayout("Jacks or better", 0x1bb00000l,0x1fffffff,1);
pkrMach->addPlayer(player[0]);
pkrMach->play();
}
delete(pkrMach);
}
if (game==4) {
lirGame=new Lir(1,0,5);
player[0]->setGame(GAME_LIR);
for (i=0;i<PLAYERS_LIR;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_LIR)]=99;
for (i=0;i<PLAYERS_LIR;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_LIR;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_LIR;i++)
if (gamePlayers[i]==99) lirGame->addPlayer(player[0]);
else if (gamePlayers[i]==-1) lirGame->addPlayer(NULL);
else lirGame->addPlayer(player[gamePlayers[i]]);
lirGame->play();
delete(lirGame);
}
if (game==5) {
craps=new Craps(player[0],1);
player[0]->setGame(GAME_CRAPS);
craps->play();
delete(craps);
}
if (game==14) {
moneyWheel=new MoneyWheel(player[0]);
player[0]->setGame(GAME_WHEEL);
moneyWheel->play();
delete(moneyWheel);
}
if (game==13) {
chuck=new Chuck(player[0]);
player[0]->setGame(GAME_CHUCK);
chuck->play();
delete(chuck);
}
if (game==18) {
sicbo=new Sicbo(player[0]);
player[0]->setGame(GAME_SICBO);
sicbo->play();
delete(sicbo);
}
if (game==6) {
roul=new Roul(player[0],1);
player[0]->setGame(GAME_ROUL);
roul->play();
delete(roul);
}
if (game==7) {
player[0]->setGame(GAME_SLOTS);
Slots(player[0]);
}
if (game==8) {
keno=new Keno(player[0]);
player[0]->setGame(GAME_KENO);
keno->play();
delete(keno);
}
if (game==9) {
carib=new Carib(1,0,5);
player[0]->setGame(GAME_CARIB);
for (i=0;i<PLAYERS_CARIB;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_CARIB)]=99;
for (i=0;i<PLAYERS_CARIB;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_CARIB;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_CARIB;i++)
if (gamePlayers[i]==99) carib->addPlayer(player[0]);
else if (gamePlayers[i]==-1) carib->addPlayer(NULL);
else carib->addPlayer(player[gamePlayers[i]]);
carib->play();
delete(carib);
}
if (game==10) {
#ifdef GRAPHIC
i=5;
gc=rcs_openGC(display,mainScreen);
font=rcs_openFont(display,MENU_FONT);
rcs_setFont(display,gc,font);
rcs_namedForeground(display,gc,"darkgreen");
rcs_drawFilledBox(display,mainScreen,gc,0,0,800,600);
rcs_namedForeground(display,gc,"yellow");
rcs_drawString(display,mainScreen,gc,320,65,"Poker");
rcs_drawString(display,mainScreen,gc,320,125,"Texas Hold'em");
rcs_drawString(display,mainScreen,gc,320,165,"7 Card Stud");
rcs_closeFont(display,font);
rcs_closeGC(display,gc);
displayScreen();
flag=' ';
while (flag==' ') {
event=getEvent(display);
if (event.type==EVENT_BUTTON_PRESS && event.d1==1) {
if (event.d2>=300 && event.d2<=400 &&
event.d3>=100 && event.d3<=130) {
j=1; flag='X';
}
if (event.d2>=300 && event.d2<=400 &&
event.d3>=140 && event.d3<=170) {
j=2; flag='X';
}
}
}
#endif
#ifdef CONSOLE
ClrScr();
Output("1. $5 to $10 Table\n");
Output("2. $25 to $50 Table\n");
Output("3. $100 to $200 Table\n");
Output("4. $250 to $500 Table\n");
Output("5. $1000 to $2000 Table\n");
Input(buffer);
sscanf(buffer,"%d",&i);
if (i==1) i=5;
else if (i==2) i=25;
else if (i==3) i=100;
else if (i==4) i=250;
else if (i==5) i=1000;
else i=5;
Output("1. Texas Hold'em\n");
Output("2. 7 Card Stud\n");
Input(buffer);
sscanf(buffer,"%d",&j);
#endif
if (j==1) {
texas=new Texas(1,0,1,i,i*2);
player[0]->setGame(GAME_TEXAS);
for (i=0;i<PLAYERS_TEXAS;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_TEXAS)]=99;
for (i=0;i<PLAYERS_TEXAS;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_TEXAS;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_TEXAS;i++)
if (gamePlayers[i]==99) texas->addPlayer(player[0]);
else if (gamePlayers[i]==-1) texas->addPlayer(NULL);
else texas->addPlayer(player[gamePlayers[i]]);
texas->play();
delete(texas);
}
if (j==2) {
card7=new Card7(1,0,1,i,i*2);
player[0]->setGame(GAME_CARD7);
for (i=0;i<PLAYERS_CARD7;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_CARD7)]=99;
for (i=0;i<PLAYERS_CARD7;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_TEXAS;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_CARD7;i++)
if (gamePlayers[i]==99) card7->addPlayer(player[0]);
else if (gamePlayers[i]==-1) card7->addPlayer(NULL);
else card7->addPlayer(player[gamePlayers[i]]);
card7->play();
delete(card7);
}
}
if (game==15) {
dStud=new DStud(1,0,5);
player[0]->setGame(GAME_DSTUD);
for (i=0;i<PLAYERS_DSTUD;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_DSTUD)]=99;
for (i=0;i<PLAYERS_DSTUD;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_DSTUD;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_DSTUD;i++)
if (gamePlayers[i]==99) dStud->addPlayer(player[0]);
else if (gamePlayers[i]==-1) dStud->addPlayer(NULL);
else dStud->addPlayer(player[gamePlayers[i]]);
dStud->play();
delete(dStud);
}
if (game==16) {
three=new Three(1,0,5);
player[0]->setGame(GAME_THREE);
for (i=0;i<PLAYERS_THREE;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_THREE)]=99;
for (i=0;i<PLAYERS_THREE;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_THREE;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_THREE;i++)
if (gamePlayers[i]==99) three->addPlayer(player[0]);
else if (gamePlayers[i]==-1) three->addPlayer(NULL);
else three->addPlayer(player[gamePlayers[i]]);
three->play();
delete(three);
}
if (game==17) {
paigow=new Paigow(1,0,20);
player[0]->setGame(GAME_PAIGOW);
for (i=0;i<PLAYERS_PAIGOW;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_PAIGOW)]=99;
for (i=0;i<PLAYERS_PAIGOW;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_PAIGOW;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_PAIGOW;i++)
if (gamePlayers[i]==99) paigow->addPlayer(player[0]);
else if (gamePlayers[i]==-1) paigow->addPlayer(NULL);
else paigow->addPlayer(player[gamePlayers[i]]);
paigow->play();
delete(paigow);
}
if (game==20) {
war=new War(6,0,6);
player[0]->setGame(GAME_WAR);
for (i=0;i<PLAYERS_WAR;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_WAR)]=99;
for (i=0;i<PLAYERS_WAR;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_WAR;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_WAR;i++)
if (gamePlayers[i]==99) war->addPlayer(player[0]);
else if (gamePlayers[i]==-1) war->addPlayer(NULL);
else war->addPlayer(player[gamePlayers[i]]);
war->play();
delete(war);
}
if (game==21) {
wild=new WildHoldem(1,0,4);
player[0]->setGame(GAME_WILD);
for (i=0;i<PLAYERS_WILD;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_WILD)]=99;
for (i=0;i<PLAYERS_WILD;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_WILD;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_WILD;i++)
if (gamePlayers[i]==99) wild->addPlayer(player[0]);
else if (gamePlayers[i]==-1) wild->addPlayer(NULL);
else wild->addPlayer(player[gamePlayers[i]]);
wild->play();
delete(wild);
}
if (game==22) {
bahama=new Bahama(1,0,5);
player[0]->setGame(GAME_BAHAMA);
for (i=0;i<PLAYERS_BAHAMA;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_BAHAMA)]=99;
for (i=0;i<PLAYERS_BAHAMA;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_BAHAMA;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_BAHAMA;i++)
if (gamePlayers[i]==99) bahama->addPlayer(player[0]);
else if (gamePlayers[i]==-1) bahama->addPlayer(NULL);
else bahama->addPlayer(player[gamePlayers[i]]);
bahama->play();
delete(bahama);
}
if (game==23) {
royal=new Royal(6,0,2);
player[0]->setGame(GAME_ROYAL);
for (i=0;i<PLAYERS_ROYAL;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_ROYAL)]=99;
for (i=0;i<PLAYERS_ROYAL;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_ROYAL;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_ROYAL;i++)
if (gamePlayers[i]==99) royal->addPlayer(player[0]);
else if (gamePlayers[i]==-1) royal->addPlayer(NULL);
else royal->addPlayer(player[gamePlayers[i]]);
royal->play();
delete(royal);
}
if (game==24) {
aruba=new Aruba(1,0,5);
player[0]->setGame(GAME_ARUBA);
for (i=0;i<PLAYERS_ARUBA;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_ARUBA)]=99;
for (i=0;i<PLAYERS_ARUBA;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_ARUBA;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_ARUBA;i++)
if (gamePlayers[i]==99) aruba->addPlayer(player[0]);
else if (gamePlayers[i]==-1) aruba->addPlayer(NULL);
else aruba->addPlayer(player[gamePlayers[i]]);
aruba->play();
delete(aruba);
}
if (game==25) {
paigowt=new PaigowTiles(1,0,20);
player[0]->setGame(GAME_PAIGOWT);
for (i=0;i<PLAYERS_PAIGOWT;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_PAIGOWT)]=99;
for (i=0;i<PLAYERS_PAIGOWT;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_PAIGOWT;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_PAIGOWT;i++)
if (gamePlayers[i]==99) paigowt->addPlayer(player[0]);
else if (gamePlayers[i]==-1) paigowt->addPlayer(NULL);
else paigowt->addPlayer(player[gamePlayers[i]]);
paigowt->play();
delete(paigowt);
}
if (game==26) {
wave=new Wave(8,0,5);
player[0]->setGame(GAME_WAVE);
for (i=0;i<PLAYERS_WAVE;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_WAVE)]=99;
for (i=0;i<PLAYERS_WAVE;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_WAVE;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_WAVE;i++)
if (gamePlayers[i]==99) wave->addPlayer(player[0]);
else if (gamePlayers[i]==-1) wave->addPlayer(NULL);
else wave->addPlayer(player[gamePlayers[i]]);
wave->play();
delete(wave);
}
if (game==27) {
superFun=new SuperFun(1,0,2);
player[0]->setGame(GAME_SUPERFUN);
for (i=0;i<PLAYERS_ROYAL;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_BJ)]=99;
for (i=0;i<PLAYERS_ROYAL;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_ROYAL;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_BJ;i++)
if (gamePlayers[i]==99) superFun->addPlayer(player[0]);
else if (gamePlayers[i]==-1) superFun->addPlayer(NULL);
else superFun->addPlayer(player[gamePlayers[i]]);
superFun->play();
delete(superFun);
}
if (game==28) {
bonus6=new Bonus6(1,0,2);
player[0]->setGame(GAME_BONUS6);
for (i=0;i<PLAYERS_BONUS6;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_BONUS6)]=99;
for (i=0;i<PLAYERS_BONUS6;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_BONUS6;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_BONUS6;i++)
if (gamePlayers[i]==99) bonus6->addPlayer(player[0]);
else if (gamePlayers[i]==-1) bonus6->addPlayer(NULL);
else bonus6->addPlayer(player[gamePlayers[i]]);
bonus6->play();
delete(bonus6);
}
if (game==29) {
bingo=new Bingo(player[0]);
player[0]->setGame(GAME_BINGO);
bingo->play();
delete(bingo);
}
if (game==30) {
videoKeno=new VideoKeno(player[0]);
videoKeno->setGame(1);
videoKeno->setDenomination(1.00);
videoKeno->play();
videoKeno->cashOut();
delete(videoKeno);
}
if (game==31) {
holdem=new Holdem(1,0,5);
player[0]->setGame(GAME_HOLDEM);
for (i=0;i<PLAYERS_HOLDEM;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_HOLDEM)]=99;
for (i=0;i<PLAYERS_CARIB;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_CARIB;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_HOLDEM;i++)
if (gamePlayers[i]==99) holdem->addPlayer(player[0]);
else if (gamePlayers[i]==-1) holdem->addPlayer(NULL);
else holdem->addPlayer(player[gamePlayers[i]]);
holdem->play();
delete(holdem);
}
if (game==32) {
boston5=new Boston5(1,0,5);
player[0]->setGame(GAME_BOSTON5);
for (i=0;i<PLAYERS_BOSTON5;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_BOSTON5)]=99;
for (i=0;i<PLAYERS_CARIB;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_CARIB;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_BOSTON5;i++)
if (gamePlayers[i]==99) boston5->addPlayer(player[0]);
else if (gamePlayers[i]==-1) boston5->addPlayer(NULL);
else boston5->addPlayer(player[gamePlayers[i]]);
boston5->play();
delete(boston5);
}
if (game==33) {
flop=new Flop(1,0,5);
player[0]->setGame(GAME_FLOP);
for (i=0;i<PLAYERS_FLOP;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_FLOP)]=99;
for (i=0;i<PLAYERS_FLOP;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_FLOP;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_FLOP;i++)
if (gamePlayers[i]==99) flop->addPlayer(player[0]);
else if (gamePlayers[i]==-1) flop->addPlayer(NULL);
else flop->addPlayer(player[gamePlayers[i]]);
flop->play();
delete(flop);
}
if (game==34) {
p357=new P357(1,0,5);
player[0]->setGame(GAME_357);
for (i=0;i<PLAYERS_357;i++) gamePlayers[i]=-1;
gamePlayers[Random(PLAYERS_357)]=99;
for (i=0;i<PLAYERS_357;i++) if (gamePlayers[i]==-1) {
r=Random(MAX_PLAYERS-2)+1;
for (j=0;j<PLAYERS_357;j++) if (gamePlayers[j]==r) r=-1;
gamePlayers[i]=r;
}
for (i=0;i<PLAYERS_357;i++)
if (gamePlayers[i]==99) p357->addPlayer(player[0]);
else if (gamePlayers[i]==-1) p357->addPlayer(NULL);
else p357->addPlayer(player[gamePlayers[i]]);
p357->play();
delete(p357);
}
ClrScr();
if (game==99) statistics();
}
#ifdef CONSOLE
ClrScr();
statistics();
#endif
player[0]->save();
#ifdef GRAPHIC
rcs_closePixmap(display,mainScreen);
rcs_closeWindow(display,mainWindow);
rcs_closeDisplay(display);
#endif
return 0;
}
#ifdef WIN32
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow) {
rcs_initWin32(hInstance);
main();
return 0;
}
#endif
|
010aa84781894ac8263b42aeeb7de6ec99a268a1 | 89228edb19562a23b22adc0ebaba04018de164d7 | /src/A.hpp | 479efa20df33167d4dab0db5e2aa15501028296f | [] | no_license | mskoenz/empty_cpp_template | 6069b6bc3667855a8b8627baa578ea22b042dbde | 3751c4ef0f0dff0153e3afcaf735b03dfa5cbcc6 | refs/heads/master | 2020-12-24T07:41:26.901507 | 2016-08-25T09:46:55 | 2016-08-25T09:46:57 | 57,902,826 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 505 | hpp | A.hpp | /** ****************************************************************************
* \file
* \brief
* \author
* Year | Name
* --------: | :------------
* 2016 | Mario S. Koenz
* \copyright todo
******************************************************************************/
#ifndef _A_HPP_GUARD
#define _A_HPP_GUARD
#include "B.hpp"
template<typename T>
class A {
public:
void foo(B<T> const & b) const;
static int n;
private:
};
#include "A.ipp"
#endif //_A_HPP_GUARD
|
ab74ccd9e0b29d60eade13c47fb69e6654d809f2 | f13d687165ece6fdaad51e5832a70ccf8fde4454 | /tools/qmdilib/src/actiongrouplist.cpp | 2e19c832d4b7fd803c0e50d1e7dd2db22891b5f3 | [] | no_license | BackupTheBerlios/devqt-svn | ba1db2dcb7ac6b63f4e4983e634cda20cacaf1b5 | cb93cdbe724f77e5dcd5d93670b84f35717a3204 | refs/heads/master | 2020-12-24T17:17:13.759741 | 2006-05-07T18:10:47 | 2006-05-07T18:10:47 | 40,441,100 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,105 | cpp | actiongrouplist.cpp | #include <QString>
#include <QAction>
#include <QMenuBar>
#include <QToolBar>
#include <QMainWindow>
#include "actiongrouplist.h"
/**
* \file actiongrouplist.cpp
* \brief Implementation of the action group list class
* \author Diego Iastrubni (elcuco@kde.org)
* License LGPL
* \see qmdiActionGroupList
*/
/**
* \class qmdiActionGroupList
* \brief abstraction layer for QMenuBar and a list of toolbars
*
* This class defines a QMenuBar and the list of toolbars available on
* a tipical application. Each submenu or toolbar is defined by one
* qmdiActionGroup.
*
* This class has also the ability to merge other qmdiActionGroupList (this enables
* widgets to add their partial menus to the menus supplied by the main application).
*/
/**
* Build an empty action group list. If you generate a menubar
* from this empty class, you will get a NIL menu. Generating
* a toolbar set from this empty class will generate no toolbars.
*/
qmdiActionGroupList::qmdiActionGroupList()
{
}
/**
* \brief overloaded operator for getting the instance of a action group
* \param name the action group name you want to get
* \return an instace to an action group
*
* This is just an overloaded function which calls getActionGroup().
*
* \see getActionGroup()
*/
qmdiActionGroup* qmdiActionGroupList::operator[]( const QString name )
{
return getActionGroup( name );
}
/**
* \brief get the instance of a action group
* \param name the action group name you want to get
* \return an instace to an action group
*
* This function returns an instace to a action group. Action groups
* are abstractions of QMenu and QToolBar.
*
* If the action group requested is not available, a new instace will be
* created.
*
* \see updateMenu()
* \see updateToolBar()
*/
qmdiActionGroup* qmdiActionGroupList::getActionGroup( const QString name )
{
qmdiActionGroup *item = NULL;
foreach( qmdiActionGroup* i, actionGroups )
{
if (i->getName() == name )
return i;
}
// if menu does not exist, create it
item = new qmdiActionGroup( name );
actionGroups.append( item );
return item;
}
/**
* \brief merge another action group list
* \param group the new group to merge into this one
*
* This function merges an action group list definition into this
* action group list:
* - If in the new group there are action groups, the items will be appended to the existing ones
* - If in the new group there are new actions groups, those groups will be added to this action group list
*
* Note that just merging is not enough, and you might need also to update
* the real widget which this action group list represents.
*
* \see unmergeGroupList
* \see updateMenu
* \see updateToolBar
*/
void qmdiActionGroupList::mergeGroupList( qmdiActionGroupList *group )
{
foreach( qmdiActionGroup* i, group->actionGroups )
{
qmdiActionGroup *mine = getActionGroup( i->getName() );
mine->mergeGroup( i );
}
}
/**
* \brief unmerge an action group list
* \param group the old group to remove from this action group list
*
* This function removes external definitions from this action group list.
* If at the end of the unmerge, some action groups are empty, \b they \b will
* \b not \b be \b removed \b from \b this \b class. Since the generation of menus
* (using updateMenu() ) does not include empty menus, this is totally accepatable.
*
* Note that just unmerging an action group list will not totally reflect the GUI,
* and you might also need to update the real widget which this action group list represents.
*
* \see mergeGroupList
* \see updateMenu
* \see updateToolBar
*/
void qmdiActionGroupList::unmergeGroupList( qmdiActionGroupList *group )
{
foreach( qmdiActionGroup* i, group->actionGroups )
{
qmdiActionGroup *mine = getActionGroup( i->getName() );
mine->unmergeGroup( i );
}
}
/**
* \brief update a QMenuBar from the definitions on this action group list
* \param menubar a QMenuBar to be updated
* \return the updated menubar (same instace which was passed)
*
* This function generates from the definitions on this class a valid
* QMenuBar which will be showed on a QMainWindow.
*
* If \c menubar is NULL, a new QMenuBar will be allocated for you, and
* will be returned.
*
* You cannot generate items into a QMenuBar "by hand" and then "add"
* the definitions on this class.
*/
QMenuBar* qmdiActionGroupList::updateMenu( QMenuBar *menubar )
{
if (menubar)
menubar->clear();
else
menubar = new QMenuBar( menubar );
foreach( qmdiActionGroup* i, actionGroups )
{
QMenu *m = i->updateMenu();
if (m)
menubar->addMenu( m );
}
return menubar;
}
/**
* \brief update a list of QToolBars from the definitions on this action group list
* \param window the window in which the toolbars should be placed
* \return a list of toolbars which has been created from this action group list
*
* This function generates from the defintions on this class a valid list of
* QToolBar which will be showed on the \c window .
*
* If the \c toolbars array will be NULL, a new one will be allocated for you.
*
* While you can add toolbars "manually" to your main window, it's not recomended,
* because new actions will not get merged into your toolbar. Instead you might get
* 2 toolbars with a similar name.
*/
QList<QToolBar*>* qmdiActionGroupList::updateToolBar( QList<QToolBar*> *toolbars, QMainWindow *window )
{
if (toolbars == NULL)
toolbars = new QList<QToolBar*>;
foreach( qmdiActionGroup* i, actionGroups )
{
QToolBar *tb = NULL;
QString actionName = i->getName();
// find the correct toolbar
foreach( QToolBar *b, *toolbars )
{
if (b->windowTitle() == actionName)
{
tb = b;
break;
}
}
// if none found, create one
if (tb == NULL)
{
tb = new QToolBar( actionName, window );
tb->setObjectName( actionName );
*toolbars << tb;
window->addToolBar( tb );
if (i->breakAfter)
window->addToolBarBreak();
}
// merge it with the corresponding group list
tb = i->updateToolBar( tb );
}
return toolbars;
}
|
03338061f0978fafc354b8373aacd6d507c0125b | 68032b48023e9daff30e446fee2f83886cf66d57 | /C++项目/01/源程序/Login.cpp | 5e27a47db357ba35261f7d410a28ac322f13b776 | [] | no_license | std2312/C-PLUS-PLUS | c77c1bb7fe60fd39bc4d576300d6817e543b27bd | 5a51b124a3c7073b80579ff3b1ad79cacb85b657 | refs/heads/master | 2021-05-11T04:49:15.667040 | 2018-01-18T08:03:44 | 2018-01-18T08:03:44 | 117,946,728 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,623 | cpp | Login.cpp | // Login.cpp : implementation file
//
#include "stdafx.h"
#include "capture.h"
#include "Login.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CLogin dialog
CLogin::CLogin(CWnd* pParent /*=NULL*/)
: CDialog(CLogin::IDD, pParent)
{
//{{AFX_DATA_INIT(CLogin)
m_Name = _T("");
m_PassWord = _T("");
//}}AFX_DATA_INIT
m_Time = 0;
}
void CLogin::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CLogin)
DDX_Control(pDX, IDC_OK, m_OK);
DDX_Control(pDX, IDC_CANCEL, m_Cancel);
DDX_Text(pDX, IDC_EDIT1, m_Name);
DDX_Text(pDX, IDC_EDIT2, m_PassWord);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CLogin, CDialog)
//{{AFX_MSG_MAP(CLogin)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CLogin message handlers
BOOL CLogin::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
if(pMsg->message==WM_KEYDOWN && pMsg->wParam==13)
{
pMsg->wParam = 9;
}
if(pMsg->message == WM_LBUTTONDOWN)
{
CRect rect,rc;
m_OK.GetWindowRect(&rect);
m_Cancel.GetWindowRect(&rc);
CPoint point;
GetCursorPos(&point);
if(rect.PtInRect(point))
{
UpdateData(TRUE);
if(m_Name.IsEmpty() || m_PassWord.IsEmpty())
{
MessageBox("用户名或密码不能为空");
return FALSE;
}
m_Time++;
try
{
//创建连接对象实例
m_pConnection.CreateInstance("ADODB.Connection");
//设置连接字符串
CString strConnect="DRIVER={Microsoft Access Driver (*.mdb)};\
uid=;pwd=;DBQ=shujuku.mdb;";
//使用Open方法连接数据库
m_pConnection->Open((_bstr_t)strConnect,"","",adModeUnknown);
}
catch(_com_error e)
{
AfxMessageBox(e.Description());
}
CString sql;
sql.Format("select * from tb_user where 用户名 = '%s' and 密码 = '%s'",
m_Name,m_PassWord);
m_pRecordset = m_pConnection->Execute((_bstr_t)sql,NULL,adCmdText);
if(!m_pRecordset->adoEOF)
{
CDialog::OnOK();
}
else
{
if(m_Time == 3)
{
MessageBox("密码3次不正确");
CDialog::OnCancel();
}
else
{
MessageBox("用户名或密码不正确");
m_Name = "";
m_PassWord = "";
UpdateData(FALSE);
}
}
m_pRecordset->Close();
m_pConnection->Close();
}
if(rc.PtInRect(point))
{
CDialog::OnCancel();
}
}
return CDialog::PreTranslateMessage(pMsg);
}
|
171fd191f5261578274c2bf6b8598174aa9c118a | 4d0e3801314e728ae0d1ae4b9b029794dc771e5c | /cf/1520/d.cpp | a0d89c93758ef8beabd46603e00a5315b8a9ef2e | [] | no_license | Perinze/oi | 8880bb028d8108eba110f0dc2b99a0de74902825 | a5cf058d661cb0c276eb126f8f809343b8937d0d | refs/heads/master | 2023-06-21T05:48:00.496697 | 2021-07-22T16:24:19 | 2021-07-22T16:24:19 | 329,524,963 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 569 | cpp | d.cpp | #include <cstdio>
#include <cstring>
#include <algorithm>
#include <map>
using namespace std;
typedef long long ll;
ll n;
int main()
{
ll T;
scanf("%lld", &T);
while (T--) {
map<ll, ll> group;
scanf("%lld", &n);
ll x;
for (ll i = 1; i <= n; i++) {
scanf("%lld", &x);
group[x - i]++;
}
ll ans = 0;
for (auto ite = group.begin(); ite != group.end(); ite++) {
ans += ite->second * (ite->second - 1) / 2;
}
printf("%lld\n", ans);
}
return 0;
} |
382d4a4b793d9aa58dbb75074a403171f7f18481 | 69dd4bd4268e1c361d8b8d95f56b5b3f5264cc96 | /GPU Pro5/06_Compute/Object-order Ray Tracing for Fully Dynamic Scenes/beScene/source/bePipePool.cpp | 7bd1bdad0862666e68af48a502e5bfe5347d71e5 | [
"MIT",
"BSD-3-Clause"
] | permissive | AnabaenaQing/Source-Code_ShaderX_GPU-Pro_GPU-Zen | 65c16710d1abb9207fd7e1116290336a64ddfc86 | f442622273c6c18da36b61906ec9acff3366a790 | refs/heads/master | 2022-12-15T00:40:42.931271 | 2020-09-07T16:48:25 | 2020-09-07T16:48:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 846 | cpp | bePipePool.cpp | /****************************************************/
/* breeze Engine Scene Module (c) Tobias Zirr 2011 */
/****************************************************/
#include "beSceneInternal/stdafx.h"
#include "beScene/bePipePool.h"
namespace beScene
{
// Constructor.
PipePool::PipePool(beGraphics::TextureTargetPool *pTargetPool)
: m_pTargetPool( LEAN_ASSERT_NOT_NULL(pTargetPool) )
{
}
// Destructor.
PipePool::~PipePool()
{
}
// Gets a pipe.
Pipe* PipePool::GetPipe(const beGraphics::TextureTargetDesc &desc)
{
for (pipe_vector::const_iterator it = m_pipes.begin(); it != m_pipes.end(); ++it)
{
Pipe *pPipe = *it;
if (pPipe->ref_count() == 1)
{
pPipe->Reset(desc);
return *it;
}
}
lean::resource_ptr<Pipe> pNewPipe = CreatePipe(desc, m_pTargetPool);
m_pipes.push_back(pNewPipe);
return pNewPipe;
}
} // namespace
|
bb22e78a6aa8308fcd08e7b8162a56000c0e249b | 5ad63064dc7c3c671fb337fc103422c880bb1319 | /2013/J.cpp | 9c4dfea6ca2e1e122b7b637f2e82b76570885199 | [
"MIT"
] | permissive | webturing/ahACMSolutions | 936b9b71f6d4f890935d8797c4083c377216dceb | 865f36142af0f2e235f5982e349f5999f31883d1 | refs/heads/master | 2021-07-04T13:58:44.025971 | 2020-09-28T14:26:30 | 2020-09-28T14:26:30 | 179,271,229 | 18 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 471 | cpp | J.cpp | #include<iostream>
using namespace std;
#ifdef _WIN32
#define i64 __int64
#else
#define i64 long long
#endif
i64 find(i64 x, i64 y) {
if (x == 0 || y == 0) return 0;
if (x < y) swap(x, y);
return x / y + find(x % y, y);
}
int main() {
i64 a, b, c;
while (cin >> a >> b >> c) {
if (a == 0 && b == 0 && c == 0) return 0;
if (a > c) swap(a, c);
if (b > c) swap(b, c);
cout << find(a, b) << endl;
}
return 0;
}
|
52b3135e53456c49a3613397d745eb1298af8e8c | 28fffaee7a61cd7772726c2d55a8a66c9da8aabe | /codeforces/div 2/668/c.cpp | 95a4c2bc9285dc0a725a4627406b737b562a13ea | [] | no_license | Ayush-Bhatnagar/cp-practice | 93eeca08ba9f625cd3f25ca6180e42dac59a151a | 10b756f107e6ae81fa8217cee7321c28382f8644 | refs/heads/master | 2023-09-04T15:47:49.468513 | 2021-05-27T12:01:20 | 2021-05-27T12:01:20 | 290,806,380 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,034 | cpp | c.cpp | /*
Created by: Ayush Bhatnagar
*/
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve(int tc)
{
int i, n, ans = 0, k, c1 = 0, c0 = 0, cq = 0, strt, end, flag = 0;
cin>>n>>k;
string s, s1;
cin>>s;
for(i=0;i<k;i++) {
s1.push_back('?');
}
//cout<<s1<<"\n";
for(i=0;i<k;i++) {
if(s[i]!='?')
s1[i] = s[i];
}
for(i=0;i<n;i=i+1) {
int pos = i%k;
if(s[pos]!='?' && s1[pos]!='?' && s1[pos] != s[pos]) {
cout<<"NO\n";
return;
}
else if(s[pos]!='?' && s1[pos]=='?') {
s1[pos] = s[pos];
}
}
cout<<s1<<"\n";
for(i=0;i<k;i++) {
if(s1[i]=='1') c1++;
else if(s1[i]=='0') c0++;
else cq++;
}
if(abs(c1-c0) > cq) cout<<"NO\n";
else cout<<"YES\n";
return;
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int t, i=1;
cin>>t;
while(i<=t)
{
solve(i);
i++;
}
return 0;
} |
14a01dd4306c7356ae1f63672a9a5577c614855d | f5bfe409b95295b94ea10b2f422b5a1abc8fb469 | /Clustering/ClusterColors.cpp | 26b6f2d9e36e610ddbc8d29439d851ddf494fd6c | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | nocnokneo/PatchBasedInpainting | b3347ee02125d0129c4cafb2e3af6954d79975a4 | 9d21744e749ebf8d5329007ab8eabb7e5fe0e604 | refs/heads/master | 2021-01-16T19:40:38.215885 | 2012-09-14T18:47:28 | 2012-09-14T18:47:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,066 | cpp | ClusterColors.cpp | /*=========================================================================
*
* Copyright David Doria 2011 daviddoria@gmail.com
*
* 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.txt
*
* 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 "ClusterColors.h"
// Custom
#include "Mask.h"
// ITK
#include "itkImageRegionConstIterator.h"
#include "itkVector.h"
ClusterColors::ClusterColors()
{
this->Image = NULL;
this->MaskImage = NULL;
this->MaxIterations = 10;
// this->ColorBinMembershipImage = IntImageType::New(); // This is done in CreateMembershipImage()
}
void ClusterColors::SetMaxIterations(const unsigned int maxIterations)
{
this->MaxIterations = maxIterations;
}
std::vector<ColorMeasurementVectorType> ClusterColors::GetColors()
{
return this->Colors;
}
void ClusterColors::ConstructFromImage(const FloatVectorImageType* image)
{
this->Image = const_cast<FloatVectorImageType*>(image); // TODO: remove the need for this cast
GenerateColors();
CreateMembershipImage();
}
void ClusterColors::ConstructFromMaskedImage(const FloatVectorImageType* image, const Mask* mask)
{
this->Image = const_cast<FloatVectorImageType*>(image); // TODO: remove the need for this cast
this->MaskImage = const_cast<Mask*>(mask); // TODO: remove the need for this cast
GenerateColors();
CreateMembershipImage();
}
IntImageType::Pointer ClusterColors::GetColorBinMembershipImage()
{
return this->ColorBinMembershipImage;
}
std::vector<float> ClusterColors::HistogramRegion(const IntImageType* image, const itk::ImageRegion<2>& imageRegion,
const Mask* mask, const itk::ImageRegion<2>& maskRegion, const bool invertMask)
{
EnterFunction("ClusterColors::HistogramRegion(IntImageType)");
std::vector<float> histogram(this->Colors.size(), 0.0f);
//std::cout << "histogram.size() " << histogram.size() << std::endl;
itk::ImageRegionConstIterator<IntImageType> imageIterator(image, imageRegion);
itk::ImageRegionConstIterator<Mask> maskIterator(mask, maskRegion);
while(!imageIterator.IsAtEnd())
{
if(!(invertMask) * mask->IsHole(maskIterator.GetIndex()))
{
++imageIterator;
++maskIterator;
continue;
}
//std::cout << "Attempting to increment bin " << imageIterator.Get() << std::endl;
histogram[imageIterator.Get()] += 1.0f;
++imageIterator;
++maskIterator;
}
LeaveFunction("ClusterColors::HistogramRegion(IntImageType)");
return histogram;
}
void ClusterColors::CreateKDTreeFromColors()
{
EnterFunction("CreateSamplesFromColors");
this->Sample = SampleType::New();
this->Sample->SetMeasurementVectorSize( ColorMeasurementVectorType::Dimension );
for(unsigned int i = 0; i < this->Colors.size(); ++i)
{
this->Sample->PushBack(this->Colors[i]);
}
// Create a KDTree
this->TreeGenerator = TreeGeneratorType::New();
this->TreeGenerator->SetSample( this->Sample );
this->TreeGenerator->SetBucketSize( 16 );
this->TreeGenerator->Update();
typedef TreeType::NearestNeighbors NeighborsType;
typedef TreeType::KdTreeNodeType NodeType;
this->KDTree = this->TreeGenerator->GetOutput();
LeaveFunction("CreateSamplesFromColors");
}
void ClusterColors::CreateMembershipImage()
{
EnterFunction("CreateMembershipImage");
this->ColorBinMembershipImage = IntImageType::New();
this->ColorBinMembershipImage->SetRegions(this->Image->GetLargestPossibleRegion());
this->ColorBinMembershipImage->Allocate();
this->ColorBinMembershipImage->FillBuffer(0);
ColorMeasurementVectorType queryPoint;
itk::ImageRegionConstIterator<FloatVectorImageType> imageIterator(this->Image, this->Image->GetLargestPossibleRegion());
while(!imageIterator.IsAtEnd())
{
if(this->MaskImage && this->MaskImage->IsValid(imageIterator.GetIndex()))
{
// Get the value of the current pixel
FloatVectorImageType::PixelType pixel = imageIterator.Get();
queryPoint[0] = pixel[0];
queryPoint[1] = pixel[1];
queryPoint[2] = pixel[2];
TreeType::InstanceIdentifierVectorType neighbors;
this->KDTree->Search( queryPoint, 1u, neighbors );
this->ColorBinMembershipImage->SetPixel(imageIterator.GetIndex(), neighbors[0]);
}
else
{
this->ColorBinMembershipImage->SetPixel(imageIterator.GetIndex(), -1);
}
++imageIterator;
}
LeaveFunction("CreateMembershipImage");
}
ClusterColors::TreeType::Pointer ClusterColors::GetKDTree()
{
return this->KDTree;
}
|
f9236730e8c604fcaf2c9846936d6ff07c989a95 | 138127182d375dcbd22ef16766ac5a5ea00727e3 | /Product of Array Except Self.cpp | b95aea424f36d221a89e0822bc9d0e4a22f35a98 | [] | no_license | sudhir5595/LeetCode_30Days | ebdc940b19b7b433d2d88a4565a356e4fd841666 | f73f03ecd4b4773432a34f6a34fe9e8a8bef7b41 | refs/heads/master | 2022-09-06T23:48:28.868170 | 2020-05-14T05:08:23 | 2020-05-14T05:08:23 | 255,612,745 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 646 | cpp | Product of Array Except Self.cpp | class Solution {
public:
vector<int> productExceptSelf(vector<int>& nums) {
int n = nums.size();
vector <int> res(n);
vector <int> arr1(n);
vector <int> arr2(n);
arr1[0] = nums[0];
for(int i = 1; i<n; i++){
arr1[i] = arr1[i-1]*nums[i];
}
arr2[n-1] = nums[n-1];
for(int i = n-2; i>0; i--){
arr2[i] = arr2[i+1]*nums[i];
}
res[0] = arr2[1];
res[n-1] = arr1[n-2];
for(int i = 1; i<n-1; i++){
res[i] = arr1[i-1]*arr2[i+1];
}
return res;
}
};
|
bc10590d51cee805ec3cd6657962c2181ea88d16 | c83f1f84d00b9fa2640a362e59c4322d6e268116 | /use a cabeça/State/State/src/Util/Util.h | df632504f01dbdb9853dd59e83dda6053780c225 | [
"MIT"
] | permissive | alissonads/Design-Patterns-cplusplus | 9a2936fa7d3cd95c6816e44511eac132e10e96be | 0e56fbc0c1877b9edf2ad5efafbb9a01fa94d748 | refs/heads/master | 2020-06-28T01:06:45.933658 | 2019-08-01T18:39:55 | 2019-08-01T18:39:55 | 200,101,824 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 446 | h | Util.h | #pragma once
#include <exception>
#include<string>
class UnsupportedOperationException : public std::exception
{
public:
UnsupportedOperationException() throw() :
std::exception("Unsupported Operation Exception", 1){}
UnsupportedOperationException(const std::string message) :
std::exception(message.c_str()) {}
UnsupportedOperationException(const char *message) :
std::exception(message) {}
~UnsupportedOperationException() {}
};
|
e5d5c4f143ede1676bb334ba6bc4383fcf3f9dfa | e3d6c7e56fd6f080d811a12603c77fe7c4cbd74f | /Practice/ABC187_C_1-SAT_rev1.cpp | d2636fe8ac9fd7e267a1214b118114ea4a4afc9a | [] | no_license | roshihie/At_Coder | d75ac55aef6a74a3e70cede4352c2b133e9a4c21 | 50757915af9e3ac97dbde3651dc3948aca6e3388 | refs/heads/master | 2023-03-16T07:56:48.058067 | 2023-03-11T21:50:54 | 2023-03-11T21:50:54 | 222,206,645 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 512 | cpp | ABC187_C_1-SAT_rev1.cpp | #include <bits/stdc++.h>
using namespace std;
void input(unordered_set<string>& rusStr)
{
int sizStr;
cin >> sizStr;
for (int nx = 0; nx < sizStr; ++nx)
{
string str;
cin >> str;
rusStr.insert(str);
}
}
string isExistStr(const unordered_set<string>& crusStr)
{
for (auto str : crusStr)
if ( crusStr.count ( "!" + str ) )
return str;
return "satisfiable";
}
int main()
{
unordered_set<string> usStr;
input(usStr);
cout << isExistStr(usStr) << endl;
return 0;
}
|
dc2b4139cb84ff38458bd2403fcebfb80123dd07 | 07cb4c42b4042ef40ec16dc3086c8ea273904b33 | /Person.h | aaf1a23070270e0f9995bd42d4deff787464a621 | [] | no_license | wiel8526/Elbert_CSCI2270_FinalProject | e1913a8a93291e799e6314bec8a756ee4c0233c5 | 7a9f4c96d6ca0159f322cfff6501480e878e56b0 | refs/heads/master | 2016-09-05T12:44:23.190545 | 2015-04-28T06:49:12 | 2015-04-28T06:49:12 | 33,961,666 | 0 | 1 | null | 2015-05-03T20:38:37 | 2015-04-14T23:08:09 | C++ | UTF-8 | C++ | false | false | 765 | h | Person.h | #ifndef PERSON_H
#define PERSON_H
#include <string>
struct node{
std::string full_name;
std::string nickname;
std::string number;
std::string address;
node *next;
node *previous;
};
class Person
{
private:
node *head;
node *tail;
node* searchList(node * node, std::string Nickname);
public:
void addContact(std::string, std::string, std::string, std::string);
void deleteContact(std::string NicName);
void findContact(std::string NicName);
void displayAllContacts();
void changeNumber(std::string NicName, std::string newNumber);
void changeAddress(std::string NicName, std::string newAddress);
Person(std::string Fname, std::string NicName, std::string Number, std::string Address);
virtual ~Person();
};
#endif
|
e88ea4f78f0fe6943cda5d570a55b6c13cd77a70 | c2ccc4b6d2c8d61fce2e97edf29cfee2b0c49d5e | /Source/BomberRats/RangePowerup.cpp | 1a1f19eba44234be73c3c5fc7ea9565100b1c2f1 | [] | no_license | mholtkamp/bomber-rats | 2a6c5e8a264c54dd9be7e9baa4910cf7e0b59ead | 41df218d9b88b59f6994d044b06daa2ee5c20006 | refs/heads/master | 2021-01-10T06:32:56.674779 | 2015-11-09T18:28:19 | 2015-11-09T18:28:19 | 45,856,315 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 817 | cpp | RangePowerup.cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "BomberRats.h"
#include "RangePowerup.h"
#include "Rat.h"
ARangePowerup::ARangePowerup()
{
static ConstructorHelpers::FObjectFinder<UStaticMesh> ofMesh(TEXT("StaticMesh'/Game/StaticMeshes/explode_powerup.explode_powerup'"));
m_pMesh = CreateDefaultSubobject<UStaticMeshComponent>(TEXT("Mesh"));
m_pMesh->SetCollisionProfileName(TEXT("NoCollision"));
if (ofMesh.Succeeded())
{
m_pMesh->SetStaticMesh(ofMesh.Object);
m_pMesh->SetWorldScale3D(FVector(0.5f, 0.5f, 0.5f));
}
m_pMesh->AttachTo(RootComponent);
}
void ARangePowerup::Activate(void* pRat)
{
ARat* pTheRat = reinterpret_cast<ARat*>(pRat);
if (pTheRat != 0)
{
pTheRat->IncreaseBombRange();
}
} |
dc1a292a0372a40707d6f6396763d5e63b573fb9 | c2b32f5f8ab3b7b5e57256627a536a12945a8cab | /src/network/objects/channels/i_k_na.h | f015db72523dbfbe0bffa98f5a08363ca4220662 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | timblakely/bigbrain | dc37c93d06778c908ea88469c89822ed61a5e9c5 | 69dcf775c450c867c8c65c1b05e06cb6d3a7e5d4 | refs/heads/master | 2021-01-13T01:22:52.711965 | 2012-12-28T18:53:13 | 2012-12-28T18:53:13 | 37,147,799 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,577 | h | i_k_na.h | /*
Copyright 2012 Google Inc. All Rights Reserved.
Author: blakely@google.com (Tim Blakely)
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 NETWORK_OBJECTS_CHANNELS_I_K_NA_H_
#define NETWORK_OBJECTS_CHANNELS_I_K_NA_H_
#include <string>
#include "network/objects/channel.h"
#include "protos/neuron.pb.h"
#include "protos/basics.pb.h"
namespace bigbrain {
class IKNaChannel : public Channel {
public:
IKNaChannel();
virtual ~IKNaChannel() {
}
virtual bool CalculateDerivatives(
const float& time, const google::protobuf::Message* input_state,
google::protobuf::Message* output_state);
virtual bool UpdateState(const float& time, const float& dt);
virtual std::string get_description();
virtual google::protobuf::Message* get_state();
virtual void set_params(google::protobuf::Message*);
virtual double get_current();
virtual google::protobuf::Message* get_unique_params();
private:
IKNaState state_;
IKNaParams* params_;
DISALLOW_COPY_AND_ASSIGN(IKNaChannel);
};
} // namespace bigbrain
#endif // NETWORK_OBJECTS_CHANNELS_I_K_NA_H_
|
ac0d8d282d77a220599e70e4b803d38d9babd888 | 8bfbccc253fde3850d96959fc747c38e698c8736 | /src/samplingbuffer.cpp | 6a5b3907cf3982d9cf34864e67e3b36637cc19ff | [] | no_license | sidneydijkstra/PADEngine | b61cd89056e4b4ad19a94660419d1eccf34fda2c | 4499c64d4c14bf42f597e6f06c19da733de84255 | refs/heads/master | 2023-05-10T15:23:41.044506 | 2021-05-18T13:38:42 | 2021-05-18T13:38:42 | 297,615,673 | 0 | 1 | null | 2021-01-18T14:35:39 | 2020-09-22T10:33:50 | C | UTF-8 | C++ | false | false | 1,475 | cpp | samplingbuffer.cpp | #include "samplingbuffer.h"
namespace pad {
SamplingBuffer::SamplingBuffer() : ImageBuffer() {
this->setupResources();
}
VkImageView SamplingBuffer::getImageView() {
return this->_colorImageView;
}
void SamplingBuffer::recreate() {
vkDestroyImageView(DeviceHandler::getInstance()->getLogicalDevice(), _colorImageView, nullptr);
vkDestroyImage(DeviceHandler::getInstance()->getLogicalDevice(), _colorImage, nullptr);
vkFreeMemory(DeviceHandler::getInstance()->getLogicalDevice(), _colorImageMemory, nullptr);
this->setupResources();
}
void SamplingBuffer::setupResources() {
VkFormat colorFormat = SwapChainHandler::getInstance()->getSwapChainImageFormat();
createImage(SwapChainHandler::getInstance()->getSwapChainWidth(), SwapChainHandler::getInstance()->getSwapChainHeight(), DeviceHandler::getInstance()->getMsaaSamples(), colorFormat, VK_IMAGE_TILING_OPTIMAL, VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT | VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT, VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT, _colorImage, _colorImageMemory);
_colorImageView = createImageView(_colorImage, colorFormat, VK_IMAGE_ASPECT_COLOR_BIT);
}
SamplingBuffer::~SamplingBuffer() {
vkDestroyImageView(DeviceHandler::getInstance()->getLogicalDevice(), _colorImageView, nullptr);
vkDestroyImage(DeviceHandler::getInstance()->getLogicalDevice(), _colorImage, nullptr);
vkFreeMemory(DeviceHandler::getInstance()->getLogicalDevice(), _colorImageMemory, nullptr);
}
} |
9e0552e24d14591a814e402fa3a2effd0cd9756a | 736152af95added05839b34aa5f93a7cef57c727 | /DI/cpp/identify.cpp | 68ba488f257be3f820298e411d92bf8513727ef2 | [] | no_license | xiangdiuxiu/Scripts | b00f85a4798834d21df3e86dfd3db17d8deb8f2b | b87db9982159df9fbd894b631fcfff4356bc2029 | refs/heads/master | 2021-01-02T09:35:07.513961 | 2013-04-23T01:46:52 | 2013-04-23T01:46:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,640 | cpp | identify.cpp |
//v0.01
//Author: ZhangYet
#include "identify.h"
extern void makeNetwork(network &res, mat & data, double thes)
{
path tmp;
mat cor_res;
//network::iterator it = res.begin();
for(int i = 0; i < data.n_cols; i++)
for(int j = i+1; j < data.n_cols; j++)
{
cor_res = cor(data.col(i), data.col(j));
if(cor_res(0)>thes)
{
tmp = make_pair(i,j);
res.push_back(tmp);
}
}
}
extern void getGeneSet(set<int> &res, mat & data, double thes)
{
mat cor_res;
for(int i = 0; i < data.n_cols; i++)
for(int j = i+1; j < data.n_cols; j++)
{
cor_res = cor(data.col(i),data.col(j));
if(cor_res(0)>thes){
res.insert(i);
res.insert(j);
}
cout<<res.size()<<endl;
}
}
mat makeMatrix(ifstream &fin, int m, int n)
{
if(!fin){
cerr<<"error:unable to open inputfile"<<endl;
return mat();
}
mat A = zeros<mat>(m,n);
string line;
int id = 0;
while(getline(fin, line)){
A.row(id)=mat(line);
id++;
}
return A;
}
extern mat makeNetwork(mat &data, double alpha)
{
cout<<"begin make"<<endl;
mat net = cor(data);
uvec indices_0 = find(net<alpha);
uvec indices_1 = find(net>=alpha);
net.elem(indices_0) = zeros<vec>(indices_0.n_elem);
net.elem(indices_1) = ones<vec>(indices_1.n_elem);
return net;
}
extern int getRow(int index, int collen)
{
return (index % collen==0)?1:(index % collen);
}
extern int getCol(int index, int collen)
{
if(index/collen == 0)
return 1;
else
return getRow(index-collen,collen)+1;
}
extern set<int> getGeneSet(uvec & v, int collen)
{
set<int> res;
int col,row;
for(int i=0; i<v.n_elem; i++)
{
col = getCol(v(i), collen);
res.insert(col);
row = getRow(v(i), collen);
res.insert(row);
}
return res;
}
extern mat mergeNetwork(mat &net1, mat &net2)
{
mat res = zeros<mat>(net1.size());
res = net1 + net2;//Of course we should have made a test to make sure net1.size()==net2.size()
uvec indices = find(net1==net2);
res.elem(indices) = zeros<vec>(indices.n_elem);
uvec indices2 = find(res>0);
res.elem(indices2) = ones<vec>(indices2.n_elem);
return res;
}
extern vector<int> randomSample(int m, int seed, int min, int max)
{
vector<int> res;
const gsl_rng_type *T;
gsl_rng *r;
gsl_rng_env_setup();
T = gsl_rng_default;
r = gsl_rng_alloc(T);
gsl_rng_set(r,seed);
set<int> temp;
while(temp.size()<m)
{
double u=gsl_rng_uniform(r);
int j=min+int((max-min)*u);
temp.insert(j);
}
set<int>::iterator it = temp.begin();
while(it != temp.end())
{
res.push_back((*it));
it++;
}
gsl_rng_free(r);
return res;
}
extern void randomSample(uvec& res, int seed, int min, int max)
{
int m = res.n_elem;
const gsl_rng_type *T;
gsl_rng *r;
gsl_rng_env_setup();
T = gsl_rng_default;
r = gsl_rng_alloc(T);
gsl_rng_set(r,seed);
set<int> temp;
while(temp.size()<m)
{
double u=gsl_rng_uniform(r);
int j=min+int((max-min)*u);
temp.insert(j);
}
set<int>::iterator it = temp.begin();
gsl_rng_free(r);
for(int i=0; i<m; i++){
res(i) = (*it);
it++;
}
}
/*
extern uvec new_randomSample(int m, int min, int max, int seed)
{
uvec res(m);
const gsl_rng_type *T;
gsl_rng *r;
gsl_rng_set(r,seed);
gsl_rng_env_setup();
T = gsl_rng_default;
r = gsl_rng_alloc(T);
set<int> temp;
while(temp.size()<m)
{
cout<<temp.size()<<endl;
double u=gsl_rng_uniform(r);
int j=min+int((max-min)*u);
temp.insert(j);
}
set<int>::iterator it = temp.begin();
gsl_rng_free(r);
for(int i=0; i<m; i++){
res(i) = (*it);
it++;
}
return(res);
}
*/
|
093d0c3710a748c705b25d2cdbb0098c8ab3a209 | a0d9500c451c089d73429273868f7593c2b1d37c | /src/semicolon.h | dd37eefbcf155e31b118381ba435c10336abf673 | [] | no_license | Bhagpreet/RShell | d945bb33660d88650b592242ed6d7851bce354bd | 746fd87a3a56b2848e27bc03ce90e90897aa6531 | refs/heads/master | 2023-02-21T23:15:25.825441 | 2021-01-23T02:58:56 | 2021-01-23T02:58:56 | 332,074,865 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 401 | h | semicolon.h | #ifndef SEMICOLON_H
#define SEMICOLON_H
#include "shell.h"
class Command;
using namespace std;
class Semicolon : public Shell {
protected:
Command* cmd; // command object that stores the command within
public:
Semicolon();
~Semicolon();
Semicolon(Command*); // passes in object to set cmd
bool execute(); // executes command object
};
#endif |
4388a231275527a14f8de7028d06f6b5ca758e79 | 22253246860203575cbfe6f84df4912adb1e5723 | /main.cxx | 20220cf20457f91431e59efe14e7f3f4ae1389c2 | [] | no_license | Matrixbirds/explore-github | c4886dd23dde9de653b56e461ab7991cb642118f | e5a9aa5affeaaf30f111701c7a0208c059ebbd15 | refs/heads/master | 2020-04-11T17:43:21.837036 | 2018-12-20T17:51:41 | 2018-12-20T17:51:41 | 161,971,882 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,799 | cxx | main.cxx | #include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <cstdio>
#include <cstring>
#include <curl/curl.h>
#include <rapidjson/reader.h>
#include <rapidjson/prettywriter.h>
#include <rapidjson/filereadstream.h>
#include <rapidjson/filewritestream.h>
#include <rapidjson/encodedstream.h>
#include <rapidjson/error/en.h>
#include <rapidjson/document.h>
#include <rapidjson/ostreamwrapper.h>
#include <rapidjson/writer.h>
#include <fstream>
#include <vector>
#include <unordered_map>
#include <regex>
#ifdef WIN32
#include <fcntl.h>
#include <io.h>
#define READ_3RD_ARG unsigned int
#else
#include <unistd.h>
#define READ_3RD_ARG size_t
#endif
#if LIBCURL_VERSION_NUM < 0x070c03
#error "upgrade your libcurl to no less than 7.12.3"
#endif
#include <iostream>
#include "color.hxx"
namespace github {};
using namespace std;
using namespace rapidjson;
using namespace github;
namespace github {
namespace util {
enum queryType {
INT,
STRING,
ARRAY,
OBJECT
};
}
void log(const Value& it, const unordered_map<string, util::queryType>& attrs) {
for (auto& _: attrs) {
const char *key = _.first.c_str();
switch (_.second) {
cout << _.first << ": ";
case util::queryType::INT:
cout << key << ": " << it[key].GetInt() << endl;
break;
case util::queryType::STRING:
cout << key << ": " << it[key].GetString() << endl;
break;
// ## NEED TEST
case util::queryType::ARRAY:
for (const auto& item : it[key].GetArray())
github::log(item, attrs);
break;
// ## NEED TEST
case util::queryType::OBJECT:
for (const auto& item : it[key].GetObject())
cout << item.name.GetString() << ": " << item.value.GetString() << endl;
break;
}
}
}
class Repository {
public:
Repository(string& name, string& url,
unsigned& stars, string& description) :
name_(name) , url_(url), stars_(stars),
description_(description)
{}
Repository(const Repository& ins) :
name_(ins.name_) , url_(ins.url_), stars_(ins.stars_),
description_(ins.description_)
{}
~Repository() {}
Repository& operator=(const Repository& _rval) {
name_ = _rval.name_;
url_= _rval.url_;
stars_= _rval.stars_;
description_= _rval.description_;
return *this;
}
template <typename Writer>
void Serialize(Writer& writer) const {
writer.StartObject();
writer.String("name");
#if RAPID_JSON_HAS_STDSTRING
writer.String(name_);
#else
writer.String(name_.c_str(), static_cast<SizeType>(name_.length()));
#endif
writer.String("url");
#if RAPID_JSON_HAS_STDSTRING
writer.String(url_);
#else
writer.String(url_.c_str(), static_cast<SizeType>(url_.length()));
#endif
writer.String("stars");
writer.Uint(stars_);
writer.String("description");
#if RAPID_JSON_HAS_STDSTRING
writer.String(description_);
#else
writer.String(description_.c_str(), static_cast<SizeType>(description_.length()));
#endif
writer.EndObject();
}
private:
std::string name_;
std::string url_;
std::string description_;
unsigned stars_;
};
}
void show_usage (const char **argv) {
cout << "Usage " << argv[0] << " [OPTION]... PATTERNS [URL]..." << endl;
cout << "Try '" << argv[0] << " --help' for more information." << endl;
}
void show_help (const char **argv) {
show_usage(argv);
cout << "HELP: [repo-name]" << endl;
cout << "Example" << endl;
cout << "./explore.exe explore-github" << endl;
}
const string URL = "https://api.github.com/search/repositories"; // GET /search/repositories
static size_t WriteDataCallback(void *contents, size_t size, size_t nmemb, void *userp) {
((std::string *)userp)->append((char *)contents, size *nmemb);
return size * nmemb;
}
void search_repos(const string & api, string *readBuffer, long* http_code) {
CURL *curl;
CURLcode resp;
curl_global_init(CURL_GLOBAL_ALL);
curl = curl_easy_init();
if (curl) {
curl_easy_setopt(curl, CURLOPT_URL, api.c_str());
curl_easy_setopt(curl, CURLOPT_USERAGENT, "Awesome-Octocat-App");
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteDataCallback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, readBuffer);
resp = curl_easy_perform(curl);
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, http_code);
curl_easy_cleanup(curl);
if (resp != CURLE_OK) {
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(resp));
}
}
curl_global_cleanup();
return ;
}
int doRequest(const char **argv) {
string api = URL + "?";
string q(argv[1]), sort(argv[2]), order(argv[3]);
api += "q=" + q + "&";
api += "sort=" + sort + "&";
api += "order=" + order;
cout << "params: " << api << endl;
string jsonBody;
long http_status;
search_repos(api, &jsonBody, &http_status);
const char *body = jsonBody.c_str();
Document doc;
cout << "STATUS: " << http_status << endl;
if (doc.Parse(body).HasParseError()){
fprintf(stderr, "Body Format Error.");
return 1;
}
/**
* ONLY DEBUG
* cout << "Parsing to document succeeded." << endl;
* cout << "Access values." << endl;
**/
const Value& items = doc["items"];
assert(items.IsArray());
vector <Repository> repos;
const unordered_map<string, util::queryType> attrs({
{"name", util::queryType::STRING},
{"url", util::queryType::STRING},
{"stargazers_count", util::queryType::INT},
{"description", util::queryType::STRING}
});
const auto& n = min(items.Size(), (SizeType){3});
for (SizeType i = 0; i < n; i++) {
const auto& item = items[i];
string name = item["name"].GetString();
string url = item["url"].GetString();
unsigned int stars = item["stargazers_count"].GetInt();
string description = item["description"].GetString();
const auto& repo = Repository(name, url, stars, description);
repos.push_back(repo);
// HIDDEN github::log(item, attrs);
}
//OStreamWrapper osw(cout);
//PrettyWriter<OStreamWrapper> writer(osw);
StringBuffer sb;
PrettyWriter<StringBuffer> writer(sb);
writer.StartArray();
for (const auto& repo: repos) {
repo.Serialize(writer);
}
writer.EndArray();
cout << sb.GetString() << endl;
//doc["items"].Accept(writer);
return 0;
}
void program(int num, const char **argv) {
const string pattern(argv[1]);
if (pattern.empty()) {
show_usage(argv);
}
if ("--help" == pattern) {
show_help(argv);
} else {
(num == 2) ? (argv[2] = "stars") : argv[2];
(num == 3) ? (argv[3] = "desc") : argv[3];
doRequest(argv);
}
}
int main(int argc, const char *argv[]) {
ColorStream s;
s << "Hello ColorStream" << endl;
if (argc < 2) {
show_usage(argv);
} else {
program(argc, (const char**)argv);
}
return 0;
}
|
39b59bed4fb401d51802145c564f157966e50d5d | ad21702fa68fe36cfb370cbc54237c0473dfbc8c | /trunk/NARCS_Control/NARCS_Control/ThreadObj.cpp | b10f6ce6c88792cb42a3aed5e94cc44d035770e6 | [] | no_license | icprog/narcs | 0af0f9780fff60b9d54937755c4df60cb9f033a0 | 604572e3b0f2c21270cb80e3261266716f3b0587 | refs/heads/master | 2020-04-08T08:06:37.470323 | 2016-05-08T19:00:04 | 2016-05-08T19:00:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 552 | cpp | ThreadObj.cpp | #include "StdAfx.h"
#include "ThreadObj.h"
bool ThreadObj::startThread(void)
{
HANDLE temp = NULL;
this->_stopThread = false;
temp = (HANDLE) _beginthreadex(NULL, 0, &thread_starting, dynamic_cast<void*>(this), 0, NULL);
int rc = (uintptr_t)temp;
if (rc == 0){
//failed to create thread
return false;
}else{
this->_handle = temp;
this->_active = true;
return true;
}
}
unsigned _stdcall thread_starting(void* param){
ThreadObj* thread = static_cast<ThreadObj*>(param);
return thread->threadMain();
} |
94d7bda5fd378eae371b81de2ab17372d0509cb5 | 88b130d5ff52d96248d8b946cfb0faaadb731769 | /document/src/vespa/document/base/documentcalculator.cpp | f4078b772376d3a83a4baadccc3779ea7e774953 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | vespa-engine/vespa | b8cfe266de7f9a9be6f2557c55bef52c3a9d7cdb | 1f8213997718c25942c38402202ae9e51572d89f | refs/heads/master | 2023-08-16T21:01:12.296208 | 2023-08-16T17:03:08 | 2023-08-16T17:03:08 | 60,377,070 | 4,889 | 619 | Apache-2.0 | 2023-09-14T21:02:11 | 2016-06-03T20:54:20 | Java | UTF-8 | C++ | false | false | 1,410 | cpp | documentcalculator.cpp | // Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "documentcalculator.h"
#include <vespa/document/bucket/bucketidfactory.h>
#include <vespa/document/select/compare.h>
#include <vespa/document/select/parser.h>
#include <vespa/document/select/valuenode.h>
#include <vespa/document/select/variablemap.h>
#include <vespa/vespalib/util/exceptions.h>
namespace document {
DocumentCalculator::DocumentCalculator(
const DocumentTypeRepo& repo,
const vespalib::string & expression)
{
BucketIdFactory factory;
select::Parser parser(repo, factory);
_selectionNode = parser.parse(expression + " == 0");
}
DocumentCalculator::~DocumentCalculator() { }
double
DocumentCalculator::evaluate(const Document& doc, std::unique_ptr<select::VariableMap> variables)
{
select::Compare& compare(static_cast<select::Compare&>(*_selectionNode));
const select::ValueNode& left = compare.getLeft();
select::Context context(doc);
context.setVariableMap(std::move(variables));
std::unique_ptr<select::Value> value = left.getValue(context);
select::NumberValue* num = dynamic_cast<select::NumberValue*>(value.get());
if (!num) {
throw vespalib::IllegalArgumentException("Expression could not be evaluated - some components of the expression may be missing");
}
return num->getCommonValue();
}
}
|
f64b6f90288bbbe00d59a1fe159ef2c08290b7df | dcaf7fe94da2978f376e8a361aca6200a0e13d04 | /Stage.h | 548b1278b9bcf00a438f665f9b7b5561d39e7390 | [] | no_license | Lumpros/Zombie-Survival | f23207bf5e5af6f9982760ce85389c6135b27f63 | 5a6edecb74d0d8560158b7788156868243e4ef1f | refs/heads/main | 2023-03-05T22:14:46.026808 | 2021-02-20T14:01:18 | 2021-02-20T14:01:18 | 339,237,957 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,163 | h | Stage.h | #pragma once
#include <vector>
#include <SDL.h>
#include "AudioSlider.h"
#include "Texture.h"
#include "Resources.h"
#include "Entity.h"
#include "Player.h"
#include "Menu.h"
namespace PZS
{
class GunBox : public Entity
{
private:
GunIndex index;
Text bullet_count;
int old_bullet_count = 0;
SDL_Color DecideBoxColor(void);
SDL_Color DecideNumColor(void);
void ChooseGunTexture(GunIndex gunIndex);
public:
GunBox(GunIndex index, SDL_Rect rectangle) noexcept;
void Update(void) noexcept override;
void Render(void) noexcept override;
};
class BoxArrow : public Entity
{
private:
int direction = 1; // Down
const int arrow_sz = 32;
clock_t timeElapsed = 0;
clock_t end;
public:
BoxArrow(void);
void Update(void) noexcept override;
void Render(void) noexcept override;
};
class Stage
{
private:
Texture* background_texture = nullptr;
Texture* target_texture = nullptr;
std::unique_ptr<Text> wave_text;
// ui related stuff
GunBox shotgun_box;
GunBox rifle_box;
GunBox pistol_box;
BoxArrow arrow;
Button sound_button;
std::unique_ptr<Button> main_menu_button;
AudioSlider* audio_slider = nullptr;
Text* health_text,*ammo_text;
Text* zombies_left_text, *game_over_text;
Text* pause_text;
/* some optimizations */
int old_hp = 100;
int old_cap = 6;
int old_ammo = 6;
int old_zombie_count = 0;
volatile bool is_paused = false;
bool p_is_pressed = false;
/* Gameplay related*/
int wave = 0;
int zombies_left = 0;
bool slider_shown = false;
bool wave_is_visible = false;
private:
void ShowMouseTarget(void) noexcept;
void DisplayGameplayRelated(void) noexcept;
void UpdateGameplayRelated(void) noexcept;
void HandleZombieCount(void) noexcept;
void HandleAmmoCount(Player*) noexcept;
void HandleHealthCount(Player*) noexcept;
void DoNextStage(void) noexcept;
void DrawAlphaScreen(void) noexcept;
void DrawPauseMenu(void) noexcept;
void DisplayUI(void) noexcept;
void UpdateUI(void) noexcept;
void ShowGameOverScreen(void) noexcept;
void DeleteText(void) noexcept {
delete pause_text;
delete health_text;
delete ammo_text;
delete zombies_left_text;
delete game_over_text;
}
void InitializeTextPointers(Resources* resourccs) noexcept;
int CalculateZombieSpawnNumber(int wave) const noexcept;
public:
Stage(const Stage&) = delete;
Stage(Stage&&) = delete;
Stage& operator=(const Stage&) = delete;
Stage& operator=(Stage&&) = delete;
void Update(void) noexcept;
void Render(void) noexcept;
void Reset(void) noexcept;
void SpawnZombie(void) noexcept;
int GetZombieLimit(void) const noexcept;
void RegisterAudioSlider(AudioSlider* slider) { audio_slider = slider; }
bool AudioSliderIsRegistered(void) const noexcept { return audio_slider != nullptr; }
Stage(void) noexcept;
static Stage* Get(void) noexcept {
static Stage instance;
return &instance;
}
~Stage(void) noexcept {
DeleteText();
}
};
}
|
3539d0fc2a85a10de49162812b017564878b21c7 | 36183993b144b873d4d53e7b0f0dfebedcb77730 | /Graphics/Graphics Programming Methods/1_4erleben_scripted/source/utils/output.h | e204d1dac9347cba2208e051245a62a33bf56a3e | [] | no_license | alecnunn/bookresources | b95bf62dda3eb9b0ba0fb4e56025c5c7b6d605c0 | 4562f6430af5afffde790c42d0f3a33176d8003b | refs/heads/master | 2020-04-12T22:28:54.275703 | 2018-12-22T09:00:31 | 2018-12-22T09:00:31 | 162,790,540 | 20 | 14 | null | null | null | null | UTF-8 | C++ | false | false | 907 | h | output.h | ////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2002
// Department of Computer Science Copenhagen University (DIKU).
//
// All Rights Reserved.
//
// This software is provided as is WITHOUT ANY WARRANTY; Use it on
// your own risk.
//
// Please send remarks, questions and bug reports to kenny@diku.dk
//
////////////////////////////////////////////////////////////////////////////////
#ifndef __OUTPUT_INCLUDED__
#define __OUTPUT_INCLUDED__
#include<fstream>
#include<string>
using namespace std;
/**
* Output Class
*/
class Output
{
public:
static void error(string classname,string method, string message);
static void warning(string classname,string method, string message);
static void message(string classname,string method, string message);
public:
static fstream file;
};/* End class Output */
#endif //__OUTPUT_INCLUDED__
|
3d379c51370735e27a001aa1f667e8e8fc9edbdd | cf8182ecc88888719cfaff79751834500800151a | /src/shogun/loss/LogLoss.cpp | 4bb16ac9b778c39bfadcac7459f191a8c8a7f947 | [
"BSD-3-Clause",
"DOC",
"GPL-3.0-only"
] | permissive | shogun-toolbox/shogun | 17beb82a04fbf1179d300c4fcd16ee68850ad994 | 9b8d856971af5a295dd6ad70623ae45647a6334c | refs/heads/develop | 2023-03-11T04:46:36.167073 | 2020-12-08T16:56:38 | 2020-12-08T16:56:38 | 1,555,094 | 2,938 | 1,246 | BSD-3-Clause | 2022-08-12T11:12:34 | 2011-04-01T10:44:32 | C++ | UTF-8 | C++ | false | false | 1,618 | cpp | LogLoss.cpp | /*
* This software is distributed under BSD 3-clause license (see LICENSE file).
*
* Authors: Shashwat Lal Das, Fernando Iglesias
*/
#include <shogun/loss/LogLoss.h>
using namespace shogun;
float64_t LogLoss::loss(float64_t z)
{
return (z >= 0) ? log(1 + exp(-z)) : -z + log(1 + exp(z));
}
float64_t LogLoss::first_derivative(float64_t z)
{
if (z < 0)
return -1 / (exp(z) + 1);
float64_t ez = exp(-z);
return -ez / (ez + 1);
}
float64_t LogLoss::second_derivative(float64_t z)
{
float64_t ez = exp(z);
return ez / (ez*(ez + 2) + 1);
}
float64_t LogLoss::get_update(float64_t prediction, float64_t label, float64_t eta_t, float64_t norm)
{
float64_t w,x;
float64_t d = exp(label * prediction);
if(eta_t < 1e-6){
/* As with squared loss, for small eta_t we replace the update
* with its first order Taylor expansion to avoid numerical problems
*/
return label*eta_t/((1+d)*norm);
}
x = eta_t + label*prediction + d;
/* This piece of code is approximating W(exp(x))-x.
* W is the Lambert W function: W(z)*exp(W(z))=z.
* The absolute error of this approximation is less than 9e-5.
* Faster/better approximations can be substituted here.
*/
float64_t W = x>=1. ? 0.86*x+0.01 : exp(0.8*x-0.65); //initial guess
float64_t r = x>=1. ? x-log(W)-W : 0.2*x+0.65-W; //residual
float64_t t = 1.+W;
float64_t u = 2.*t*(t+2.*r/3.); //magic
w = W*(1.+r/t*(u-r)/(u-2.*r))-x; //more magic
return -(label*w+prediction)/norm;
}
float64_t LogLoss::get_square_grad(float64_t prediction, float64_t label)
{
float64_t d = LossFunction::first_derivative(prediction, label);
return d*d;
}
|
376ebff2bab2379c7ce4a1895ba213d182b399e2 | 3c16fa08b2fc072c506f476691a235490cb0b78a | /src/tickets_service/db/SiteDescriptor.h | e1623e658d1e586f491cb886140106a8dd5e0814 | [] | no_license | samiavasil/verify_tickets | 14481a9b5f2366707010b95cf1c68da45e80b275 | dc8a5c8efeeddcbdeb0925ff9f047bdffa148593 | refs/heads/master | 2020-12-26T19:47:54.630306 | 2020-08-04T16:46:09 | 2020-08-04T23:50:31 | 237,620,491 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 421 | h | SiteDescriptor.h | #ifndef SITEDESCRIPTOR_H
#define SITEDESCRIPTOR_H
#include "CassTable.h"
class SiteDescriptor : public CassTable
{
public:
typedef enum {
SITE_ID,
NAME,
INFO,
DOORS,
NODE_STATUS,
} Column_t;
SiteDescriptor(QString tableName = "site_descriptor", QString keySpace = QString());
bool PrepareSiteDescriptorTable(CassSession *session);
};
#endif // SITEDESCRIPTOR_H
|
030aaaf45653ad31da3e01235a3d45c86f31d429 | 2b124aa51a7a476988b67554bde2658b72e703f3 | /tests/src/components/gates/testsComponentFlipFlop.cpp | 008ccf0966287961b64bde46843087d8c1d62fc6 | [] | no_license | arthurteisseire-epitech/OOP_nanotekspice_2018 | 10375bfcba47ac807c377476e9963a59e229bf7e | 5588c0b5de8880be0dad4802c8c6f97590fa73d4 | refs/heads/main | 2023-02-16T16:57:18.833400 | 2019-02-21T15:00:33 | 2019-02-21T15:00:33 | 330,003,055 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,478 | cpp | testsComponentFlipFlop.cpp | /*
** EPITECH PROJECT, 2018
** cpp_nanotekspice_2018
** File description:
** Created by Adrien FABRE,
*/
#include "gtest/gtest.h"
#include "Utils.hpp"
#include "Exec.hpp"
#include "FileParser.hpp"
#include "ComponentInput.hpp"
#include "ComponentOutput.hpp"
#include "ComponentFlipFlop.hpp"
TEST(ComponentFlipFlop, Init)
{
nts::ComponentFlipFlop comp("FlipFlop");
for (int i = 0; i < 2; ++i) {
EXPECT_EQ(comp.getPin(i)->getType(), nts::IPin::OUTPUT);
EXPECT_EQ(comp.getPin(i)->getState(), nts::UNDEFINED);
}
for (int i = 2; i < 4; ++i) {
EXPECT_EQ(comp.getPin(i)->getType(), nts::IPin::INPUT);
EXPECT_EQ(comp.getPin(i)->getState(), nts::UNDEFINED);
}
}
static void testKeepValue(nts::Tristate val1, nts::Tristate val2)
{
nts::ComponentFlipFlop FlipFlopComp("FlipFlop");
FlipFlopComp.getPin(0)->setState(val1);
FlipFlopComp.getPin(1)->setState(val2);
FlipFlopComp.getPin(2)->setState(nts::FALSE);
FlipFlopComp.getPin(3)->setState(nts::FALSE);
FlipFlopComp.getPin(4)->setState(nts::TRUE);
FlipFlopComp.getPin(5)->setState(nts::FALSE);
FlipFlopComp.localCompute();
EXPECT_EQ(FlipFlopComp.getPin(0)->getState(), val1);
EXPECT_EQ(FlipFlopComp.getPin(1)->getState(), val2);
FlipFlopComp.getPin(4)->setState(nts::FALSE);
FlipFlopComp.localCompute();
EXPECT_EQ(FlipFlopComp.getPin(0)->getState(), val1);
EXPECT_EQ(FlipFlopComp.getPin(1)->getState(), val2);
}
static void
testLocalCompute(nts::Tristate clock, nts::Tristate data, nts::Tristate reset, nts::Tristate set, nts::Tristate Q,
nts::Tristate Qp)
{
nts::ComponentFlipFlop FlipFlopComp("FlipFlop");
FlipFlopComp.getPin(2)->setState(clock);
FlipFlopComp.getPin(3)->setState(reset);
FlipFlopComp.getPin(4)->setState(data);
FlipFlopComp.getPin(5)->setState(set);
FlipFlopComp.localCompute();
EXPECT_EQ(FlipFlopComp.getPin(0)->getState(), Q);
EXPECT_EQ(FlipFlopComp.getPin(1)->getState(), Qp);
}
TEST(ComponentFlipFlop, LocalCompute)
{
testLocalCompute(nts::TRUE, nts::TRUE, nts::TRUE, nts::TRUE, nts::TRUE, nts::TRUE);
testLocalCompute(nts::FALSE, nts::TRUE, nts::TRUE, nts::TRUE, nts::TRUE, nts::TRUE);
testLocalCompute(nts::TRUE, nts::FALSE, nts::TRUE, nts::TRUE, nts::TRUE, nts::TRUE);
testLocalCompute(nts::FALSE, nts::FALSE, nts::TRUE, nts::TRUE, nts::TRUE, nts::TRUE);
testLocalCompute(nts::TRUE, nts::TRUE, nts::FALSE, nts::TRUE, nts::TRUE, nts::FALSE);
testLocalCompute(nts::FALSE, nts::TRUE, nts::FALSE, nts::TRUE, nts::TRUE, nts::FALSE);
testLocalCompute(nts::TRUE, nts::FALSE, nts::FALSE, nts::TRUE, nts::TRUE, nts::FALSE);
testLocalCompute(nts::FALSE, nts::FALSE, nts::FALSE, nts::TRUE, nts::TRUE, nts::FALSE);
testLocalCompute(nts::TRUE, nts::TRUE, nts::TRUE, nts::FALSE, nts::FALSE, nts::TRUE);
testLocalCompute(nts::FALSE, nts::TRUE, nts::TRUE, nts::FALSE, nts::FALSE, nts::TRUE);
testLocalCompute(nts::TRUE, nts::FALSE, nts::TRUE, nts::FALSE, nts::FALSE, nts::TRUE);
testLocalCompute(nts::FALSE, nts::FALSE, nts::TRUE, nts::FALSE, nts::FALSE, nts::TRUE);
testLocalCompute(nts::FALSE, nts::TRUE, nts::FALSE, nts::FALSE, nts::UNDEFINED, nts::UNDEFINED);
testLocalCompute(nts::FALSE, nts::FALSE, nts::FALSE, nts::FALSE, nts::UNDEFINED, nts::UNDEFINED);
testLocalCompute(nts::TRUE, nts::TRUE, nts::FALSE, nts::FALSE, nts::TRUE, nts::FALSE);
testLocalCompute(nts::TRUE, nts::FALSE, nts::FALSE, nts::FALSE, nts::FALSE, nts::TRUE);
testKeepValue(nts::TRUE, nts::TRUE);
testKeepValue(nts::FALSE, nts::TRUE);
testKeepValue(nts::TRUE, nts::FALSE);
testKeepValue(nts::FALSE, nts::FALSE);
}
static void testCompute(nts::Tristate clock, nts::Tristate reset, nts::Tristate data, nts::Tristate set,
nts::Tristate expectedOutput1, nts::Tristate expectedOutput2)
{
nts::ComponentInput clockC("clock");
nts::ComponentInput resetC("reset");
nts::ComponentInput dataC("data");
nts::ComponentInput setC("set");
nts::ComponentOutput out("out");
nts::ComponentOutput out2("out2");
nts::ComponentFlipFlop FlipFlopComp("FlipFlop");
out.setLink(0, FlipFlopComp, 0);
out2.setLink(0, FlipFlopComp, 1);
FlipFlopComp.setLink(2, clockC, 0);
FlipFlopComp.setLink(3, resetC, 0);
FlipFlopComp.setLink(4, dataC, 0);
FlipFlopComp.setLink(5, setC, 0);
clockC.getPin(0)->setState(clock);
resetC.getPin(0)->setState(reset);
dataC.getPin(0)->setState(data);
setC.getPin(0)->setState(set);
EXPECT_EQ(out2.getPin(0)->getState(), nts::UNDEFINED);
EXPECT_EQ(out.getPin(0)->getState(), nts::UNDEFINED);
out.compute(0);
EXPECT_EQ(out.getPin(0)->getState(), expectedOutput1);
EXPECT_EQ(out2.getPin(0)->getState(), expectedOutput2);
}
TEST(FlipFlopCompute, Compute)
{
testCompute(nts::TRUE, nts::TRUE, nts::TRUE, nts::TRUE, nts::TRUE, nts::TRUE);
testCompute(nts::FALSE, nts::FALSE, nts::TRUE, nts::TRUE, nts::TRUE, nts::FALSE);
testCompute(nts::TRUE, nts::TRUE, nts::FALSE, nts::FALSE, nts::FALSE, nts::TRUE);
testCompute(nts::FALSE, nts::FALSE, nts::TRUE, nts::FALSE, nts::UNDEFINED, nts::UNDEFINED);
}
TEST(ComponentFlipFlop, Parsing)
{
nts::FileParser fileParser(PROJECT_PATH"samples/gates/flip_flop.nts");
EXPECT_EQ(fileParser.getComponents()[0]->getPin(0)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[1]->getPin(0)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[2]->getPin(0)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[3]->getPin(0)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[4]->getPin(0)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[4]->getPin(1)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[4]->getPin(2)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[4]->getPin(3)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[4]->getPin(4)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[4]->getPin(5)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[5]->getPin(0)->getState(), nts::UNDEFINED);
EXPECT_EQ(fileParser.getComponents()[6]->getPin(0)->getState(), nts::UNDEFINED);
fileParser.getComponents()[0]->getPin(0)->setState(nts::TRUE);
fileParser.getComponents()[1]->getPin(0)->setState(nts::TRUE);
fileParser.getComponents()[2]->getPin(0)->setState(nts::TRUE);
fileParser.getComponents()[3]->getPin(0)->setState(nts::TRUE);
nts::Exec::compute(fileParser.getComponents());
EXPECT_EQ(fileParser.getComponents()[5]->getPin(0)->getState(), nts::TRUE);
EXPECT_EQ(fileParser.getComponents()[6]->getPin(0)->getState(), nts::TRUE);
} |
0aa81a8f626c6b8b0b9d2e4256c5c335116d8812 | 8be9ceace5c99ab0425b9d9109873e2cb0358f56 | /multiObjectTexture.cpp | 7719b6075ec287eb90273b81fae355645674a449 | [] | no_license | JChen677/CSCI5607Project | e894bd02f8d7ea3282ae8f1ea86c904fb2067d7b | 7f6875454743a10f8d94af26fab23e68dd50d66a | refs/heads/master | 2023-04-23T20:20:13.040356 | 2021-05-08T23:53:48 | 2021-05-08T23:53:48 | 360,685,722 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 47,440 | cpp | multiObjectTexture.cpp | const char* INSTRUCTIONS =
"***************\n"
"OOPSIES Game.\n"
"\n"
"Enter - Advance the turn to the next step.\n"
"1, 2, and 3 - Select corresponding piece to move.\n\n"
"On your turn you will press 'Enter' to draw a card,\n"
"The card will have a amount to move or variation on movement,\n"
"You will then select the piece 1-3 you would like to move,\n"
"If it is a special card you may be prompted to input more selections,\n"
"Your piece will move, and you will press 'Enter' to end your turn.\n\n"
"Cards:\n"
"The cards 1, 2, 3, 5, 8, 11, and 12 all just move their specified amounts\n"
"4 moves backwards 4\n"
"7 allows the player to choose any amount 1-7 to move forward\n"
"10 allows the player to either move forward 10 or backwards 1\n"
"OOPSIES moves forward a random amount 1-13\n"
"***************\n"
;
#include "glad/glad.h" //Include order can matter here
#if defined(__APPLE__) || defined(__linux__)
#include <SDL2/SDL.h>
#include <SDL2/SDL_opengl.h>
#else
#include <SDL.h>
#include <SDL_opengl.h>
#endif
#include <cstdio>
#define GLM_FORCE_RADIANS
#include "glm/glm.hpp"
#include "glm/gtc/matrix_transform.hpp"
#include "glm/gtc/type_ptr.hpp"
#include <cstdio>
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <sstream>
#include <math.h>
#include <stdlib.h>
#include <time.h>
#include "board.h"
#include "gameLogic.h"
using namespace std;
int screenWidth = 1600;
int screenHeight = 1200;
float timePast = 0;
float lastUpdated = 0;
float objx=5, objy=5, objz=0;
float colR=1, colG=1, colB=1;
int textest = -1;
bool DEBUG_ON = false;
GLuint InitShader(const char* vShaderFileName, const char* fShaderFileName);
bool fullscreen = false;
void Win2PPM(int width, int height);
int testNum = 0;
//srand(time(NULL));
float rand01(){
return rand()/(float)RAND_MAX;
}
void drawGeometry(int shaderProgram, int model1_start, int model1_numVerts, int model2_start, int model2_numVerts, int model3_start, int model3_numVerts);
void loadLights(int shaderProgram, vector<Light> lights);
void renderQuad(void);
void SetLightUniform(int shaderProgram, size_t lightIndex, Light light) {
std::ostringstream ss;
std::string uniformName;
GLint uniLight;
// position
ss << "inLights[" << lightIndex << "]." << "position";
uniformName = ss.str();
uniLight = glGetUniformLocation(shaderProgram, uniformName.c_str());
glUniform4fv(uniLight, 1, glm::value_ptr(light.position));
ss.str("");
ss.clear();
// color
ss << "inLights[" << lightIndex << "]." << "color";
uniformName = ss.str();
uniLight = glGetUniformLocation(shaderProgram, uniformName.c_str());
glUniform3fv(uniLight, 1, glm::value_ptr(light.color));
ss.str("");
ss.clear();
// ambient
ss << "inLights[" << lightIndex << "]." << "ambient";
uniformName = ss.str();
uniLight = glGetUniformLocation(shaderProgram, uniformName.c_str());
glUniform1f(uniLight, light.ambient);
ss.str("");
ss.clear();
// attemuation
ss << "inLights[" << lightIndex << "]." << "attenuation";
uniformName = ss.str();
uniLight = glGetUniformLocation(shaderProgram, uniformName.c_str());
glUniform1f(uniLight, light.attenuation);
ss.str("");
ss.clear();
// ambient_only
ss << "inLights[" << lightIndex << "]." << "ambient_only";
uniformName = ss.str();
uniLight = glGetUniformLocation(shaderProgram, uniformName.c_str());
glUniform1f(uniLight, light.ambient_only);
ss.str("");
ss.clear();
}
void loadLights(int shaderProgram, vector<Light> lights)
{
for (int i = 0; i < lights.size(); i++)
{
SetLightUniform(shaderProgram, i, lights[i]);
}
}
int main(int argc, char *argv[]){
// Initialize sliders and pieces
slides.push_back({1, 4});
slides.push_back({9, 13});
slides.push_back({16, 19});
slides.push_back({24, 28});
slides.push_back({31, 34});
slides.push_back({39, 43});
slides.push_back({46, 49});
slides.push_back({54, 58});
pieces.push_back({gPlayer, 1, start, -1});
pieces.push_back({gPlayer, 2, start, -1});
pieces.push_back({gPlayer, 3, start, -1});
pieces.push_back({rPlayer, 1, start, -1});
pieces.push_back({rPlayer, 2, start, -1});
pieces.push_back({rPlayer, 3, start, -1});
pieces.push_back({bPlayer, 1, start, -1});
pieces.push_back({bPlayer, 2, start, -1});
pieces.push_back({bPlayer, 3, start, -1});
pieces.push_back({yPlayer, 1, start, -1});
pieces.push_back({yPlayer, 2, start, -1});
pieces.push_back({yPlayer, 3, start, -1}); // 11
// Seed rng
srand(time(NULL));
// Initalize lights
lights.push_back({glm::vec4(0.f,-3.f,0.f,0.9f), glm::vec3(0.f,0.f,1.f), 0.0, 4, false}); // blue
lights.push_back({glm::vec4(0.f,3.f,0.f,0.9f), glm::vec3(1.f,0.f,0.f), 0.0, 2, false}); // red
lights.push_back({glm::vec4(0.f,-3.f,0.f,0.9f), glm::vec3(1.f,1.f,1.f), 0.2, 1.0, true}); // ambient
SDL_Init(SDL_INIT_VIDEO); //Initialize Graphics (for OpenGL)
//Ask SDL to get a recent version of OpenGL (3.2 or greater)
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 2);
//Create a window (offsetx, offsety, width, height, flags)
SDL_Window* window = SDL_CreateWindow("My OpenGL Program", 100, 100, screenWidth, screenHeight, SDL_WINDOW_OPENGL);
//Create a context to draw in
SDL_GLContext context = SDL_GL_CreateContext(window);
//Load OpenGL extentions with GLAD
if (gladLoadGLLoader(SDL_GL_GetProcAddress)){
printf("\nOpenGL loaded\n");
printf("Vendor: %s\n", glGetString(GL_VENDOR));
printf("Renderer: %s\n", glGetString(GL_RENDERER));
printf("Version: %s\n\n", glGetString(GL_VERSION));
}
else {
printf("ERROR: Failed to initialize OpenGL context.\n");
return -1;
}
//Load Model 1
ifstream modelFile;
modelFile.open("models/testing4.txt");
int numLines = 0;
modelFile >> numLines;
float maxheight = 0;
float* model1 = new float[numLines];
for (int i = 0; i < numLines; i+=24) {
modelFile >> model1[i+21];
modelFile >> model1[i+23];
modelFile >> model1[i+22];
modelFile >> model1[i+19];
modelFile >> model1[i+20];
modelFile >> model1[i+16];
model1[i+16]--;
modelFile >> model1[i+18];
modelFile >> model1[i+17];
model1[i+17]--;
modelFile >> model1[i+13];
modelFile >> model1[i+15];
modelFile >> model1[i+14];
modelFile >> model1[i+11];
modelFile >> model1[i+12];
modelFile >> model1[i+8];
model1[i+8]--;
modelFile >> model1[i+10];
modelFile >> model1[i+9];
model1[i+9]--;
modelFile >> model1[i+5];
modelFile >> model1[i+7];
modelFile >> model1[i+6];
modelFile >> model1[i+3];
modelFile >> model1[i+4];
modelFile >> model1[i];
model1[i]--;
modelFile >> model1[i+2];
modelFile >> model1[i+1];
model1[i+1]--;
}
for (int i = 0; i < numLines; i++) { //THIS LOOP IS FOR TEXTURING THE GAME PIECE
if (i % 8 == 4) {
model1[i] = model1[i-2] / 2.5;
}
if (i % 8 == 3) {
float readx = model1[i-3];
float ready = model1[i-2];
float deg = atan2(ready,readx) * 180 / M_PI;
deg += 180;
model1[i] = deg / 360;
}
}
printf("blah %d %f\n",numLines,maxheight);
int numVertsTeapot = numLines/8;
modelFile.close();
//Load Model 2
modelFile.open("models/table.txt");
numLines = 0;
modelFile >> numLines;
float* model2 = new float[numLines];
for (int i = 0; i < numLines; i+=8) {
modelFile >> model2[i+5];
model2[i+5]*=-1;
modelFile >> model2[i+7];
modelFile >> model2[i+6];
model2[i+6]*=-1;
modelFile >> model2[i+3];
modelFile >> model2[i+4];
modelFile >> model2[i];
model2[i]-=11.4641016151;
model2[i]*=-1;
modelFile >> model2[i+2];
modelFile >> model2[i+1];
model2[i+1]-=11.4641016151;
}
for (int i = 0; i < numLines; i++) { //THIS LOOP IS FOR TEXTURING THE table
if (i % 8 == 4 || i % 8 == 3) {
model2[i] = (model2[i-3] + 11.4641016151) / 22.92820323;
}
}
//printf("%d\n",numLines);
int numVertsKnot = numLines/8;
modelFile.close();
modelFile.open("models/cube.txt");
numLines = 0;
modelFile >> numLines;
float* model3 = new float[numLines];
for (int i = 0; i < numLines; i++){
modelFile >> model3[i];
}
for (int i = 0; i < numLines; i++) { //THIS LOOP IS FOR TEXTURING THE table
if (i % 8 == 4 || i % 8 == 3) {
model3[i] = (model3[i-3] + 0.5);
}
}
int numVertsCube = numLines/8;
modelFile.close();
//Concatenate model arrays
float* modelData = new float[(numVertsTeapot+numVertsKnot+numVertsCube)*8];
copy(model1, model1+numVertsTeapot*8, modelData);
copy(model2, model2+numVertsKnot*8, modelData+numVertsTeapot*8);
copy(model3, model3+numVertsCube*8, modelData+(numVertsTeapot+numVertsKnot)*8);
int totalNumVerts = numVertsTeapot+numVertsKnot+numVertsCube;
int startVertTeapot = 0; //The teapot is the first model in the VBO
int startVertKnot = numVertsTeapot; //The knot starts right after the taepot
int startVertCube = numVertsTeapot+numVertsKnot;
//// Allocate Texture 0 board ///////
SDL_Surface* surface = SDL_LoadBMP("sorryboardgrey.bmp");
if (surface==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError()); return 1;
}
GLuint tex0;
glGenTextures(1, &tex0);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, tex0);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface->w,surface->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface);
//// End Allocate Texture ///////
//// Allocate Texture 1 cardback ///////
SDL_Surface* surface1 = SDL_LoadBMP("cardback.bmp");
if (surface==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError()); return 1;
}
GLuint tex1;
glGenTextures(1, &tex1);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, tex1);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface1->w,surface1->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface1->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface1);
//// End Allocate Texture ///////
//Allocate tex 2 1card
SDL_Surface* surface2 = SDL_LoadBMP("1card.bmp");
if (surface==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError());
return 1;
}
GLuint tex2;
glGenTextures(1, &tex2);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, tex2);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface2->w,surface2->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface2->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface2);
//Allocate tex 3 2card
SDL_Surface* surface3 = SDL_LoadBMP("2card.bmp");
if (surface3==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError());
return 1;
}
GLuint tex3;
glGenTextures(1, &tex3);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, tex3);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface3->w,surface3->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface3->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface3);
//Allocate tex 4 3card
SDL_Surface* surface4 = SDL_LoadBMP("3card.bmp");
if (surface4==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError());
return 1;
}
GLuint tex4;
glGenTextures(1, &tex4);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, tex4);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface4->w,surface4->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface4->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface4);
//Allocate tex 5 4card
SDL_Surface* surface5 = SDL_LoadBMP("4card.bmp");
if (surface5==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError());
return 1;
}
GLuint tex5;
glGenTextures(1, &tex5);
glActiveTexture(GL_TEXTURE5);
glBindTexture(GL_TEXTURE_2D, tex5);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface5->w,surface5->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface5->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface5);
//Allocate tex 6 5card
SDL_Surface* surface6 = SDL_LoadBMP("5card.bmp");
if (surface6==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError());
return 1;
}
GLuint tex6;
glGenTextures(1, &tex6);
glActiveTexture(GL_TEXTURE6);
glBindTexture(GL_TEXTURE_2D, tex6);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface6->w,surface6->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface6->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface6);
//Allocate tex 7 7card
SDL_Surface* surface7 = SDL_LoadBMP("7card.bmp");
if (surface7==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError());
return 1;
}
GLuint tex7;
glGenTextures(1, &tex7);
glActiveTexture(GL_TEXTURE7);
glBindTexture(GL_TEXTURE_2D, tex7);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface7->w,surface7->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface7->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface7);
//Allocate tex 8 8card
SDL_Surface* surface8 = SDL_LoadBMP("8card.bmp");
if (surface8==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError());
return 1;
}
GLuint tex8;
glGenTextures(1, &tex8);
glActiveTexture(GL_TEXTURE8);
glBindTexture(GL_TEXTURE_2D, tex8);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface8->w,surface8->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface8->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface8);
//Allocate tex 9 10card
SDL_Surface* surface9 = SDL_LoadBMP("10card.bmp");
if (surface9==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError());
return 1;
}
GLuint tex9;
glGenTextures(1, &tex9);
glActiveTexture(GL_TEXTURE9);
glBindTexture(GL_TEXTURE_2D, tex9);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface9->w,surface9->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface9->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface9);
//Allocate tex 10 11card
SDL_Surface* surface10 = SDL_LoadBMP("11card.bmp");
if (surface10==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError());
return 1;
}
GLuint tex10;
glGenTextures(1, &tex10);
glActiveTexture(GL_TEXTURE10);
glBindTexture(GL_TEXTURE_2D, tex10);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface10->w,surface10->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface10->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface10);
//Allocate tex 11 12card
SDL_Surface* surface11 = SDL_LoadBMP("12card.bmp");
if (surface11==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError()); return 1;
}
GLuint tex11;
glGenTextures(1, &tex11);
glActiveTexture(GL_TEXTURE11);
glBindTexture(GL_TEXTURE_2D, tex11);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface11->w,surface11->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface11->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface11);
//Allocate tex 12 oopscard
SDL_Surface* surface12 = SDL_LoadBMP("oopscard.bmp");
if (surface12==NULL){ //If it failed, print the error
printf("Error: \"%s\"\n",SDL_GetError()); return 1;
}
GLuint tex12;
glGenTextures(1, &tex12);
glActiveTexture(GL_TEXTURE12);
glBindTexture(GL_TEXTURE_2D, tex12);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surface12->w,surface12->h, 0, GL_BGR,GL_UNSIGNED_BYTE,surface12->pixels);
glGenerateMipmap(GL_TEXTURE_2D);
SDL_FreeSurface(surface12);
//Build a Vertex Array Object (VAO) to store mapping of shader attributse to VBO
GLuint vao;
glGenVertexArrays(1, &vao); //Create a VAO
glBindVertexArray(vao); //Bind the above created VAO to the current context
//Allocate memory on the graphics card to store geometry (vertex buffer object)
GLuint vbo[1];
glGenBuffers(1, vbo); //Create 1 buffer called vbo
glBindBuffer(GL_ARRAY_BUFFER, vbo[0]); //Set the vbo as the active array buffer (Only one buffer can be active at a time)
glBufferData(GL_ARRAY_BUFFER, totalNumVerts*8*sizeof(float), modelData, GL_STATIC_DRAW); //upload vertices to vbo
int texturedShader = InitShader("textured-Vertex.glsl", "textured-Fragment.glsl");
int blurShader = InitShader("blur_v.glsl", "blur_f.glsl");
int bloomShader = InitShader("bloom_v.glsl", "bloom_f.glsl");
//Tell OpenGL how to set fragment shader input
GLint posAttrib = glGetAttribLocation(texturedShader, "position");
glVertexAttribPointer(posAttrib, 3, GL_FLOAT, GL_FALSE, 8*sizeof(float), 0);
//Attribute, vals/attrib., type, isNormalized, stride, offset
glEnableVertexAttribArray(posAttrib);
//GLint colAttrib = glGetAttribLocation(phongShader, "inColor");
//glVertexAttribPointer(colAttrib, 3, GL_FLOAT, GL_FALSE, 8*sizeof(float), (void*)(3*sizeof(float)));
//glEnableVertexAttribArray(colAttrib);
GLint normAttrib = glGetAttribLocation(texturedShader, "inNormal");
glVertexAttribPointer(normAttrib, 3, GL_FLOAT, GL_FALSE, 8*sizeof(float), (void*)(5*sizeof(float)));
glEnableVertexAttribArray(normAttrib);
GLint texAttrib = glGetAttribLocation(texturedShader, "inTexcoord");
glEnableVertexAttribArray(texAttrib);
glVertexAttribPointer(texAttrib, 2, GL_FLOAT, GL_FALSE, 8*sizeof(float), (void*)(3*sizeof(float)));
GLint uniView = glGetUniformLocation(texturedShader, "view");
GLint uniProj = glGetUniformLocation(texturedShader, "proj");
glBindVertexArray(0); //Unbind the VAO in case we want to create a new one
glEnable(GL_DEPTH_TEST);
glEnable(GL_CULL_FACE); //Be default: CCW are front faces, CW are back ffaces
glCullFace(GL_BACK); //Don't draw an CW (back) faces
printf("%s\n",INSTRUCTIONS);
// BLOOM
unsigned int hdrFBO;
glGenFramebuffers(1, &hdrFBO);
glBindFramebuffer(GL_FRAMEBUFFER, hdrFBO);
unsigned int colorBuffers[2];
glGenTextures(2, colorBuffers);
for (unsigned int i = 0; i < 2; i++)
{
glBindTexture(GL_TEXTURE_2D, colorBuffers[i]);
glTexImage2D(
GL_TEXTURE_2D, 0, GL_RGBA16F, screenWidth, screenHeight, 0, GL_RGBA, GL_FLOAT, NULL
);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
// attach texture to framebuffer
glFramebufferTexture2D(
GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0 + i, GL_TEXTURE_2D, colorBuffers[i], 0
);
}
// create and attach depth buffer (renderbuffer)
unsigned int rboDepth;
glGenRenderbuffers(1, &rboDepth);
glBindRenderbuffer(GL_RENDERBUFFER, rboDepth);
glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT, screenWidth, screenHeight);
glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, rboDepth);
// tell OpenGL which color attachments we'll use (of this framebuffer) for rendering
unsigned int attachments[2] = { GL_COLOR_ATTACHMENT0, GL_COLOR_ATTACHMENT1 };
glDrawBuffers(2, attachments);
// finally check if framebuffer is complete
if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE)
std::cout << "Framebuffer not complete!" << std::endl;
glBindFramebuffer(GL_FRAMEBUFFER, 0);
// ping-pong-framebuffer for blurring
unsigned int pingpongFBO[2];
unsigned int pingpongColorbuffers[2];
glGenFramebuffers(2, pingpongFBO);
glGenTextures(2, pingpongColorbuffers);
for (unsigned int i = 0; i < 2; i++)
{
glBindFramebuffer(GL_FRAMEBUFFER, pingpongFBO[i]);
glBindTexture(GL_TEXTURE_2D, pingpongColorbuffers[i]);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16F, screenWidth, screenHeight, 0, GL_RGBA, GL_FLOAT, NULL);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); // we clamp to the edge as the blur filter would otherwise sample repeated texture values!
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, pingpongColorbuffers[i], 0);
// also check if framebuffers are complete (no need for depth buffer)
if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE)
std::cout << "Framebuffer not complete!" << std::endl;
}
// BLOOM END
/********** Event Loop (Loop forever processing each event as fast as possible) **********/
SDL_Event windowEvent;
bool quit = false;
while (!quit) {
while (SDL_PollEvent(&windowEvent)){ //inspect all events in the queue
if (windowEvent.type == SDL_QUIT) quit = true;
//List of keycodes: https://wiki.libsdl.org/SDL_Keycode - You can catch many special keys
//Scancode referes to a keyboard position, keycode referes to the letter (e.g., EU keyboards)
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_ESCAPE)
quit = true; //Exit event loop
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_f){ //If "f" is pressed
fullscreen = !fullscreen;
SDL_SetWindowFullscreen(window, fullscreen ? SDL_WINDOW_FULLSCREEN : 0); //Toggle fullscreen
}
//DEBUG KEYS
/*if (windowEvent.type == SDL_KEYDOWN && windowEvent.key.keysym.sym == SDLK_UP){ //If "up key" is pressed
if (windowEvent.key.keysym.mod & KMOD_SHIFT) objx -= .1; //Is shift pressed?
else objy -= .01;
printf("x: %f | y: %f\n",objx,objy);
}
if (windowEvent.type == SDL_KEYDOWN && windowEvent.key.keysym.sym == SDLK_DOWN){ //If "down key" is pressed
if (windowEvent.key.keysym.mod & KMOD_SHIFT) objx += .1; //Is shift pressed?
else objy += .01;
printf("x: %f | y: %f\n",objx,objy);
}
if (windowEvent.type == SDL_KEYDOWN && windowEvent.key.keysym.sym == SDLK_LEFT){ //If "up key" is pressed
objx += .01;
printf("x: %f | y: %f\n",objx,objy);
}
if (windowEvent.type == SDL_KEYDOWN && windowEvent.key.keysym.sym == SDLK_RIGHT){ //If "down key" is pressed
objx -= .01;
printf("x: %f | y: %f\n",objx,objy);
}*/
/*if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_c){ // If "c" is pressed
colR = rand01();
colG = rand01();
colB = rand01();
if (textest == 12)
textest = -1;
else
textest++;
}
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_m) { // If "m" is pressed
movePiece(&pieces.at(testNum), 1);
}
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_n) { // If "n" is pressed
movePiece(&pieces.at(testNum), 4);
}
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_b) { // If "b" is pressed
testNum = (testNum + 1) % 12;
}
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_r) { // If "r" is pressed
cardposition = 0.0;
state = turnBegin;
}*/
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_RETURN) { // If "enter" is pressed
waiting = false;
}
/*if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_z) { // If "z" is pressed
printf("Current state: %d\n", state);
}*/
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_1) { // If "1" is pressed
playerInput = 1;
}
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_2) { // If "2" is pressed
playerInput = 2;
}
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_3) { // If "3" is pressed
playerInput = 3;
}
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_4) { // If "4" is pressed
playerInput = 4;
}
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_5) { // If "5" is pressed
playerInput = 5;
}
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_6) { // If "6" is pressed
playerInput = 6;
}
if (windowEvent.type == SDL_KEYUP && windowEvent.key.keysym.sym == SDLK_7) { // If "7" is pressed
playerInput = 7;
}
}
// Clear the screen to default color
// glClearColor(.2f, 0.4f, 0.8f, 1.0f);
glClearColor(.0f, 0.0f, 0.0f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
// BLOOM
glBindFramebuffer(GL_FRAMEBUFFER, hdrFBO);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
//ENDBLOOM
glUseProgram(texturedShader);
lastUpdated = timePast;
timePast = SDL_GetTicks()/1000.f;
if (state == movingCamera) {
if (cameraposition < 1.0) {
cameraposition += timePast - lastUpdated;
if (cameraposition >= 1.0) {
cameraposition = 1.0;
state = turnBegin;
//waiting = false;
}
}
}
glm::vec3 translatecamera = camPos[currTurn] - camPos[(currTurn+3)%4];
glm::mat4 view = glm::lookAt(
camPos[(currTurn+3)%4] +
glm::vec3(translatecamera.x * cameraposition, translatecamera.y * cameraposition, translatecamera.z * cameraposition), //Cam Position
glm::vec3(0.0f, 0.f, -5.0f), //Look at point
glm::vec3(0.0f, 0, 1)); //Up
glUniformMatrix4fv(uniView, 1, GL_FALSE, glm::value_ptr(view));
glm::mat4 proj = glm::perspective(3.14f/4, screenWidth / (float) screenHeight, 1.0f, 40.0f); //FOV, aspect, near, far
glUniformMatrix4fv(uniProj, 1, GL_FALSE, glm::value_ptr(proj));
GLint uniLightDir = glGetUniformLocation(texturedShader, "inLightDir");
// glUniform3fv(uniLightDir, 1, glm::value_ptr(lightDirs[(currTurn)%4]));
glm::vec3 temp = normalize(glm::vec3(0.5,1,-5));
glUniform3fv(uniLightDir, 1, glm::value_ptr(temp));
GLint uniLightCol = glGetUniformLocation(texturedShader, "lightColor");
glm::vec3 weakColor;
if (currTurn == 0) weakColor = pawnColors[4];
else if (currTurn == 1) weakColor = pawnColors[1];
else if (currTurn == 2) weakColor = pawnColors[10];
else weakColor = pawnColors[7];
//glm::vec3 weakColor = pawnColors[(((currTurn)*3)*3)+1];
weakColor /= 6;
weakColor = glm::vec3(1.0) - weakColor;
glUniform3fv(uniLightCol, 1, glm::value_ptr(weakColor));
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, tex0);
glUniform1i(glGetUniformLocation(texturedShader, "tex0"), 0);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, tex1);
glUniform1i(glGetUniformLocation(texturedShader, "tex1"), 1);
glActiveTexture(GL_TEXTURE2);
glBindTexture(GL_TEXTURE_2D, tex2);
glUniform1i(glGetUniformLocation(texturedShader, "tex2"), 2);
glActiveTexture(GL_TEXTURE3);
glBindTexture(GL_TEXTURE_2D, tex3);
glUniform1i(glGetUniformLocation(texturedShader, "tex3"), 3);
glActiveTexture(GL_TEXTURE4);
glBindTexture(GL_TEXTURE_2D, tex4);
glUniform1i(glGetUniformLocation(texturedShader, "tex4"), 4);
glActiveTexture(GL_TEXTURE5);
glBindTexture(GL_TEXTURE_2D, tex5);
glUniform1i(glGetUniformLocation(texturedShader, "tex5"), 5);
glActiveTexture(GL_TEXTURE6);
glBindTexture(GL_TEXTURE_2D, tex6);
glUniform1i(glGetUniformLocation(texturedShader, "tex6"), 6);
glActiveTexture(GL_TEXTURE7);
glBindTexture(GL_TEXTURE_2D, tex7);
glUniform1i(glGetUniformLocation(texturedShader, "tex7"), 7);
glActiveTexture(GL_TEXTURE8);
glBindTexture(GL_TEXTURE_2D, tex8);
glUniform1i(glGetUniformLocation(texturedShader, "tex8"), 8);
glActiveTexture(GL_TEXTURE9);
glBindTexture(GL_TEXTURE_2D, tex9);
glUniform1i(glGetUniformLocation(texturedShader, "tex9"), 9);
glActiveTexture(GL_TEXTURE10);
glBindTexture(GL_TEXTURE_2D, tex10);
glUniform1i(glGetUniformLocation(texturedShader, "tex10"), 10);
glActiveTexture(GL_TEXTURE11);
glBindTexture(GL_TEXTURE_2D, tex11);
glUniform1i(glGetUniformLocation(texturedShader, "tex11"), 11);
glActiveTexture(GL_TEXTURE12);
glBindTexture(GL_TEXTURE_2D, tex12);
glUniform1i(glGetUniformLocation(texturedShader, "tex12"), 12);
glBindVertexArray(vao);
takeTurn();
drawGeometry(texturedShader, startVertTeapot, numVertsTeapot, startVertKnot, numVertsKnot, startVertCube, numVertsCube);
// BLOOM
bool horizontal = true, first_iteration = true;
unsigned int amount = 10;
glUseProgram(blurShader);
for (unsigned int i = 0; i < amount; i++)
{
glBindFramebuffer(GL_FRAMEBUFFER, pingpongFBO[horizontal]);
GLint uniBlur = glGetUniformLocation(blurShader, "horizontal");
glUniform1i(uniBlur, horizontal);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, first_iteration ? colorBuffers[1] : pingpongColorbuffers[!horizontal]); // bind texture of other framebuffer (or scene if first iteration)
renderQuad();
horizontal = !horizontal;
if (first_iteration)
first_iteration = false;
}
glBindFramebuffer(GL_FRAMEBUFFER, 0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glUseProgram(bloomShader);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, colorBuffers[0]);
glUniform1i(glGetUniformLocation(bloomShader, "scene"), 0);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, pingpongColorbuffers[!horizontal]);
glUniform1i(glGetUniformLocation(bloomShader, "bloomBlur"), 1);
renderQuad();
// ENDBLOOM
SDL_GL_SwapWindow(window); //Double buffering
}
//Clean Up
glDeleteProgram(texturedShader);
glDeleteBuffers(1, vbo);
glDeleteVertexArrays(1, &vao);
SDL_GL_DeleteContext(context);
SDL_Quit();
return 0;
}
unsigned int quadVAO = 0;
unsigned int quadVBO;
void renderQuad()
{
if (quadVAO == 0)
{
float quadVertices[] = {
// positions // texture Coords
-1.0f, 1.0f, 0.0f, 0.0f, 1.0f,
-1.0f, -1.0f, 0.0f, 0.0f, 0.0f,
1.0f, 1.0f, 0.0f, 1.0f, 1.0f,
1.0f, -1.0f, 0.0f, 1.0f, 0.0f,
};
// setup plane VAO
glGenVertexArrays(1, &quadVAO);
glGenBuffers(1, &quadVBO);
glBindVertexArray(quadVAO);
glBindBuffer(GL_ARRAY_BUFFER, quadVBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(quadVertices), &quadVertices, GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(float), (void*)0);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(float), (void*)(3 * sizeof(float)));
}
glBindVertexArray(quadVAO);
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
glBindVertexArray(0);
}
void drawGeometry(int shaderProgram, int model1_start, int model1_numVerts, int model2_start, int model2_numVerts,
int model3_start, int model3_numVerts) {
// set color
GLint uniColor = glGetUniformLocation(shaderProgram, "inColor");
glm::vec3 colVec(colR,colG,colB);
glUniform3fv(uniColor, 1, glm::value_ptr(colVec));
// get texture id loc
GLint uniTexID = glGetUniformLocation(shaderProgram, "texID");
// get model loc
glm::mat4 model = glm::mat4(1);
GLint uniModel = glGetUniformLocation(shaderProgram, "model");
// get toon toggle loc
GLint uniToon = glGetUniformLocation(shaderProgram, "toon");
// get bloom toggle loc
GLint uniBloom = glGetUniformLocation(shaderProgram, "bloom");
loadLights(shaderProgram, lights); // Load Lights
// DRAW PIECES
glUniform1i(uniToon, 1.0); // use toon for pieces
for (int i = 0; i < pieces.size(); i++) {
Piece currPiece = pieces.at(i);
glUniform1i(uniBloom, 0.0);
if (state == movingPiece ) {
if (currPiece.num == movedpiece && movedplayer == currPiece.player.num) {glUniform1i(uniBloom, 1.0); }
else {glUniform1i(uniBloom, 0.0); }
}
if (currPiece.num == movedpiece && currPiece.player.num == movedplayer && movepath.size() != 0) {
//printf("%d modementindex\n",movementindex);
glm::vec3 translatevector = movepath.at(movementindex) - movepath.at(movementindex-1);
model = glm::mat4(1);
float zmov;
if (pieceposition <= 0.5)
zmov = pieceposition * 2;
else
zmov = 2-(pieceposition * 2);
model = glm::translate(model,movepath.at(movementindex-1) +
glm::vec3(translatevector.x * pieceposition, translatevector.y * pieceposition, zmov));
model = glm::scale(model,glm::vec3(0.25,0.25,0.25));
glUniform3f(uniColor, pawnColors[i][0], pawnColors[i][1], pawnColors[i][2]);
glUniformMatrix4fv(uniModel, 1, GL_FALSE, glm::value_ptr(model));
glUniform1i(uniTexID, -1);
glDrawArrays(GL_TRIANGLES, model1_start, model1_numVerts);
if (state == movingPiece) {
if (pieceposition < 1.0) {
pieceposition += (timePast - lastUpdated) * 2;
if (pieceposition >= 1.0 && movementindex == movepath.size()-1) {
pieceposition = 0.0;
movementindex = 1;
//movedpiece = -1;
//movedplayer = -1;
if (slidCheck)
slidStart = glm::vec3(movepath.at(movepath.size()-1));
movepath.clear();
//state = turnEnd;
//waiting = false;
}
else if (pieceposition >= 1.0) {
pieceposition = 1.0;
}
}
else {
pieceposition = 0;
movementindex++;
}
}
}
else if (currPiece.num == movedpiece && currPiece.player.num == movedplayer && movepath.size() == 0) {
if (slidCheck) {
glm::vec3 translatevector = slidPos - slidStart;
model = glm::mat4(1);
model = glm::translate(model,slidStart +
glm::vec3(translatevector.x * pieceposition, translatevector.y * pieceposition, 0));
model = glm::scale(model,glm::vec3(0.25,0.25,0.25));
glUniform3f(uniColor, pawnColors[i][0], pawnColors[i][1], pawnColors[i][2]);
glUniformMatrix4fv(uniModel, 1, GL_FALSE, glm::value_ptr(model));
glUniform1i(uniTexID, -1);
glDrawArrays(GL_TRIANGLES, model1_start, model1_numVerts);
if (state == movingPiece) {
if (pieceposition < 1.0) {
pieceposition += (timePast - lastUpdated) * 2;
if (pieceposition >= 1.0) {
pieceposition = 1.0;
slidCheck = false;
}
}
}
}
else {
movedpiece = -1;
movedplayer = -1;
pieceposition = 0;
if (!oopsCheck) {
state = turnEnd;
}
}
}
else if (currPiece.num == oopspiece && currPiece.player.num == oopsplayer) {
float checkx, checky;
altgetXY(start, -1, oopspiece, oopsplayer, &checkx, &checky);
glm::vec3 translatevector = glm::vec3(checkx,checky,0) - oopsPos;
float zmov;
if (pieceposition <= 0.5)
zmov = (pieceposition * 2)*2;
else
zmov = (2-(pieceposition * 2))*2;
model = glm::mat4(1);
if (movedpiece == -1 && movedplayer == -1) {
model = glm::translate(model,oopsPos +
glm::vec3(translatevector.x * pieceposition, translatevector.y * pieceposition, zmov));
}
else {
model = glm::translate(model,oopsPos);
}
model = glm::scale(model,glm::vec3(0.25,0.25,0.25));
glUniform3f(uniColor, pawnColors[i][0], pawnColors[i][1], pawnColors[i][2]);
glUniformMatrix4fv(uniModel, 1, GL_FALSE, glm::value_ptr(model));
glUniform1i(uniTexID, -1);
glDrawArrays(GL_TRIANGLES, model1_start, model1_numVerts);
if (oopsCheck) {
if (state == movingPiece && movedpiece == -1 && movedplayer == -1) {
if (pieceposition < 1.0) {
pieceposition += (timePast - lastUpdated) * 2;
if (pieceposition >= 1.0) {
pieceposition = 1.0;
oopsCheck = false;
oopspiece = -1;
oopsplayer = -1;
pieceposition = 0;
state = turnEnd;
}
}
}
}
}
else {
float x;
float y;
getXY(currPiece, &x, &y);
model = glm::mat4(1);
model = glm::translate(model,glm::vec3(x, y, 0.01));
model = glm::scale(model,glm::vec3(0.25,0.25,0.25));
glUniform3f(uniColor, pawnColors[i][0], pawnColors[i][1], pawnColors[i][2]);
glUniformMatrix4fv(uniModel, 1, GL_FALSE, glm::value_ptr(model));
glUniform1i(uniTexID, -1);
glDrawArrays(GL_TRIANGLES, model1_start, model1_numVerts);
}
}
//DRAW GAME BOARD
model = glm::mat4(1);
model = glm::translate(model,glm::vec3(0,0,-0.05));
model = glm::scale(model,glm::vec3(11,11,0.1));
glUniformMatrix4fv(uniModel, 1, GL_FALSE, glm::value_ptr(model));
glUniform1i(uniTexID, 0);
glUniform1i(uniToon, 0.0); // don't use toon for pieces
glUniform1i(uniBloom, 0.0); // don't use bloom
glDrawArrays(GL_TRIANGLES, model3_start, model3_numVerts);
//DRAW CARD DECK
model = glm::mat4(1);
model = glm::translate(model,glm::vec3(-1.03,1.75,0.5));
model = glm::rotate(model,-3.14f/4,glm::vec3(0.0f, 0.0f, 1.0f));
model = glm::scale(model,glm::vec3(2.0,3.0,1.f));
glUniformMatrix4fv(uniModel, 1, GL_FALSE, glm::value_ptr(model));
glUniform1i(uniTexID, 1);
glUniform1i(uniToon, 1.0); // use toon for pieces
glUniform1i(uniBloom, 0.0); // don't use bloom
glDrawArrays(GL_TRIANGLES, model3_start, model3_numVerts);
//DRAW CARD
if (state == drawingCard) {
if (cardposition < 1.0) {
cardposition += timePast - lastUpdated;
if (cardposition >= 1.0) {
cardposition = 1.0;
state = choosePiece;
waiting = false;
printf("Choose Piece\n");
}
}
}
glm::vec3 translatevector = glm::vec3(1.13,-1.93,0.05) - glm::vec3(-1.03,1.75,0.9);
model = glm::mat4(1);
model = glm::translate(model,glm::vec3(-1.03,1.75,0.9) +
glm::vec3(translatevector.x * cardposition, translatevector.y * cardposition, translatevector.z * cardposition));
model = glm::rotate(model,-3.14f/4,glm::vec3(0.0f, 0.0f, 1.f));
model = glm::scale(model,glm::vec3(1.9,2.9,0.1f));
glUniformMatrix4fv(uniModel, 1, GL_FALSE, glm::value_ptr(model));
glUniform1i(uniTexID, displayCard);
glDrawArrays(GL_TRIANGLES, model3_start, model3_numVerts);
//DRAW TABLE
glUniform3fv(uniColor, 1, glm::value_ptr(glm::vec3(0.43,0.34,0.17)));
model = glm::mat4(1);
model = glm::translate(model,glm::vec3(0,0,-13.2));
//model = glm::rotate(model,-3.14f/4,glm::vec3(0.0f, 0.0f, 1.f));
//model = glm::scale(model,glm::vec3(0.5,0.5,0.5));
glUniformMatrix4fv(uniModel, 1, GL_FALSE, glm::value_ptr(model));
glUniform1i(uniTexID, -1);
glUniform1i(uniToon, 0.0); // don't use toon for table
glUniform1i(uniBloom, 0.0); // don't use bloom
glDrawArrays(GL_TRIANGLES, model2_start, model2_numVerts);
//DRAW UI
for (int i = 0; i < 4; i++) {
model = glm::mat4(1);
if (i==0) {
model = glm::translate(model,glm::vec3(4.56,7.63,-1.4));
model = glm::rotate(model,-3.14f/6,glm::vec3(1.0f, 0.0f, 0.f));
}
else if (i==1) {
model = glm::translate(model,glm::vec3(7.63,-4.56,-1.4));
model = glm::rotate(model,3.14f/6,glm::vec3(0.0f, 1.0f, 0.f));
model = glm::rotate(model,-3.14f/2,glm::vec3(0.0f, 0.f, 1.f));
}
else if (i==2) {
model = glm::translate(model,glm::vec3(-4.56,-7.63,-1.4));
model = glm::rotate(model,3.14f/6,glm::vec3(1.0f, 0.0f, 0.f));
model = glm::rotate(model,3.14f,glm::vec3(0.0f, 0.f, 1.f));
}
else {
model = glm::translate(model,glm::vec3(-7.63,4.56,-1.4));
model = glm::rotate(model,-3.14f/6,glm::vec3(0.0f, 1.0f, 0.f));
model = glm::rotate(model,3.14f/2,glm::vec3(0.0f, 0.f, 1.f));
}
model = glm::scale(model,glm::vec3(2.0,3.0,0.1f));
glUniformMatrix4fv(uniModel, 1, GL_FALSE, glm::value_ptr(model));
glUniform1i(uniTexID, displayCard);
glUniform1i(uniBloom, 0.0); // don't use bloom
glDrawArrays(GL_TRIANGLES, model3_start, model3_numVerts);
}
for (int j = 0; j < 4; j++) {
for (int i = 0; i < 3; i++) {
glUniform3fv(uniColor, 1, glm::value_ptr(pawnColors[(j*3)+i]));
model = glm::mat4(1);
if (j == 0) {
model = glm::translate(model,glm::vec3(1.58-(i*3),9.0,-2.0));
model = glm::rotate(model,3.14f/3,glm::vec3(1.0f, 0.0f, 0.f));
}
else if (j == 1) {
model = glm::translate(model,glm::vec3(9.0,-1.58+(i*3),-2.0));
model = glm::rotate(model,-3.14f/3,glm::vec3(0.0f, 1.0f, 0.f));
}
else if (j == 2) {
model = glm::translate(model,glm::vec3(-1.58+(i*3),-9.0,-2.0));
model = glm::rotate(model,-3.14f/3,glm::vec3(1.0f, 0.0f, 0.f));
}
else {
model = glm::translate(model,glm::vec3(-9.0,1.58-(i*3),-2.0));
model = glm::rotate(model,3.14f/3,glm::vec3(0.0f, 1.0f, 0.f));
}
glUniformMatrix4fv(uniModel, 1, GL_FALSE, glm::value_ptr(model));
glUniform1i(uniTexID, -1);
glUniform1i(uniToon, 1.0); // use toon for UI pieces
glUniform1i(uniBloom, 0.0); // don't use bloom
glDrawArrays(GL_TRIANGLES, model1_start, model1_numVerts);
}
}
}
// Create a NULL-terminated string by reading the provided file
static char* readShaderSource(const char* shaderFile){
FILE *fp;
long length;
char *buffer;
// open the file containing the text of the shader code
fp = fopen(shaderFile, "r");
// check for errors in opening the file
if (fp == NULL) {
printf("can't open shader source file %s\n", shaderFile);
return NULL;
}
// determine the file size
fseek(fp, 0, SEEK_END); // move position indicator to the end of the file;
length = ftell(fp); // return the value of the current position
// allocate a buffer with the indicated number of bytes, plus one
buffer = new char[length + 1];
// read the appropriate number of bytes from the file
fseek(fp, 0, SEEK_SET); // move position indicator to the start of the file
fread(buffer, 1, length, fp); // read all of the bytes
// append a NULL character to indicate the end of the string
buffer[length] = '\0';
// close the file
fclose(fp);
// return the string
return buffer;
}
// Create a GLSL program object from vertex and fragment shader files
GLuint InitShader(const char* vShaderFileName, const char* fShaderFileName){
GLuint vertex_shader, fragment_shader;
GLchar *vs_text, *fs_text;
GLuint program;
// check GLSL version
printf("GLSL version: %s\n\n", glGetString(GL_SHADING_LANGUAGE_VERSION));
// Create shader handlers
vertex_shader = glCreateShader(GL_VERTEX_SHADER);
fragment_shader = glCreateShader(GL_FRAGMENT_SHADER);
// Read source code from shader files
vs_text = readShaderSource(vShaderFileName);
fs_text = readShaderSource(fShaderFileName);
// error check
if (vs_text == NULL) {
printf("Failed to read from vertex shader file %s\n", vShaderFileName);
exit(1);
} else if (DEBUG_ON) {
printf("Vertex Shader:\n=====================\n");
printf("%s\n", vs_text);
printf("=====================\n\n");
}
if (fs_text == NULL) {
printf("Failed to read from fragent shader file %s\n", fShaderFileName);
exit(1);
} else if (DEBUG_ON) {
printf("\nFragment Shader:\n=====================\n");
printf("%s\n", fs_text);
printf("=====================\n\n");
}
// Load Vertex Shader
const char *vv = vs_text;
glShaderSource(vertex_shader, 1, &vv, NULL); //Read source
glCompileShader(vertex_shader); // Compile shaders
// Check for errors
GLint compiled;
glGetShaderiv(vertex_shader, GL_COMPILE_STATUS, &compiled);
if (!compiled) {
printf("Vertex shader failed to compile:\n");
if (DEBUG_ON) {
GLint logMaxSize, logLength;
glGetShaderiv(vertex_shader, GL_INFO_LOG_LENGTH, &logMaxSize);
printf("printing error message of %d bytes\n", logMaxSize);
char* logMsg = new char[logMaxSize];
glGetShaderInfoLog(vertex_shader, logMaxSize, &logLength, logMsg);
printf("%d bytes retrieved\n", logLength);
printf("error message: %s\n", logMsg);
delete[] logMsg;
}
exit(1);
}
// Load Fragment Shader
const char *ff = fs_text;
glShaderSource(fragment_shader, 1, &ff, NULL);
glCompileShader(fragment_shader);
glGetShaderiv(fragment_shader, GL_COMPILE_STATUS, &compiled);
//Check for Errors
if (!compiled) {
printf("Fragment shader failed to compile\n");
if (DEBUG_ON) {
GLint logMaxSize, logLength;
glGetShaderiv(fragment_shader, GL_INFO_LOG_LENGTH, &logMaxSize);
printf("printing error message of %d bytes\n", logMaxSize);
char* logMsg = new char[logMaxSize];
glGetShaderInfoLog(fragment_shader, logMaxSize, &logLength, logMsg);
printf("%d bytes retrieved\n", logLength);
printf("error message: %s\n", logMsg);
delete[] logMsg;
}
exit(1);
}
// Create the program
program = glCreateProgram();
// Attach shaders to program
glAttachShader(program, vertex_shader);
glAttachShader(program, fragment_shader);
// Link and set program to use
glLinkProgram(program);
return program;
}
|
cab8a25105a239f74fb2a9df21509a88ac1a148c | d6b7f2ff0e0960c235e4f98bc6716cd18148d3f0 | /eiTemplate/bits2nums.cpp | daefe3f1d20fcf5fc891622ed0eacebfc9822d51 | [] | no_license | ganlubbq/802.15.3c | d16ebfb1980fd3d5f978c91de419b4489cadb73b | be840ceaab0bf0ddf789be9514569a9ad2fe8f24 | refs/heads/master | 2021-06-22T23:36:18.022187 | 2017-07-20T08:01:11 | 2017-07-20T08:01:11 | 111,549,486 | 1 | 0 | null | 2017-11-21T13:00:36 | 2017-11-21T13:00:36 | null | GB18030 | C++ | false | false | 2,005 | cpp | bits2nums.cpp | //函数描述:将输入的比特序列转换为数字,用于调制函数;
//输入参数:codebits:输入的比特序列;nums:比特转换成的符号; modtype:调制模式 1-BPSK,2-QPSK,3-8PSK,4-16QAM,6-64QAM;Nbits:输入的比特数量
//#include<iostream>
//#include<cmath>
//#include<cstdlib>
#include"genParam.h"
#include "stdafx.h"
using namespace std;
void bits2nums(vector<int> &codebits, vector<int> &nums, int modtype)
{
int Nbits = codebits.size();
int Nnums = Nbits/modtype;//映射符号数目
double Nnums_mod = fmod(Nbits*1.0,modtype*1.0);
if (Nnums_mod == 0)
{
switch (modtype)
{
case 1 :
{
for(int i = 0; i < Nnums; i++)
nums.push_back(codebits[i]);
break;
}
case 2 :
{
int temp_index[2] = {2, 1};//调制权重
for (int i = 0; i < Nnums; i++)
{
int temp = 0;
for (int j = 0; j < modtype; j++)
temp += codebits[modtype * i + j] * temp_index[j];
nums.push_back(temp);
}
break;
}
case 3 :
{
int temp_index[3] = {4, 2, 1};//调制权重
for (int i = 0; i < Nnums; i++)
{
int temp = 0;
for (int j = 0; j < modtype; j++)
temp += codebits[modtype * i + j] * temp_index[j];
nums.push_back(temp);
}
break;
}
case 4 :
{
int temp_index[4] = {8, 4, 2, 1};//调制权重
for (int i = 0; i < Nnums; i++)
{
int temp = 0;
for (int j = 0; j < modtype; j++)
temp += codebits[modtype * i + j] * temp_index[j];
nums.push_back(temp);
}
break;
}
case 6:
{
int temp_index[6] = {32, 16, 8, 4, 2, 1};//调制权重
for (int i = 0; i < Nnums; i++)
{
int temp = 0;
for (int j = 0; j < modtype; j++)
temp += codebits[modtype * i +j] * temp_index[j];
nums.push_back(temp);
}
break;
}
default :
{
cout<<"输入的调制模式错误!"<<endl;
exit(EXIT_FAILURE);
}
}
}
else
{
cout<<"输入的比特序列数目错误"<<endl;
exit(EXIT_FAILURE);
}
} |
541873a6ba87cf3f4f11a3e491544fcb02504913 | 339ef5cc497be3263c2a04b77aaea1ce4e8a799e | /sumFibonacci.cpp | e5cebdffefd90c5b33dbff75bbf5949485840a53 | [] | no_license | emaad-shah/Practice-Problems | dd2e316e555a9ce731aaf85f36028418c556ab57 | 52fca2288b41696a82892aa0dcf861ae6ed5f08c | refs/heads/master | 2021-01-10T18:37:37.232188 | 2014-05-03T22:39:12 | 2014-05-03T22:39:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,059 | cpp | sumFibonacci.cpp | //------------------------------------------------------------
// Copyright: Syed Shah 2014
// Find the sum of the nth fibonacci number
//------------------------------------------------------------
#include <iostream>
using namespace std;
// Return (n + 2)th integer in the sequence
int getN(const int & n1, const int & n2)
{
return n1 + n2 + n2;
}
// Sum of nth fibonacci number is s(n) = f(n + 2) - 1
// f(n + 2) is always one number greater than the actual sum
void getFib(const int & n, const int * fib, const int & length)
{
// Base Case, Only one element in the array
if (n == 1)
cout << fib[0] << endl;;
// Nth number must exist in the array
if (n <= length)
cout << getN(fib[n-2], fib[n-1]) - 1 << endl;
// Boundry Value Analyses
if (n < 1 || n > length)
cerr << "Invalid entry" << endl;
}
int main(void)
{
int fib[] = {1,1,2,3,5,8};
int length = sizeof(fib) / sizeof(*fib);
int n = 4;
// Test 1
cout << "Sum of first " << n << " numbers in the fibonacci sequence: ";
getFib(n, fib, length);
system("pause");
return 0;
}
|
dba5b7bd16c8985c7eda5d9e191fd78d98b78003 | 10f10ff400bab40ebecdcf1873065261f99f7c89 | /Examples/Include/System/Drawing/Rectangle.h | 95675f7a21ac95a9a850e123f047d426a9f84f11 | [] | no_license | aspose-cells/Aspose.Cells-for-C | 86427e34b7c6a032c21b1317ca86453dc84c342c | e0a96a9abde1dcdab41a8c75016f8579ee020d80 | refs/heads/master | 2021-07-09T03:56:06.744625 | 2021-06-24T07:47:05 | 2021-06-24T07:47:05 | 66,553,116 | 14 | 11 | null | 2021-03-24T13:41:30 | 2016-08-25T11:44:03 | null | UTF-8 | C++ | false | false | 2,062 | h | Rectangle.h | #ifndef _SYSTEM_DRAWING_RECTANGLE_H_
#define _SYSTEM_DRAWING_RECTANGLE_H_
#include "System/Object.h"
#include "System/Int32.h"
#include "System/String.h"
#include "System/Drawing/Point.h"
#include "System/Drawing/Size.h"
//#define NEW Aspose::Cells::System::Drawing::Rectangle(0, 0, 0, 0) NEW Rectangle(0, 0, 0, 0);
using namespace Aspose::Cells::System;
namespace Aspose {
namespace Cells {
namespace System {
namespace Drawing {
class RectangleF;
class ASPOSE_CELLS_API Rectangle: public Object
{
private:
int x;
int y;
int width;
int height;
public:
static intrusive_ptr<Rectangle> Empty;
Rectangle();
Rectangle(intrusive_ptr<Point> location, intrusive_ptr<Size> size);
Rectangle(Int32 x1, Int32 y1, Int32 width1, Int32 height1);
public:
static intrusive_ptr<Rectangle> FromLTRB(Int32 left, Int32 top, Int32 right, Int32 bottom);
static intrusive_ptr<Rectangle> Round(intrusive_ptr<RectangleF> value);
static intrusive_ptr<Rectangle> Inflate(intrusive_ptr<Rectangle> rect, int x, int y);
static intrusive_ptr<Rectangle> Union(intrusive_ptr<Rectangle> a, intrusive_ptr<Rectangle> b);
Int32 GetHeight();
void SetHeight(Int32 val);
intrusive_ptr<Point> GetLocation();
void SetLocation(intrusive_ptr<Point> point);
intrusive_ptr<Size> GetSize();
void SetSize(intrusive_ptr<Size> size);
Int32 GetWidth();
void SetWidth(Int32 val);
Int32 GetX();
void SetX(Int32 val);
Int32 GetY();
void SetY(Int32 val);
Int32 GetLeft();
Int32 GetRight();
Int32 GetTop();
Int32 GetBottom();
bool IsEmpty();
void Inflate(int width, int height);
void Inflate(intrusive_ptr<Size> size);
bool IntersectsWith(intrusive_ptr<Rectangle> rect);
public:
bool Equals(ObjectPtr obj);
int GetHashCode();
StringPtr ToString();
};
typedef intrusive_ptr<Rectangle> RectanglePtr;
}
}
}
}
#endif//_SYSTEM_DRAWING_RECTANGLE_H_ |
30efdcf234d347f8ea5b7bdc2119a2e77237fb03 | f5fb39010aec616f37ac24427f6af61dcdfd3756 | /Pokemon_Mystery_Dungeon/Ivysaur.h | 0809a70d22579faa3aa800f1771a9e7f9240b033 | [] | no_license | JinKyong/Pokemon_Dungeon | 08df9ce02362a239525730aaa06aaa46c4bfbc0e | c595cdcb92f822b54e99e1a366f797712ad69475 | refs/heads/main | 2023-07-31T05:01:27.372424 | 2021-10-03T13:00:52 | 2021-10-03T13:00:52 | 384,614,340 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 123 | h | Ivysaur.h | #pragma once
#include "Pokemon.h"
class Ivysaur : public Pokemon
{
public:
Ivysaur();
~Ivysaur();
HRESULT init();
};
|
163f494b4fb27b1c049cbfc65671822bb537c24a | cc21745be89ef87a613a2123d7120619345c2ee4 | /ComputerVision/CVApplicationForm.cpp | 3c6a4aeed3ae8793cc33fd2fe7c8c019253d98cd | [] | no_license | komarovn/ComputerVision | 9492ef227167647f74065593c8011af3b044fff3 | 8ad984896bec6537e6713d9458f84ffd78b7805e | refs/heads/master | 2021-05-16T00:24:58.597307 | 2017-12-12T18:34:46 | 2017-12-12T18:34:46 | 107,000,386 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32 | cpp | CVApplicationForm.cpp | #include "CVApplicationForm.h"
|
3a3981d2c7532912f9321f6e780393a5276c2385 | a949ca5fd781f526ad292992fd47f4b8bd973d9e | /Graph/CB/DFS_Topological Sort.cpp | c3afa6ead82c916da9932c00feeafa328188469f | [
"MIT"
] | permissive | scortier/Complete-DSA-Collection | 8f20e56b18e4a552aebd04964e8365e01eba5433 | 925a5cb148d9addcb32192fe676be76bfb2915c7 | refs/heads/main | 2023-05-14T14:24:21.678887 | 2021-06-06T18:59:01 | 2021-06-06T18:59:01 | 307,963,617 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,344 | cpp | DFS_Topological Sort.cpp | /*
<<<<<<<<<<<---APPROACH-->>>>>>>>>>>>>>
Topo Sort applies on Directed Acyclic Graph (DAG).
*/
#include<bits/stdc++.h>
using namespace std;
// template<typename T>
class Graph {
map<int, list<int> >mp; //can't be unordered map as
public:
void addEdge(int x, int y)
{
mp[x].push_back(y);
// mp[y].push_back(x);
}
void dfs_helper(int curr, map<int, bool>&visited, list<int>&ordering)
{
visited[curr] = true;
//go to all the nodes linked to curr that is not visited
for (auto nbr : mp[curr])
{
//if node linked to curr not visited earlier then
if (!visited[nbr]) {
dfs_helper(nbr, visited, ordering);
}
}
//push front in list to insert at the front.
ordering.push_front(curr);
// return;
}
void dfs()
{
map<int, bool>visited;
list<int>ordering;
//mark all the node as not visited in the beginning
for (auto p : mp)
{
int node = p.first;
visited[node] = false;
}
//call the helper function
for (auto p : mp)
{
int node = p.first;
if (!visited[node])
dfs_helper(node, visited, ordering);
}
for (auto node : ordering)
cout << node << " ";
}
};
int32_t main()
{
Graph g;
g.addEdge(0, 1);
g.addEdge(1, 2);
g.addEdge(2, 3);
g.addEdge(4, 3);
g.addEdge(4, 5);
g.addEdge(4, 6);
g.addEdge(5, 6);
g.dfs();
return 0;
}
/*
OUTPUT:
4
5
6
0
1
2
3
*/ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.